/*
Theme Name: VERKINA
Theme URI: https://verkina.com
Author: VERKINA TECH
Author URI: https://verkina.com
Description: Official VERKINA website theme. ONE GLOBE - ONE LANGUAGE.
Version: 1.0
License: Private
Text Domain: verkina
*/

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&family=Syne:wght@400;600;700;800&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  --navy:    #0D0D2B;
  --navy2:   #12122E;
  --navy3:   #1A1A40;
  --purple:  #7C3AED;
  --purpleL: #A78BFA;
  --green:   #00C896;
  --greenL:  #34D399;
  --blue:    #3B82F6;
  --white:   #FFFFFF;
  --grey:    #F4F4F6;
  --mid:     #94A3B8;
  --dark:    #1A1A2E;
  --border:  rgba(255,255,255,0.08);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { overflow-x: hidden; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--navy);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--purple); border-radius: 2px; }

h1,h2,h3,h4 { font-family: 'Syne', sans-serif; line-height: 1.2; }

/* ── NAVBAR ── */
nav.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%; height: 70px; max-width: 100vw;
  background: rgba(13,13,43,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s; overflow: hidden;
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo svg { width: 44px; height: 44px; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1; justify-content: center; }
.nav-logo-text .brand { font-family: 'Roboto', sans-serif; font-size: 18px; font-weight: 900; color: #fff; letter-spacing: 4px; }
.nav-logo-text .tagline { font-size: 8px; font-weight: 600; color: var(--green); letter-spacing: 1.2px; text-transform: uppercase; margin-top: 3px; display: block; width: 100%; }

.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a { color: var(--mid); text-decoration: none; font-size: 14px; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--white); }

.nav-cta {
  background: var(--green); color: var(--navy);
  padding: 10px 22px; border-radius: 24px;
  font-weight: 700; font-size: 13px; text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 20px rgba(0,200,150,0.3);
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 0 30px rgba(0,200,150,0.5); }

.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  padding: 8px; border-radius: 8px;
  width: 42px; flex-shrink: 0;
  background: transparent;
  transition: background 0.2s;
}
.hamburger:hover { background: rgba(255,255,255,0.08); }
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
/* Animate to X when active */
.hamburger.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ── PAGE WRAPPER ── */
.page-wrap { padding-top: 70px; overflow-x: hidden; max-width: 100vw; }

/* ── SECTIONS ── */
section { padding: 100px 5%; }
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(124,58,237,0.15); border: 1px solid rgba(124,58,237,0.3);
  color: var(--purpleL); font-size: 12px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 6px 16px; border-radius: 20px; margin-bottom: 20px;
}
.section-title { font-size: clamp(32px,4vw,52px); font-weight: 800; margin-bottom: 16px; }
.section-subtitle { color: var(--mid); font-size: 18px; max-width: 600px; font-weight: 400; }

.grad { background: linear-gradient(135deg, var(--green), var(--purpleL)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; display: inline; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--green); color: var(--navy);
  padding: 14px 28px; border-radius: 30px;
  font-weight: 700; font-size: 15px; text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 30px rgba(0,200,150,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 50px rgba(0,200,150,0.5); color: var(--navy); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: var(--white);
  padding: 14px 28px; border-radius: 30px; border: 1px solid var(--border);
  font-weight: 600; font-size: 15px; text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.btn-secondary:hover { border-color: var(--purpleL); background: rgba(124,58,237,0.1); color: var(--white); }

/* ── GLASS CARD ── */
.glass-card {
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  border-radius: 16px; padding: 28px;
  transition: border-color 0.3s, transform 0.3s;
}
.glass-card:hover { border-color: rgba(124,58,237,0.4); transform: translateY(-4px); }

/* ── DIVIDER ── */
.divider { height: 1px; background: var(--border); margin: 0 5%; }

/* ── PAGE HERO ── */
.page-hero {
  padding: 140px 5% 80px; text-align: center;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(124,58,237,0.15) 0%, transparent 70%);
}
.page-hero h1 { font-size: clamp(36px,5vw,64px); font-weight: 800; margin-bottom: 16px; }
.page-hero p { color: var(--mid); font-size: 18px; max-width: 560px; margin: 0 auto; }

/* ── HERO ── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 100px 5% 60px; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -20%; left: 50%; transform: translateX(-50%);
  width: min(600px, 90vw); height: min(600px, 90vw);
  background: radial-gradient(ellipse, rgba(124,58,237,0.18) 0%, transparent 70%);
  pointer-events: none; overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; max-width: 1200px; margin: 0 auto; width: 100%; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(0,200,150,0.1); border: 1px solid rgba(0,200,150,0.3); color: var(--green); font-size: 12px; font-weight: 700; letter-spacing: 2px; padding: 6px 16px; border-radius: 20px; margin-bottom: 24px; }
.hero-badge span { width: 6px; height: 6px; background: var(--green); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.3)} }
.hero h1 { font-size: clamp(40px,5vw,68px); font-weight: 700; line-height: 1.2; margin-bottom: 8px; overflow: visible; padding-bottom: 8px; }
.hero-vision { color: var(--mid); font-size: 17px; margin: 20px 0 36px; font-style: italic; border-left: 3px solid var(--green); padding-left: 16px; line-height: 1.5; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats { display: flex; gap: 32px; flex-wrap: wrap; }
.stat-item { text-align: center; }
.stat-num { font-family: 'Roboto', sans-serif; font-size: 28px; font-weight: 800; color: var(--green); }
.stat-label { font-size: 11px; color: var(--mid); text-transform: uppercase; letter-spacing: 1px; }

/* ── PHONE MOCKUP ── */
.hero-visual { display: flex; justify-content: center; align-items: center; }
.phone-mockup { width: 260px; height: 520px; background: var(--navy3); border-radius: 40px; border: 1px solid var(--border); padding: 16px; box-shadow: 0 40px 100px rgba(0,0,0,0.5), 0 0 80px rgba(124,58,237,0.2); animation: float 4s ease-in-out infinite; }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
.phone-inner { width: 100%; height: 100%; background: linear-gradient(180deg,#0D0D2B 0%,#141436 100%); border-radius: 28px; overflow: hidden; display: flex; flex-direction: column; }
.phone-bar { background: #0D0D2B; height: 44px; display: flex; align-items: center; padding: 0 16px; border-bottom: 1px solid var(--border); }
.phone-logo-row { display: flex; align-items: center; gap: 6px; }
.phone-logo-row .brand-name { font-family: 'Roboto', sans-serif; font-size: 11px; font-weight: 800; color: #fff; letter-spacing: 3px; }
.phone-logo-row .brand-tag { font-size: 6px; color: var(--green); font-weight: 600; letter-spacing: 1px; }
.phone-chips { display: flex; gap: 4px; padding: 8px 10px; overflow-x: auto; background: #0D0D2B; border-bottom: 1px solid var(--border); }
.phone-chip { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; padding: 3px 8px; font-size: 8px; color: #fff; white-space: nowrap; }
.phone-panel { background: #FFFFFF; border: 1px solid rgba(255,255,255,0.15); border-radius: 10px; padding: 10px; flex: 1; }
.phone-panel-header { display: flex; align-items: center; gap: 5px; margin-bottom: 6px; }
.phone-panel-label { font-size: 7px; font-weight: 700; letter-spacing: 1px; color: #888; text-transform: uppercase; }
.phone-panel-lang { font-size: 9px; font-weight: 700; color: #1A1A2E; }
.phone-panel-text { font-size: 9px; color: #333; line-height: 1.4; }
.phone-panel.translated { border-color: rgba(0,200,150,0.3); }
.phone-panel.translated .phone-panel-text { color: var(--green); font-weight: 600; }
.phone-btns-row { display: flex; justify-content: center; align-items: center; gap: 10px; padding: 8px 0; }
.phone-btn-swap { width: 28px; height: 28px; background: var(--green); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.phone-btn-mic { width: 38px; height: 38px; background: var(--purple); border: 2px solid var(--green); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.phone-btn-spk { width: 28px; height: 28px; background: rgba(124,58,237,0.15); border: 1px solid rgba(124,58,237,0.4); border-radius: 50%; }
.phone-status { background: #0D0D2B; padding: 6px 10px; display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--border); }
.phone-status span { font-size: 8px; color: var(--mid); }
.phone-status .done { color: var(--green); }

/* ── HOW IT WORKS ── */
.steps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 50px; }
.step-card { text-align: center; padding: 40px 24px; }
.step-num { width: 52px; height: 52px; border-radius: 50%; background: linear-gradient(135deg,var(--purple),var(--blue)); display: flex; align-items: center; justify-content: center; font-family: 'Roboto', sans-serif; font-weight: 800; font-size: 20px; margin: 0 auto 20px; }
.step-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.step-card p { color: var(--mid); font-size: 15px; line-height: 1.6; }

/* ── FEATURES GRID ── */
.features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 50px; }
.feat-card { background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: 14px; padding: 24px; transition: border-color 0.3s, transform 0.3s; text-decoration: none; color: inherit; }
.feat-card:hover { border-color: rgba(124,58,237,0.4); transform: translateY(-4px); }
.feat-icon { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 14px; }
.feat-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.feat-card p { color: var(--mid); font-size: 13px; line-height: 1.5; }

/* ── V2 SECTION ── */
.v2-section { background: linear-gradient(135deg,rgba(124,58,237,0.12),rgba(0,200,150,0.08)); border: 1px solid rgba(124,58,237,0.2); border-radius: 24px; padding: 70px 50px; text-align: center; margin: 0 5%; }
.v2-section h2 { font-size: clamp(28px,4vw,48px); font-weight: 800; margin-bottom: 16px; }
.v2-section p { color: var(--mid); font-size: 17px; max-width: 580px; margin: 0 auto 32px; }
.v2-features { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; margin-bottom: 40px; }
.v2-feat { display: flex; align-items: center; gap: 8px; color: var(--mid); font-size: 14px; }
.v2-feat span { color: var(--green); font-size: 18px; }

/* ── CTA ── */
.cta-section { text-align: center; padding: 100px 5%; }
.cta-section h2 { font-size: clamp(30px,4vw,52px); font-weight: 800; margin-bottom: 16px; }
.cta-section p { color: var(--mid); font-size: 17px; max-width: 500px; margin: 0 auto 40px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── QUOTE ── */
.quote-section { padding: 80px 5%; text-align: center; }
.quote-block { max-width: 800px; margin: 0 auto; border-left: 4px solid var(--green); padding: 30px 40px; background: rgba(0,200,150,0.04); border-radius: 0 16px 16px 0; text-align: left; }
.quote-block blockquote { font-size: clamp(18px,2.5vw,26px); font-family: 'Roboto', sans-serif; font-weight: 600; line-height: 1.5; color: var(--white); margin-bottom: 12px; }
.quote-block cite { color: var(--green); font-size: 13px; font-weight: 600; letter-spacing: 1px; }

/* ── FEATURES PAGE ── */
.feature-block { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; padding: 70px 0; border-bottom: 1px solid var(--border); }
.feature-block:last-child { border-bottom: none; }
.feature-block.reverse .feature-text { order: 2; }
.feature-block.reverse .feature-visual { order: 1; }
.feature-tag { display: inline-flex; align-items: center; gap: 8px; padding: 5px 14px; border-radius: 16px; font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 16px; }
.feature-text h2 { font-size: clamp(26px,3vw,38px); font-weight: 800; margin-bottom: 14px; }
.feature-text p { color: var(--mid); font-size: 16px; line-height: 1.7; margin-bottom: 16px; }
.feature-bullets { list-style: none; }
.feature-bullets li { display: flex; align-items: flex-start; gap: 10px; color: var(--mid); font-size: 15px; margin-bottom: 8px; }
.feature-bullets li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }
.feature-visual { background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: 20px; padding: 40px; display: flex; align-items: center; justify-content: center; min-height: 280px; position: relative; overflow: hidden; }
.feature-visual-icon { font-size: 64px; margin-bottom: 16px; text-align: center; }
.feature-visual h3 { font-size: 22px; font-weight: 800; margin-bottom: 8px; text-align: center; }
.feature-visual p { color: var(--mid); font-size: 14px; text-align: center; }
.feat-badge { display: inline-block; background: rgba(0,200,150,0.15); color: var(--green); border: 1px solid rgba(0,200,150,0.3); font-size: 10px; font-weight: 700; letter-spacing: 1px; padding: 3px 10px; border-radius: 10px; margin-top: 8px; }

/* ── ABOUT PAGE ── */
.vision-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.story-block { background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: 20px; padding: 40px; }
.story-block .big-quote { font-family: 'Roboto', sans-serif; font-size: clamp(18px,2.5vw,28px); font-weight: 700; line-height: 1.4; color: var(--white); border-left: 4px solid var(--green); padding-left: 20px; margin-bottom: 20px; }
.story-block p { color: var(--mid); font-size: 15px; line-height: 1.7; }
.founder-card { display: flex; gap: 40px; align-items: center; max-width: 700px; margin: 0 auto; }
.founder-avatar { width: 120px; height: 120px; border-radius: 50%; flex-shrink: 0; background: linear-gradient(135deg,var(--purple),var(--blue)); display: flex; align-items: center; justify-content: center; font-size: 48px; border: 3px solid var(--green); box-shadow: 0 0 40px rgba(0,200,150,0.2); }
.founder-info h3 { font-size: 24px; font-weight: 800; margin-bottom: 4px; }
.founder-info .role { color: var(--green); font-size: 13px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 12px; }
.founder-info p { color: var(--mid); font-size: 15px; line-height: 1.6; }
.roadmap-grid { display: flex; flex-direction: column; gap: 0; position: relative; }
.roadmap-grid::before { content:''; position:absolute; left:28px; top:0; bottom:0; width:2px; background:linear-gradient(to bottom,var(--purple),var(--green)); }
.roadmap-item { display: flex; gap: 24px; align-items: flex-start; padding: 0 0 40px 0; }
.roadmap-dot { width: 58px; height: 58px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-family: 'Roboto', sans-serif; font-size: 12px; font-weight: 800; position: relative; z-index: 1; border: 2px solid; }
.roadmap-dot.done { background: var(--green); border-color: var(--green); color: var(--navy); }
.roadmap-dot.active { background: var(--purple); border-color: var(--purple); color: white; }
.roadmap-dot.pending { background: var(--navy3); border-color: rgba(255,255,255,0.2); color: var(--mid); }
.roadmap-content { padding-top: 10px; }
.roadmap-content h3 { font-size: 18px; font-weight: 800; margin-bottom: 6px; }
.roadmap-content p { color: var(--mid); font-size: 14px; line-height: 1.6; }
.v-badge { display:inline-block; background:rgba(124,58,237,0.15); color:var(--purpleL); padding:2px 10px; border-radius:10px; font-size:11px; font-weight:700; margin-bottom:8px; }
.mission-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.mission-card { padding: 30px 24px; background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: 16px; }
.mission-card .icon { font-size: 36px; margin-bottom: 14px; }
.mission-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.mission-card p { color: var(--mid); font-size: 14px; line-height: 1.6; }

/* ── PRIVACY PAGE ── */
.policy-body { max-width: 820px; margin: 0 auto; padding: 40px 5% 80px; }
.policy-meta { display: flex; gap: 24px; flex-wrap: wrap; margin-bottom: 40px; padding: 16px 20px; background: rgba(0,200,150,0.06); border: 1px solid rgba(0,200,150,0.2); border-radius: 12px; }
.policy-meta span { font-size: 13px; color: var(--mid); }
.policy-meta strong { color: var(--green); }
.policy-section { margin-bottom: 40px; }
.policy-section h2 { font-size: 22px; font-weight: 700; color: var(--white); margin-bottom: 14px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
.policy-section h3 { font-size: 17px; font-weight: 600; color: var(--purpleL); margin: 16px 0 8px; }
.policy-section p { color: var(--mid); font-size: 15px; line-height: 1.8; margin-bottom: 12px; }
.policy-section ul { list-style: none; padding: 0; }
.policy-section ul li { color: var(--mid); font-size: 15px; line-height: 1.7; padding-left: 20px; position: relative; margin-bottom: 6px; }
.policy-section ul li::before { content: '•'; color: var(--green); position: absolute; left: 0; font-weight: 700; }
.highlight-box { background: rgba(0,200,150,0.06); border: 1px solid rgba(0,200,150,0.2); border-radius: 12px; padding: 20px 24px; margin: 20px 0; }
.contact-box { background: rgba(124,58,237,0.08); border: 1px solid rgba(124,58,237,0.2); border-radius: 12px; padding: 24px; margin-top: 40px; }
.contact-box h3 { color: var(--purpleL); margin-bottom: 10px; }
.contact-box a { color: var(--green); text-decoration: none; font-weight: 600; }

/* ── CONTACT PAGE ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; max-width: 1100px; margin: 0 auto; padding: 60px 5%; }
.contact-card { display: flex; gap: 16px; align-items: flex-start; padding: 20px; background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: 14px; margin-bottom: 14px; text-decoration: none; color: inherit; transition: border-color 0.3s; }
.contact-card:hover { border-color: rgba(0,200,150,0.4); }
.contact-card-icon { width: 46px; height: 46px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
.contact-card-text h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.contact-card-text p, .contact-card-text a { color: var(--mid); font-size: 13px; }
.contact-card-text a { color: var(--green); text-decoration: none; font-weight: 600; }
.contact-form { background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: 20px; padding: 36px; }
.contact-form h3 { font-size: 22px; font-weight: 700; margin-bottom: 24px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--mid); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.5px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; background: rgba(255,255,255,0.04); border: 1px solid var(--border); border-radius: 10px; color: var(--white); padding: 12px 16px; font-family: 'Outfit',sans-serif; font-size: 15px; transition: border-color 0.2s; outline: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--green); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select option { background: var(--navy2); }
.form-submit { width: 100%; padding: 14px; background: var(--green); color: var(--navy); font-weight: 700; font-size: 15px; border: none; border-radius: 30px; cursor: pointer; font-family: 'Outfit',sans-serif; transition: transform 0.2s, box-shadow 0.2s; box-shadow: 0 0 24px rgba(0,200,150,0.3); margin-top: 8px; }
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 0 40px rgba(0,200,150,0.5); }

/* ── MOBILE NAV LINKS (open via JS) ── */
#nav-links li { border-bottom: 1px solid rgba(255,255,255,0.08); }
#nav-links li a {
  display: block; padding: 16px 5%;
  font-size: 16px; font-weight: 500; color: var(--white);
  transition: color 0.2s, background 0.2s;
}
#nav-links li a:hover { color: var(--green); background: rgba(255,255,255,0.04); }

/* ── FOOTER ── */
footer { background: var(--navy2); border-top: 1px solid var(--border); padding: 60px 5% 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 50px; }
.footer-brand p { color: var(--mid); font-size: 14px; margin-top: 12px; max-width: 280px; line-height: 1.6; }
.footer-col h4 { font-size: 13px; font-weight: 700; color: var(--white); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 16px; }
.footer-col a { display: block; color: var(--mid); text-decoration: none; font-size: 14px; margin-bottom: 10px; transition: color 0.2s; }
.footer-col a:hover { color: var(--green); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 30px; border-top: 1px solid var(--border); }
.footer-bottom p { color: var(--mid); font-size: 13px; }
.footer-bottom .made { color: var(--green); font-weight: 600; }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media(max-width:768px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex !important; }
  #nav-download-btn { display: none; }

  /* ── Mobile nav open state ── */
  .nav-links.open {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    position: fixed; top: 70px; left: 0; right: 0;
    z-index: 998;
    background: var(--navy2);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    padding: 0;
    list-style: none;
  }
  .nav-links.open li { border-bottom: 1px solid var(--border); }
  .nav-links.open li a {
    display: block; padding: 16px 5%;
    font-size: 16px; color: var(--white); font-weight: 500;
  }
  .nav-links.open li a:hover { color: var(--green); }

  /* ── Hero single column fix ── */
  .hero { padding: 80px 5% 40px !important; min-height: auto !important; overflow: hidden; }
  .hero-grid { grid-template-columns: 1fr !important; gap: 30px !important; width: 100% !important; }
  .hero-visual { order: -1 !important; display: flex; justify-content: center; }
  .phone-mockup { width: 200px !important; height: 400px !important; }
  .hero h1 { font-size: clamp(32px,8vw,48px); }
  .hero-stats { gap: 16px; }
  section { padding: 50px 5% !important; }
  .nav-links.open { display: flex !important; flex-direction: column; gap: 0; position: fixed; top: 70px; left: 0; right: 0; width: 100vw; z-index: 998; background: var(--navy2); border-bottom: 1px solid var(--border); box-shadow: 0 10px 30px rgba(0,0,0,0.3); list-style: none; margin: 0; padding: 0; }
.nav-links.open li { border-bottom: 1px solid var(--border); }
.nav-links.open li a { display: block; padding: 16px 5%; font-size: 16px; color: var(--white); font-weight: 500; }
.nav-links.open li a:hover { background: rgba(255,255,255,0.05); color: var(--green); }
  .hero-grid, .vision-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .features-grid, .steps-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .feature-block { grid-template-columns: 1fr; gap: 30px; padding: 50px 0; }
  .feature-block.reverse .feature-text, .feature-block.reverse .feature-visual { order: unset; }
  .mission-cards { grid-template-columns: 1fr; }
  .founder-card { flex-direction: column; text-align: center; }
  .v2-section { margin: 0; border-radius: 0; padding: 50px 24px; }
  section { padding: 70px 5%; }
}
@media(max-width:480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ── PAGE CONTENT WRAPPER ── */
.wp-page-content { padding-top: 70px; }

/* ── FEATURES PAGE ── */
.features-full { padding: 40px 5% 80px; }

/* ── ABOUT PAGE ── */
.vision-section { padding: 80px 5%; }
.founder-section { padding: 80px 5%; background: rgba(255,255,255,0.02); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.roadmap-section { padding: 80px 5%; }
.quote-section { padding: 80px 5%; text-align: center; }
.quote-block { max-width: 800px; margin: 0 auto; border-left: 4px solid var(--green); padding: 30px 40px; background: rgba(0,200,150,0.04); border-radius: 0 16px 16px 0; text-align: left; }
.quote-block blockquote { font-size: clamp(18px,2.5vw,26px); font-family: 'Roboto', sans-serif; font-weight: 600; line-height: 1.5; color: var(--white); margin-bottom: 12px; }
.quote-block cite { color: var(--green); font-size: 13px; font-weight: 600; letter-spacing: 1px; }

/* ── FEATURE VISUAL ── */
.feature-visual-inner { text-align: center; position: relative; z-index: 1; }
.feature-visual::before { content: attr(data-icon); font-size: 100px; opacity: 0.06; position: absolute; bottom: -10px; right: 10px; line-height: 1; }

/* ── FOOTER CENTER COLUMNS ── */
.footer-col-center { text-align: center; }
.footer-col-center h4 { text-align: center; }
.footer-col-center a { text-align: center; }

/* ── FOOTER SOCIAL ICONS ── */
.footer-social { display: flex; flex-direction: column; align-items: flex-start; }
.footer-social h4 { font-size: 13px; font-weight: 700; color: var(--white); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 16px; }
.social-icon {
  display: flex; align-items: center; gap: 10px;
  color: var(--mid); text-decoration: none; font-size: 13px;
  margin-bottom: 12px; transition: color 0.2s;
}
.social-icon:hover { color: var(--green); }
.social-icon svg { width: 18px; height: 18px; flex-shrink: 0; }

@media(max-width:768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-social { flex-direction: row; flex-wrap: wrap; gap: 16px; }
  .footer-social h4 { width: 100%; }
}
