/* ============================================================
   ADPP Landing — La Fontana Digital
   Design System + Landing Styles (standalone)
   ============================================================ */

/* --- FONTS (Gotham Original + Montserrat Fallback) --------- */
@font-face {
  font-family: 'Gotham';
  src: url('../fonts/GothamNarrow-Book.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gotham';
  src: url('../fonts/GothamNarrow-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gotham Ultra';
  src: url('../fonts/Gotham Ultra.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* --- DESIGN TOKENS ----------------------------------------- */
:root {
  --color-bg:            #E5EBEC;
  --color-bg-alt:        #F0F3F4;
  --color-surface:       #FFFFFF;
  --color-surface-hover: #EDF1F5;
  --color-text:          #1E1E1E;
  --color-text-muted:    #808080;
  --color-border:        #D0D0D0;

  --color-brand:         #11489A;
  --color-brand-light:   #2557A2;
  --color-brand-dark:    #2E3192;
  --color-gold:          #F7B646;
  --color-gold-light:    #F7BA50;
  --color-gold-dark:     #D99A2E;
  --color-green:         #16EA9E;
  --color-green-light:   #3AEDB1;

  --color-success:       #16EA9E;
  --color-warning:       #F7B646;
  --color-danger:        #C1292E;
  --color-info:          #7091C2;

  --shadow-sm:  0 1px 3px rgba(0,0,0,.06);
  --shadow-md:  0 4px 12px rgba(0,0,0,.08);
  --shadow-lg:  0 12px 40px rgba(0,0,0,.12);
  --shadow-glow: 0 0 20px rgba(201,168,76,.15);

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --transition: 200ms cubic-bezier(.4,0,.2,1);
  --transition-slow: 400ms cubic-bezier(.4,0,.2,1);
}

/* --- DARK MODE --------------------------------------------- */
[data-theme="dark"] {
  --color-bg:            #0C0C0F;
  --color-bg-alt:        #131318;
  --color-surface:       #1A1A22;
  --color-surface-hover: #22222C;
  --color-text:          #EAEAEA;
  --color-text-muted:    #8A8A9A;
  --color-border:        #2A2A35;

  --color-brand:         #D63B3B;
  --color-brand-light:   #EF5555;
  --color-brand-dark:    #A52020;
  --color-gold:          #E4CC7A;
  --color-gold-light:    #F0DFA0;
  --color-gold-dark:     #C9A84C;
  --color-green:         #52B788;
  --color-green-light:   #74C69D;

  --color-success:       #52B788;
  --color-warning:       #F4C95D;
  --color-danger:        #EF5555;
  --color-info:          #6B9AC4;

  --shadow-sm:  0 1px 3px rgba(0,0,0,.3);
  --shadow-md:  0 4px 12px rgba(0,0,0,.4);
  --shadow-lg:  0 12px 40px rgba(0,0,0,.5);
  --shadow-glow: 0 0 30px rgba(228,204,122,.08);
}

/* --- RESET & BASE ------------------------------------------ */
*, *::before, *::after {
  margin: 0; padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Gotham', 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  transition: background var(--transition-slow), color var(--transition);
  -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; }

h1, h2, h3, h4, h5, h6 {
  color: var(--color-text);
  font-weight: 600;
  line-height: 1.3;
}

/* ── Container ────────────────────────────────────────────── */
.l-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Section Title Pattern ───────────────────────────────── */
.l-section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: rgba(17,72,154,.08);
  color: var(--color-brand);
  margin-bottom: 16px;
}

[data-theme="dark"] .l-section-tag {
  background: rgba(214,59,59,.1);
}

.l-section-title {
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--color-text);
}

.l-section-subtitle {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 620px;
}

/* ── Header ───────────────────────────────────────────────── */
.l-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all .35s ease;
}

.l-header.scrolled {
  background: rgba(10,30,64,.92);
  backdrop-filter: blur(20px) saturate(1.8);
  -webkit-backdrop-filter: blur(20px) saturate(1.8);
  border-bottom: 1px solid rgba(255,255,255,.06);
  box-shadow: 0 1px 30px rgba(0,0,0,.15);
  padding: 10px 0;
}

[data-theme="dark"] .l-header.scrolled {
  background: rgba(12,12,15,.88);
  border-bottom-color: rgba(255,255,255,.04);
}

.l-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.l-header__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.l-header__logo img {
  height: 140px;
  width: auto;
  object-fit: contain;
}

.l-header__logo-text {
  display: none;
}

/* Logo filter states handled by JS — scrolled shows full color, top shows inverted */

.l-header__nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.l-nav-link {
  padding: 8px 18px;
  font-size: 1.05rem;
  font-weight: 700;
  color: rgba(255,255,255,.7);
  text-decoration: none;
  border-radius: 8px;
  transition: all .2s ease;
}

.l-nav-link:hover {
  color: #fff;
  background: rgba(255,255,255,.08);
}

.l-header.scrolled .l-nav-link {
  color: rgba(255,255,255,.65);
}

.l-header.scrolled .l-nav-link:hover {
  color: #fff;
  background: rgba(255,255,255,.1);
}

.l-nav-cta {
  padding: 10px 26px;
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a1a1a;
  background: var(--color-gold);
  border: none;
  border-radius: 8px;
  text-decoration: none;
  transition: all .25s ease;
  margin-left: 8px;
}

.l-nav-cta:hover {
  background: var(--color-gold-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(247,182,70,.35);
}

/* Menu hamburger */
.l-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.l-hamburger span {
  width: 24px;
  height: 2px;
  background: rgba(255,255,255,.8);
  transition: all .3s ease;
  border-radius: 2px;
}

.l-header.scrolled .l-hamburger span {
  background: rgba(255,255,255,.8);
}

/* ── Hero ─────────────────────────────────────────────────── */
.l-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg,
      #0a1e40 0%,
      #0D3670 25%,
      #11489A 50%,
      #2E3192 80%,
      #0a1e40 100%
    );
}

[data-theme="dark"] .l-hero {
  background:
    linear-gradient(135deg,
      #08080C 0%,
      #0C0C0F 30%,
      #111117 60%,
      #0a0a10 100%
    );
}

.l-hero::before,
.l-hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
}

.l-hero::before {
  width: 600px; height: 600px;
  top: -150px; right: -100px;
  background: var(--color-gold);
  opacity: .2;
  animation: orbFloat 12s ease-in-out infinite;
}

.l-hero::after {
  width: 500px; height: 500px;
  bottom: -150px; left: -100px;
  background: #16EA9E;
  opacity: .12;
  animation: orbFloat 15s ease-in-out infinite reverse;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(30px, -20px) scale(1.05); }
  66%      { transform: translate(-20px, 15px) scale(.95); }
}

.l-hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.l-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 180px 0 80px;
}

.l-hero__content {
  animation: heroSlideIn .8s ease-out;
}

@keyframes heroSlideIn {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}

.l-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 30px;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: rgba(247,182,70,.12);
  color: var(--color-gold);
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(247,182,70,.15);
}

.l-hero__badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--color-gold);
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .5; transform: scale(1.5); }
}

.l-hero__title {
  font-size: 3.4rem;
  font-weight: 900;
  line-height: 1.1;
  color: #FFFFFF;
  margin-bottom: 22px;
}

.l-hero__title em {
  font-style: normal;
  color: var(--color-gold);
}

.l-hero__subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,.7);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 500px;
}

.l-hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.l-btn-hero {
  padding: 16px 38px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all .3s ease;
  border: none;
  cursor: pointer;
}

.l-btn-hero--gold {
  background: var(--color-gold);
  color: #1a1a1a;
  box-shadow: 0 8px 30px rgba(247,182,70,.35);
}

.l-btn-hero--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(247,182,70,.5);
}

.l-btn-hero--outline {
  background: rgba(255,255,255,.06);
  color: #fff;
  border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(10px);
}

.l-btn-hero--outline:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.35);
}

.l-hero__visual {
  position: relative;
  animation: heroFloatIn 1s ease-out .2s both;
}

@keyframes heroFloatIn {
  from { opacity: 0; transform: translateY(40px) scale(.95); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.l-hero__visual img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: 0 40px 80px rgba(0,0,0,.4);
  animation: dashFloat 6s ease-in-out infinite;
}

@keyframes dashFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}

.l-hero__float-badge {
  position: absolute;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: .88rem;
  font-weight: 600;
  box-shadow: 0 8px 30px rgba(0,0,0,.2);
}

.l-hero__float-badge--1 {
  top: 12%; left: -30px;
  animation: floatBadge1 4s ease-in-out infinite;
}

.l-hero__float-badge--2 {
  bottom: 16%; right: -26px;
  animation: floatBadge2 5s ease-in-out infinite;
}

@keyframes floatBadge1 {
  0%, 100% { transform: translate(0, 0); }
  50%      { transform: translate(8px, -10px); }
}

@keyframes floatBadge2 {
  0%, 100% { transform: translate(0, 0); }
  50%      { transform: translate(-6px, 8px); }
}

.l-float-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.l-float-icon--gold { background: rgba(247,182,70,.2); }
.l-float-icon--green { background: rgba(22,234,158,.2); }

/* ── Pillars Strip ────────────────────────────────────────── */
.l-pillars {
  padding: 0;
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  position: relative;
  z-index: 5;
}

.l-pillars__inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.l-pillar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 28px 16px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all .3s ease;
  cursor: default;
}

.l-pillar::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  width: 0; height: 3px;
  background: var(--color-gold);
  transition: all .5s ease;
  transform: translateX(-50%);
  border-radius: 3px 3px 0 0;
}

.l-pillar:hover::after {
  width: 60%;
}

.l-pillar:hover {
  background: var(--color-surface-hover);
}

.l-pillar__icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  background: rgba(17,72,154,.08);
  color: var(--color-brand);
  transition: all .3s ease;
}

[data-theme="dark"] .l-pillar__icon {
  background: rgba(214,59,59,.1);
}

.l-pillar:hover .l-pillar__icon {
  background: var(--color-gold);
  color: #1a1a1a;
  transform: scale(1.1);
}

.l-pillar__title {
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-text);
}

.l-pillar__desc {
  font-size: .82rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* ── Features Section ─────────────────────────────────────── */
.l-features {
  padding: 100px 0;
  background: var(--color-bg);
}

.l-features__header {
  text-align: center;
  margin-bottom: 60px;
}

.l-features__header .l-section-subtitle {
  margin: 0 auto;
}

.l-features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.l-feature-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all .35s ease;
  position: relative;
  overflow: hidden;
}

.l-feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-brand), var(--color-gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s ease;
}

.l-feature-card:hover::before {
  transform: scaleX(1);
}

.l-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,.1);
  border-color: var(--color-gold);
}

[data-theme="dark"] .l-feature-card:hover {
  box-shadow: 0 20px 50px rgba(0,0,0,.3);
}

.l-feature-card__icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  transition: all .3s ease;
}

.l-feature-card:hover .l-feature-card__icon {
  transform: scale(1.1) rotate(-3deg);
}

.l-feature-card__icon--blue    { background: rgba(17,72,154,.1);  color: var(--color-brand); }
.l-feature-card__icon--gold    { background: rgba(247,182,70,.1); color: var(--color-gold); }
.l-feature-card__icon--green   { background: rgba(22,234,158,.1); color: var(--color-green); }
.l-feature-card__icon--info    { background: rgba(112,145,194,.1);color: var(--color-info); }
.l-feature-card__icon--danger  { background: rgba(193,41,46,.1);  color: var(--color-danger); }

.l-feature-card__title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--color-text);
}

.l-feature-card__desc {
  font-size: .95rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

.l-feature-card__tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 18px;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .5px;
  background: rgba(17,72,154,.06);
  color: var(--color-brand);
}

[data-theme="dark"] .l-feature-card__tag {
  background: rgba(214,59,59,.08);
}

/* ── Solution Section ─────────────────────────────────────── */
.l-solution {
  padding: 100px 0;
  background: var(--color-surface);
}

.l-solution__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.l-solution__image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0,0,0,.12);
}

.l-solution__image img {
  width: 100%;
  height: auto;
  transition: transform .5s ease;
}

.l-solution__image:hover img {
  transform: scale(1.03);
}

.l-benefits {
  display: grid;
  gap: 20px;
  margin-top: 32px;
}

.l-benefit {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  border-radius: var(--radius-md);
  background: var(--color-bg);
  border: 1px solid transparent;
  transition: all .3s ease;
}

.l-benefit:hover {
  border-color: var(--color-gold);
  transform: translateX(4px);
}

.l-benefit__icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  background: rgba(247,182,70,.1);
  color: var(--color-gold);
}

.l-benefit__text strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 4px;
}

.l-benefit__text p {
  font-size: .9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ── Stats Section ────────────────────────────────────────── */
.l-stats {
  padding: 80px 0;
  background:
    linear-gradient(135deg,
      #0D3670 0%,
      #11489A 50%,
      #2E3192 100%
    );
  position: relative;
  overflow: hidden;
}

[data-theme="dark"] .l-stats {
  background: linear-gradient(135deg, #111117 0%, #1A1A22 50%, #111117 100%);
}

.l-stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}

.l-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
  z-index: 1;
}

.l-stat {
  text-align: center;
}

.l-stat__number {
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--color-gold);
  line-height: 1;
  margin-bottom: 10px;
}

.l-stat__label {
  font-size: .95rem;
  color: rgba(255,255,255,.7);
  font-weight: 500;
}

[data-theme="dark"] .l-stat__label {
  color: var(--color-text-muted);
}

/* ── Contact Section ──────────────────────────────────────── */
.l-contact {
  padding: 100px 0;
  background: var(--color-bg);
}

.l-contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.l-contact-form {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  box-shadow: var(--shadow-lg);
}

.l-contact-form__title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--color-text);
}

.l-form-group {
  margin-bottom: 18px;
}

.l-form-label {
  display: block;
  margin-bottom: 8px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--color-text-muted);
  letter-spacing: .3px;
}

.l-form-input,
.l-form-textarea {
  width: 100%;
  padding: 14px 18px;
  font-size: 1rem;
  font-family: inherit;
  background: var(--color-bg-alt);
  color: var(--color-text);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  outline: none;
  transition: all .25s ease;
}

.l-form-input:focus,
.l-form-textarea:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(247,182,70,.12);
}

.l-form-textarea {
  min-height: 120px;
  resize: vertical;
}

.l-form-submit {
  width: 100%;
  padding: 16px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .5px;
  color: #1a1a1a;
  background: var(--color-gold);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all .3s ease;
  margin-top: 8px;
}

.l-form-submit:hover {
  background: var(--color-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(247,182,70,.35);
}

.l-form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
  color: var(--color-success);
}

.l-form-success.visible {
  display: block;
  animation: fadeInUp .5s ease;
}

.l-contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.l-contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 22px;
  border-radius: var(--radius-md);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  transition: all .3s ease;
}

.l-contact-info__item:hover {
  border-color: var(--color-gold);
  transform: translateX(4px);
}

.l-contact-info__icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  background: rgba(17,72,154,.08);
  color: var(--color-brand);
  flex-shrink: 0;
}

[data-theme="dark"] .l-contact-info__icon {
  background: rgba(214,59,59,.1);
}

.l-contact-info__text strong {
  display: block;
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-text);
  margin-bottom: 4px;
}

.l-contact-info__text p {
  font-size: .9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ── CTA Banner ───────────────────────────────────────────── */
.l-cta-banner {
  padding: 80px 0;
  background: url('../img/contact-bg.png') center/cover no-repeat;
  position: relative;
}

.l-cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,54,112,.92), rgba(17,72,154,.88));
}

[data-theme="dark"] .l-cta-banner::before {
  background: linear-gradient(135deg, rgba(12,12,15,.95), rgba(26,26,34,.9));
}

.l-cta-banner__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.l-cta-banner__title {
  font-size: 2.4rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}

.l-cta-banner__subtitle {
  font-size: 1.12rem;
  color: rgba(255,255,255,.7);
  margin-bottom: 32px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Footer ───────────────────────────────────────────────── */
.l-footer {
  padding: 50px 0 30px;
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
}

.l-footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}

.l-footer__logo {
  height: 120px;
  width: auto;
  margin-bottom: 14px;
  filter: brightness(0) invert(1);
}



.l-footer__brand p {
  font-size: .92rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  max-width: 300px;
}

.l-footer__title {
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 16px;
}

.l-footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.l-footer__links a {
  font-size: .92rem;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color .2s ease;
}

.l-footer__links a:hover {
  color: var(--color-text);
}

.l-footer__newsletter p {
  font-size: .92rem;
  color: var(--color-text-muted);
  margin-bottom: 14px;
}

.l-footer__newsletter-form {
  display: flex;
  gap: 8px;
}

.l-footer__newsletter-input {
  flex: 1;
  padding: 12px 16px;
  font-size: .9rem;
  font-family: inherit;
  background: var(--color-bg-alt);
  color: var(--color-text);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  outline: none;
}

.l-footer__newsletter-input:focus {
  border-color: var(--color-gold);
}

.l-footer__newsletter-btn {
  padding: 12px 22px;
  font-size: .88rem;
  font-weight: 700;
  background: var(--color-brand);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all .2s ease;
}

.l-footer__newsletter-btn:hover {
  background: var(--color-brand-light);
}

.l-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--color-border);
  font-size: .85rem;
  color: var(--color-text-muted);
}

.l-footer__bottom-links {
  display: flex;
  gap: 20px;
}

.l-footer__bottom-links a {
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color .2s ease;
}

.l-footer__bottom-links a:hover {
  color: var(--color-text);
}

/* ── Scroll Reveal Animation ──────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Theme Toggle (Landing) ───────────────────────────────── */
.l-theme-toggle {
  padding: 8px 12px;
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.7);
  font-size: .85rem;
  cursor: pointer;
  transition: all .2s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}

.l-theme-toggle:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.l-header.scrolled .l-theme-toggle {
  background: var(--color-surface);
  border-color: var(--color-border);
  color: var(--color-text-muted);
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .l-hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .l-hero__subtitle { margin: 0 auto 36px; }
  .l-hero__actions { justify-content: center; }
  .l-hero__float-badge { display: none; }
  .l-features__grid { grid-template-columns: repeat(2, 1fr); }
  .l-solution__inner { grid-template-columns: 1fr; gap: 40px; }
  .l-contact__inner { grid-template-columns: 1fr; gap: 40px; }
  .l-footer__inner { grid-template-columns: 1fr 1fr; gap: 30px; }
}

@media (max-width: 768px) {
  html { font-size: 16px; }

  .l-header__logo img { height: 80px; }
  .l-header__nav { display: none; }
  .l-header__nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--color-surface);
    border-bottom: 1px solid var(--color-border);
    padding: 16px;
    gap: 4px;
    box-shadow: 0 12px 30px rgba(0,0,0,.1);
  }
  .l-header__nav.open .l-nav-link {
    color: var(--color-text);
    padding: 14px 16px;
    font-size: 1rem;
  }
  .l-header__nav.open .l-nav-cta {
    text-align: center;
    margin: 8px 0 0;
    font-size: 1rem;
    padding: 14px 24px;
  }
  .l-header__nav.open .l-theme-toggle {
    background: var(--color-bg-alt);
    color: var(--color-text-muted);
    border-color: var(--color-border);
    justify-content: center;
    margin-top: 4px;
  }
  .l-hamburger { display: flex; }

  /* ── Hero mobile ── */
  .l-hero__title { font-size: 2.4rem; }
  .l-hero__subtitle { font-size: 1.05rem; }
  .l-hero__badge { font-size: .8rem; }
  .l-hero__inner { padding: 100px 0 60px; }
  .l-btn-hero { font-size: 1rem; padding: 16px 32px; }

  /* ── Sections mobile ── */
  .l-section-title { font-size: 1.85rem; }
  .l-section-subtitle { font-size: 1.02rem; }
  .l-section-tag { font-size: .78rem; }

  /* ── Pillars mobile ── */
  .l-pillars__inner { grid-template-columns: repeat(3, 1fr); }
  .l-pillar__title { font-size: .9rem; }
  .l-pillar__desc { font-size: .85rem; }

  /* ── Feature cards mobile ── */
  .l-features { padding: 70px 0; }
  .l-features__grid { grid-template-columns: 1fr; }
  .l-feature-card { padding: 28px 22px; }
  .l-feature-card__title { font-size: 1.15rem; }
  .l-feature-card__desc { font-size: .95rem; }
  .l-feature-card__tag { font-size: .78rem; }

  /* ── Solution mobile ── */
  .l-solution { padding: 70px 0; }
  .l-benefit__text strong { font-size: 1rem; }
  .l-benefit__text p { font-size: .9rem; }

  /* ── Stats mobile ── */
  .l-stats { padding: 60px 0; }
  .l-stats__grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .l-stat__number { font-size: 2.6rem; }
  .l-stat__label { font-size: .9rem; }

  /* ── Contact mobile ── */
  .l-contact { padding: 70px 0; }
  .l-contact-form__title { font-size: 1.3rem; }
  .l-form-label { font-size: .88rem; }
  .l-form-input, .l-form-textarea { font-size: 1rem; padding: 14px 16px; }
  .l-form-submit { font-size: 1rem; padding: 16px; }
  .l-contact-info__text strong { font-size: 1rem; }
  .l-contact-info__text p { font-size: .88rem; }

  /* ── CTA mobile ── */
  .l-cta-banner { padding: 60px 0; }
  .l-cta-banner__title { font-size: 1.9rem; }
  .l-cta-banner__subtitle { font-size: 1.02rem; }

  /* ── Footer mobile ── */
  .l-footer__inner { grid-template-columns: 1fr; }
  .l-footer__brand p { font-size: .9rem; max-width: 100%; }
  .l-footer__title { font-size: .82rem; }
  .l-footer__links a { font-size: .92rem; }
  .l-footer__newsletter p { font-size: .9rem; }
  .l-footer__bottom { flex-direction: column; gap: 12px; text-align: center; font-size: .85rem; }
}

@media (max-width: 480px) {
  .l-hero__title { font-size: 2rem; }
  .l-hero__subtitle { font-size: 1rem; }
  .l-hero__actions { flex-direction: column; }
  .l-btn-hero { width: 100%; justify-content: center; }

  .l-pillars__inner { grid-template-columns: repeat(2, 1fr); }
  .l-pillar:last-child { grid-column: span 2; }
  .l-pillar { padding: 22px 12px; }
  .l-pillar__title { font-size: .82rem; }
  .l-pillar__desc { font-size: .78rem; }

  .l-section-title { font-size: 1.6rem; }

  .l-stats__grid { grid-template-columns: 1fr; }
  .l-stat__number { font-size: 2.4rem; }

  .l-contact-form { padding: 24px 18px; }
  .l-cta-banner__title { font-size: 1.55rem; }
}
