/* ============================================================
   TOPEH Creates — Product / App Landing Page
   Style: Bold Tech-Utility · Navy + Teal + Coral · Syne type
   ============================================================ */

/* ---- CSS VARIABLES ---- */
:root {
  --bg:          #f5f6fa;
  --bg-white:    #ffffff;
  --bg-dark:     #0a1628;
  --bg-dark-alt: #0f1f3d;
  --navy:        #0a1628;
  --teal:        #00c4a7;
  --teal-light:  #00e5c4;
  --coral:       #ff6b4a;
  --coral-light: #ff8e72;
  --text:        #1a1a2e;
  --text-muted:  #6b7280;
  --border:      #e5e7f0;
  --shadow:      0 4px 24px rgba(10,22,40,0.08);
  --shadow-lg:   0 20px 60px rgba(10,22,40,0.14);
  --font-display: 'Syne', sans-serif;
  --font-body:    'Nunito', sans-serif;
  --max-width:   1180px;
  --radius:      14px;
  --radius-lg:   22px;
  --transition:  0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
ul { list-style: none; }

/* ---- CURSOR GLOW (Optional) ---- */
.cursor-glow {
  position: fixed;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,196,167,0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  transition: left 0.15s ease, top 0.15s ease;
}

/* ---- WATERMARK (Optional) ---- */
.watermark {
  position: fixed;
  bottom: 60px; right: -36px;
  transform: rotate(-90deg);
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 3px;
  color: rgba(0,196,167,0.12);
  pointer-events: none;
  z-index: 1;
  text-transform: uppercase;
}

/* ---- NAVBAR ---- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: all var(--transition);
}
.navbar.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  box-shadow: var(--shadow);
}
.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.logo-icon {
  width: 36px; height: 36px;
  background: var(--navy);
  color: var(--teal);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
}
.logo-wordmark { display: flex; align-items: baseline; gap: 2px; }
.logo-text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.5px;
}
.logo-dot {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--teal);
  font-weight: 600;
}
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--navy); }
.nav-cta {
  background: var(--navy) !important;
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 700 !important;
  transition: background var(--transition), transform var(--transition) !important;
}
.nav-cta:hover { background: var(--bg-dark-alt) !important; transform: translateY(-1px); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--navy); border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ---- HERO ---- */
.hero {
  background: var(--bg-white);
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.hero-bg-shapes { position: absolute; inset: 0; z-index: 0; pointer-events: none; }

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.25;
}
.shape-1 {
  width: 600px; height: 600px;
  background: var(--teal);
  top: -200px; right: -100px;
}
.shape-2 {
  width: 400px; height: 400px;
  background: var(--coral);
  bottom: 50px; left: -100px;
  opacity: 0.15;
}
.shape-3 {
  width: 300px; height: 300px;
  background: var(--navy);
  top: 40%; left: 40%;
  opacity: 0.05;
}

/* Dot grid texture (Optional) */
.dot-grid {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(10,22,40,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
}

.hero-inner {
  flex: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 130px 40px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,196,167,0.1);
  border: 1px solid rgba(0,196,167,0.3);
  color: #009982;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: 20px;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.6s 0.2s forwards;
}
.badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 3px rgba(0,196,167,0.25);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 3px rgba(0,196,167,0.25); }
  50%      { box-shadow: 0 0 0 6px rgba(0,196,167,0.1); }
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 4.5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--navy);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.6s 0.4s forwards;
}
.title-highlight {
  color: var(--teal);
  position: relative;
}
.title-highlight::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--teal), var(--coral));
  border-radius: 2px;
  opacity: 0.5;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 460px;
  margin-bottom: 36px;
  line-height: 1.7;
  opacity: 0;
  animation: fadeUp 0.6s 0.6s forwards;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp 0.6s 0.8s forwards;
}
.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 14px;
  opacity: 0;
  animation: fadeUp 0.6s 1s forwards;
}
.avatar-stack {
  display: flex;
  align-items: center;
}
.avatar-stack img {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid white;
  margin-left: -8px;
  object-fit: cover;
  flex-shrink: 0;
}
.avatar-stack img:first-child { margin-left: 0; }
.avatar-more {
  width: 32px; height: 32px;
  background: var(--navy);
  color: white;
  border-radius: 50%;
  border: 2px solid white;
  margin-left: -8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
}
.hero-social-proof p { font-size: 0.85rem; color: var(--text-muted); }
.hero-social-proof strong { color: var(--navy); }

/* Phone Mockup */
.hero-mockup {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  animation: fadeLeft 0.8s 0.5s forwards;
}
@keyframes fadeLeft {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}
.mockup-phone {
  width: 260px;
  background: var(--navy);
  border-radius: 38px;
  padding: 14px 12px;
  box-shadow: 0 40px 80px rgba(10,22,40,0.3), 0 0 0 2px rgba(255,255,255,0.1);
  position: relative;
  z-index: 2;
}
.phone-notch {
  width: 80px; height: 20px;
  background: var(--bg-dark);
  border-radius: 10px;
  margin: 0 auto 10px;
}
.phone-screen {
  border-radius: 26px;
  overflow: hidden;
  height: 400px;
  background: #eee;
}

/* Floating cards */
.mockup-card {
  position: absolute;
  background: white;
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: 0 10px 30px rgba(10,22,40,0.12);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  white-space: nowrap;
  z-index: 3;
}
.mockup-card strong { display: block; font-weight: 700; color: var(--navy); font-size: 0.82rem; }
.mockup-card span { font-size: 0.72rem; color: var(--text-muted); }
.card-icon { font-size: 1.2rem; }
.card-float-1 {
  top: 60px; right: -30px;
  animation: floatCard 3s ease-in-out infinite;
}
.card-float-2 {
  bottom: 100px; right: -50px;
  animation: floatCard 3s ease-in-out 1s infinite;
}
.card-float-3 {
  bottom: 40px; left: -30px;
  animation: floatCard 3s ease-in-out 0.5s infinite;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--navy);
  gap: 8px;
}
.online-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34,197,94,0.2);
  flex-shrink: 0;
}
@keyframes floatCard {
  0%,100% { transform: translateY(0px); }
  50%      { transform: translateY(-8px); }
}

/* Brand Strip */
.hero-brand-strip {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.hero-brand-strip p {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.brand-logos { display: flex; gap: 32px; flex-wrap: wrap; }
.brand-logos span {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(10,22,40,0.25);
  letter-spacing: 0.5px;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  line-height: 1;
}
.btn-primary {
  background: var(--navy);
  color: white;
}
.btn-primary:hover {
  background: var(--bg-dark-alt);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(10,22,40,0.25);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--navy);
  transform: translateY(-2px);
}
.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--border);
}
.btn-outline-dark:hover {
  background: var(--bg);
  transform: translateY(-1px);
}
.btn-full { width: 100%; justify-content: center; }

/* ---- SECTIONS ---- */
.section { padding: 100px 0; }
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}
.section-header { text-align: center; margin-bottom: 60px; }
.section-header.light .section-title { color: white; }
.section-header.light .section-desc { color: rgba(255,255,255,0.6); }
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: var(--navy);
  margin-bottom: 16px;
}
.section-desc {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto;
}
.highlight { color: var(--teal); }
.highlight-light { color: var(--teal-light); }

/* ---- FEATURES ---- */
.features { background: var(--bg); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}
/* Big cards span 1 col but full height of 2 rows */
.feature-card.big-card { grid-row: span 2; }
.feature-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(24px);
}
.feature-card.visible {
  opacity: 1; transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease, box-shadow var(--transition);
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.feature-icon-wrap {
  width: 52px; height: 52px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.feature-icon-wrap.teal { background: rgba(0,196,167,0.12); color: var(--teal); }
.feature-icon-wrap.coral { background: rgba(255,107,74,0.12); color: var(--coral); }
.feature-icon-wrap.navy { background: rgba(10,22,40,0.08); color: var(--navy); }
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.feature-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; flex: 1; }
.feature-img {
  height: 180px;
  border-radius: 10px;
  object-fit: cover;
  margin-top: 24px;
  overflow: hidden;
}

/* ---- SCREENSHOTS ---- */
.screenshots {
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}
.screenshots-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at top right, rgba(0,196,167,0.1) 0%, transparent 60%),
              radial-gradient(ellipse at bottom left, rgba(255,107,74,0.08) 0%, transparent 60%);
}
.screenshots-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}
.tab-btn {
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 10px 22px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}
.tab-btn:hover { color: white; background: rgba(255,255,255,0.1); }
.tab-btn.active {
  background: var(--teal);
  color: var(--navy);
  border-color: var(--teal);
}
.screenshots-display { position: relative; }
.screenshot-item {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.screenshot-item.active { display: grid; animation: fadeUp 0.4s ease; }
.screen-frame {
  background: #1e2d48;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}
.screen-bar {
  background: #162035;
  padding: 12px 16px;
  display: flex;
  gap: 6px;
}
.screen-bar span {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.15);
}
.screen-bar span:nth-child(1) { background: #ff5f57; }
.screen-bar span:nth-child(2) { background: #febc2e; }
.screen-bar span:nth-child(3) { background: #28c840; }
.screen-frame img { height: 300px; object-fit: cover; }
.mobile-frame { max-width: 260px; margin: 0 auto; }
.screen-caption { color: white; }
.screen-caption h4 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--teal-light);
}
.screen-caption p { color: rgba(255,255,255,0.6); font-size: 1rem; line-height: 1.7; }

/* ---- PRICING ---- */
.pricing { background: var(--bg-white); }
.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 52px;
}
.toggle-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}
.save-badge {
  background: rgba(0,196,167,0.15);
  color: #009982;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 12px;
  font-style: normal;
}
.toggle-switch {
  width: 48px; height: 26px;
  background: var(--border);
  border-radius: 13px;
  border: none;
  cursor: pointer;
  position: relative;
  transition: background var(--transition);
}
.toggle-switch.on { background: var(--teal); }
.toggle-knob {
  position: absolute;
  top: 3px; left: 3px;
  width: 20px; height: 20px;
  background: white;
  border-radius: 50%;
  transition: transform var(--transition);
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
.toggle-switch.on .toggle-knob { transform: translateX(22px); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.pricing-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pricing-card.popular {
  background: var(--navy);
  border-color: var(--navy);
  color: white;
  transform: translateY(-10px);
}
.pricing-card.popular:hover { transform: translateY(-14px); }
.popular-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.plan-header { margin-bottom: 28px; }
.plan-name {
  display: block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--teal);
  margin-bottom: 12px;
}
.pricing-card.popular .plan-name { color: var(--teal-light); }
.plan-price {
  display: flex;
  align-items: flex-start;
  gap: 2px;
  margin-bottom: 12px;
}
.price-currency { font-size: 1.4rem; font-weight: 700; margin-top: 8px; }
.price-amount {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1;
  color: var(--navy);
  transition: all 0.3s ease;
}
.pricing-card.popular .price-amount { color: white; }
.price-period { font-size: 0.85rem; color: var(--text-muted); align-self: flex-end; margin-bottom: 6px; }
.pricing-card.popular .price-period { color: rgba(255,255,255,0.5); }
.plan-desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.5; }
.pricing-card.popular .plan-desc { color: rgba(255,255,255,0.6); }

.plan-features { margin-bottom: 28px; }
.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  padding: 7px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  color: var(--text);
}
.pricing-card.popular .plan-features li { color: rgba(255,255,255,0.85); border-color: rgba(255,255,255,0.07); }
.feat-check { color: var(--teal); font-weight: 700; }
.feat-x { color: var(--text-muted); }
.feat-off { opacity: 0.45; }
.pricing-card.popular .btn-outline-dark {
  border-color: rgba(255,255,255,0.25);
  color: white;
}
.pricing-card.popular .btn-outline-dark:hover {
  background: rgba(255,255,255,0.1);
}
.pricing-footnote {
  text-align: center;
  margin-top: 36px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ---- TESTIMONIALS ---- */
.testimonials { background: var(--bg); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testi-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.testi-card.highlight-card {
  background: var(--navy);
  border-color: var(--navy);
}
.testi-card.highlight-card p { color: rgba(255,255,255,0.8); }
.testi-card.highlight-card .testi-author strong { color: white; }
.testi-card.highlight-card .testi-author span { color: rgba(255,255,255,0.5); }
.stars { color: #fbbf24; margin-bottom: 14px; letter-spacing: 2px; }
.testi-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-author img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.testi-author strong { display: block; font-size: 0.88rem; color: var(--navy); }
.testi-author span { font-size: 0.75rem; color: var(--text-muted); }

/* ---- SIGNUP ---- */
.signup { background: var(--bg); padding: 0; }
.signup-inner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--bg-dark-alt) 100%);
  position: relative;
  overflow: hidden;
  padding: 100px 40px;
}
.signup-bg-shape {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: var(--teal);
  opacity: 0.07;
  top: -200px; right: -100px;
  filter: blur(80px);
}
.signup-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}
.signup-content .section-label { color: var(--teal-light); }
.signup-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: white;
  line-height: 1.15;
  margin-bottom: 16px;
}
.signup-content p { color: rgba(255,255,255,0.6); font-size: 1rem; margin-bottom: 36px; }
.signup-form { margin-bottom: 24px; }
.form-row-inline {
  display: flex;
  gap: 8px;
  background: white;
  border-radius: 12px;
  padding: 6px 6px 6px 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.form-row-inline input {
  flex: 1;
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--navy);
  background: transparent;
}
.form-row-inline input::placeholder { color: var(--text-muted); }
.form-row-inline .btn { flex-shrink: 0; }
.form-note { color: rgba(255,255,255,0.4); font-size: 0.8rem; margin-top: 12px; }
.signup-perks {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}
.signup-perks span { font-size: 0.82rem; color: rgba(255,255,255,0.55); font-weight: 600; }

/* ---- CONTACT ---- */
.contact { background: var(--bg-white); }
.contact-flex {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.contact-left .section-title { text-align: left; }
.contact-left p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 32px; }
.contact-links { display: flex; flex-direction: column; gap: 14px; }
.contact-link-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  transition: all var(--transition);
}
.contact-link-card:hover {
  border-color: var(--teal);
  transform: translateX(4px);
  box-shadow: var(--shadow);
}
.clc-icon { font-size: 1.5rem; }
.contact-link-card strong { display: block; font-size: 0.9rem; color: var(--navy); }
.contact-link-card span { font-size: 0.8rem; color: var(--text-muted); }
.contact-img {
  height: 440px;
  border-radius: var(--radius-lg);
  object-fit: cover;
}

/* ---- FOOTER ---- */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 72px 0 0;
}
.footer-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.footer-logo .logo-icon { background: rgba(255,255,255,0.1); }
.footer-logo .logo-text { color: white; }
.footer-logo .logo-dot { color: var(--teal); }
.footer-brand p { font-size: 0.85rem; line-height: 1.6; max-width: 220px; }
.footer-socials { display: flex; gap: 12px; margin-top: 20px; }
.footer-socials a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 700;
  color: rgba(255,255,255,0.7);
  transition: all var(--transition);
}
.footer-socials a:hover { background: var(--teal); color: var(--navy); }
.footer-col h5 {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--teal);
  margin-bottom: 18px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 0.87rem; color: rgba(255,255,255,0.55); transition: color var(--transition); }
.footer-col ul li a:hover { color: white; }
.footer-bottom {
  max-width: var(--max-width);
  margin: 52px auto 0;
  padding: 22px 40px;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p { font-size: 0.82rem; }
.footer-bottom strong { color: white; }

/* ---- ANIMATIONS ---- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .hero-title { font-size: clamp(2.2rem, 5vw, 3rem); }
  .hero-sub { margin: 0 auto 36px; }
  .hero-actions { justify-content: center; }
  .hero-social-proof { justify-content: center; }
  .hero-mockup { justify-content: center; }
  .card-float-1 { right: 10px; }
  .card-float-2 { right: 0; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .feature-card.big-card { grid-row: span 1; }
  .screenshot-item.active { grid-template-columns: 1fr; text-align: center; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .pricing-card.popular { transform: none; }
  .pricing-card.popular:hover { transform: translateY(-4px); }
  .testi-grid { grid-template-columns: 1fr; }
  .contact-flex { grid-template-columns: 1fr; }
  .contact-img { height: 280px; }
  .footer-container { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: min(300px, 80vw);
    height: 100vh;
    background: var(--bg-dark);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    padding: 40px;
    transition: right var(--transition);
    border-left: 1px solid rgba(255,255,255,0.1);
    z-index: 99;
  }
  .nav-links.open { right: 0; }
  .nav-links a { color: rgba(255,255,255,0.8) !important; font-size: 1.1rem; }
  .nav-cta { background: var(--teal) !important; color: var(--navy) !important; }
  .hamburger { display: flex; }
  .container { padding: 0 20px; }
  .nav-container { padding: 0 20px; }
  .section { padding: 72px 0; }
  .hero-inner { padding: 100px 20px 40px; }
  .hero-brand-strip { padding: 18px 20px; }
  .features-grid { grid-template-columns: 1fr; }
  .form-row-inline { flex-direction: column; padding: 12px; }
  .form-row-inline input { padding: 10px 0; }
  .signup-perks { gap: 14px; flex-direction: column; align-items: center; }
  .footer-container { grid-template-columns: 1fr; gap: 28px; padding: 0 20px; }
  .footer-bottom { padding: 20px; flex-direction: column; text-align: center; }
  .screenshots-tabs { gap: 6px; }
  .tab-btn { padding: 8px 14px; font-size: 0.8rem; }
}

@media (max-width: 480px) {
  .mockup-phone { width: 220px; }
  .phone-screen { height: 340px; }
  .card-float-1, .card-float-2, .card-float-3 { display: none; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
}
