/* =====================================================
   GIOTSASTECH — MAIN STYLESHEET
   Clean Tech Aesthetic
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

/* ==================
   1. RESET & BASE
   ================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  cursor: none;
}

a, button, .btn {
  cursor: none;
}

::selection {
  background: var(--gold);
  color: var(--bg-primary);
}

/* ==================
   CUSTOM CURSOR
   ================== */
.cursor {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
}

.cursor__circle {
  width: 48px;
  height: 48px;
  border: 2px solid #3b82f6;
  border-radius: 50%;
  transition: width 0.2s, height 0.2s, background 0.2s, border-color 0.2s;
}

.cursor__dot {
  width: 6px;
  height: 6px;
  background: #3b82f6;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 0.2s;
}

/* Link hover state */
a:hover .cursor__circle,
.btn:hover .cursor__circle,
a:hover + .cursor .cursor__circle,
.cursor.hovering .cursor__circle {
  width: 72px;
  height: 72px;
  background: #3b82f6;
  border-color: #3b82f6;
}

a:hover .cursor__dot,
.btn:hover .cursor__dot,
.cursor.hovering .cursor__dot {
  opacity: 0;
}

/* Hide on touch devices */
@media (hover: none) {
  .cursor {
    display: none;
  }
  body {
    cursor: auto;
  }
}

/* ==================
   2. CSS VARIABLES
   ================== */
:root {
  --bg-primary:      #060D08;
  --bg-secondary:    #0B160D;
  --bg-card:         #101D12;
  --bg-card-hover:   #152718;

  --gold:            #00E676;
  --gold-light:      #69F0AE;
  --gold-dark:       #00BF60;
  --gold-dim:        rgba(0, 230, 118, 0.10);
  --gold-border:     rgba(0, 230, 118, 0.22);

  --text-primary:    #F0FFF4;
  --text-secondary:  #7AAE8A;
  --text-muted:      #3A6647;

  --border:          rgba(255, 255, 255, 0.06);
  --border-gold:     rgba(0, 230, 118, 0.2);

  --font-display:    'Space Grotesk', sans-serif;
  --font-body:       'Inter', sans-serif;

  --nav-height:      72px;
  --container:       1200px;
  --container-narrow: 820px;

  --ease:            cubic-bezier(0.4, 0, 0.2, 1);
  --transition:      0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  --shadow-card:     0 4px 24px rgba(0, 0, 0, 0.35);
  --shadow-elevated: 0 16px 48px rgba(0, 0, 0, 0.55);

  --radius:          4px;
  --radius-lg:       10px;
}

[data-theme="light"] {
  --bg-primary:      #FFFFFF;
  --bg-secondary:    #F8FAF9;
  --bg-card:         #FFFFFF;
  --bg-card-hover:   #F0F4F2;

  --gold:            #00C853;
  --gold-light:      #00E676;
  --gold-dark:       #00A844;
  --gold-dim:        rgba(0, 200, 83, 0.08);
  --gold-border:     rgba(0, 200, 83, 0.18);

  --text-primary:    #0D1F1A;
  --text-secondary:  #4A6356;
  --text-muted:      #8BA299;

  --border:          rgba(0, 0, 0, 0.06);
  --border-gold:     rgba(0, 200, 83, 0.25);

  --shadow-card:     0 4px 24px rgba(0, 0, 0, 0.08);
  --shadow-elevated: 0 16px 48px rgba(0, 0, 0, 0.12);
}

/* ==================
   3. TYPOGRAPHY
   ================== */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ==================
   4. UTILITIES
   ================== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}
.container--narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 40px;
}

.section        { padding: 120px 0; }
.section--sm    { padding: 80px 0; }

.gold-line {
  width: 44px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 20px;
}

.gold { color: var(--gold); }
.gold-line--center { margin: 0 auto 20px; }

.overline {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: block;
}

.section-header         { margin-bottom: 64px; }
.section-header--center { text-align: center; }

.section-title {
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  color: var(--text-primary);
  margin-bottom: 20px;
  font-weight: 300;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.75;
}
.section-header--center .section-subtitle { margin: 0 auto; }

/* ==================
   5. BUTTONS
   ================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  white-space: nowrap;
}
.btn--primary {
  background: var(--gold);
  color: var(--bg-primary);
  font-weight: 600;
}
.btn--primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 230, 118, 0.3);
}
.btn--outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-gold);
}
.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.btn--lg { padding: 18px 42px; font-size: 14px; }

.btn--ghost {
  background: transparent;
  color: var(--text-secondary);
  border: none;
  padding-left: 0;
  padding-right: 0;
}
.btn--ghost:hover { color: var(--gold); transform: none; }
.btn--ghost:hover .btn-arrow { transform: translateX(4px); }
.btn-arrow { transition: transform var(--transition); display: inline-block; }

/* ==================
   6. NAVIGATION
   ================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: all var(--transition-slow);
}
.nav.scrolled {
  background: var(--bg-secondary);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav__logo-mark {
  width: 36px;
  height: 36px;
  background: var(--gold);
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  flex-shrink: 0;
}
.nav__logo-mark svg { width: 18px; height: 18px; fill: var(--bg-primary); }
.nav__logo-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.01em;
}
.nav__logo-name span { color: var(--gold); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav__links a {
  font-size: 13.5px;
  font-weight: 400;
  color: var(--text-secondary);
  letter-spacing: 0.04em;
  position: relative;
  padding-bottom: 2px;
  transition: color var(--transition);
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav__links a:hover,
.nav__links a.active { color: var(--text-primary); }
.nav__links a:hover::after,
.nav__links a.active::after { width: 100%; }

.nav__cta { display: flex; align-items: center; gap: 14px; }

.theme-toggle {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.theme-toggle:hover {
  border-color: var(--border-gold);
}
.theme-toggle svg {
  width: 18px;
  height: 18px;
  stroke: var(--text-secondary);
  fill: none;
  stroke-width: 1.5;
  transition: stroke var(--transition);
}
.theme-toggle:hover svg {
  stroke: var(--gold);
}
.theme-toggle .icon-sun { display: none; }
.theme-toggle .icon-moon { display: block; }
[data-theme="light"] .theme-toggle .icon-sun { display: block; }
[data-theme="light"] .theme-toggle .icon-moon { display: none; }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text-primary);
  transition: all var(--transition);
  transform-origin: center;
}
.nav__hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  background: var(--bg-secondary);
  backdrop-filter: blur(24px);
  padding: 28px 40px 40px;
  border-bottom: 1px solid var(--border);
  z-index: 998;
  flex-direction: column;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition);
}
.nav__mobile.open {
  display: flex;
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.nav__mobile a {
  padding: 15px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 15px;
  transition: color var(--transition);
}
.nav__mobile a:hover { color: var(--text-primary); }
.nav__mobile .btn {
  margin-top: 24px;
  width: 100%;
  justify-content: center;
}

/* ==================
   7. HERO (INDEX)
   ================== */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: var(--nav-height);
  overflow: hidden;
  background: var(--bg-primary);
}

.hero .container {
  display: flex;
  align-items: center;
  min-height: calc(100vh - var(--nav-height));
  position: relative;
}

.hero__bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
}

.hero__bg-image {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1544197150-b99a580bb7a8?w=1920&q=80');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
}

.hero__glow {
  position: absolute;
  width: 600px;
  height: 600px;
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  background: radial-gradient(circle, rgba(0, 230, 118, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.hero__rings {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
.hero__ring {
  position: absolute;
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.hero__ring:nth-child(1) { width: 480px; height: 480px; opacity: 0.35; }
.hero__ring:nth-child(2) { width: 360px; height: 360px; opacity: 0.25; }
.hero__ring:nth-child(3) { width: 240px; height: 240px; opacity: 0.18; }

.hero__dot {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 20px var(--gold);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 36px;
  animation: fadeInUp 0.9s var(--ease) both;
}
.hero__badge-line {
  width: 36px;
  height: 1px;
  background: var(--gold);
}
.hero__badge-text {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero__title {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 300;
  line-height: 1.07;
  margin-bottom: 28px;
  color: var(--text-primary);
  }
  .hero__title em {
    color: var(--gold);
  }
.hero__title strong {
  font-weight: 600;
}

.hero__desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 500px;
  margin-bottom: 52px;
  animation: fadeInUp 0.9s 0.2s var(--ease) both;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  animation: fadeInUp 0.9s 0.3s var(--ease) both;
}

.hero__scroll {
  position: absolute;
  bottom: 44px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  animation: fadeIn 1s 1.2s var(--ease) both;
}
.hero__scroll-text {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  writing-mode: vertical-lr;
}
.hero__scroll-bar {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ==================
   8. STATS BAR
   ================== */
.stats-bar {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 52px 0;
}
.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stats-bar__item {
  text-align: center;
  padding: 0 32px;
  position: relative;
}
.stats-bar__item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 52px;
  background: var(--border);
}
.stats-bar__number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 10px;
}
.stats-bar__number .gold { color: var(--gold); }
.stats-bar__label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ==================
   9. SERVICES PREVIEW
   ================== */
.services-preview { background: var(--bg-primary); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.service-card {
  background: var(--bg-secondary);
  padding: 48px 40px;
  transition: background var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-slow);
}
.service-card:hover { background: var(--bg-card-hover); }
.service-card:hover::after { transform: scaleX(1); }

.service-card__icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  background: var(--gold-dim);
  border-radius: var(--radius);
  margin-bottom: 28px;
}
.service-card__icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-card__title {
  font-size: 1.45rem;
  margin-bottom: 14px;
  color: var(--text-primary);
  font-weight: 400;
}
.service-card__desc {
  font-size: 0.93rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 28px;
}
.service-card__link {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: gap var(--transition);
}
.service-card:hover .service-card__link { gap: 14px; }

/* ==================
   10. ABOUT PREVIEW
   ================== */
.about-preview {
  background: var(--bg-secondary);
  overflow: hidden;
}
.about-preview__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-preview__visual {
  position: relative;
  height: 500px;
}
.about-preview__frame {
  position: absolute;
  inset: 0;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-preview__frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 25% 25%, rgba(0,230,118,0.07), transparent 55%),
    radial-gradient(circle at 75% 75%, rgba(13,26,45,0.6), transparent 55%);
}
.about-preview__mono {
  font-family: var(--font-display);
  font-size: 10rem;
  font-weight: 300;
  color: rgba(0, 230, 118, 0.07);
  line-height: 1;
  user-select: none;
  letter-spacing: -8px;
  position: relative;
  z-index: 1;
}
.about-preview__badge {
  position: absolute;
  bottom: 32px;
  left: 32px;
  background: var(--bg-primary);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  padding: 16px 24px;
  z-index: 2;
}
.about-preview__badge-value {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.about-preview__badge-label {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 4px;
}
.about-preview__corner {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  border: 1.5px solid var(--gold);
  border-radius: var(--radius);
  opacity: 0.25;
}
.about-preview__text {}
.about-preview__pull {
  font-family: var(--font-display);
  font-size: 1.65rem;
  color: var(--text-primary);
  line-height: 1.45;
  margin-bottom: 28px;
  padding-left: 24px;
  border-left: 2px solid var(--gold);
  font-weight: 300;
}
.about-preview__body {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.82;
  margin-bottom: 36px;
}
.about-preview__pillars {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 40px;
}
.pillar {
  display: flex;
  align-items: center;
  gap: 14px;
}
.pillar__dot {
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}
.pillar__text {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

/* ==================
   11. CTA BAND
   ================== */
.cta-band {
  background: var(--bg-card);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  padding: 88px 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,230,118,0.04) 0%, transparent 60%);
}
.cta-band__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.cta-band__left {}
.cta-band__title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--text-primary);
  font-weight: 300;
  margin-bottom: 10px;
}
.cta-band__sub {
  font-size: 1rem;
  color: var(--text-secondary);
}
.cta-band__actions {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
}

/* ==================
   12. PAGE HERO (INNER)
   ================== */
.page-hero {
  padding: 160px 0 88px;
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}
.page-hero__grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.016) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.016) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 70% 80% at 20% 50%, black, transparent);
}
.page-hero__glow {
  position: absolute;
  right: -200px;
  top: 50%;
  transform: translateY(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(0,230,118,0.04), transparent 65%);
}
.page-hero__content { position: relative; z-index: 1; }
.page-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
  font-size: 13px;
  color: var(--text-muted);
}
.page-hero__breadcrumb a { transition: color var(--transition); }
.page-hero__breadcrumb a:hover { color: var(--gold); }
.page-hero__breadcrumb span { color: var(--text-muted); }
.page-hero__title {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 300;
  color: var(--text-primary);
  margin-bottom: 24px;
  line-height: 1.08;
}
.page-hero__desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.8;
}

/* ==================
   13. ABOUT PAGE
   ================== */
.story { background: var(--bg-secondary); }
.story__grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
  align-items: start;
}
.story__sidebar {
  position: sticky;
  top: calc(var(--nav-height) + 32px);
}
.story__sidebar-title {
  font-size: 1.8rem;
  color: var(--text-primary);
  margin-bottom: 20px;
  font-weight: 300;
}
.story__sidebar-note {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
}
.story__sidebar-divider {
  width: 32px;
  height: 1px;
  background: var(--border-gold);
  margin: 24px 0;
}
.story__body p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.88;
  margin-bottom: 28px;
}
.story__body p.lead {
  font-size: 1.3rem;
  font-family: var(--font-display);
  color: var(--text-primary);
  line-height: 1.6;
  font-weight: 300;
}

.values { background: var(--bg-primary); }
.values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.value-card {
  background: var(--bg-secondary);
  padding: 52px 40px;
  transition: background var(--transition);
}
.value-card:hover { background: var(--bg-card-hover); }
.value-card__num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(0,230,118,0.12);
  line-height: 1;
  margin-bottom: 24px;
}
.value-card__title {
  font-size: 1.4rem;
  color: var(--text-primary);
  margin-bottom: 16px;
}
.value-card__desc {
  font-size: 0.93rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

.team { background: var(--bg-secondary); }
.team__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: all var(--transition);
}
.team-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-5px);
  box-shadow: var(--shadow-card);
}
.team-card__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--bg-secondary);
  border: 2px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--gold);
}
.team-card__name {
  font-size: 1.15rem;
  color: var(--text-primary);
  margin-bottom: 6px;
}
.team-card__role {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.team-card__bio {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ==================
   14. SERVICES PAGE
   ================== */
.services-full { background: var(--bg-primary); }
.services-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.service-row {
  background: var(--bg-secondary);
  padding: 60px;
  display: grid;
  grid-template-columns: 56px 1fr 1fr;
  gap: 48px;
  align-items: start;
  transition: background var(--transition);
}
.service-row:hover { background: var(--bg-card-hover); }
.service-row__num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--text-muted);
  padding-top: 6px;
}
.service-row__icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  background: var(--gold-dim);
  border-radius: var(--radius);
  margin-bottom: 24px;
}
.service-row__icon svg {
  width: 28px; height: 28px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-row__name {
  font-size: 1.8rem;
  color: var(--text-primary);
  margin-bottom: 10px;
  font-weight: 300;
}
.service-row__tag {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--gold);
  text-transform: uppercase;
}
.service-row__desc {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.82;
  margin-bottom: 28px;
}
.service-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.service-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.service-feature::before {
  content: '';
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ==================
   15. PRICING PAGE
   ================== */
.pricing { background: var(--bg-primary); }

.pricing-toggle {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
  margin-bottom: 72px;
}
.pricing-toggle__label {
  font-size: 14px;
  color: var(--text-secondary);
  cursor: pointer;
  transition: color var(--transition);
}
.pricing-toggle__label.active { color: var(--text-primary); }
.pricing-toggle__switch {
  width: 52px;
  height: 28px;
  background: var(--border);
  border-radius: 100px;
  cursor: pointer;
  position: relative;
  border: 1px solid var(--border-gold);
  transition: background var(--transition);
}
.pricing-toggle__switch.annual { background: var(--gold-dim); }
.pricing-toggle__switch::after {
  content: '';
  position: absolute;
  top: 3px; left: 3px;
  width: 20px; height: 20px;
  background: var(--gold);
  border-radius: 50%;
  transition: transform var(--transition);
}
.pricing-toggle__switch.annual::after { transform: translateX(24px); }
.pricing-toggle__save {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-dim);
  padding: 3px 10px;
  border-radius: 100px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
  margin-bottom: 80px;
}
.pricing-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  position: relative;
  transition: all var(--transition);
}
.pricing-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-elevated);
}
.pricing-card--featured {
  border-color: var(--gold);
  background: var(--bg-card);
}
.pricing-card--featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--bg-primary);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 100px;
  white-space: nowrap;
}
.pricing-card__tier {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: block;
}
.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 10px;
}
.pricing-card__currency {
  font-size: 1.2rem;
  color: var(--text-secondary);
  font-weight: 300;
  margin-bottom: 4px;
}
.pricing-card__amount {
  font-family: var(--font-display);
  font-size: 3.8rem;
  font-weight: 300;
  color: var(--text-primary);
  line-height: 1;
}
.pricing-card__period {
  font-size: 0.9rem;
  color: var(--text-muted);
  align-self: flex-end;
  margin-bottom: 4px;
}
.pricing-card__desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.65;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 28px;
}
.pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 40px;
}
.pricing-card__feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.93rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
.feat-check {
  width: 18px; height: 18px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.feat-check svg {
  width: 16px; height: 16px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2.5;
}
.feat-check--no svg { stroke: var(--text-muted); opacity: 0.4; }
.pricing-card__feature.muted { color: var(--text-muted); }
.pricing-card .btn { width: 100%; justify-content: center; }

.comparison { background: var(--bg-secondary); }
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.comparison-table th {
  background: var(--bg-card);
  padding: 24px 28px;
  text-align: left;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
}
.comparison-table th:not(:first-child) { text-align: center; }
.comparison-table th.col-featured { color: var(--gold); background: rgba(0,230,118,0.06); }
.comparison-table td {
  padding: 18px 28px;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
  color: var(--text-secondary);
  background: var(--bg-secondary);
}
.comparison-table td:not(:first-child) { text-align: center; }
.comparison-table td.col-featured { background: rgba(0,230,118,0.03); }
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:hover td { background: var(--bg-card-hover); }
.comparison-table tr:hover td.col-featured { background: rgba(0,230,118,0.06); }

.tcheck { color: var(--gold); font-size: 1rem; }
.tdash  { color: var(--text-muted); font-size: 0.8rem; }

.pricing-faq { background: var(--bg-primary); }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.faq-item {
  background: var(--bg-secondary);
  padding: 40px 40px;
  cursor: pointer;
  transition: background var(--transition);
}
.faq-item:hover { background: var(--bg-card-hover); }
.faq-item__q {
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 12px;
  font-family: var(--font-display);
  font-weight: 400;
}
.faq-item__a {
  font-size: 0.93rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ==================
   16. CONTACT PAGE
   ================== */
.contact { background: var(--bg-primary); }
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}
.contact__info-title {
  font-size: 2.2rem;
  color: var(--text-primary);
  margin-bottom: 18px;
  font-weight: 300;
}
.contact__info-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 52px;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.contact-detail { display: flex; gap: 20px; align-items: flex-start; }
.contact-detail__icon {
  width: 46px; height: 46px;
  display: grid;
  place-items: center;
  background: var(--gold-dim);
  border-radius: var(--radius);
  flex-shrink: 0;
}
.contact-detail__icon svg {
  width: 20px; height: 20px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-detail__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
  display: block;
}
.contact-detail__value {
  font-size: 0.97rem;
  color: var(--text-secondary);
}
.contact-detail__value a { transition: color var(--transition); }
.contact-detail__value a:hover { color: var(--gold); }

.contact__form-wrap {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 56px;
}
.form__title {
  font-size: 1.6rem;
  color: var(--text-primary);
  margin-bottom: 8px;
  font-weight: 300;
}
.form__sub {
  font-size: 0.93rem;
  color: var(--text-muted);
  margin-bottom: 36px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group { margin-bottom: 22px; }
.form-group--full { grid-column: 1 / -1; }
.form-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 15px;
  transition: border-color var(--transition);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--text-muted); }
.form-input:focus,
.form-select:focus,
.form-textarea:focus { border-color: var(--gold); }
.form-textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.6;
}
.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%233D5470' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 48px;
}
.form-select option { background: var(--bg-card); }
.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 8px;
}
.form-note {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.55;
  max-width: 280px;
}

/* ==================
   17. FOOTER
   ================== */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
}
.footer__main {
  padding: 80px 0 64px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 56px;
}
.footer__brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.footer__logo-mark {
  width: 32px; height: 32px;
  background: var(--gold);
  display: grid;
  place-items: center;
  border-radius: var(--radius);
}
.footer__logo-mark svg { width: 16px; height: 16px; fill: var(--bg-primary); }
.footer__brand-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}
.footer__brand-name span { color: var(--gold); }
.footer__brand-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 272px;
}
.footer__socials { display: flex; gap: 10px; }
.footer__social {
  width: 36px; height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.footer__social:hover { border-color: var(--border-gold); }
.footer__social svg {
  width: 15px; height: 15px;
  fill: var(--text-muted);
  transition: fill var(--transition);
}
.footer__social:hover svg { fill: var(--gold); }

.footer__col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 22px;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer__links a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--gold); }

.footer__bottom {
  padding: 24px 0;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__copy { font-size: 13px; color: var(--text-muted); }
.footer__legal { display: flex; gap: 24px; }
.footer__legal a {
  font-size: 13px;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer__legal a:hover { color: var(--gold); }

/* ==================
   18. ANIMATIONS
   ================== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.2; transform: scaleY(0.4); transform-origin: top; }
  60%      { opacity: 1;   transform: scaleY(1);   transform-origin: top; }
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }
.reveal-d5 { transition-delay: 0.5s; }

/* ==================
   19. RESPONSIVE
   ================== */
@media (max-width: 1024px) {
  .services-grid              { grid-template-columns: repeat(2, 1fr); }
  .about-preview__grid        { grid-template-columns: 1fr; gap: 48px; }
  .about-preview__visual      { height: 320px; }
  .story__grid                { grid-template-columns: 1fr; gap: 40px; }
  .story__sidebar             { position: static; }
  .values__grid               { grid-template-columns: repeat(2, 1fr); }
  .team__grid                 { grid-template-columns: repeat(2, 1fr); }
  .service-row                { grid-template-columns: 48px 1fr; padding: 44px; }
  .service-row__right         { grid-column: 2; }
  .pricing-grid               { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto 80px; }
  .faq-grid                   { grid-template-columns: 1fr; }
  .contact__grid              { grid-template-columns: 1fr; gap: 48px; }
  .footer__main               { grid-template-columns: 1fr 1fr; gap: 44px; }
  .stats-bar__grid            { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .stats-bar__item::after     { display: none; }
  .cta-band__inner            { flex-direction: column; text-align: center; }
  .cta-band__actions          { justify-content: center; }
}

@media (max-width: 768px) {
  :root { --nav-height: 64px; }
  .container, .container--narrow { padding: 0 20px; }
  .section   { padding: 80px 0; }
  .section--sm { padding: 56px 0; }

  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }

  .hero__rings { display: none; }
  .hero__glow  { display: none; }

  .services-grid          { grid-template-columns: 1fr; }
  .values__grid           { grid-template-columns: 1fr; }
  .team__grid             { grid-template-columns: 1fr 1fr; }

  .service-row            { grid-template-columns: 1fr; padding: 36px 28px; }
  .service-row__num       { display: none; }
  .service-features       { grid-template-columns: 1fr; }

  .form-row               { grid-template-columns: 1fr; }
  .contact__form-wrap     { padding: 32px 24px; }
  .form-footer            { flex-direction: column; align-items: flex-start; }

  .footer__main           { grid-template-columns: 1fr; }
  .footer__bottom         { flex-direction: column; gap: 12px; text-align: center; }
  .footer__legal          { flex-wrap: wrap; justify-content: center; }

  .comparison-table th,
  .comparison-table td    { padding: 14px 16px; font-size: 12px; }

  .cta-band__actions      { flex-direction: column; width: 100%; }
  .cta-band__actions .btn { width: 100%; justify-content: center; }

  .page-hero              { padding: 130px 0 64px; }
}

/* ============================================
   CONTACT PAGE
   ============================================ */

.contact { padding: 80px 0 120px; }

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.65fr;
  gap: 80px;
  align-items: start;
}

/* --- Info column --- */
.contact__info-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 20px;
}
.contact__info-title em { color: var(--gold); }

.contact__info-desc {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 48px;
}

.contact-details { display: flex; flex-direction: column; gap: 28px; margin-bottom: 48px; }

.contact-detail { display: flex; align-items: flex-start; gap: 16px; }

.contact-detail__icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  border: 1px solid rgba(0,230,118,.2);
  background: rgba(0,230,118,.06);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-detail__icon svg {
  width: 18px; height: 18px;
  stroke: var(--gold);
}

.contact-detail__label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.contact-detail__value {
  display: block;
  color: var(--text-primary);
  font-size: 15px;
  text-decoration: none;
  transition: color .2s;
}
.contact-detail__value:hover { color: var(--gold); }

/* Hours block */
.contact__hours {
  padding: 28px 32px;
  background: rgba(255,255,255,.02);
  border: 1px solid var(--border);
  border-radius: 16px;
}
.contact__hours-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.contact__hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--text-secondary);
}
.contact__hours-row:last-child { border-bottom: none; }
.contact__hours-gold { color: var(--gold); font-weight: 600; }

/* --- Form column --- */
.contact__form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 52px 48px;
}

.form__title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.form__sub {
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 36px;
}

.contact-form { display: flex; flex-direction: column; gap: 20px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group--full { grid-column: 1 / -1; }

.form-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.form-input {
  width: 100%;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 14.5px;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  box-sizing: border-box;
}
.form-input::placeholder { color: var(--text-muted); }
.form-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(0,230,118,.10);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237B9BBF' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 40px;
  cursor: pointer;
}
.form-select option { background: var(--bg-secondary); color: var(--text-primary); }

.form-textarea { resize: vertical; min-height: 130px; line-height: 1.6; }

.form-footer {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 4px;
}

.btn--lg { padding: 16px 36px; font-size: 15px; gap: 10px; }
.btn--lg svg { width: 16px; height: 16px; }

.form-note {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
}
.form-note a { color: var(--gold); text-decoration: none; }
.form-note a:hover { text-decoration: underline; }

/* Form success state */
.form-success {
  text-align: center;
  padding: 48px 24px;
}
.form-success__icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: rgba(0,230,118,.10);
  border: 1px solid rgba(0,230,118,.25);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.form-success__icon svg { width: 26px; height: 26px; stroke: var(--gold); }
.form-success h4 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.form-success p { color: var(--text-secondary); font-size: 15px; }

/* Responsive */
@media (max-width: 1024px) {
  .contact__grid { grid-template-columns: 1fr; gap: 60px; }
  .contact__form-wrap { padding: 40px 36px; }
}

@media (max-width: 768px) {
  .contact__form-wrap { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .form-footer { flex-direction: column; align-items: flex-start; }
}