/* ==============================
   Dailogue Landing Page Styles
   ============================== */

/* --- Font Face --- */
@font-face {
  font-family: 'OpenRunde';
  src: url('font/OpenRunde-Regular.woff2') format('woff2'),
       url('font/OpenRunde-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'OpenRunde';
  src: url('font/OpenRunde-Medium.woff2') format('woff2'),
       url('font/OpenRunde-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'OpenRunde';
  src: url('font/OpenRunde-Semibold.woff2') format('woff2'),
       url('font/OpenRunde-Semibold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'OpenRunde';
  src: url('font/OpenRunde-Bold.woff2') format('woff2'),
       url('font/OpenRunde-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* --- CSS Variables --- */
:root {
  --primary-green: #1A7D5A;
  --primary-dark: #0F4D3A;
  --primary-light: #E8F5EE;
  --accent-teal: #2AB09C;
  --accent-warm: #F4A261;
  --text-dark: #1A1918;
  --text-medium: #4A4A5A;
  --text-light: #8A8A9A;
  --text-muted: #9C9B99;
  --text-body: #6D6C6A;
  --bg-white: #FFFFFF;
  --bg-light: #F8FAF9;
  --bg-cream: #F5F4F1;
  --border: #E5E4E1;
  --deep-purple: #4A2D6B;
  --whatsapp-green: #25D366;
  --font-body: 'OpenRunde', 'Open Runde', Inter, sans-serif;
  --font-brand: 'Space Mono', monospace;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--bg-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

ul {
  list-style: none;
}

hr {
  border: none;
  border-top: 1px solid var(--border);
}

img {
  max-width: 100%;
}

/* --- Typography --- */
h1 {
  font-size: 56px;
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.1;
  text-align: center;
}

h2 {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -1px;
  text-align: center;
}

/* --- Layout Helpers --- */
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px;
}

.section-sub {
  font-size: 18px;
  color: var(--text-body);
  text-align: center;
  max-width: 700px;
  margin: 16px auto 0;
}

/* ==============================
   HEADER
   ============================== */
.header {
  background: var(--bg-white);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}

.header.scrolled {
  border-bottom-color: var(--border);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  object-fit: contain;
}

.logo-icon.sm {
  width: 24px;
  height: 24px;
  border-radius: 6px;
}

.logo-text {
  font-family: var(--font-brand);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
}

.nav {
  display: flex;
  gap: 32px;
}

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

.nav a:hover {
  color: var(--primary-green);
}

/* ==============================
   HERO
   ============================== */
.hero {
  background: var(--bg-white);
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.badge {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary-green);
  font-size: 12px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 100px;
  position: relative;
  overflow: hidden;
}

.badge.shimmer::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0) 30%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0) 70%,
    transparent 100%
  );
  animation: shimmer 4s ease-in-out infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  50% { left: 150%; }
  100% { left: 150%; }
}

.hero-sub {
  font-size: 20px;
  color: var(--text-body);
  text-align: center;
  max-width: 800px;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-primary {
  display: inline-block;
  background: var(--primary-green);
  color: white;
  font-size: 16px;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: 12px;
  transition: background 0.2s, transform 0.2s;
}

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

.btn-secondary {
  font-size: 16px;
  font-weight: 500;
  color: var(--primary-green);
  transition: opacity 0.2s;
}

.btn-secondary:hover {
  opacity: 0.7;
}

.trust-line {
  font-size: 14px;
  color: var(--text-muted);
  text-align: center;
}

/* ==============================
   HOW IT WORKS
   ============================== */
.how-it-works {
  background: var(--bg-cream);
  position: relative;
}

.phones-row {
  display: flex;
  gap: 60px;
  justify-content: center;
  align-items: stretch;
  margin-top: 48px;
}

.phone-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.browser-frame {
  background: var(--bg-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow:
    0 4px 16px rgba(26,25,24,0.06),
    0 12px 40px rgba(26,25,24,0.04);
  width: 520px;
  max-width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.phone-col .browser-frame .chat-window {
  flex: 1;
}

.browser-chrome {
  display: flex;
  gap: 6px;
  padding: 12px 16px;
  background: var(--bg-light);
  border-bottom: 1px solid var(--border);
}

.browser-chrome .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot.red { background: #FF5F57; }
.dot.yellow { background: #FEBC2E; }
.dot.green { background: #28C840; }

.chat-window {
}

.chat-header {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}

.chat-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}

.chat-label {
  font-size: 10px;
  font-weight: 600;
  color: var(--text-light);
  margin-top: 8px;
}

.chat-label.right {
  text-align: right;
}

.msg {
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 12px;
  line-height: 1.5;
  max-width: 80%;
  font-weight: 500;
}

.msg.left {
  background: var(--bg-cream);
  color: var(--text-dark);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.msg.right {
  background: var(--primary-light);
  color: var(--text-dark);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

/* --- Fade-in on scroll --- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays for children */
.fade-in.delay-1 { transition-delay: 0.15s; }
.fade-in.delay-2 { transition-delay: 0.3s; }
.fade-in.delay-3 { transition-delay: 0.45s; }
.fade-in.delay-4 { transition-delay: 0.6s; }

/* --- Chat typing animation --- */
.chat-body .chat-label,
.chat-body .msg,
.chat-body .status-bar {
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.chat-body .chat-label.revealed,
.chat-body .msg.revealed,
.chat-body .status-bar.revealed {
  visibility: visible;
  opacity: 1;
}

/* Message content wrapper for smooth transitions */
.msg .msg-content {
  transition: opacity 0.4s ease;
}

/* Typing indicator dot animation */
.msg {
  position: relative;
}

.typing-dots {
  display: flex;
  gap: 4px;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.typing-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary-green);
  animation: typingBounce 1.2s infinite;
}

.typing-dots span:nth-child(2) { animation-delay: 0.15s; }
.typing-dots span:nth-child(3) { animation-delay: 0.3s; }

.typing-indicator span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary-green);
  animation: typingBounce 1.2s infinite;
}

.typing-indicator span:nth-child(2) { animation-delay: 0.15s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.3s; }

@keyframes typingBounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-4px); opacity: 1; }
}

.status-bar {
  margin-top: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.status-bar.success {
  background: var(--primary-light);
  color: var(--primary-green);
}


.icon-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary-green);
}

.status-bar.revealed .icon-dot {
  animation: dotPulse 1.5s ease-in-out 3;
}

@keyframes dotPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(26, 125, 90, 0.4); }
  50% { transform: scale(1.4); box-shadow: 0 0 0 4px rgba(26, 125, 90, 0); }
}

.phone-label {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.phone-label strong {
  font-size: 16px;
}

.phone-label span {
  font-size: 12px;
  color: var(--text-light);
}

/* ==============================
   DASHBOARD SECTION
   ============================== */
.dashboard-section {
  background: var(--bg-white);
}

.dashboard-section .section-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.dash-heading {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.dash-heading h2 {
  font-size: 36px;
}

.connector-label {
  font-size: 12px;
  color: var(--primary-green);
  display: flex;
  align-items: center;
  gap: 6px;
}

.sync-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  animation: syncSpin 1.8s ease-in-out infinite;
}

.sync-icon i,
.sync-icon svg {
  width: 14px;
  height: 14px;
  color: var(--primary-green);
}

@keyframes syncSpin {
  0% { transform: rotate(0deg); }
  50% { transform: rotate(360deg); }
  100% { transform: rotate(360deg); }
}

.dash-mockup {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 1000px;
}

.dashboard-browser {
  width: 100%;
  overflow: hidden;
}

.dashboard-layout {
  display: flex;
  min-height: 520px;
  overflow-x: auto;
}

/* Sidebar */
.sidebar {
  width: 200px;
  min-width: 200px;
  background: var(--bg-light);
  border-right: 1px solid var(--border);
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sidebar-brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.sidebar-brand-name {
  font-family: var(--font-brand);
  font-size: 14px;
  font-weight: 700;
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-medium);
  transition: background 0.2s;
}

.nav-item i,
.nav-item svg {
  width: 16px;
  height: 16px;
  color: var(--text-light);
  flex-shrink: 0;
}

.nav-item:hover {
  background: rgba(0,0,0,0.03);
}

.nav-item.active {
  background: var(--primary-light);
  color: var(--primary-green);
  font-weight: 700;
}

.nav-item.active i,
.nav-item.active svg {
  color: var(--primary-green);
}

.nav-badge {
  margin-left: auto;
  background: var(--primary-green);
  color: white;
  font-size: 9px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 99px;
}

/* Dashboard Main */
.dash-main {
  flex: 1;
  background: #FAFAF9;
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.dash-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dash-topbar h3 {
  font-size: 18px;
  font-weight: 700;
}

.dash-sub {
  font-size: 11px;
  color: var(--text-light);
  font-weight: 500;
}

.dash-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.search-box {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: white;
  font-size: 11px;
  color: var(--text-light);
  font-weight: 500;
}

.bell-icon {
  padding: 7px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: white;
  display: flex;
  align-items: center;
}

.bell-icon i,
.bell-icon svg {
  width: 16px;
  height: 16px;
  color: var(--text-medium);
}

/* Stats */
.stats-row {
  display: flex;
  gap: 14px;
}

.stat-card {
  flex: 1;
  background: white;
  border-radius: 12px;
  padding: 16px 18px;
  border: 1px solid rgba(229,228,225,0.2);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stat-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.stat-top span {
  font-size: 10px;
  color: var(--text-light);
  font-weight: 500;
}

.stat-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-icon i,
.stat-icon svg {
  width: 16px;
  height: 16px;
}

.stat-icon.green {
  background: var(--primary-light);
  color: var(--primary-green);
}

.stat-icon.orange {
  background: #FFF3E0;
  color: #E67E22;
}

.stat-num {
  font-size: 24px;
  font-weight: 700;
}

.stat-trend {
  font-size: 9px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
}

.stat-trend i,
.stat-trend svg {
  width: 12px;
  height: 12px;
}

.stat-trend.up {
  color: var(--primary-green);
}

.stat-trend.warn {
  color: #E67E22;
}

.dot-warn {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #E67E22;
}

.dot-up {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary-green);
}

/* Table */
.table-card {
  background: white;
  border-radius: 12px;
  border: 1px solid rgba(229,228,225,0.2);
  overflow: hidden;
}

.table-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 18px;
}

.table-header h4 {
  font-size: 14px;
  font-weight: 700;
}

.view-all {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 5px 10px;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: none;
  font-size: 10px;
  font-weight: 500;
  color: var(--text-medium);
  cursor: pointer;
  font-family: var(--font-body);
}

.view-all i,
.view-all svg {
  width: 12px;
  height: 12px;
}

table {
  width: 100%;
  border-collapse: collapse;
}

thead tr {
  background: var(--bg-light);
  border-top: 1px solid #F0F0F0;
  border-bottom: 1px solid #F0F0F0;
}

th {
  font-size: 9px;
  font-weight: 700;
  color: var(--text-light);
  text-align: left;
  padding: 10px 18px;
  text-transform: uppercase;
}

td {
  font-size: 11px;
  font-weight: 500;
  padding: 12px 18px;
  border-bottom: 1px solid #F0F0F0;
  color: var(--text-dark);
}

tr:last-child td {
  border-bottom: none;
}

.order-id {
  color: var(--text-light);
  font-size: 10px;
}

.amount {
  font-weight: 500;
}

.avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  color: white;
  font-size: 9px;
  font-weight: 700;
  margin-right: 8px;
  vertical-align: middle;
}

.status-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 99px;
  font-size: 9px;
  font-weight: 500;
}

.status-badge.progress,
.status-badge.completed,
.status-badge.ready {
  background: var(--primary-light);
  color: var(--primary-green);
}

.status-badge.pending {
  background: #FFF3E0;
  color: #E67E22;
}

/* ==============================
   VALUE PROOF
   ============================== */
.value-proof {
  background: var(--bg-white);
}

.value-proof .section-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.cards-row {
  display: flex;
  gap: 0;
}

.value-card {
  flex: 1;
  background: white;
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 280px;
  box-shadow: none;
  position: relative;
  overflow: hidden;
  transition: background 0.2s ease, opacity 0.8s ease, transform 0.8s ease;
}

.value-card:first-child {
  border-radius: 16px 0 0 16px;
}

.value-card:last-child {
  border-radius: 0 16px 16px 0;
}

/* Adjacent card borders — avoid double borders */
.value-card + .value-card {
  border-left: none;
}

/* Hover gradient overlay */
.card-hover-gradient {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, var(--primary-light), transparent);
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.value-card:hover .card-hover-gradient {
  opacity: 1;
}

/* Accent bar on the left */
.card-accent-bar {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 24px;
  border-radius: 0 4px 4px 0;
  background: var(--border);
  transition: height 0.2s ease, background 0.2s ease;
}

.value-card:hover .card-accent-bar {
  height: 32px;
  background: var(--primary-green);
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  transition: transform 0.4s ease;
}

.value-card:hover .card-icon {
  transform: translateY(-6px);
}

.card-icon i,
.card-icon svg {
  width: 24px;
  height: 24px;
  color: var(--primary-green);
}

.value-card h3 {
  font-size: 20px;
  font-weight: 700;
  position: relative;
  z-index: 1;
  transition: transform 0.2s ease;
}

.value-card:hover h3 {
  transform: translateX(4px);
}

.value-card p {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

/* ==============================
   PRICING
   ============================== */
.pricing {
  background: var(--bg-white);
}

.pricing .section-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.pricing-row {
  display: flex;
  gap: 24px;
  width: 100%;
}

.price-card {
  flex: 1;
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.price-card.free,
.price-card.growth-old {
  background: white;
  border: 1px solid var(--border);
}

.price-card.free {
  background: white;
  border: 1px solid var(--border);
}

.plan-name {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--text-muted);
}

.price {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -1px;
}

.price .mo {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-muted);
}

.period {
  font-size: 14px;
  color: var(--text-muted);
}

.price-card hr {
  border-color: var(--border);
}

.price-card ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.price-card li {
  font-size: 13px;
  color: var(--text-body);
  font-weight: 500;
}

.price-card li::before {
  content: "✓  ";
  font-weight: 700;
}

.btn-outline {
  display: block;
  text-align: center;
  padding: 14px 0;
  border: none;
  border-radius: 10px;
  background: var(--primary-green);
  color: white;
  font-weight: 600;
  font-size: 14px;
  transition: background 0.2s, transform 0.2s;
  font-family: var(--font-body);
}

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

/* Starter card - lighter green */
.price-card.starter {
  background: #22956A;
  color: white;
  box-shadow: 0 8px 32px rgba(34,149,106,0.2);
  position: relative;
}

.price-card.starter::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: 0 16px 80px rgba(34,149,106,0.7), 0 0 0 8px rgba(34,149,106,0.2);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.price-card.starter.glow-active::before {
  animation: pricingGlow 3s ease-in-out infinite;
}

.price-card.starter.glow-active {
  animation: pricingScale 3s ease-in-out infinite;
}

@keyframes pricingScale {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.02); }
}

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

.price-card.starter .plan-name {
  color: #E8F5EE;
}

.price-card.starter .price .mo {
  color: #E8F5EE;
}

.price-card.starter hr {
  border-color: rgba(255,255,255,0.13);
}

.price-card.starter li {
  color: #E8F5EE;
}

.popular-badge {
  display: inline-block;
  background: rgba(42,176,156,0.2);
  color: var(--accent-teal);
  font-size: 11px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 100px;
  width: fit-content;
}

.price-card.starter .popular-badge {
  color: white;
  background: rgba(255,255,255,0.2);
}

.btn-starter {
  display: block;
  text-align: center;
  padding: 14px 0;
  border-radius: 10px;
  background: white;
  color: var(--primary-green);
  font-weight: 600;
  font-size: 14px;
  transition: background 0.2s, transform 0.2s;
  font-family: var(--font-body);
}

.btn-starter:hover {
  transform: translateY(-1px);
}

/* Growth card - dark green */
.price-card.growth {
  background: var(--primary-dark);
  color: white;
  box-shadow: 0 8px 32px rgba(15,77,58,0.2);
}

.price-card.growth .plan-name {
  color: #B0C4B8;
}

.price-card.growth .price .mo {
  color: #B0C4B8;
}

.price-card.growth hr {
  border-color: rgba(255,255,255,0.13);
}

.price-card.growth li {
  color: #E8F5EE;
}

.btn-growth {
  display: block;
  text-align: center;
  padding: 14px 0;
  border-radius: 10px;
  background: white;
  color: var(--primary-dark);
  font-weight: 600;
  font-size: 14px;
  transition: background 0.2s, transform 0.2s;
  font-family: var(--font-body);
}

.btn-growth:hover {
  background: #E8F5EE;
  transform: translateY(-1px);
}

.pricing-trust {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 24px;
  background: var(--primary-light);
  border-radius: 12px;
  font-size: 14px;
  color: var(--primary-dark);
  font-weight: 500;
}

.pricing-trust svg {
  width: 20px;
  height: 20px;
  color: var(--primary-green);
  flex-shrink: 0;
}

/* ==============================
   WAITLIST CTA
   ============================== */
.waitlist-cta {
  background: linear-gradient(135deg, #0B2B3A 0%, #145C5A 50%, #20A08A 100%);
  color: white;
}

.waitlist-inner {
  max-width: 700px;
  margin: 0 auto;
  padding: 80px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
}

.waitlist-cta h2 {
  font-size: 48px;
  letter-spacing: -1px;
}

.waitlist-cta p {
  font-size: 18px;
  color: #B0C4B8;
}

.waitlist-form {
  width: 100%;
  max-width: 640px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.input-row {
  display: flex;
  gap: 12px;
  width: 100%;
}

.email-field {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  background: white;
  border-radius: 12px;
  padding: 0 20px;
}

.email-field i,
.email-field svg {
  width: 20px;
  height: 20px;
  color: var(--text-body);
  flex-shrink: 0;
}

.email-field input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 15px;
  font-family: var(--font-body);
  padding: 18px 0;
  background: transparent;
}

.btn-waitlist {
  background: #c2e6d0;
  color: var(--primary-dark);
  border: none;
  border-radius: 12px;
  padding: 18px 32px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-body);
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
}

.btn-waitlist:hover {
  background: #a8d9b8;
  transform: translateY(-1px);
}

.wa-field {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  background: white;
  border-radius: 12px;
  padding: 0 20px;
}

.wa-field i,
.wa-field svg {
  width: 20px;
  height: 20px;
  color: var(--text-body);
  flex-shrink: 0;
}

.country-code {
  font-size: 15px;
  font-family: var(--font-body);
  color: var(--text-dark);
  flex-shrink: 0;
  border-right: 1px solid var(--border);
  padding-right: 10px;
  margin-right: 2px;
}

.wa-field input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-size: 15px;
  font-family: var(--font-body);
  padding: 18px 0;
}

.waitlist-trust {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

/* ==============================
   FOOTER
   ============================== */
.footer {
  background: var(--text-dark);
  color: var(--text-body);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-left p {
  font-size: 13px;
}

.footer-logo-text {
  font-family: var(--font-brand);
  font-size: 18px;
  font-weight: 700;
  color: white;
}

.footer-nav {
  display: flex;
  gap: 48px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col h5 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--text-muted);
}

.footer-col a {
  font-size: 13px;
  color: var(--text-body);
  transition: color 0.2s;
}

.footer-col a:hover {
  color: white;
}

.footer hr {
  border-color: rgba(255,255,255,0.07);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
}

/* ==============================
   RESPONSIVE
   ============================== */
@media (max-width: 1200px) {
  .phones-row {
    flex-direction: column;
    align-items: center;
  }

  .phone-col {
    width: 100%;
    max-width: 680px;
  }

  .browser-frame {
    width: 100%;
  }
}

@media (max-width: 1024px) {
  h1 { font-size: 42px; }
  h2 { font-size: 32px; }

  .cards-row {
    flex-wrap: wrap;
    gap: 16px;
  }

  .value-card {
    flex: 1 1 calc(50% - 8px);
    min-width: 250px;
    border-radius: 16px;
    border: 1px solid var(--border);
  }

  .value-card:first-child {
    border-radius: 16px;
  }

  .value-card:last-child {
    border-radius: 16px;
  }

  .value-card + .value-card {
    border-left: 1px solid var(--border);
  }

  .pricing-row {
    flex-direction: column;
    max-width: 400px;
    margin: 0 auto;
  }

  .dashboard-layout {
    height: auto;
  }

  .sidebar {
    width: 160px;
    min-width: 160px;
  }
}

@media (max-width: 768px) {
  h1 { font-size: 32px; }
  h2 { font-size: 28px; }

  .header-inner {
    padding: 16px 20px;
  }

  .nav {
    gap: 16px;
  }

  .nav a {
    font-size: 12px;
  }

  .hero-inner,
  .section-inner {
    padding: 60px 20px;
  }

  .hero-sub {
    font-size: 16px;
  }

  .section-sub {
    font-size: 16px;
  }

  .hero-cta {
    flex-direction: column;
  }

  .cards-row {
    flex-direction: column;
    gap: 16px;
  }

  .value-card {
    min-height: auto;
    border-radius: 16px;
    border: 1px solid var(--border);
  }

  .value-card:first-child {
    border-radius: 16px;
  }

  .value-card:last-child {
    border-radius: 16px;
  }

  .value-card + .value-card {
    border-left: 1px solid var(--border);
  }

  .dash-mockup .browser-frame {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .dashboard-layout {
    min-width: 700px;
    height: auto;
  }

  .sidebar {
    width: 160px;
    min-width: 160px;
  }

  .dash-main {
    padding: 16px;
  }

  .stats-row {
    flex-direction: row;
    gap: 8px;
  }

  .stat-card {
    padding: 12px 10px;
    gap: 4px;
  }

  .stat-card .stat-number {
    font-size: 20px;
  }

  .stat-card .stat-top span {
    font-size: 9px;
  }

  .stat-card .stat-change {
    font-size: 9px;
  }

  .stat-icon {
    width: 24px;
    height: 24px;
  }

  .input-row {
    flex-direction: column;
  }

  .waitlist-cta h2 {
    font-size: 36px;
  }

  .footer-top {
    flex-direction: column;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }

  .dash-mockup {
    max-width: 100%;
  }
}
