/* Nord Paradigm — Main Stylesheet */

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; -webkit-text-size-adjust: 100%; }
html, body { max-width: 100vw; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--abyss);
  color: var(--cloud);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; }
ul { list-style: none; }

/* ── COLORS ── */
:root {
  --abyss: #0a0f1e;
  --deep: #0d1a2d;
  --navy: #112240;
  --slate: #1a3050;
  --steel: #2a4a6b;
  --mist: #8ba3be;
  --cloud: #c4d5e8;
  --white: #eaf2f8;
  --gold: #d4a853;
  --amber: #f0c060;
  --teal: #1abc9c;
  --cyan: #00bcd4;
  --electric: #4fc3f7;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { font-family: 'Sora', sans-serif; color: var(--white); }
h1 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 700; letter-spacing: -0.03em; line-height: 1.15; }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.1rem); font-weight: 700; letter-spacing: -0.025em; }
h3 { font-size: 1.15rem; font-weight: 600; letter-spacing: -0.01em; }
p { margin-bottom: 1rem; }

.gradient-text {
  background: linear-gradient(90deg, var(--gold), var(--amber));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── LAYOUT ── */
.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
section { padding: 80px 0; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Sora', sans-serif; font-size: 14px; font-weight: 600;
  padding: 14px 32px; border-radius: 10px; border: none;
  letter-spacing: -0.01em; transition: all 0.3s ease;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--amber));
  color: var(--abyss);
  box-shadow: 0 4px 20px rgba(212, 168, 83, 0.3);
}
.btn-primary:hover {
  box-shadow: 0 6px 28px rgba(212, 168, 83, 0.45);
  transform: translateY(-2px);
}
.btn-secondary {
  background: transparent;
  color: var(--cloud);
  border: 1px solid var(--steel);
}
.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--white);
}
.btn-teal {
  background: linear-gradient(135deg, var(--teal), #15a085);
  color: var(--abyss);
  box-shadow: 0 4px 20px rgba(26, 188, 156, 0.3);
}
.btn-teal:hover {
  box-shadow: 0 6px 28px rgba(26, 188, 156, 0.45);
  transform: translateY(-2px);
}
.btn-sm { padding: 10px 24px; font-size: 13px; }

/* ── NAVIGATION ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 12px 0;
  background: rgba(10, 15, 30, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(42, 74, 107, 0.2);
  transition: background 0.3s;
}
.nav .container {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1320px;
}
.nav-logo {
  display: flex; align-items: center; gap: 14px;
  text-decoration: none; flex-shrink: 0;
}
.nav-shield { width: 68px; height: auto; object-fit: contain; display: block; }
.nav-brand-text {
  display: flex; flex-direction: column; gap: 2px; line-height: 1;
}
.nav-brand-name {
  font-family: 'Sora', sans-serif; font-size: 2.4rem; font-weight: 700;
  letter-spacing: 0.04em; white-space: nowrap;
}
.brand-nord { color: var(--white); }
.brand-paradigm { color: var(--amber); }
.nav-brand-tagline {
  font-family: 'Sora', sans-serif; font-size: 0.75rem; font-weight: 400;
  color: var(--mist); letter-spacing: 0.14em; white-space: nowrap;
}
.nav-links {
  display: flex; gap: 32px; align-items: center;
  flex: 1; justify-content: center;
}
.nav-links a {
  font-family: 'DM Sans', sans-serif; font-size: 1.375rem;
  color: var(--mist); transition: color 0.2s; white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-cta {
  font-family: 'Sora', sans-serif; font-size: 1rem; font-weight: 600;
  padding: 13px 28px; border-radius: 8px; border: none; cursor: pointer;
  background: linear-gradient(135deg, var(--gold), var(--amber));
  color: var(--abyss); transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap; text-decoration: none; display: inline-flex; align-items: center;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 20px rgba(212, 168, 83, 0.3); }
.lang-toggle {
  display: flex; gap: 4px; align-items: center;
}
.lang-toggle a {
  font-family: 'Sora', sans-serif; font-size: 0.9rem; font-weight: 500;
  padding: 5px 12px; border-radius: 6px; color: var(--mist);
  transition: color 0.2s, background 0.2s;
}
.lang-toggle a:hover { color: var(--white); }
.lang-toggle a.active {
  background: rgba(212, 168, 83, 0.15); color: var(--gold);
  border: 1px solid rgba(212, 168, 83, 0.3);
}
.lang-toggle .divider {
  color: var(--steel); font-size: 0.75rem;
}

/* Mobile nav */
.nav-toggle {
  display: none; background: none; border: none; padding: 8px;
  cursor: pointer; flex-direction: column; gap: 5px;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--cloud); border-radius: 2px; transition: all 0.3s;
}

/* ── HERO ── */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  padding-top: 80px; overflow: hidden;
  background: linear-gradient(135deg, var(--abyss) 0%, var(--deep) 40%, var(--navy) 100%);
}
.hero-grid {
  position: absolute; inset: 0; opacity: 0.04;
  background-image:
    linear-gradient(var(--cyan) 1px, transparent 1px),
    linear-gradient(90deg, var(--cyan) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero-orb {
  position: absolute; border-radius: 50%; pointer-events: none;
}
.hero-orb-1 {
  top: -80px; right: -80px; width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(26, 188, 156, 0.08), transparent 70%);
}
.hero-orb-2 {
  bottom: -60px; left: 30%; width: 400px; height: 200px;
  background: radial-gradient(circle, rgba(212, 168, 83, 0.06), transparent 70%);
}
.hero-content {
  position: relative; z-index: 1; max-width: 720px;
  margin: 0 auto; text-align: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px; border-radius: 100px;
  border: 1px solid rgba(212, 168, 83, 0.25);
  background: rgba(212, 168, 83, 0.05);
  margin-bottom: 24px;
}
.hero-badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold);
}
.hero-badge-text {
  font-family: 'DM Sans', sans-serif; font-size: 13px;
  color: var(--gold); font-weight: 500;
  letter-spacing: 0.04em; text-transform: uppercase;
}
.hero h1 { margin-bottom: 20px; }
.hero p {
  font-size: 17px; color: var(--mist); line-height: 1.7;
  max-width: 520px; margin: 0 auto 32px;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

/* ── SECTION HEADERS ── */
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  margin-bottom: 16px;
}
.section-label-bar {
  width: 4px; height: 28px; border-radius: 2px;
  background: linear-gradient(180deg, var(--gold), var(--teal));
}
.section-label-text {
  font-family: 'Sora', sans-serif; font-size: 1.1rem; font-weight: 600;
  color: var(--gold); text-transform: uppercase; letter-spacing: 0.1em;
}
.section-header { margin-bottom: 48px; }
.section-header h2 { margin-bottom: 12px; }
.section-header p { color: var(--mist); max-width: 600px; font-size: 1.05rem; }

/* ── CARDS ── */
.card {
  padding: 32px; border-radius: 14px;
  background: linear-gradient(160deg, rgba(17, 34, 64, 0.8), rgba(13, 26, 45, 0.8));
  border: 1px solid rgba(42, 74, 107, 0.3);
  transition: all 0.3s ease;
}
.card:hover {
  border-color: rgba(42, 74, 107, 0.6);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}
.card-icon {
  width: 120px; height: 120px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  background: linear-gradient(160deg, rgba(17, 34, 64, 0.8), rgba(13, 26, 45, 0.8));
  border: 1px solid rgba(42, 74, 107, 0.3);
}
.card-icon img {
  width: 92px; height: 92px; object-fit: contain;
}
.card-icon-gold, .card-icon-teal, .card-icon-cyan { background: linear-gradient(160deg, rgba(17, 34, 64, 0.8), rgba(13, 26, 45, 0.8)); }
.card h3 { margin-bottom: 12px; text-align: center; }
.card p { color: var(--mist); font-size: 0.95rem; margin-bottom: 0; text-align: center; }

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
#coming-soon .cards-grid,
#bientot-disponible .cards-grid {
  grid-template-columns: repeat(2, 1fr);
}

/* ── PRODUCT FEATURE CARDS ── */
.product-card {
  padding: 20px 32px 32px; border-radius: 16px;
  background: linear-gradient(160deg, rgba(17, 34, 64, 0.9), rgba(13, 26, 45, 0.9));
  border: 1px solid rgba(42, 74, 107, 0.3);
  display: flex; flex-direction: column;
  transition: all 0.3s ease;
}
.product-card:hover {
  border-color: rgba(42, 74, 107, 0.6);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}
.product-logo {
  width: 100%; height: 175px;
  object-fit: contain;
  object-position: left;
  margin-bottom: 8px;
  display: block;
}

/* ── HERO TRUST BADGES ── */
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 16px; margin-top: 8px; margin-bottom: 24px;
  justify-content: center;
}
.hero-trust-item {
  display: flex; align-items: center; gap: 6px;
  font-family: 'DM Sans', sans-serif; font-size: 0.82rem;
  color: var(--mist); white-space: nowrap;
}
.hero-trust-item svg { color: var(--gold); flex-shrink: 0; }
.product-card .tag {
  display: inline-block; padding: 4px 12px; border-radius: 6px;
  font-size: 0.75rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.06em; margin-bottom: 16px; width: fit-content;
}
.tag-free { background: rgba(26, 188, 156, 0.15); color: var(--teal); }
.tag-coming { background: rgba(212, 168, 83, 0.15); color: var(--gold); }
.btn-free-badge {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  color: var(--abyss);
  background: var(--gold);
  border: 1.5px solid var(--gold);
  border-radius: 5px;
  padding: 2px 8px;
  margin-left: 8px;
  vertical-align: middle;
  line-height: 1.5;
  text-transform: uppercase;
  white-space: nowrap;
}
.btn-teal:has(.btn-free-badge) {
  white-space: nowrap;
}
.coming-soon-bar {
  margin: -20px -32px 12px;
  padding: 10px 32px;
  background: linear-gradient(135deg, rgba(212, 168, 83, 0.15), rgba(212, 168, 83, 0.08));
  border-bottom: 1px solid rgba(212, 168, 83, 0.25);
  font-family: 'Sora', sans-serif; font-size: 0.8rem; font-weight: 600;
  color: var(--gold); text-transform: uppercase; letter-spacing: 0.1em;
  text-align: center;
}
.product-card h3 { font-size: 1.3rem; margin-bottom: 12px; }
.product-card p { color: var(--mist); margin-bottom: 24px; flex-grow: 1; }

/* ── NOTIFY FORM ── */
.notify-form {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto;
}
.notify-form input[type="email"] { order: 1; }
.notify-form .btn { order: 2; }
.signal-checkbox { order: 3; flex-basis: 100%; }
.notify-form input[type="email"] {
  flex: 1; padding: 9px 14px; border-radius: 8px;
  border: 1px solid var(--steel);
  background: var(--deep); color: var(--cloud);
  font-family: 'DM Sans', sans-serif; font-size: 0.85rem;
  outline: none; transition: border-color 0.3s;
}
.notify-form input[type="email"]:focus { border-color: var(--gold); }
.notify-form input[type="email"]::placeholder { color: var(--mist); }
.notify-form .btn { white-space: nowrap; flex-shrink: 0; }
.notify-form-success {
  padding: 10px 16px; border-radius: 8px; text-align: center;
  background: rgba(26, 188, 156, 0.1); border: 1px solid rgba(26, 188, 156, 0.3);
  color: var(--teal); font-size: 0.85rem; font-weight: 500;
}
.signal-checkbox {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.8rem; color: var(--mist); cursor: pointer;
  margin: 2px 0;
}
.signal-checkbox input[type="checkbox"] {
  width: 14px; height: 14px; accent-color: var(--gold);
  cursor: pointer; flex-shrink: 0;
}

/* ── FOUNDER / ABOUT SECTION ── */
.founder-section { background: var(--abyss); }
.founder-grid {
  display: grid; grid-template-columns: 1.4fr 0.6fr; gap: 64px; align-items: center;
}
.founder-portrait {
  display: flex; flex-direction: column; align-items: center;
  overflow: hidden;
}
.founder-portrait img {
  width: 100%; height: auto; object-fit: cover;
  border-radius: 16px;
}
.about-portrait {
  display: block; max-width: 31.5%; height: auto;
  border-radius: 16px; object-fit: cover;
}
.founder-portrait-caption {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  padding: 16px 0 0; font-family: 'Sora', sans-serif; text-align: center;
}
.founder-portrait-caption strong {
  font-size: 1.05rem; font-weight: 600; color: var(--white);
}
.founder-portrait-caption span {
  font-size: 0.82rem; font-weight: 400; color: var(--gold);
  letter-spacing: 0.02em;
}
.founder-content h2 { margin-bottom: 16px; }
.founder-content p { color: var(--mist); }
.founder-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px;
}
.stat-card {
  padding: 20px; border-radius: 12px; text-align: center;
  background: rgba(17, 34, 64, 0.5); border: 1px solid rgba(42, 74, 107, 0.2);
}
.stat-value {
  font-family: 'Sora', sans-serif; font-size: 1.8rem; font-weight: 700;
  color: var(--gold); letter-spacing: -0.02em;
}
.stat-label { font-size: 0.78rem; color: var(--mist); margin-top: 4px; }
.founder-credentials {
  display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px;
}
.credential {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: 8px;
  background: rgba(17, 34, 64, 0.8);
  border: 1px solid rgba(42, 74, 107, 0.3);
  font-size: 0.85rem; color: var(--cloud);
}
.credential-icon { color: var(--teal); }

/* ── NEWSLETTER SIGNUP ── */
.newsletter {
  padding: 32px; border-radius: 16px;
  background: linear-gradient(135deg, rgba(17, 34, 64, 0.9), rgba(13, 26, 45, 0.9));
  border: 1px solid rgba(42, 74, 107, 0.3);
  text-align: center;
}
.newsletter h3 { margin-bottom: 8px; }
.newsletter p { color: var(--mist); margin-bottom: 24px; }
.newsletter-form {
  display: flex; flex-direction: column; gap: 12px; max-width: 560px; margin: 0 auto;
}
.newsletter-fields {
  display: flex; gap: 10px; flex-wrap: wrap;
}
.newsletter-fields input, .newsletter-fields select {
  flex: 1; min-width: 140px; padding: 12px 18px; border-radius: 10px;
  border: 1px solid var(--steel);
  background: var(--deep); color: var(--cloud);
  font-family: 'DM Sans', sans-serif; font-size: 0.9rem;
  outline: none; transition: border-color 0.3s;
}
.newsletter-fields select { flex: 0 0 auto; min-width: 120px; cursor: pointer; }
.newsletter-fields input:focus,
.newsletter-fields select:focus { border-color: var(--gold); }
.newsletter-fields input::placeholder { color: var(--mist); }
.newsletter-form .btn { align-self: center; }
.newsletter-success, .contact-success {
  padding: 16px 24px; border-radius: 10px;
  background: rgba(26, 188, 156, 0.12); border: 1px solid rgba(26, 188, 156, 0.3);
  color: var(--teal); font-size: 0.95rem; text-align: center;
}

/* ── CTA BANNER ── */
.cta-banner {
  padding: 64px 48px; border-radius: 20px; text-align: center;
  background: linear-gradient(135deg, var(--navy), var(--deep));
  border: 1px solid rgba(42, 74, 107, 0.3);
  position: relative; overflow: hidden;
}
.cta-banner h2 { margin-bottom: 16px; }
.cta-banner p { color: var(--mist); margin-bottom: 32px; max-width: 500px; margin-inline: auto; }

/* ── CONTACT FORM ── */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.form-group { margin-bottom: 6px; }
.form-group label {
  display: block; font-family: 'Sora', sans-serif; font-size: 0.8rem;
  font-weight: 500; color: var(--cloud); margin-bottom: 4px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 9px 14px; border-radius: 8px;
  border: 1px solid var(--steel);
  background: var(--deep); color: var(--cloud);
  font-family: 'DM Sans', sans-serif; font-size: 0.9rem;
  outline: none; transition: border-color 0.3s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--gold); }
.form-group textarea { min-height: 70px; resize: vertical; }
.contact-info-card {
  padding: 32px; border-radius: 14px;
  background: linear-gradient(160deg, rgba(17, 34, 64, 0.8), rgba(13, 26, 45, 0.8));
  border: 1px solid rgba(42, 74, 107, 0.3);
  margin-bottom: 24px;
}
.contact-info-card h3 { margin-bottom: 16px; }
.contact-info-item {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 12px; color: var(--mist);
}
.contact-info-item a { color: var(--cyan); }
.contact-info-item a:hover { text-decoration: underline; }

/* ── BLOG CARDS ── */
.blog-card {
  border-radius: 14px; overflow: hidden;
  background: linear-gradient(160deg, rgba(17, 34, 64, 0.8), rgba(13, 26, 45, 0.8));
  border: 1px solid rgba(42, 74, 107, 0.3);
  transition: all 0.3s ease;
}
.blog-card:hover {
  border-color: rgba(42, 74, 107, 0.6);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}
.blog-card-img {
  width: 100%; height: 200px; object-fit: cover;
}
.blog-card-body { padding: 24px; }
.blog-card-meta {
  font-size: 0.8rem; color: var(--mist); margin-bottom: 8px;
}
.blog-card-body h3 { margin-bottom: 8px; font-size: 1.1rem; }
.blog-card-body h3 a { color: var(--white); transition: color 0.3s; }
.blog-card-body h3 a:hover { color: var(--gold); }
.blog-card-body p { color: var(--mist); font-size: 0.9rem; margin-bottom: 16px; }
.blog-card-link {
  font-family: 'Sora', sans-serif; font-size: 0.85rem;
  font-weight: 600; color: var(--gold); transition: color 0.3s;
}
.blog-card-link:hover { color: var(--amber); }

/* ── BLOG POST ── */
.blog-post { max-width: 760px; margin: 0 auto; }
.blog-post-header { margin-bottom: 40px; }
.blog-post-meta {
  font-size: 0.85rem; color: var(--mist); margin-bottom: 16px;
}
.blog-post-cover {
  width: 100%; border-radius: 14px; margin-bottom: 32px;
}
.blog-post-content h2 { margin: 40px 0 16px; font-size: 1.5rem; }
.blog-post-content h3 { margin: 32px 0 12px; font-size: 1.2rem; }
.blog-post-content p { margin-bottom: 16px; color: var(--cloud); }
.blog-post-content a { color: var(--cyan); }
.blog-post-content a:hover { text-decoration: underline; }
.blog-post-content ul, .blog-post-content ol {
  margin: 16px 0; padding-left: 24px;
}
.blog-post-content li { margin-bottom: 8px; color: var(--cloud); list-style: disc; }
.blog-post-content blockquote {
  border-left: 3px solid var(--gold);
  padding: 16px 24px; margin: 24px 0;
  background: rgba(17, 34, 64, 0.5);
  border-radius: 0 10px 10px 0;
  color: var(--mist); font-style: italic;
}

/* ── ABOUT PAGE ── */
.about-hero {
  padding: 160px 0 60px;
  background: linear-gradient(135deg, var(--abyss) 0%, var(--deep) 50%, var(--navy) 100%);
}
.about-content { max-width: 760px; }
.about-content h2 { margin: 40px 0 16px; }
.about-content p { color: var(--cloud); }
.values-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px; margin-top: 32px;
}
.timeline-item {
  display: flex; gap: 24px; margin-bottom: 32px;
}
.timeline-marker {
  display: flex; flex-direction: column; align-items: center; flex-shrink: 0;
}
.timeline-dot {
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0;
}
.timeline-line {
  width: 2px; flex: 1; background: var(--steel); margin-top: 8px;
}
.timeline-content h3 { margin-bottom: 4px; }
.timeline-content p { color: var(--mist); font-size: 0.95rem; }

/* ── FOOTER ── */
.footer {
  padding: 20px 0 12px;
  background: var(--deep);
  border-top: 1px solid rgba(42, 74, 107, 0.2);
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 48px;
  margin-bottom: 16px;
}
.footer-compact {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 12px;
}
.footer-links-row {
  display: flex; gap: 24px;
}
.footer-links-row a {
  font-size: 0.9rem; color: var(--mist); transition: color 0.3s;
}
.footer-links-row a:hover { color: var(--gold); }
.footer-brand p { color: var(--mist); font-size: 0.9rem; margin-top: 16px; }
.footer-logo {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 8px;
}
.footer-shield { width: 36px; height: auto; }
.footer-brand-text {
  display: flex; flex-direction: column; gap: 1px; line-height: 1;
}
.footer-brand-name {
  font-family: 'Sora', sans-serif; font-size: 1.1rem; font-weight: 700;
  letter-spacing: 0.04em;
}
.footer-brand-tagline {
  font-family: 'Sora', sans-serif; font-size: 0.5rem; font-weight: 400;
  color: var(--mist); letter-spacing: 0.12em;
}
.footer h4 {
  font-size: 0.85rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--cloud); margin-bottom: 16px;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 0.9rem; color: var(--mist); transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  padding-top: 24px; border-top: 1px solid rgba(42, 74, 107, 0.2);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.8rem; color: var(--mist);
}

/* ── CTA SECTION ── */
.cta-section {
  padding: 80px 0 50px;
  background: linear-gradient(135deg, var(--abyss), var(--navy));
  position: relative; overflow: hidden;
}
.cta-glow {
  position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
  width: 800px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 168, 83, 0.06), transparent 70%);
  pointer-events: none;
}
.cta-content {
  position: relative; z-index: 1; text-align: center; max-width: 640px; margin: 0 auto;
}
.cta-content .section-label { justify-content: center; }
.cta-content h1 { margin-bottom: 16px; }
.cta-content p { font-size: 1.05rem; color: var(--mist); margin-bottom: 36px; }
.cta-buttons {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
}

/* ── CONTACT SECTION ── */
.contact-section { background: var(--deep); padding: 12px 0; }
.contact-form { display: flex; flex-direction: column; gap: 4px; margin-top: 8px; }
.contact-info h3 { margin-bottom: 4px; }
.contact-info p { color: var(--mist); margin-bottom: 8px; }
.contact-detail {
  display: flex; align-items: center; gap: 12px;
  padding: 5px 0; border-bottom: 1px solid rgba(42, 74, 107, 0.15);
  font-size: 0.92rem; color: var(--cloud);
}
.contact-detail a { color: var(--cyan); transition: color 0.3s; }
.contact-detail a:hover { color: var(--electric); text-decoration: underline; }
.contact-detail-icon {
  width: 28px; height: 28px; border-radius: 6px;
  background: rgba(17, 34, 64, 0.6); display: flex;
  align-items: center; justify-content: center; flex-shrink: 0;
  color: var(--gold);
}
.contact-callout {
  margin-top: 10px; padding: 10px; border-radius: 10px;
  background: rgba(17, 34, 64, 0.4);
  border: 1px solid rgba(42, 74, 107, 0.2);
  overflow: hidden;
}
.coming-soon-callout {
  padding-top: 0;
}
.coming-soon-callout .coming-soon-bar {
  margin: 0 -10px 8px; padding: 6px 10px;
}
.contact-callout-title {
  font-family: 'Sora', sans-serif; font-size: 0.9rem;
  font-weight: 600; color: var(--white); margin-bottom: 8px;
}
.contact-callout p {
  font-size: 0.85rem; color: var(--mist); margin: 0;
}

/* ── SCROLL ANIMATIONS ── */
.fade-in {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }

/* ── PAGE HEADER (inner pages) ── */
.page-header {
  padding: 140px 0 60px;
  background: linear-gradient(135deg, var(--abyss) 0%, var(--deep) 50%, var(--navy) 100%);
  position: relative;
}
.page-header h1 { margin-bottom: 12px; }
.page-header p { color: var(--mist); font-size: 1.1rem; max-width: 600px; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .founder-grid { grid-template-columns: 1fr; }
  .founder-portrait { max-width: 320px; order: -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  section { padding: 60px 0; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(10, 15, 30, 0.95);
    backdrop-filter: blur(16px);
    padding: 24px; gap: 16px;
    border-bottom: 1px solid rgba(42, 74, 107, 0.2);
  }
  .lang-toggle { margin-left: auto; margin-right: 8px; }
  .lang-toggle a { font-size: 0.8rem; padding: 4px 10px; }
  .nav-shield { width: 52px; }
  .nav-brand-name { font-size: 1.6rem; }
  .nav-brand-tagline { font-size: 0.6rem; }
  .hero { min-height: 100vh; padding-top: 100px; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
  .cards-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .newsletter-form { flex-direction: column; }
  .cta-banner { padding: 40px 24px; }
  .product-card { padding: 28px; }
  .product-logo { height: 120px; }
  .hero-trust { gap: 10px; }
  .hero-trust-item { font-size: 0.75rem; }
  .cta-section { padding: 65px 0 35px; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .cta-buttons .btn { width: 100%; justify-content: center; }
}
