:root {
  --bg: #07130f;
  --bg-soft: #0b1c17;
  --bg-card: rgba(14, 39, 31, 0.88);
  --bg-card-strong: #10261f;
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.16);
  --text: #f6fbf8;
  --text-soft: rgba(246, 251, 248, 0.74);
  --text-muted: rgba(246, 251, 248, 0.58);
  --green: #32d68a;
  --green-strong: #14b86b;
  --green-soft: rgba(50, 214, 138, 0.15);
  --yellow: #ffd166;
  --yellow-soft: rgba(255, 209, 102, 0.16);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  min-height: 100vh;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 8%, rgba(50, 214, 138, 0.16), transparent 28%),
    radial-gradient(circle at 82% 15%, rgba(255, 209, 102, 0.12), transparent 22%),
    linear-gradient(180deg, #06110e 0%, #07130f 36%, #081611 100%);
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }
.container { width: min(calc(100% - 40px), var(--container)); margin: 0 auto; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 9px 14px; border: 1px solid rgba(50, 214, 138, 0.24);
  border-radius: 999px; background: rgba(50, 214, 138, 0.08);
  color: #bff8dd; font-size: 0.84rem; font-weight: 700;
  letter-spacing: 0.02em; text-transform: uppercase;
}
.eyebrow::before {
  content: ''; width: 8px; height: 8px; border-radius: 999px;
  background: var(--green); box-shadow: 0 0 18px rgba(50, 214, 138, 0.8);
}
.section-title {
  max-width: 820px; font-family: 'Sora', sans-serif;
  font-size: clamp(1.8rem, 3.3vw, 3rem); line-height: 1.08;
  letter-spacing: -0.045em; margin-top: 18px;
}
.section-text {
  max-width: 760px; margin-top: 20px; color: var(--text-soft);
  font-size: clamp(1rem, 1.55vw, 1.14rem); line-height: 1.76;
}
.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 54px; padding: 0 20px; border-radius: 999px;
  border: 1px solid transparent; font-weight: 800; font-size: 0.98rem;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
  cursor: pointer;
}
.button:hover { transform: translateY(-2px); }
.button-primary {
  background: linear-gradient(135deg, var(--green) 0%, #65efae 100%);
  color: #042014; box-shadow: 0 18px 42px rgba(50, 214, 138, 0.22);
}
.button-primary:hover { box-shadow: 0 22px 48px rgba(50, 214, 138, 0.32); }
.button-secondary {
  background: rgba(255, 255, 255, 0.04); color: var(--text);
  border-color: var(--line-strong);
}
.button-secondary:hover { background: rgba(255, 255, 255, 0.08); }
.button-small { min-height: 46px; padding: 0 17px; font-size: 0.92rem; }

.topbar {
  position: sticky; top: 0; z-index: 50; backdrop-filter: blur(22px);
  background: rgba(6, 17, 14, 0.78); border-bottom: 1px solid var(--line);
}
.nav { min-height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 14px; flex-shrink: 0; position: relative; }

.brand-logo {
  width: clamp(92px, 12vw, 128px);
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 16px 34px rgba(0, 0, 0, 0.28));
}
.brand-copy-accessible {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.footer .brand {
  align-items: flex-start;
}
.footer-logo {
  width: min(180px, 100%);
  height: auto;
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.34));
}
.hero-brand-visual {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  margin: -8px auto 18px;
  padding: 8px 8px 16px;
}
.hero-brand-visual img {
  width: min(190px, 58%);
  height: auto;
  filter: drop-shadow(0 20px 48px rgba(0, 0, 0, 0.35));
}

.brand-mark {
  width: 50px; height: 50px; display: grid; place-items: center;
  border-radius: 18px; background:
    linear-gradient(145deg, rgba(50, 214, 138, 0.22), rgba(255, 209, 102, 0.15)), #10261f;
  border: 1px solid rgba(50, 214, 138, 0.22);
  font-family: 'Sora', sans-serif; font-size: 1.25rem; font-weight: 800;
  color: var(--yellow); box-shadow: 0 16px 36px rgba(0, 0, 0, 0.24);
}
.brand-copy strong { display: block; font-family: 'Sora', sans-serif; font-size: 1.08rem; letter-spacing: -0.03em; }
.brand-copy span { display: block; margin-top: 2px; color: var(--text-muted); font-size: 0.82rem; font-weight: 600; }
.nav-links { display: flex; align-items: center; gap: 24px; color: var(--text-soft); font-weight: 700; font-size: 0.95rem; }
.nav-links a { transition: color 180ms ease; }
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.menu-button {
  display: none; width: 48px; height: 48px; border-radius: 16px;
  border: 1px solid var(--line-strong); color: var(--text);
  background: rgba(255, 255, 255, 0.05); font-size: 1.25rem; cursor: pointer;
}
.mobile-panel { display: none; padding: 0 0 18px; }
.mobile-panel.is-open { display: block; }
.mobile-menu {
  display: grid; gap: 12px; padding: 18px; border-radius: 24px;
  border: 1px solid var(--line); background: rgba(16, 38, 31, 0.96); box-shadow: var(--shadow);
}
.mobile-menu a {
  min-height: 48px; display: flex; align-items: center; padding: 0 14px;
  border-radius: 14px; color: var(--text-soft); font-weight: 800;
  background: rgba(255, 255, 255, 0.03);
}
.mobile-menu a.active { color: var(--text); border: 1px solid rgba(50, 214, 138, 0.18); }

.hero { position: relative; padding: 88px 0 78px; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr); align-items: center; gap: 56px; }
.hero h1, .page-hero h1 {
  margin-top: 22px; max-width: 900px; font-family: 'Sora', sans-serif;
  font-size: clamp(2.5rem, 5.7vw, 4.9rem); line-height: 0.98; letter-spacing: -0.075em;
}
.hero h1 span, .page-hero h1 span { color: var(--green); }
.hero p, .page-hero p {
  max-width: 780px; margin-top: 28px; color: var(--text-soft);
  font-size: clamp(1rem, 1.35vw, 1.12rem); line-height: 1.75;
}
.hero-actions { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 14px; }
.hero-metrics { margin-top: 42px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.metric { padding: 18px; border: 1px solid var(--line); border-radius: 22px; background: rgba(255,255,255,0.035); }
.metric strong { display: block; font-family: 'Sora', sans-serif; color: var(--yellow); font-size: 1.55rem; letter-spacing: -0.04em; }
.metric span { display: block; margin-top: 8px; color: var(--text-muted); font-size: 0.91rem; font-weight: 700; line-height: 1.45; }

.showcase { position: relative; min-height: 650px; display: flex; align-items: center; justify-content: center; }
.showcase::before {
  content: ''; position: absolute; inset: 9% 10%; border-radius: 50%;
  background: radial-gradient(circle, rgba(50, 214, 138, 0.22), transparent 68%); filter: blur(8px);
}
.dashboard-card {
  position: relative; z-index: 2; width: min(100%, 530px); padding: 24px;
  border-radius: 36px; border: 1px solid rgba(255, 255, 255, 0.13);
  background: linear-gradient(180deg, rgba(17, 43, 34, 0.95), rgba(10, 26, 21, 0.96));
  box-shadow: var(--shadow); overflow: hidden;
}
.dashboard-card::after {
  content: ''; position: absolute; width: 240px; height: 240px; right: -120px; top: -120px;
  border-radius: 999px; background: rgba(255, 209, 102, 0.15); filter: blur(2px);
}
.dash-top { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.dash-title strong { display: block; font-family: 'Sora', sans-serif; font-size: 1.13rem; }
.dash-title span { display: block; margin-top: 6px; color: var(--text-muted); font-size: 0.9rem; font-weight: 600; }
.status-pill {
  padding: 10px 13px; border-radius: 999px; color: #bff8dd; font-weight: 800; font-size: 0.8rem;
  background: rgba(50, 214, 138, 0.12); border: 1px solid rgba(50, 214, 138, 0.22); white-space: nowrap;
}
.dash-content { position: relative; z-index: 1; display: grid; gap: 16px; margin-top: 24px; }
.mini-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.mini-card { padding: 18px; border-radius: 22px; background: rgba(255,255,255,0.045); border: 1px solid rgba(255,255,255,0.08); }
.mini-card span { display: block; color: var(--text-muted); font-size: 0.82rem; font-weight: 700; }
.mini-card strong { display: block; margin-top: 9px; font-family: 'Sora', sans-serif; font-size: 1.45rem; letter-spacing: -0.045em; }
.timeline {
  display: grid; gap: 12px; padding: 18px; border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08); background: rgba(255, 255, 255, 0.035);
}
.timeline-row { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 12px; min-height: 44px; }
.timeline-dot { width: 12px; height: 12px; border-radius: 999px; background: var(--green); box-shadow: 0 0 18px rgba(50,214,138,0.55); }
.timeline-row:nth-child(2) .timeline-dot { background: var(--yellow); box-shadow: 0 0 18px rgba(255,209,102,0.5); }
.timeline-row:nth-child(3) .timeline-dot { background: #7aa8ff; box-shadow: 0 0 18px rgba(122,168,255,0.5); }
.timeline-row strong { font-size: 0.95rem; }
.timeline-row span { color: var(--text-muted); font-size: 0.88rem; font-weight: 700; }
.floating-card {
  position: absolute; z-index: 3; width: 220px; padding: 16px;
  border-radius: 22px; border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(13, 34, 27, 0.96); box-shadow: 0 22px 52px rgba(0,0,0,0.28);
}
.floating-card span { display: block; color: var(--text-muted); font-size: 0.77rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; }
.floating-card strong { display: block; margin-top: 8px; font-family: 'Sora', sans-serif; font-size: 1rem; line-height: 1.4; }
.floating-card small { display: block; margin-top: 8px; color: var(--green); font-size: 0.82rem; font-weight: 800; }
.floating-one { top: 88px; right: -8px; }
.floating-two { left: -16px; bottom: 112px; }
.floating-three { right: 22px; bottom: 48px; }

.page-hero { padding: 88px 0 48px; }
.page-hero-panel {
  position: relative; overflow: hidden; padding: clamp(28px, 5vw, 58px);
  border-radius: 42px; border: 1px solid rgba(255,255,255,0.12);
  background:
    radial-gradient(circle at 14% 20%, rgba(50, 214, 138, 0.2), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(255, 209, 102, 0.12), transparent 24%),
    rgba(16, 38, 31, 0.84);
  box-shadow: var(--shadow);
}
.page-hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 34px; align-items: center; }
.page-hero-side { display: grid; gap: 14px; }
.highlight-card, .stat-card, .about-card {
  border: 1px solid var(--line); background: rgba(255,255,255,0.045); border-radius: 24px; padding: 20px;
}
.highlight-card strong, .stat-card strong { display: block; font-family: 'Sora', sans-serif; font-size: 1.2rem; letter-spacing: -0.03em; }
.highlight-card span, .stat-card span { display: block; margin-top: 8px; color: var(--text-soft); line-height: 1.6; }

section { padding: 92px 0; }
.services-grid, .solutions-grid, .advantages-grid, .process-grid, .projects-grid, .portfolio-grid, .stats-grid, .faq-grid, .contact-cards-grid {
  display: grid; gap: 18px; margin-top: 42px;
}
.services-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.solutions-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.advantages-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.process-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.projects-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.portfolio-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.stats-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.faq-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.contact-cards-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.service-card, .solution-card, .advantage-card, .process-card, .project-card, .contact-card, .content-card, .faq-card {
  position: relative; overflow: hidden; border: 1px solid var(--line); background: var(--bg-card);
  box-shadow: 0 18px 46px rgba(0,0,0,0.16);
}
.service-card, .advantage-card, .process-card, .project-card, .content-card, .faq-card { padding: 24px; border-radius: var(--radius-lg); }
.service-card::before, .solution-card::before, .advantage-card::before, .project-card::before, .content-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(50,214,138,0.08), transparent 36%, rgba(255,209,102,0.04));
  pointer-events: none;
}
.icon-box {
  width: 54px; height: 54px; display: grid; place-items: center; border-radius: 18px;
  background: var(--green-soft); border: 1px solid rgba(50,214,138,0.2); font-size: 1.5rem;
  position: relative; z-index: 1; flex-shrink: 0;
}
.service-card h3, .advantage-card h3, .process-card h3, .project-card h3, .content-card h3, .faq-card h3 {
  position: relative; z-index: 1; margin-top: 18px; font-family: 'Sora', sans-serif;
  font-size: 1.2rem; letter-spacing: -0.03em;
}
.service-card p, .advantage-card p, .process-card p, .project-card p, .content-card p, .faq-card p {
  position: relative; z-index: 1; margin-top: 13px; color: var(--text-soft); font-size: 0.98rem; line-height: 1.72;
}
.card-list {
  position: relative; z-index: 1; list-style: none; display: grid; gap: 11px; margin-top: 18px; color: var(--text-soft); line-height: 1.55;
}
.card-list li { display: flex; gap: 10px; align-items: flex-start; }
.card-list li::before { content: '✓'; color: var(--green); font-weight: 900; }
.solution-card {
  min-height: 420px; padding: 30px; border-radius: var(--radius-xl);
  display: flex; flex-direction: column; justify-content: space-between;
}
.solution-top, .solution-bottom { position: relative; z-index: 1; }
.solution-label, .project-tag, .pill {
  display: inline-flex; width: fit-content; padding: 8px 12px; border-radius: 999px;
  color: #bff8dd; background: rgba(50,214,138,0.11); border: 1px solid rgba(50,214,138,0.22);
  font-size: 0.79rem; font-weight: 900; text-transform: uppercase; letter-spacing: 0.05em;
}
.project-tag { color: var(--yellow); background: var(--yellow-soft); border-color: rgba(255,209,102,0.18); margin-top: 18px; position: relative; z-index: 1; }
.solution-card h3 {
  margin-top: 18px; font-family: 'Sora', sans-serif; font-size: clamp(1.65rem, 3vw, 2.3rem);
  letter-spacing: -0.05em; line-height: 1.12;
}
.solution-card p { margin-top: 16px; max-width: 560px; color: var(--text-soft); line-height: 1.75; font-size: 1rem; }
.feature-list {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; list-style: none;
}
.feature-list li {
  display: inline-flex; align-items: center; gap: 8px; padding: 10px 12px; border-radius: 999px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  color: var(--text-soft); font-size: 0.86rem; font-weight: 800;
}
.feature-list li::before { content: '•'; color: var(--yellow); font-size: 1.2rem; line-height: 1; }
.solution-bottom {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--line);
}
.solution-bottom span { color: var(--text-muted); font-weight: 800; font-size: 0.92rem; }
.solution-link { color: var(--green); font-weight: 900; }

.projects-intro { display: flex; align-items: end; justify-content: space-between; gap: 30px; }
.projects-intro .section-text { max-width: 520px; margin-top: 0; }
.project-visual {
  position: relative; z-index: 1; min-height: 180px; padding: 18px; border-radius: 22px;
  background: linear-gradient(135deg, rgba(50,214,138,0.16), rgba(255,209,102,0.08)), rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08); display: grid; gap: 12px; align-content: center;
}
.browser-line { display: flex; gap: 8px; }
.browser-line span { width: 10px; height: 10px; border-radius: 999px; background: rgba(255,255,255,0.34); }
.screen-bar { height: 14px; border-radius: 999px; background: rgba(255,255,255,0.12); }
.screen-bar.medium { width: 82%; }
.screen-bar.small { width: 56%; }

.process-number {
  width: 48px; height: 48px; display: grid; place-items: center; border-radius: 18px;
  background: var(--yellow-soft); border: 1px solid rgba(255,209,102,0.18);
  color: var(--yellow); font-family: 'Sora', sans-serif; font-weight: 900; font-size: 1rem;
}
.cta { padding-top: 40px; padding-bottom: 104px; }
.cta-panel {
  position: relative; overflow: hidden; display: grid; grid-template-columns: minmax(0, 1fr) auto;
  align-items: center; gap: 34px; padding: clamp(30px, 5vw, 58px);
  border-radius: 40px; border: 1px solid rgba(255,255,255,0.12);
  background:
    radial-gradient(circle at 15% 20%, rgba(50,214,138,0.22), transparent 28%),
    radial-gradient(circle at 90% 80%, rgba(255,209,102,0.16), transparent 25%),
    #10261f;
  box-shadow: var(--shadow);
}
.cta-panel h2 {
  max-width: 820px; font-family: 'Sora', sans-serif; font-size: clamp(1.8rem, 3.5vw, 3.1rem);
  line-height: 1.08; letter-spacing: -0.055em;
}
.cta-panel p { max-width: 760px; margin-top: 18px; color: var(--text-soft); font-size: 1.08rem; line-height: 1.75; }
.cta-actions { display: grid; gap: 12px; min-width: 238px; }

.contact-wrap { padding-top: 12px; }
.contact-card {
  border-radius: 36px; padding: clamp(28px, 4vw, 42px);
  display: grid; grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1.05fr); gap: 38px;
}
.contact-info h2 {
  margin-top: 18px; font-family: 'Sora', sans-serif;
  font-size: clamp(1.8rem, 3.3vw, 3rem); line-height: 1.08; letter-spacing: -0.05em;
}
.contact-info p { margin-top: 18px; color: var(--text-soft); font-size: 1.04rem; line-height: 1.78; }
.direct-list { margin-top: 28px; display: grid; gap: 14px; }
.direct-item {
  display: flex; align-items: center; gap: 14px; padding: 16px; border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.08); background: rgba(255,255,255,0.04);
}
.direct-item strong { display: block; font-size: 0.92rem; }
.direct-item span { display: block; margin-top: 4px; color: var(--text-soft); font-weight: 700; }
.form-grid {
  display: grid; gap: 14px; padding: 22px; border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.08); background: rgba(255,255,255,0.04);
}
.field-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.field { display: grid; gap: 8px; }
.field.full { grid-column: 1 / -1; }
label { color: var(--text-soft); font-size: 0.9rem; font-weight: 800; }
input, select, textarea {
  width: 100%; min-height: 54px; border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.12); background: rgba(5,15,12,0.72);
  color: var(--text); padding: 0 16px; outline: none;
  transition: border-color 180ms ease, background 180ms ease;
}
textarea { min-height: 148px; padding-top: 16px; resize: vertical; }
input:focus, select:focus, textarea:focus {
  border-color: rgba(50,214,138,0.6); background: rgba(5,15,12,0.92);
}
.form-help {
  color: var(--text-muted); font-size: 0.88rem; line-height: 1.6;
}
.form-status {
  display: none; padding: 14px 16px; border-radius: 16px;
  background: rgba(50,214,138,0.12); border: 1px solid rgba(50,214,138,0.22);
  color: #bff8dd; font-weight: 800; line-height: 1.55;
}
.form-status.is-visible { display: block; }

.split-section { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 32px; align-items: start; margin-top: 42px; }
.content-card.large { padding: clamp(24px, 4vw, 38px); border-radius: 32px; }
.about-card { margin-top: 18px; }
.about-card strong { display: block; font-family: 'Sora', sans-serif; font-size: 1.15rem; }
.about-card p { color: var(--text-soft); margin-top: 10px; line-height: 1.7; }
.stat-card strong { color: var(--yellow); font-size: 1.55rem; }
.contact-mini { display: grid; gap: 12px; margin-top: 18px; }

.footer {
  padding: 56px 0 34px; border-top: 1px solid var(--line); background: rgba(5,15,12,0.52);
}
.footer-grid { display: grid; grid-template-columns: 1.2fr 0.75fr 0.75fr; gap: 34px; }
.footer-brand p { max-width: 480px; margin-top: 16px; color: var(--text-soft); line-height: 1.75; }
.footer-col h3 { font-family: 'Sora', sans-serif; font-size: 1rem; letter-spacing: -0.02em; }
.footer-links { display: grid; gap: 12px; margin-top: 18px; color: var(--text-soft); font-weight: 700; }
.footer-links a:hover { color: var(--text); }
.footer-bottom {
  margin-top: 40px; padding-top: 22px; border-top: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  color: var(--text-muted); font-size: 0.92rem; font-weight: 700;
}
.whatsapp-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 70;
  width: 64px; height: 64px; border-radius: 999px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--green), #67efae); color: #042014;
  font-size: 1.6rem; box-shadow: 0 20px 48px rgba(50,214,138,0.34); font-weight: 900;
}
.whatsapp-float:hover { transform: translateY(-2px); }

@media (max-width: 1120px) {
  .nav-links, .nav-actions .button-secondary { display: none; }
  .menu-button { display: inline-grid; place-items: center; }
  .hero-grid, .contact-card, .page-hero-grid, .split-section { grid-template-columns: 1fr; }
  .showcase { min-height: 620px; }
  .advantages-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .projects-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .portfolio-grid, .faq-grid { grid-template-columns: 1fr; }
  .cta-panel { grid-template-columns: 1fr; }
  .cta-actions { min-width: 0; display: flex; flex-wrap: wrap; }
}
@media (max-width: 860px) {
  .brand-logo { width: 108px; }
  .hero-brand-visual img { width: min(170px, 62%); }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .nav { min-height: 80px; }
  .brand-copy span { display: none; }
  .nav-actions .button-primary { display: none; }
  .hero, .page-hero { padding-top: 62px; }
  .hero-metrics, .services-grid, .solutions-grid, .projects-grid, .footer-grid, .stats-grid, .contact-cards-grid { grid-template-columns: 1fr; }
  .projects-intro { display: grid; align-items: start; }
  .showcase { min-height: auto; display: block; padding-top: 22px; }
  .dashboard-card { margin: 0 auto; }
  .floating-card { position: relative; inset: auto; width: 100%; margin-top: 14px; }
  .advantages-grid, .process-grid, .field-grid { grid-template-columns: 1fr; }
  .solution-card { min-height: auto; }
  .solution-bottom, .footer-bottom { display: grid; justify-content: start; }
}
@media (max-width: 560px) {
  .brand-logo { width: 96px; }
  .footer-logo { width: min(150px, 100%); }
  .brand-mark { width: 46px; height: 46px; }
  .hero h1, .page-hero h1 { font-size: clamp(2.1rem, 11vw, 3.35rem); }
  .hero-actions, .cta-actions { display: grid; grid-template-columns: 1fr; }
  .button { width: 100%; }
  .mini-grid { grid-template-columns: 1fr; }
  .timeline-row { grid-template-columns: auto 1fr; }
  .timeline-row span { grid-column: 2; }
  .service-card, .advantage-card, .process-card, .project-card, .solution-card, .contact-card, .content-card, .faq-card { padding: 20px; }
  .form-grid { padding: 16px; }
  .whatsapp-float { width: 58px; height: 58px; right: 16px; bottom: 16px; }
}

/* =========================================================
   Ajustes V4 — Página Projetos e contenção de textos
   ========================================================= */

.project-summary-stack {
  margin-top: 0;
}

.project-summary-stack .stat-card {
  min-width: 0;
}

.services-grid > *,
.solutions-grid > *,
.advantages-grid > *,
.process-grid > *,
.projects-grid > *,
.portfolio-grid > *,
.stats-grid > *,
.faq-grid > *,
.contact-cards-grid > * {
  min-width: 0;
}

.stat-card strong,
.solution-card h3,
.project-card h3,
.content-card h3,
.highlight-card strong {
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: normal;
  hyphens: auto;
}

.solution-card h3 {
  font-size: clamp(1.48rem, 2.35vw, 2rem);
  line-height: 1.14;
}

.solution-bottom {
  flex-wrap: wrap;
}

.solution-bottom span,
.solution-link {
  min-width: 0;
  max-width: 100%;
  overflow-wrap: anywhere;
}

@media (max-width: 1120px) {
  .project-summary-stack {
    grid-template-columns: 1fr;
  }
}


/* =========================================================
   Ajustes V5 — Página Contato corrigida
   ========================================================= */

.contact-summary-stack {
  margin-top: 0;
}

.contact-summary-stack .highlight-card {
  min-width: 0;
}

.contact-summary-stack .highlight-card span,
.contact-summary-stack .highlight-card strong,
.direct-item span,
.direct-item strong {
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: normal;
  hyphens: auto;
}

@media (max-width: 1120px) {
  .contact-summary-stack {
    grid-template-columns: 1fr;
  }
}
