:root {
  --bg: #050505;
  --bg-soft: #0f0f10;
  --panel: rgba(255, 255, 255, 0.05);
  --text: #f5f5f5;
  --muted: #b6b6b6;
  --line: rgba(255, 255, 255, 0.12);
  --accent: #ff7a00;
  --accent-soft: rgba(255, 122, 0, 0.14);
  --success: #6dd3a0;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  --surface-shadow: var(--shadow);
  --radius: 24px;
  --container: min(1180px, calc(100% - 2rem));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { overflow-x: hidden; }

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255, 122, 0, 0.18), transparent 32%),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 24%),
    linear-gradient(180deg, #060606 0%, #050505 100%);
  color: var(--text);
  line-height: 1.6;
}

body.light-mode {
  --bg: #f5f1ea;
  --bg-soft: #fffaf4;
  --panel: rgba(0, 0, 0, 0.05);
  --text: #151515;
  --muted: #444444;
  --line: rgba(0, 0, 0, 0.12);
  --accent-soft: rgba(255, 122, 0, 0.12);
  --shadow: 0 20px 60px rgba(34, 24, 13, 0.12);
  --surface-shadow: var(--shadow);
  background:
    radial-gradient(circle at top left, rgba(255, 122, 0, 0.14), transparent 30%),
    radial-gradient(circle at top right, rgba(0, 0, 0, 0.06), transparent 20%),
    linear-gradient(180deg, #fffaf4 0%, #f5f1ea 100%);
  color: var(--text);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, .button {
  font: inherit;
  cursor: pointer;
  border: 0;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
button:hover, .button:hover { transform: translateY(-2px); }
main { overflow: clip; }
.container { width: var(--container); margin: 0 auto; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.5rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  font-size: 0.86rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(255, 122, 0, 0.65);
}

.section { padding: 5rem 0; }
.section-head { max-width: 680px; margin-bottom: 2rem; }

.breadcrumbs {
  margin: 0 0 1.25rem;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.breadcrumbs li {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.breadcrumbs li:not(:last-child)::after {
  content: "/";
  color: rgba(255, 255, 255, 0.3);
}

body.light-mode .breadcrumbs li:not(:last-child)::after {
  color: rgba(0, 0, 0, 0.25);
}

.section-head h1,
.section-head h2 {
  margin: 1rem 0 0.8rem;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.section-head p { margin: 0; color: var(--muted); font-size: 1.02rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(5, 5, 5, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

body.light-mode .site-header {
  background: rgba(5, 5, 5, 0.9);
  border-bottom-color: rgba(255, 255, 255, 0.06);
}

body.light-mode .site-header .brand-copy,
body.light-mode .site-header .nav-links a:hover,
body.light-mode .site-header .nav-links a.active,
body.light-mode .site-header .nav-actions,
body.light-mode .site-header .menu-toggle {
  color: #f5f5f5;
}

body.light-mode .site-header .brand-copy small,
body.light-mode .site-header .nav-links a {
  color: rgba(255, 255, 255, 0.72);
}

body.light-mode .site-header .menu-toggle,
body.light-mode .site-header .button-secondary {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
}

body.light-mode .site-header .button-secondary {
  color: #f5f5f5;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 80px;
  flex-wrap: nowrap;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  flex: 0 0 auto;
}

.brand-mark {
  width: 4.2rem;
  height: 2.8rem;
  display: inline-block;
  flex: 0 0 auto;
  background: url("dgs-logo-transparent.png") center / contain no-repeat;
  color: transparent;
  font-size: 0;
  box-shadow: none;
}

.brand-copy small {
  display: block;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.nav-links, .nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-actions {
  flex-wrap: nowrap;
  justify-content: flex-end;
  flex: 0 0 auto;
}

.nav-links {
  flex: 1 1 auto;
  justify-content: center;
  gap: 0.9rem;
  min-width: 0;
}

.nav-links a {
  color: var(--muted);
  font-weight: 600;
  white-space: nowrap;
  font-size: 0.98rem;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }

.brand-copy {
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 14px;
  background: var(--panel);
  color: var(--text);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.78rem 1.18rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.96rem;
  white-space: nowrap;
}

.button-primary {
  background: linear-gradient(135deg, #ff8d28, #ff6a00);
  color: #050505;
  box-shadow: var(--surface-shadow);
}

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.hero { padding: 3.6rem 0 2rem; }
.hero-grid, .dashboard, .dashboard-top, .dashboard-grid, .grid-2, .grid-3, .grid-4, .clients, .contact-grid, .creative-preview, .split-panel, .footer-grid, .article-layout {
  display: grid;
  gap: 1.2rem;
}

.hero-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  align-items: center;
}

.hero-copy h1 {
  margin: 1rem 0;
  font-size: clamp(2.55rem, 4.2vw, 3.95rem);
  line-height: 0.99;
  letter-spacing: -0.07em;
  max-width: 8.5ch;
  width: 100%;
}

.hero-copy {
  max-width: 560px;
  padding-left: 1rem;
}

.hero-copy p { max-width: 560px; color: var(--muted); font-size: 0.98rem; }
.hero-actions, .cta-actions, .results, .pill-row, .case-metrics, .footer-links, .article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero-mini-proof {
  display: inline-block;
  margin-bottom: 0.7rem;
  color: #ffd0aa;
  font-size: 0.88rem;
  font-weight: 600;
}

.hero-premium {
  padding-top: 4.6rem;
  min-height: calc(100vh - 80px);
  background:
    radial-gradient(circle at left top, rgba(255, 122, 0, 0.22), transparent 32%),
    linear-gradient(90deg, rgba(57, 28, 11, 0.82), rgba(8, 8, 8, 0.24) 55%, rgba(255, 255, 255, 0.02) 100%);
}

.hero-intro-copy {
  max-width: 640px;
}

.hero-premium-grid {
  gap: 1.8rem;
}

.hero-inline-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.35rem;
}

.hero-inline-stats div {
  padding-top: 0.8rem;
  border-top: 1px solid var(--line);
}

.hero-inline-stats strong {
  display: block;
  font-size: 1.4rem;
  letter-spacing: -0.05em;
}

.hero-inline-stats span {
  color: var(--muted);
  font-size: 0.84rem;
}

.hero-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(260px, 0.92fr);
  gap: 0.85rem;
  align-items: stretch;
  max-width: 650px;
  margin-left: auto;
}

.hero-showcase-side {
  display: grid;
  gap: 0.85rem;
}

.hero-showcase-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  padding: 1.1rem;
  box-shadow: var(--surface-shadow);
}

body.light-mode .hero-showcase-card,
body.light-mode .trust-strip,
body.light-mode .service-line,
body.light-mode .results-banner {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 248, 240, 0.92));
  border-color: rgba(0, 0, 0, 0.08);
}

.hero-case-main {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero-bars {
  display: flex;
  align-items: end;
  gap: 0.65rem;
  min-height: 125px;
  margin-top: 1rem;
}

.hero-bars span {
  display: block;
  flex: 1;
  border-radius: 999px 999px 14px 14px;
  background: linear-gradient(180deg, rgba(255, 122, 0, 1), rgba(255, 122, 0, 0.12));
}

.hero-mini-list {
  padding-left: 1.1rem;
  margin: 1rem 0 0;
}

.hero-showcase-card h3 {
  margin: 0.8rem 0 0.65rem;
  font-size: 0.94rem;
  line-height: 1.35;
}

.hero-showcase-card p,
.hero-showcase-card li {
  font-size: 0.88rem;
}

.hero-showcase-card strong {
  font-size: 1.9rem;
  line-height: 1;
}

.hero-actions {
  gap: 0.65rem;
}

.hero-actions .button {
  min-height: 44px;
  padding-top: 0.72rem;
  padding-bottom: 0.72rem;
}

.hero-mini-list li {
  margin-bottom: 0.55rem;
}

.trust-strip {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1.5rem;
  padding: 1.8rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  box-shadow: var(--surface-shadow);
}

.trust-copy h2 {
  margin: 0.9rem 0 0;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.trust-item {
  padding: 1rem 1.1rem;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.trust-item strong {
  display: block;
  margin-bottom: 0.35rem;
}

.trust-item span {
  color: var(--muted);
  font-size: 0.94rem;
}

.premium-grid .value-card {
  min-height: 100%;
}

.split-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 1.5rem;
  align-items: start;
}

.service-stack {
  display: grid;
  gap: 1rem;
}

.service-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.3rem 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03));
  box-shadow: var(--surface-shadow);
}

.service-line h3 {
  margin: 0 0 0.3rem;
}

.service-line p {
  margin: 0;
  color: var(--muted);
}

.service-line a {
  color: #ffb06b;
  font-weight: 700;
  white-space: nowrap;
}

.results-banner {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 1.3rem;
  padding: 1.8rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  box-shadow: var(--surface-shadow);
}

.results-copy h2 {
  margin: 0.9rem 0 0.6rem;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.results-copy p {
  margin: 0;
  color: var(--muted);
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.founder-spotlight {
  display: grid;
}

.home-cta-final {
  text-align: center;
}

.home-cta-final p {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.hero-proof { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; margin-top: 2rem; }

.card, .metric-card, .service-card, .pricing-card, .testimonial, .portfolio-card, .blog-card, .contact-card, .timeline-card, .value-card {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.035));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--surface-shadow);
}

body.light-mode .card,
body.light-mode .metric-card,
body.light-mode .service-card,
body.light-mode .pricing-card,
body.light-mode .testimonial,
body.light-mode .portfolio-card,
body.light-mode .blog-card,
body.light-mode .contact-card,
body.light-mode .timeline-card,
body.light-mode .value-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 248, 240, 0.92));
  border-color: rgba(0, 0, 0, 0.08);
}

.metric-card, .service-card, .pricing-card, .testimonial, .portfolio-card, .blog-card, .contact-card, .timeline-card, .value-card { padding: 1.6rem; }
.hero-visual { padding: 1.4rem; overflow: hidden; }
.hero-visual.media-visual {
  min-height: 520px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.45)),
    radial-gradient(circle at top, rgba(255, 122, 0, 0.28), transparent 35%);
}
.dashboard-top { grid-template-columns: 1.2fr 0.8fr; }
.dashboard-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.clients { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.split-panel { grid-template-columns: 1.2fr 0.8fr; }
.contact-grid { grid-template-columns: 1fr 1fr; }
.creative-preview { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.footer-grid { grid-template-columns: 1.1fr 0.9fr; align-items: start; }
.article-layout { grid-template-columns: minmax(0, 1fr) 300px; }

.panel {
  padding: 1.2rem;
  border-radius: 22px;
  background: rgba(0, 0, 0, 0.26);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

body.light-mode .panel {
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(0, 0, 0, 0.08);
}

.chart-bars {
  display: flex;
  align-items: end;
  gap: 0.6rem;
  min-height: 160px;
  margin-top: 1rem;
}

.chart-bars span {
  display: block;
  flex: 1;
  border-radius: 999px 999px 12px 12px;
  background: linear-gradient(180deg, rgba(255, 122, 0, 1), rgba(255, 122, 0, 0.18));
}

.pill { padding: 0.55rem 0.8rem; border-radius: 999px; background: var(--accent-soft); color: #ffd1aa; font-size: 0.92rem; }
body.light-mode .pill { color: #9a4200; }
.client-chip {
  padding: 1rem 1.2rem;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 18px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.02);
  font-weight: 700;
  letter-spacing: 0.05em;
}

.metric-card strong, .stat strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.05em;
}

.metric-card span, .stat span, .service-card p, .pricing-card p, .testimonial p, .portfolio-card p, .blog-card p, .contact-card p, .timeline-card p, .value-card p, li, td {
  color: var(--muted);
}

.service-card h3, .pricing-card h3, .portfolio-card h3, .blog-card h3, .testimonial strong, .contact-card h3, .timeline-card h3, .value-card h3 { margin-top: 0; }
.service-list, .pricing-list, .feature-list, .article-body ul { padding-left: 1.1rem; }
.service-list li, .pricing-list li, .feature-list li, .article-body ul li { margin-bottom: 0.6rem; }
.result-badge, .tag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 700;
}

.result-badge {
  background: rgba(109, 211, 160, 0.12);
  color: #c8f1dc;
  border: 1px solid rgba(109, 211, 160, 0.2);
}

.tag { background: var(--accent-soft); color: #ffd1aa; }
body.light-mode .tag { color: #9a4200; }
.pricing-card.highlight { border-color: rgba(255, 122, 0, 0.42); transform: translateY(-4px); }
.pricing-card .price { font-size: 3rem; font-weight: 800; letter-spacing: -0.06em; }
.pricing-card .price small { font-size: 1rem; color: var(--muted); }

.comparison {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  display: block;
  overflow-x: auto;
  white-space: nowrap;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

body.light-mode .comparison {
  background: rgba(255, 255, 255, 0.8);
}

body.light-mode .comparison th,
body.light-mode .comparison td,
body.light-mode .case-metrics .stat span {
  color: #3f3f3f;
}

.comparison th, .comparison td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.comparison th { color: var(--text); }
.case-metrics .stat {
  flex: 1;
  min-width: 130px;
  padding: 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
}

.creative-card {
  min-height: 150px;
  padding: 1rem;
  border-radius: 20px;
  background: linear-gradient(165deg, rgba(255, 122, 0, 0.95), rgba(255, 122, 0, 0.1)), rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: end;
  font-weight: 700;
}

.cta-panel { padding: 2rem; overflow: hidden; }
.cta-panel::after {
  content: "";
  position: absolute;
  inset: auto -60px -80px auto;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(255, 122, 0, 0.35), transparent 68%);
}

.contact-form, .field { display: grid; gap: 0.8rem; }
.field label { font-weight: 600; }
.field { min-width: 0; }
.field input, .field textarea, .field select {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font: inherit;
}

body.light-mode .field input,
body.light-mode .field textarea,
body.light-mode .field select {
  background: rgba(255, 255, 255, 0.9);
}

body.light-mode .field input,
body.light-mode .field textarea,
body.light-mode .field select {
  color: #151515;
}

.field textarea { min-height: 150px; resize: vertical; }
.site-footer { padding: 2rem 0 7rem; border-top: 1px solid rgba(255, 255, 255, 0.06); }
.footer-links { color: var(--muted); }
.floating-whatsapp, .mobile-bar { position: fixed; z-index: 45; }

body.light-mode .site-footer {
  background: #050505;
  border-top-color: rgba(255, 255, 255, 0.06);
}

body.light-mode .site-footer .brand-copy,
body.light-mode .site-footer .footer-links a {
  color: #f5f5f5;
}

body.light-mode .site-footer .brand-copy small {
  color: rgba(255, 255, 255, 0.72);
}

.floating-whatsapp {
  right: 1rem;
  bottom: 5.5rem;
  width: 3.8rem;
  height: 3.8rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #25d366, #0da44d);
  color: white;
  box-shadow: var(--surface-shadow);
  font-size: 1rem;
}

.floating-whatsapp svg {
  width: 1.5rem;
  height: 1.5rem;
  fill: currentColor;
}

.shadow-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 2.65rem;
  padding: 0.56rem 0.82rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(10, 10, 10, 0.92);
  color: var(--text);
  box-shadow: var(--surface-shadow);
  flex: 0 0 auto;
}

body.light-mode .shadow-toggle,
body.light-mode .mobile-bar {
  background: rgba(255, 251, 245, 0.96);
  border-color: rgba(0, 0, 0, 0.08);
}

body.light-mode .image-overlay {
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(0, 0, 0, 0.08);
}

.shadow-toggle strong {
  font-size: 0.88rem;
  font-weight: 700;
}

.theme-toggle-icon {
  display: inline-grid;
  place-items: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #ffd89e;
  font-size: 0.9rem;
  line-height: 1;
}

body.light-mode .theme-toggle-icon {
  background: rgba(255, 255, 255, 0.12);
  color: #ffcc73;
}

.mobile-bar {
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  width: min(640px, calc(100% - 1rem));
  padding: 0.75rem;
  border-radius: 999px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  background: rgba(10, 10, 10, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--surface-shadow);
}

.mobile-bar span { font-weight: 600; }
.founder-card {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 1.5rem;
  align-items: center;
}

.founder-photo {
  min-height: 260px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 122, 0, 0.2), rgba(255, 122, 0, 0)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  overflow: hidden;
}

.founder-photo strong {
  font-size: 2.2rem;
  letter-spacing: -0.05em;
}

.founder-photo img,
.agency-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.agency-image {
  overflow: hidden;
  min-height: 320px;
}

.agency-image.tall {
  min-height: 420px;
}

.image-overlay {
  position: absolute;
  inset: auto 1rem 1rem 1rem;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(8, 8, 8, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.image-overlay strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.image-stack {
  display: grid;
  gap: 1rem;
}

.mini-visual {
  min-height: 180px;
  padding: 1rem;
  border-radius: 22px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.4)),
    linear-gradient(135deg, rgba(255, 122, 0, 0.22), rgba(255, 255, 255, 0.06));
}

.mini-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 16px 40px rgba(0, 0, 0, 0.35));
}

.contact-inline {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.wa-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.social-link {
  color: #ffb06b;
  font-weight: 700;
}

.wa-link svg {
  width: 1.2rem;
  height: 1.2rem;
  fill: #25d366;
}

.founder-meta p {
  margin-top: 0;
}

.founder-quote {
  padding: 1rem 1.1rem;
  border-left: 3px solid var(--accent);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 0 18px 18px 0;
  color: #e9e9e9;
}

body.light-mode .founder-quote {
  background: rgba(255, 122, 0, 0.08);
  color: #2d2d2d;
}

.article-hero { padding: 4rem 0 2rem; }
.article-meta { color: var(--muted); font-size: 0.92rem; }
.article-body { max-width: 820px; }
.article-body h2, .article-body h3 { margin-top: 2rem; line-height: 1.15; letter-spacing: -0.04em; }
.article-body p { color: #dedede; }
body.light-mode .article-body p { color: #303030; }

body.light-mode .result-badge {
  color: #1f6b46;
  border-color: rgba(31, 107, 70, 0.18);
  background: rgba(109, 211, 160, 0.16);
}
.article-sidebar { position: sticky; top: 100px; align-self: start; }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .grid-4, .grid-3, .clients, .dashboard-grid, .creative-preview, .contact-grid, .article-layout, .split-panel, .footer-grid { grid-template-columns: 1fr; }
  .grid-2, .dashboard-top, .hero-proof, .hero-grid { grid-template-columns: 1fr; }
  .hero-showcase, .trust-strip, .split-feature, .results-banner, .results-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .founder-card { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
  .hero-premium { min-height: auto; padding-top: 3.4rem; }
  .hero-copy { padding-left: 0; }
  .nav-links, .nav-actions .button-secondary, .nav-actions .button-primary { display: none; }
  .menu-toggle { display: grid; }
  .nav { position: relative; }
  .nav.is-open .nav-links {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + 0.6rem);
    display: grid;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(10, 10, 10, 0.98);
    border: 1px solid var(--line);
    border-radius: 20px;
    max-height: calc(100vh - 6rem);
    overflow-y: auto;
  }
  .nav.is-open .nav-links a { padding: 0.25rem 0; }
  .mobile-bar { display: flex; }
  .floating-whatsapp {
    right: 1rem;
    bottom: 10.25rem;
  }
  .site-footer { padding-bottom: 8rem; }
}

@media (max-width: 640px) {
  :root { --container: min(1180px, calc(100% - 1.25rem)); }
  .section { padding: 4rem 0; }
  .hero { padding-top: 2.25rem; }
  .hero-premium { padding-top: 2.4rem; }
  .hero-copy h1 { font-size: 2.8rem; max-width: none; }
  .hero-copy p, .section-head p { font-size: 0.98rem; }
  .hero-inline-stats,
  .trust-grid,
  .results-grid { grid-template-columns: 1fr; }
  .hero-showcase-card,
  .trust-strip,
  .results-banner,
  .service-line { padding: 1.2rem; }
  .service-line { flex-direction: column; align-items: flex-start; }
  .hero-case-main { min-height: auto; }
  .hero-bars { min-height: 160px; }
  .brand { gap: 0.7rem; }
  .brand-copy { font-size: 0.95rem; }
  .brand-copy small { font-size: 0.74rem; }
  .brand-mark { width: 3.6rem; height: 2.4rem; }
  .nav { min-height: 72px; }
  .nav-actions { gap: 0.55rem; }
  .button, .hero-actions .button, .cta-actions .button { width: 100%; min-height: 48px; }
  .hero-actions, .cta-actions { display: grid; grid-template-columns: 1fr; }
  .metric-card, .service-card, .pricing-card, .testimonial, .portfolio-card, .blog-card, .contact-card, .timeline-card, .value-card { padding: 1.25rem; }
  .founder-photo { min-height: 220px; }
  .agency-image { min-height: 260px; }
  .hero-visual.media-visual { min-height: 360px; }
  .pricing-card .price { font-size: 2.35rem; }
  .comparison th, .comparison td { padding: 0.8rem; font-size: 0.92rem; }
  .comparison { font-size: 0.92rem; }
  .mobile-bar {
    width: calc(100% - 0.75rem);
    border-radius: 24px;
    padding: 0.7rem;
    align-items: stretch;
  }
  .mobile-bar span { font-size: 0.92rem; align-self: center; }
  .mobile-bar .button { width: auto; min-width: 140px; }
  .shadow-toggle strong { display: none; }
  .shadow-toggle { min-width: 2.65rem; padding: 0.5rem; }
  .floating-whatsapp {
    width: 3.35rem;
    height: 3.35rem;
    bottom: 10rem;
  }
}
