/* ============================================
   HydraCash — Editorial Luxury Fintech
   ============================================ */

/* --- Custom Properties --- */
:root {
  --black: #08080A;
  --white: #F5F5F3;
  --gray-100: #E8E8E6;
  --gray-200: #C0C0BC;
  --gray-300: #8A8A86;
  --gray-400: #5A5A57;
  --gray-500: #2A2A28;
  --accent: #C8FF00;
  --accent-dim: #9ABF00;
  --amber: #FFBF00;
  --amber-dim: #D4A000;
  --surface: #111113;
  --surface-raised: #1A1A1D;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --font-display: 'Instrument Serif', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', monospace;
}

/* --- Reset --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { font-family: var(--font-body); background: var(--black); color: var(--white); line-height: 1.5; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
img { max-width: 100%; display: block; }

/* --- Grain Texture Overlay --- */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
}

/* --- Scroll Animations --- */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* --- Layout --- */
.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 24px; }

/* ============================================
   NAV
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: background 0.3s, backdrop-filter 0.3s, padding 0.3s;
}
.nav.scrolled {
  background: rgba(8, 8, 10, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-logo .logo-mark {
  width: 28px;
  height: 28px;
  background: var(--accent);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 800;
  color: var(--black);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-300);
  transition: color 0.2s;
  letter-spacing: 0.01em;
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  font-size: 14px;
  font-weight: 600;
  padding: 10px 22px;
  background: var(--white);
  color: var(--black);
  border-radius: 100px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(200, 255, 0, 0.15);
}
.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  position: relative;
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-content { max-width: 560px; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.hero-eyebrow::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-weight: 400;
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: italic;
  color: var(--accent);
}
.hero-subtitle {
  font-size: 18px;
  color: var(--gray-300);
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 420px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  background: var(--accent);
  color: var(--black);
  border-radius: 100px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(200, 255, 0, 0.2);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 500;
  padding: 14px 24px;
  color: var(--gray-200);
  border: 1px solid var(--gray-500);
  border-radius: 100px;
  transition: border-color 0.2s, color 0.2s;
}
.btn-secondary:hover {
  border-color: var(--gray-300);
  color: var(--white);
}
.btn-secondary svg { width: 16px; height: 16px; }

/* --- Phone Mockup --- */
.hero-phone-wrapper {
  display: flex;
  justify-content: center;
  perspective: 1200px;
}
.phone-mockup {
  width: 280px;
  height: 580px;
  background: #000;
  border-radius: 40px;
  border: 3px solid #2A2A2D;
  padding: 12px;
  position: relative;
  transform: rotateY(-8deg) rotateX(2deg);
  box-shadow:
    0 40px 80px rgba(0,0,0,0.6),
    0 0 0 1px rgba(255,255,255,0.05),
    inset 0 0 0 1px rgba(255,255,255,0.03);
}
.phone-notch {
  width: 100px;
  height: 28px;
  background: #000;
  border-radius: 0 0 18px 18px;
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}
.phone-screen {
  width: 100%;
  height: 100%;
  background: #0C0C0E;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
}
.phone-status-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 22px 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--white);
}
.phone-status-bar .time { font-size: 13px; }
.phone-status-icons { display: flex; gap: 4px; align-items: center; }
.phone-status-icons svg { width: 14px; height: 14px; fill: var(--white); }

.phone-app-content { padding: 8px 18px; }
.phone-greeting {
  font-size: 14px;
  color: var(--gray-300);
  margin-bottom: 2px;
}
.phone-user-name {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}
.phone-balance-card {
  background: linear-gradient(135deg, #1A1A1D 0%, #111113 100%);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 18px;
  margin-bottom: 18px;
}
.phone-balance-label {
  font-size: 11px;
  color: var(--gray-300);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}
.phone-balance-amount {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--white);
}
.phone-balance-change {
  font-size: 12px;
  color: var(--accent);
  margin-top: 4px;
}
.phone-quick-actions {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}
.phone-quick-action {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 12px 4px;
  background: var(--surface-raised);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.04);
}
.phone-quick-action-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}
.phone-quick-action-icon.send { background: rgba(200,255,0,0.15); color: var(--accent); }
.phone-quick-action-icon.request { background: rgba(255,191,0,0.15); color: var(--amber); }
.phone-quick-action-icon.card { background: rgba(200,200,200,0.1); color: var(--gray-200); }
.phone-quick-action span {
  font-size: 10px;
  color: var(--gray-300);
  font-weight: 500;
}
.phone-transactions-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-300);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}
.phone-tx {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.phone-tx:last-child { border-bottom: none; }
.phone-tx-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}
.phone-tx-details { flex: 1; min-width: 0; }
.phone-tx-name { font-size: 13px; font-weight: 600; color: var(--white); }
.phone-tx-time { font-size: 10px; color: var(--gray-400); }
.phone-tx-amount { font-size: 13px; font-weight: 600; }
.phone-tx-amount.negative { color: var(--white); }
.phone-tx-amount.positive { color: var(--accent); }

/* ============================================
   FEATURES STRIP
   ============================================ */
.features {
  padding: 120px 0;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.features-header {
  margin-bottom: 64px;
}
.features-header h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.feature-card {
  padding: 36px 28px;
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.04);
  transition: border-color 0.3s, background 0.3s;
}
.feature-card:first-child { border-radius: var(--radius-lg) 0 0 var(--radius-lg); }
.feature-card:last-child { border-radius: 0 var(--radius-lg) var(--radius-lg) 0; }
.feature-card:hover {
  border-color: rgba(200,255,0,0.15);
  background: var(--surface-raised);
}
.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(200,255,0,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--accent);
  font-size: 18px;
}
.feature-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.feature-card p {
  font-size: 14px;
  color: var(--gray-300);
  line-height: 1.55;
}

/* ============================================
   PRODUCT SHOWCASE
   ============================================ */
.showcase {
  padding: 120px 0;
}
.showcase .container {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.showcase-content {}
.showcase-quote {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.showcase-quote em {
  font-style: italic;
  color: var(--accent);
}
.showcase-desc {
  font-size: 16px;
  color: var(--gray-300);
  line-height: 1.6;
  max-width: 400px;
  margin-bottom: 32px;
}
.showcase-stat {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  padding: 12px 20px;
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
}
.showcase-stat .number {
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.showcase-stat .label {
  font-size: 14px;
  color: var(--gray-300);
}

/* Split Phone */
.showcase-phone-wrapper {
  display: flex;
  justify-content: center;
}
.phone-mockup.split-phone {
  transform: rotateY(6deg) rotateX(2deg);
}
.split-screen-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.split-back {
  font-size: 18px;
  color: var(--gray-300);
}
.split-title {
  font-size: 16px;
  font-weight: 600;
}
.split-content { padding: 16px 18px; }
.split-total-section {
  text-align: center;
  margin-bottom: 20px;
  padding: 16px;
  background: var(--surface-raised);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.04);
}
.split-total-label {
  font-size: 11px;
  color: var(--gray-300);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}
.split-total-amount {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.split-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 16px 0;
  font-size: 11px;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.split-divider::before, .split-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.06);
}
.split-person {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.split-person:last-child { border-bottom: none; }
.split-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--black);
}
.split-person-info { flex: 1; }
.split-person-name { font-size: 13px; font-weight: 600; }
.split-person-status { font-size: 10px; color: var(--gray-400); }
.split-person-amount { font-size: 14px; font-weight: 600; }
.split-send-btn {
  display: block;
  width: 100%;
  margin-top: 16px;
  padding: 14px;
  background: var(--accent);
  color: var(--black);
  font-weight: 700;
  font-size: 14px;
  border-radius: 12px;
  text-align: center;
  border: none;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works {
  padding: 120px 0;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.how-it-works-header {
  text-align: center;
  margin-bottom: 72px;
}
.how-it-works-header h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 400;
  letter-spacing: -0.02em;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.step {
  padding: 48px 36px;
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.04);
  text-align: center;
  position: relative;
}
.step:first-child { border-radius: var(--radius-lg) 0 0 var(--radius-lg); }
.step:last-child { border-radius: 0 var(--radius-lg) var(--radius-lg) 0; }
.step-number {
  font-family: var(--font-display);
  font-size: 56px;
  color: var(--accent);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 20px;
}
.step-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(200,255,0,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 20px;
  color: var(--accent);
}
.step h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.step p {
  font-size: 14px;
  color: var(--gray-300);
  line-height: 1.55;
  max-width: 260px;
  margin: 0 auto;
}

/* ============================================
   PRICING
   ============================================ */
.pricing {
  padding: 120px 0;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.pricing-header {
  text-align: center;
  margin-bottom: 60px;
}
.pricing-header h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.pricing-header p {
  font-size: 16px;
  color: var(--gray-300);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 740px;
  margin: 0 auto;
}
.pricing-card {
  padding: 40px 32px;
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
}
.pricing-card.premium {
  border-color: rgba(255,191,0,0.2);
  position: relative;
}
.pricing-card.premium::before {
  content: 'Popular';
  position: absolute;
  top: -10px;
  right: 24px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--amber);
  color: var(--black);
  padding: 4px 12px;
  border-radius: 100px;
}
.pricing-tier {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-300);
  margin-bottom: 8px;
}
.pricing-card.premium .pricing-tier { color: var(--amber); }
.pricing-amount {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
}
.pricing-amount .price {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.pricing-amount .period {
  font-size: 14px;
  color: var(--gray-400);
}
.pricing-desc {
  font-size: 14px;
  color: var(--gray-300);
  margin-bottom: 28px;
  line-height: 1.5;
}
.pricing-features {
  flex: 1;
  margin-bottom: 28px;
}
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 14px;
  color: var(--gray-200);
}
.pricing-features li::before {
  content: '✓';
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
}
.pricing-card.premium .pricing-features li::before { color: var(--amber); }
.pricing-btn {
  display: block;
  width: 100%;
  padding: 14px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.pricing-btn:hover { transform: translateY(-1px); }
.pricing-card .pricing-btn {
  background: var(--surface-raised);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.1);
}
.pricing-card.premium .pricing-btn {
  background: var(--amber);
  color: var(--black);
  border: none;
}
.pricing-card.premium .pricing-btn:hover {
  box-shadow: 0 6px 24px rgba(255,191,0,0.2);
}

/* ============================================
   CTA
   ============================================ */
.cta {
  padding: 120px 0;
  text-align: center;
}
.cta h2 {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 400;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.cta h2 em {
  font-style: italic;
  color: var(--accent);
}
.cta-subtitle {
  font-size: 18px;
  color: var(--gray-300);
  margin-bottom: 40px;
}
.cta-form {
  display: flex;
  gap: 12px;
  max-width: 440px;
  margin: 0 auto 48px;
}
.cta-form input {
  flex: 1;
  padding: 14px 20px;
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  font-size: 15px;
  color: var(--white);
  font-family: var(--font-body);
  outline: none;
  transition: border-color 0.2s;
}
.cta-form input::placeholder { color: var(--gray-400); }
.cta-form input:focus { border-color: var(--accent); }
.cta-form button {
  padding: 14px 28px;
  background: var(--accent);
  color: var(--black);
  font-weight: 700;
  font-size: 15px;
  border-radius: 100px;
  border: none;
  white-space: nowrap;
  transition: transform 0.2s, box-shadow 0.2s;
}
.cta-form button:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(200,255,0,0.2);
}
.cta-badges {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
}
.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  transition: border-color 0.2s;
}
.cta-badge:hover { border-color: rgba(255,255,255,0.15); }
.cta-badge svg { width: 22px; height: 22px; fill: var(--white); }
.cta-badge-text { text-align: left; }
.cta-badge-text .small {
  font-size: 10px;
  color: var(--gray-400);
  line-height: 1;
  display: block;
}
.cta-badge-text .big {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 40px 0;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-logo .logo-mark {
  width: 22px;
  height: 22px;
  background: var(--accent);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  color: var(--black);
}
.footer-links {
  display: flex;
  gap: 28px;
}
.footer-links a {
  font-size: 13px;
  color: var(--gray-400);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gray-200); }
.footer-copy {
  font-size: 13px;
  color: var(--gray-500);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-card:first-child { border-radius: var(--radius-lg) 0 0 0; }
  .feature-card:nth-child(2) { border-radius: 0 var(--radius-lg) 0 0; }
  .feature-card:nth-child(3) { border-radius: 0 0 0 var(--radius-lg); }
  .feature-card:last-child { border-radius: 0 0 var(--radius-lg) 0; }
}

@media (max-width: 900px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }
  .hero-content { max-width: 100%; margin: 0 auto; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-eyebrow { justify-content: center; }
  
  .showcase .container {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }
  .showcase-desc { margin-left: auto; margin-right: auto; }
  .showcase-stat { margin: 0 auto; }
  .showcase-phone-wrapper { order: -1; }
  
  .steps { grid-template-columns: 1fr; gap: 12px; }
  .step { border-radius: var(--radius-lg) !important; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-mobile-toggle { display: flex; }
  
  .features-grid { grid-template-columns: 1fr; gap: 12px; }
  .feature-card { border-radius: var(--radius-lg) !important; }
  
  .pricing-grid { grid-template-columns: 1fr; }
  
  .cta-form { flex-direction: column; }
  .cta-badges { flex-direction: column; align-items: center; }
  
  .footer .container {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .phone-mockup { 
    transform: none;
    width: 260px;
    height: 540px;
  }
  .phone-mockup.split-phone { transform: none; }
}

@media (max-width: 480px) {
  .hero { padding: 120px 0 60px; }
  .hero-actions { flex-direction: column; width: 100%; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
}
