:root {
  --bg: #F2EFE9;
  --surface: #E9E5DC;
  --surface-2: #E0DCD3;
  --text: #262626;
  --text-muted: #7A7A78;
  --accent: #262626;
  --accent-dark: #111111;
  --border: rgba(38, 38, 38, 0.12);
  --border-strong: rgba(38, 38, 38, 0.26);
  --radius: 12px;
  --max-width: 1160px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

/* ── LAYOUT ── */

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 100px 0;
}

/* ── NAV ── */

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  border-bottom: 1px solid transparent;
  transition: background 0.35s, border-color 0.35s;
}

/* Scrolled: add backdrop (inner pages + homepage off-hero) */
nav.scrolled {
  background: rgba(242, 239, 233, 0.96);
  border-bottom-color: var(--border);
  backdrop-filter: blur(12px);
}

/* Homepage only: override to cream while on the dark hero */
nav.on-dark .logo-mark,
nav.on-dark .logo-text {
  color: var(--bg);
}

nav.on-dark .logo-text em {
  color: rgba(242, 239, 233, 0.55);
}

nav.on-dark .nav-links a {
  color: rgba(242, 239, 233, 0.65);
}

nav.on-dark .nav-links a:hover {
  color: var(--bg);
}

nav.on-dark .nav-cta {
  background: rgba(242, 239, 233, 0.12) !important;
  color: var(--bg) !important;
  border: 1px solid rgba(242, 239, 233, 0.25);
}

nav.on-dark .nav-cta:hover {
  background: rgba(242, 239, 233, 0.22) !important;
}

nav.on-dark .nav-toggle span {
  background: var(--bg);
}

nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ── LOGO ── */

.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-mark {
  height: 46px;
  width: auto;
  color: var(--text);
  transition: color 0.35s;
}


.logo-text {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1.3;
  font-family: 'Inter', sans-serif;
  transition: color 0.35s;
}

.logo-text em {
  display: block;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 2.5px;
  color: var(--text-muted);
  transition: color 0.35s;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-cta {
  background: var(--text) !important;
  color: var(--bg) !important;
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 600 !important;
  transition: background 0.2s !important;
}

.nav-cta:hover {
  background: var(--accent-dark) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: all 0.3s;
}

/* ── LOGO WATERMARK (light bg version) ── */

.logo-watermark-light {
  position: absolute;
  right: -2%;
  top: 50%;
  transform: translateY(-50%);
  height: 80%;
  max-height: 520px;
  pointer-events: none;
  z-index: 0;
}

.logo-watermark-light img {
  height: 100%;
  width: auto;
  display: block;
  opacity: 0.08;
  mix-blend-mode: multiply;
}

/* Sections that host the watermark need relative positioning */
.has-watermark {
  position: relative;
  overflow: hidden;
}

.has-watermark > .container {
  position: relative;
  z-index: 1;
}

/* ── BTN PRIMARY / GHOST (light pages — about, services, etc.) ── */

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--text);
  color: var(--bg);
  font-size: 15px;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 10px;
  transition: background 0.2s, transform 0.2s;
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s;
}

.btn-ghost:hover {
  color: var(--text);
}

/* ── HERO ── */

.hero {
  min-height: 100vh;
  background: var(--text);
  display: flex;
  align-items: center;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

/* Large N logo watermark — right side visual */
.hero-logo-bg {
  position: absolute;
  right: -2%;
  top: 50%;
  transform: translateY(-50%);
  height: 90vh;
  pointer-events: none;
  z-index: 0;
}

.hero-logo-bg img {
  height: 100%;
  width: auto;
  display: block;
  opacity: 0.14;
  mix-blend-mode: screen;
}

/* Typewriter terminal window */
.hero-terminal {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-45%);
  width: 360px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(242, 239, 233, 0.1);
  border-radius: 12px;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
}

.terminal-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(242, 239, 233, 0.08);
}

.terminal-dots {
  display: flex;
  gap: 5px;
  flex-shrink: 0;
}

.terminal-dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(242, 239, 233, 0.18);
}

.terminal-title {
  font-family: 'Courier New', monospace;
  font-size: 11px;
  color: rgba(242, 239, 233, 0.4);
  margin-left: 4px;
}

.terminal-body {
  padding: 16px 0;
  height: 320px;
  overflow: hidden;
  font-family: 'Courier New', monospace;
  font-size: 11.5px;
  line-height: 1.7;
}

.tline {
  display: flex;
  gap: 0;
  white-space: pre;
}

.tnum {
  color: rgba(242, 239, 233, 0.18);
  user-select: none;
  min-width: 40px;
  padding: 0 12px 0 16px;
  text-align: right;
  flex-shrink: 0;
}

.tcode {
  color: rgba(242, 239, 233, 0.75);
  flex: 1;
}

/* Blinking cursor — only on the last (currently typing) line */
.terminal-body .tline:last-child .tcode::after {
  content: '|';
  color: rgba(242, 239, 233, 0.9);
  animation: blink 1s step-end infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* Hero content */
.hero-content {
  max-width: 600px;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(242, 239, 233, 0.08);
  border: 1px solid rgba(242, 239, 233, 0.18);
  color: rgba(242, 239, 233, 0.65);
  font-size: 11px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 36px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(40px, 5.5vw, 68px);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -2px;
  margin-bottom: 28px;
  color: var(--bg);
}

.hero h1 .accent {
  background: var(--bg);
  color: var(--text);
  padding: 2px 14px 6px;
  border-radius: 8px;
  display: inline;
}

.hero p {
  font-size: 17px;
  color: rgba(242, 239, 233, 0.6);
  max-width: 500px;
  margin-bottom: 44px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Hero CTAs — inverted for dark bg */
.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg);
  color: var(--text);
  font-size: 15px;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 10px;
  transition: opacity 0.2s, transform 0.2s;
}

.btn-hero-primary:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.btn-hero-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(242, 239, 233, 0.55);
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s;
}

.btn-hero-ghost:hover {
  color: var(--bg);
}

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 72px;
  padding-top: 48px;
  border-top: 1px solid rgba(242, 239, 233, 0.1);
}

.stat-number {
  font-size: 36px;
  font-weight: 900;
  color: var(--bg);
  letter-spacing: -1px;
}

.stat-label {
  font-size: 13px;
  color: rgba(242, 239, 233, 0.45);
  margin-top: 4px;
}

/* ── SECTION HEADERS ── */

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--text);
}

.section-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.7;
}

/* ── SERVICES (homepage grid) ── */

#services {
  background: var(--surface);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 64px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  overflow: hidden;
}

.service-card {
  background: var(--surface);
  padding: 40px 36px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background 0.2s, box-shadow 0.2s;
}

.service-card:hover {
  background: var(--surface-2);
  box-shadow: inset 0 0 0 1px var(--border-strong);
}

.service-icon {
  width: 48px;
  height: 48px;
  background: rgba(51, 50, 50, 0.07);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  margin-bottom: 24px;
  overflow: hidden;
}

.service-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: block;
}

.service-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}

.service-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── WHY US — 3-column horizontal, no photo ── */

#why {
  background: var(--bg);
}

.why-props {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 56px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  overflow: hidden;
}

.why-prop {
  background: var(--surface);
  padding: 44px 36px;
  border-right: 1px solid var(--border);
  transition: background 0.2s;
}

.why-prop:last-child {
  border-right: none;
}

.why-prop:hover {
  background: var(--surface-2);
}

.why-number {
  font-size: 48px;
  font-weight: 900;
  color: rgba(38, 38, 38, 0.07);
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 20px;
}

.why-prop h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}

.why-prop p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── PROCESS ── */

#process {
  background: var(--surface);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 64px;
}

.process-step {
  background: var(--bg);
  padding: 36px 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.step-number {
  font-size: 48px;
  font-weight: 900;
  color: rgba(51, 50, 50, 0.08);
  letter-spacing: -2px;
  margin-bottom: 20px;
  line-height: 1;
}

.process-step h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}

.process-step p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── PRICING ── */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 64px;
}

.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px 36px;
  position: relative;
  box-shadow: 0 2px 12px rgba(38, 38, 38, 0.06);
  transition: box-shadow 0.2s, transform 0.2s;
}

.pricing-card:hover {
  box-shadow: 0 8px 32px rgba(38, 38, 38, 0.1);
  transform: translateY(-2px);
}

.pricing-card.featured {
  border-color: var(--text);
  background: var(--bg);
}

.featured-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--text);
  color: var(--bg);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}

.price {
  font-size: 40px;
  font-weight: 900;
  letter-spacing: -2px;
  margin: 20px 0 4px;
  color: var(--text);
}

.price-note {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
}

.pricing-features li::before {
  content: '✓';
  color: var(--text);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.btn-outline {
  display: block;
  text-align: center;
  border: 1px solid var(--border-strong);
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  padding: 13px 24px;
  border-radius: 8px;
  transition: border-color 0.2s, background 0.2s;
}

.btn-outline:hover {
  border-color: var(--text);
  background: rgba(51, 50, 50, 0.05);
}

.pricing-card.featured .btn-outline {
  background: var(--text);
  border-color: var(--text);
  color: var(--bg);
}

.pricing-card.featured .btn-outline:hover {
  background: var(--accent-dark);
}

/* ── CTA BANNER ── */

.cta-banner {
  background: var(--text);
  border-radius: 20px;
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 16px;
  color: var(--bg);
}

.cta-banner p {
  font-size: 17px;
  color: rgba(232, 230, 219, 0.7);
  margin-bottom: 44px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-cta-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg);
  color: var(--text);
  font-size: 15px;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 10px;
  transition: opacity 0.2s;
}

.btn-cta-light:hover {
  opacity: 0.9;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232, 230, 219, 0.12);
  color: var(--bg);
  font-size: 15px;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: 10px;
  border: 1px solid rgba(232, 230, 219, 0.25);
  transition: background 0.2s;
}

.btn-whatsapp:hover {
  background: rgba(232, 230, 219, 0.2);
}

/* ── FOOTER ── */

footer {
  background: var(--text);
  border-top: 1px solid var(--border);
  padding: 60px 0 32px;
}

footer .logo-text,
footer .logo-text em {
  color: var(--bg);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: 14px;
  color: rgba(232, 230, 219, 0.6);
  margin-top: 16px;
  max-width: 280px;
  line-height: 1.7;
}

.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  color: rgba(232, 230, 219, 0.5);
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul a {
  font-size: 14px;
  color: rgba(232, 230, 219, 0.6);
  transition: color 0.2s;
}

.footer-col ul a:hover {
  color: var(--bg);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid rgba(232, 230, 219, 0.12);
  font-size: 13px;
  color: rgba(232, 230, 219, 0.4);
}

/* ── PAGE HERO (inner pages) ── */

.page-hero {
  padding: 160px 0 100px;
  background: var(--bg);
}

.page-hero h1 {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 900;
  letter-spacing: -2px;
  margin-bottom: 20px;
  color: var(--text);
}

.page-hero p {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
}

/* ── ABOUT PAGE ── */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-content h2 {
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 20px;
  color: var(--text);
}

.about-content p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-photo {
  position: sticky;
  top: 100px;
}

/* ── SERVICES PAGE TABS ── */

.free-audit-bar {
  background: var(--text);
  border-radius: 14px;
  padding: 28px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 64px;
  flex-wrap: wrap;
}

.free-audit-bar-text strong {
  display: block;
  font-size: 17px;
  font-weight: 800;
  color: var(--bg);
  margin-bottom: 4px;
}

.free-audit-bar-text span {
  font-size: 14px;
  color: rgba(232, 230, 219, 0.65);
}

.btn-audit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg);
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
  padding: 13px 26px;
  border-radius: 8px;
  white-space: nowrap;
  transition: opacity 0.2s;
  flex-shrink: 0;
}

.btn-audit:hover {
  opacity: 0.9;
}

.service-tabs-nav {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--border);
  margin-bottom: 64px;
}

.tab-btn {
  padding: 16px 32px;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: all 0.2s;
  letter-spacing: -0.2px;
}

.tab-btn:hover {
  color: var(--text);
}

.tab-btn.active {
  color: var(--text);
  border-bottom-color: var(--text);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}

.service-detail:last-child {
  border-bottom: none;
}

.service-detail h2 {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  color: var(--text);
}

.service-detail p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
}

.service-detail ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}

.service-detail ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
}

.service-detail ul li::before {
  content: '→';
  color: var(--text);
  font-weight: 700;
  flex-shrink: 0;
}

.service-price-tag {
  display: inline-block;
  background: rgba(51, 50, 50, 0.08);
  border: 1px solid var(--border-strong);
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 8px;
}

.service-visual {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  min-height: 280px;
}

/* ── COMING SOON ── */

.coming-soon-pill {
  display: inline-block;
  background: var(--text);
  color: var(--bg);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 100px;
  margin-left: 8px;
  vertical-align: middle;
  position: relative;
  top: -1px;
}

.coming-soon-panel {
  padding: 80px 0;
  text-align: center;
}

.coming-soon-panel h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.coming-soon-panel p {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 440px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.coming-soon-badge-large {
  display: inline-block;
  background: rgba(38, 38, 38, 0.07);
  border: 1px solid var(--border-strong);
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: 100px;
  margin-bottom: 40px;
}

/* ── BROWSER MOCKUP ── */

.browser-mockup {
  background: var(--bg);
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(38, 38, 38, 0.1), 0 2px 8px rgba(38, 38, 38, 0.06);
  width: 100%;
}

.browser-bar {
  background: var(--surface);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--border);
}

.browser-dots {
  display: flex;
  gap: 5px;
  flex-shrink: 0;
}

.browser-dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--border-strong);
}

.browser-dots span:first-child  { background: rgba(38,38,38,0.2); }
.browser-dots span:nth-child(2) { background: rgba(38,38,38,0.15); }
.browser-dots span:last-child   { background: rgba(38,38,38,0.1); }

.browser-addr {
  flex: 1;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 4px 12px;
  font-size: 11px;
  color: var(--text-muted);
  font-family: 'Courier New', monospace;
}

.browser-body {
  padding: 16px;
  background: var(--bg);
}

.wire-nav-bar {
  height: 28px;
  background: var(--surface);
  border-radius: 5px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  padding: 0 10px;
  gap: 8px;
}

.wire-nav-bar::before {
  content: '';
  width: 40px;
  height: 8px;
  background: var(--border-strong);
  border-radius: 2px;
}

.wire-nav-bar::after {
  content: '';
  width: 80px;
  height: 6px;
  background: var(--border);
  border-radius: 2px;
  margin-left: auto;
}

.wire-hero-block {
  height: 90px;
  background: var(--surface-2);
  border-radius: 7px;
  margin-bottom: 14px;
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.wire-text-lg {
  height: 12px;
  width: 60%;
  background: var(--border-strong);
  border-radius: 2px;
}

.wire-text-sm {
  height: 8px;
  width: 42%;
  background: var(--border);
  border-radius: 2px;
}

.wire-cta-btn {
  height: 18px;
  width: 80px;
  background: var(--text);
  border-radius: 4px;
  margin-top: 2px;
}

.wire-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
}

.wire-block {
  height: 54px;
  background: var(--surface);
  border-radius: 5px;
  border: 1px solid var(--border);
}

/* ── DEVICES MOCKUP ── */

.devices-mockup {
  position: relative;
  width: 100%;
  min-height: 260px;
  display: flex;
  align-items: flex-end;
  gap: 16px;
}

.device-laptop { flex: 1; }

.laptop-screen {
  background: var(--surface-2);
  border: 1px solid var(--border-strong);
  border-radius: 8px 8px 0 0;
  padding: 8px;
  box-shadow: 0 8px 32px rgba(38, 38, 38, 0.1);
}

.laptop-screen-inner {
  background: var(--bg);
  border-radius: 5px;
  overflow: hidden;
}

.laptop-screen-bar {
  height: 14px;
  background: var(--surface);
  display: flex;
  align-items: center;
  padding: 0 6px;
  gap: 3px;
}

.laptop-screen-bar span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--border-strong);
}

.laptop-screen-content {
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.ls-hero {
  height: 36px;
  background: var(--surface-2);
  border-radius: 3px;
}

.ls-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4px;
}

.ls-card {
  height: 28px;
  background: var(--surface);
  border-radius: 3px;
  border: 1px solid var(--border);
}

.laptop-base {
  height: 8px;
  background: var(--surface);
  border-radius: 0 0 4px 4px;
  border: 1px solid var(--border-strong);
  border-top: none;
}

.laptop-foot {
  height: 4px;
  background: var(--surface-2);
  border-radius: 0 0 8px 8px;
  border: 1px solid var(--border);
  border-top: none;
  margin-top: 1px;
  width: 60%;
  margin-left: auto;
  margin-right: auto;
}

.device-phone {
  width: 72px;
  flex-shrink: 0;
  margin-bottom: 13px;
}

.phone-shell {
  background: var(--surface-2);
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  padding: 6px;
  box-shadow: 0 8px 24px rgba(38, 38, 38, 0.1);
}

.phone-notch {
  width: 20px;
  height: 4px;
  background: var(--border-strong);
  border-radius: 2px;
  margin: 0 auto 5px;
}

.phone-screen-inner {
  background: var(--bg);
  border-radius: 6px;
  overflow: hidden;
  padding: 5px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.ph-nav  { height: 8px;  background: var(--surface);   border-radius: 2px; }
.ph-hero { height: 24px; background: var(--surface-2);  border-radius: 2px; }
.ph-card  { height: 16px; background: var(--surface); border-radius: 2px; border: 1px solid var(--border); }
.ph-card2 { height: 16px; background: var(--surface); border-radius: 2px; border: 1px solid var(--border); }

/* ── CONTACT PAGE ── */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
  margin-top: 80px;
}

.contact-info h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--text);
}

.contact-info p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 40px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 12px;
  transition: border-color 0.2s;
}

.contact-method:hover {
  border-color: var(--border-strong);
}

.contact-method-icon {
  width: 42px;
  height: 42px;
  background: rgba(51, 50, 50, 0.07);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-method-text strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 2px;
  color: var(--text);
}

.contact-method-text span {
  font-size: 13px;
  color: var(--text-muted);
}

.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 48px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 15px;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  transition: border-color 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--text);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-group select option {
  background: var(--surface);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.btn-submit {
  width: 100%;
  background: var(--text);
  color: var(--bg);
  font-size: 15px;
  font-weight: 700;
  padding: 16px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.2s;
  font-family: 'Inter', sans-serif;
}

.btn-submit:hover {
  background: var(--accent-dark);
}

/* ── FAQ SECTION ── */

.faq-section {
  background: var(--surface);
}

.faq-list {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.faq-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.faq-item.open {
  border-color: var(--border-strong);
  box-shadow: 0 2px 12px rgba(38, 38, 38, 0.06);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  background: none;
  border: none;
  color: var(--text);
  font-size: 16px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  text-align: left;
  gap: 16px;
}

.faq-question:hover {
  opacity: 0.75;
}

.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: rgba(51, 50, 50, 0.07);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 300;
  color: var(--text);
  transition: all 0.25s;
  line-height: 1;
}

.faq-item.open .faq-icon {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  padding: 0 28px;
}

.faq-answer p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  padding-bottom: 24px;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

/* ── WHATSAPP ENQUIRY SECTION ── */

.wa-section {
  background: var(--bg);
}

.wa-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
  margin-top: 64px;
}

.wa-info h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--text);
}

.wa-info p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 32px;
}

.wa-direct {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  text-decoration: none;
  transition: border-color 0.2s;
}

.wa-direct:hover {
  border-color: var(--border-strong);
}

.wa-direct-icon {
  width: 44px;
  height: 44px;
  background: rgba(51, 50, 50, 0.07);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  flex-shrink: 0;
}

.wa-direct-text strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}

.wa-direct-text span {
  font-size: 13px;
  color: var(--text-muted);
}

.wa-form-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 44px;
}

.wa-form-box .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.wa-form-box .form-group {
  margin-bottom: 20px;
}

.wa-form-box .form-group label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.wa-form-box .form-group input,
.wa-form-box .form-group textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  padding: 13px 16px;
  font-size: 14px;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  transition: border-color 0.2s;
  outline: none;
}

.wa-form-box .form-group input:focus,
.wa-form-box .form-group textarea:focus {
  border-color: var(--text);
}

.wa-form-box .form-group textarea {
  min-height: 110px;
  resize: vertical;
}

.btn-wa-submit {
  width: 100%;
  background: var(--text);
  color: var(--bg);
  font-size: 15px;
  font-weight: 700;
  padding: 15px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-wa-submit:hover {
  background: var(--accent-dark);
}

/* ── REVIEWS SECTION ── */

.reviews-section {
  background: var(--surface);
}

.review-empty {
  background: var(--bg);
  border: 1px dashed var(--border-strong);
  border-radius: 16px;
  padding: 48px;
  text-align: center;
  margin-top: 56px;
  margin-bottom: 48px;
}

.review-empty p {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 420px;
  margin: 0 auto;
  line-height: 1.7;
}

.review-empty p strong {
  color: var(--text);
}

.review-form-box {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 44px;
  max-width: 680px;
}

.review-form-box h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--text);
}

.review-form-box > p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.review-form-box .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.review-form-box .form-group {
  margin-bottom: 20px;
}

.review-form-box .form-group label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.review-form-box .form-group input,
.review-form-box .form-group textarea,
.review-form-box .form-group select {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  padding: 13px 16px;
  font-size: 14px;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  transition: border-color 0.2s;
  outline: none;
}

.review-form-box .form-group input:focus,
.review-form-box .form-group textarea:focus,
.review-form-box .form-group select:focus {
  border-color: var(--text);
}

.review-form-box .form-group textarea {
  min-height: 100px;
  resize: vertical;
}

.review-form-box .form-group select option {
  background: var(--surface);
}

/* ── RESPONSIVE ── */

@media (max-width: 1200px) {
  .hero-terminal {
    width: 300px;
    right: 3%;
  }
}

@media (max-width: 1024px) {
  .hero-terminal,
  .hero-logo-bg {
    display: none;
  }

  .hero-content {
    max-width: 100%;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }

  .why-props {
    grid-template-columns: 1fr;
  }

  .why-prop {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .why-prop:last-child {
    border-bottom: none;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  section {
    padding: 72px 0;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--text);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 99;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    font-size: 22px;
    color: var(--bg) !important;
  }

  .nav-toggle {
    display: flex;
    z-index: 101;
  }

  .hero-stats {
    gap: 32px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .cta-banner {
    padding: 48px 28px;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .about-grid,
  .contact-grid,
  .service-detail {
    grid-template-columns: 1fr;
  }

  .about-photo {
    position: static;
  }

  .wa-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .wa-form-box {
    padding: 28px 22px;
  }

  .wa-form-box .form-row {
    grid-template-columns: 1fr;
  }

  .review-form-box {
    padding: 28px 22px;
  }

  .review-form-box .form-row {
    grid-template-columns: 1fr;
  }

  .service-detail:nth-child(even) .service-visual {
    order: -1;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 32px 24px;
  }

  .service-tabs-nav {
    overflow-x: auto;
  }

  .tab-btn {
    padding: 14px 20px;
    font-size: 14px;
    white-space: nowrap;
  }

  .free-audit-bar {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
  }

  .service-detail {
    gap: 36px;
  }
}

/* ═══════════════════════════════════════════
   CURSOR FOLLOWER
═══════════════════════════════════════════ */

.cursor-dot {
  width: 10px;
  height: 10px;
  background: var(--text);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
  transition: transform 0.15s ease;
  will-change: left, top;
}

.cursor-ring {
  width: 44px;
  height: 44px;
  border: 1.5px solid rgba(38,38,38,0.28);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9997;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease, border-color 0.25s, width 0.25s, height 0.25s;
  will-change: left, top;
}

.cursor-dot.is-hovered { transform: translate(-50%, -50%) scale(0); }
.cursor-ring.is-hovered {
  transform: translate(-50%, -50%) scale(2.4);
  border-color: rgba(38,38,38,0.14);
}

@media (hover: none) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* ═══════════════════════════════════════════
   ANIMATED ADS DASHBOARD
═══════════════════════════════════════════ */

.ads-dash {
  background: #181818;
  border-radius: 18px;
  padding: 28px;
  max-width: 400px;
  width: 100%;
  box-shadow: 0 24px 64px rgba(0,0,0,0.2);
}

.ads-dash-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.ads-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,200,100,0.12);
  border: 1px solid rgba(0,200,100,0.3);
  color: #00c864;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 20px;
  flex-shrink: 0;
}

.ads-live-badge span {
  width: 6px;
  height: 6px;
  background: #00c864;
  border-radius: 50%;
  animation: pulseGreen 1.6s ease-in-out infinite;
}

@keyframes pulseGreen {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.25; }
}

.ads-campaign-label {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  font-weight: 400;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ads-dash-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}

.ads-metric-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 14px;
}

.ads-metric-num {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.5px;
  line-height: 1;
  color: #fff;
}

.ads-metric-lbl {
  font-size: 10px;
  color: rgba(255,255,255,0.38);
  margin-top: 5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.ads-metric-up {
  font-size: 11px;
  color: #00c864;
  font-weight: 600;
  margin-top: 8px;
}

.ads-sparkline-area {
  height: 58px;
  margin-bottom: 16px;
}

.ads-sparkline-area svg { width: 100%; height: 100%; }

#sparkLine {
  stroke: #00c864;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

#sparkLine.animated { animation: drawSpark 2s ease-out forwards; }

@keyframes drawSpark { to { stroke-dashoffset: 0; } }

#sparkFill { opacity: 0.08; }

.ads-dash-footer {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: rgba(255,255,255,0.2);
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.07);
}

/* META ADS PHONE */
.meta-ad-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  max-width: 400px;
}

.meta-phone {
  width: 186px;
  flex-shrink: 0;
  background: #fff;
  border-radius: 32px;
  border: 7px solid #111;
  overflow: hidden;
  box-shadow: 0 20px 56px rgba(0,0,0,0.18);
  animation: phoneFloat 4s ease-in-out infinite;
}

@keyframes phoneFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.meta-phone-notch {
  width: 60px;
  height: 12px;
  background: #111;
  border-radius: 0 0 10px 10px;
  margin: 0 auto 8px;
}

.meta-feed { padding: 0 10px 12px; }

.meta-post-header {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 8px;
}

.meta-avatar {
  width: 26px;
  height: 26px;
  background: #262626;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 900;
  color: #F2EFE9;
  flex-shrink: 0;
  font-family: 'Inter', sans-serif;
}

.meta-post-name { font-size: 10px; font-weight: 700; color: #111; }
.meta-post-meta { font-size: 9px; color: #999; }

.meta-post-img {
  height: 94px;
  background: #262626;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #F2EFE9;
  margin-bottom: 7px;
  text-align: center;
}

.meta-post-img strong { font-size: 12px; font-weight: 900; letter-spacing: -0.5px; display: block; }
.meta-post-img span { font-size: 9px; color: rgba(242,239,233,0.5); margin-top: 2px; display: block; }

.meta-post-caption { font-size: 9px; color: #444; line-height: 1.5; margin-bottom: 7px; }

.meta-post-cta-row { display: flex; justify-content: space-between; align-items: center; }

.meta-post-cta-btn {
  font-size: 9px;
  font-weight: 700;
  color: #111;
  border: 1px solid #ccc;
  border-radius: 3px;
  padding: 4px 8px;
}

.meta-post-divider { height: 1px; background: #f0f0f0; margin: 7px 0; }

.meta-post-actions {
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  color: #888;
}

.meta-stats-side { display: flex; flex-direction: column; gap: 10px; }

.meta-stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 14px;
  min-width: 92px;
}

.meta-stat-num {
  font-size: 20px;
  font-weight: 900;
  color: var(--text);
  line-height: 1;
  letter-spacing: -0.5px;
}

.meta-stat-delta { font-size: 10px; color: #00a651; font-weight: 600; margin-top: 2px; }

.meta-stat-lbl {
  font-size: 10px;
  color: var(--text-muted);
  margin-top: 3px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

/* ═══════════════════════════════════════════
   SEO RANK TRACKER
═══════════════════════════════════════════ */

.seo-tracker {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  max-width: 400px;
  width: 100%;
  box-shadow: 0 16px 48px rgba(0,0,0,0.07);
}

.seo-tracker-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.seo-tracker-title { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text); }

.seo-improved-badge {
  font-size: 11px;
  font-weight: 700;
  color: #00a651;
  background: rgba(0,166,81,0.1);
  border: 1px solid rgba(0,166,81,0.2);
  padding: 3px 10px;
  border-radius: 20px;
}

.seo-kw-list { padding: 2px 0; }

.seo-kw-row {
  display: grid;
  grid-template-columns: 40px 1fr auto auto;
  align-items: center;
  gap: 10px;
  padding: 9px 20px;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.seo-kw-row:last-child { border-bottom: none; }

.seo-pos-badge {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  color: var(--text);
  flex-shrink: 0;
  transition: background 0.5s, color 0.5s;
}

.seo-pos-badge.rank-top { background: var(--text); color: var(--bg); }
.seo-pos-badge.rank-high { background: rgba(38,38,38,0.12); color: var(--text); }

.seo-kw-text { font-size: 12px; font-weight: 500; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.seo-kw-domain { font-size: 10px; color: #00a651; margin-top: 1px; }

.seo-kw-change { font-size: 11px; font-weight: 700; color: #00a651; white-space: nowrap; }
.seo-kw-vol { font-size: 11px; color: var(--text-muted); text-align: right; white-space: nowrap; }

.seo-tracker-foot {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  border-top: 1px solid var(--border);
  background: var(--surface);
  font-size: 11px;
  color: var(--text-muted);
}

.seo-live-dot {
  width: 6px;
  height: 6px;
  background: #00a651;
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulseGreen 2s ease-in-out infinite;
}

/* Organic traffic mini chart */
.seo-traffic-chart {
  padding: 20px 20px 0;
  border-bottom: 1px solid var(--border);
}

.seo-chart-label { font-size: 10px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 12px; }

.seo-bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 52px;
}

.seo-bar {
  flex: 1;
  background: var(--surface-2, #E0DCD3);
  border-radius: 3px 3px 0 0;
  transform-origin: bottom;
  transform: scaleY(0);
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.seo-bar.show { transform: scaleY(1); }

.seo-bar:nth-child(1) { height: 22%; transition-delay: 0.05s; }
.seo-bar:nth-child(2) { height: 32%; transition-delay: 0.1s; }
.seo-bar:nth-child(3) { height: 28%; transition-delay: 0.15s; }
.seo-bar:nth-child(4) { height: 42%; transition-delay: 0.2s; }
.seo-bar:nth-child(5) { height: 38%; transition-delay: 0.25s; }
.seo-bar:nth-child(6) { height: 55%; transition-delay: 0.3s; }
.seo-bar:nth-child(7) { height: 62%; transition-delay: 0.35s; }
.seo-bar:nth-child(8) { height: 70%; transition-delay: 0.4s; }
.seo-bar:nth-child(9) { height: 80%; transition-delay: 0.45s; }
.seo-bar:nth-child(10) { height: 88%; background: var(--text); transition-delay: 0.5s; }
.seo-bar:nth-child(11) { height: 95%; background: var(--text); transition-delay: 0.55s; }
.seo-bar:nth-child(12) { height: 100%; background: var(--text); transition-delay: 0.6s; }

@media (max-width: 768px) {
  .ads-dash, .seo-tracker, .meta-ad-wrap { max-width: 100%; }
  .meta-ad-wrap { flex-direction: column; }
  .meta-phone { animation: none; }
}

/* ═══════════════════════════════════════════
   TRUST BAR
═══════════════════════════════════════════ */

.trust-bar {
  background: var(--text);
  padding: 16px 0;
  border-bottom: 1px solid rgba(242, 239, 233, 0.08);
}

.trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(242, 239, 233, 0.65);
  padding: 4px 24px;
  white-space: nowrap;
  letter-spacing: 0.2px;
}

.tbar-check {
  color: #00c864;
  font-weight: 800;
  font-size: 13px;
}

.tbar-divider {
  width: 1px;
  height: 18px;
  background: rgba(242, 239, 233, 0.12);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════
   PORTFOLIO
═══════════════════════════════════════════ */

.portfolio-section {
  background: var(--bg);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 64px;
}

.portfolio-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}

.portfolio-card:hover {
  box-shadow: 0 12px 48px rgba(38, 38, 38, 0.1);
  transform: translateY(-3px);
}

.portfolio-card-visual {
  padding: 32px;
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
}

.portfolio-card--next .portfolio-card-visual {
  background: var(--bg);
  border: 2px dashed var(--border-strong);
  border-radius: 0;
  flex-direction: column;
  gap: 14px;
}

.portfolio-card--next .portfolio-card-visual--dashed {
  background: var(--bg);
}

.portfolio-next-icon {
  color: var(--text-muted);
  opacity: 0.35;
}

.portfolio-next-text {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.45;
  margin: 0;
}

.portfolio-card-info {
  padding: 28px 32px;
}

.portfolio-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.ptag {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--text);
  background: rgba(38, 38, 38, 0.07);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 100px;
}

.ptag--muted {
  color: var(--text-muted);
  background: transparent;
  border-color: var(--border);
}

.portfolio-card-info h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}

.portfolio-card-info p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}

.portfolio-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}

.portfolio-link:hover {
  gap: 12px;
}

/* ═══════════════════════════════════════════
   GUARANTEE
═══════════════════════════════════════════ */

.guarantee-section {
  background: var(--text);
  padding: 100px 0;
}

.guarantee-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.guarantee-badge-chip {
  display: inline-flex;
  align-items: center;
  background: rgba(242, 239, 233, 0.08);
  border: 1px solid rgba(242, 239, 233, 0.18);
  color: rgba(242, 239, 233, 0.6);
  font-size: 11px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.guarantee-title {
  font-size: clamp(36px, 4.5vw, 54px);
  font-weight: 900;
  color: var(--bg);
  letter-spacing: -2px;
  line-height: 1.08;
  margin-bottom: 20px;
}

.guarantee-sub {
  font-size: 17px;
  color: rgba(242, 239, 233, 0.58);
  line-height: 1.75;
  max-width: 400px;
  margin-bottom: 8px;
}

.guarantee-points {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.guarantee-point {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.gp-check {
  width: 32px;
  height: 32px;
  background: rgba(0, 200, 100, 0.12);
  border: 1px solid rgba(0, 200, 100, 0.3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00c864;
  font-weight: 800;
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}

.guarantee-point strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--bg);
  margin-bottom: 4px;
}

.guarantee-point p {
  font-size: 14px;
  color: rgba(242, 239, 233, 0.48);
  line-height: 1.6;
  margin: 0;
}

/* ── Responsive for new sections ── */

@media (max-width: 1024px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
  }

  .guarantee-inner {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .guarantee-sub {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .trust-items {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .trust-item {
    padding: 4px 14px;
    font-size: 11px;
  }

  .tbar-divider {
    flex-shrink: 0;
  }

  .portfolio-card-info {
    padding: 22px 24px;
  }

  .guarantee-title {
    letter-spacing: -1px;
  }
}
