/* =========================================
   Advanedge Consulting — Global Styles
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Source+Sans+Pro:wght@300;400;600;700&display=swap');

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

:root {
  --navy:  #0A1628;
  --navy2: #0f1e38;
  --navy3: #152340;
  --gold:  #C9A84C;
  --white: #FFFFFF;
  --gray:  #8A9BB0;
  --light: #F4F6F9;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Source Sans Pro', sans-serif;
  background: var(--navy);
  color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; }

/* --- Announcement Banner --- */
.announcement-banner {
  background: var(--gold);
  color: var(--navy);
  text-align: center;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  position: relative;
  z-index: 1000;
}
.announcement-banner a {
  color: var(--navy);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.announcement-banner a:hover { opacity: 0.8; }

/* --- Navigation --- */
.nav {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(10, 22, 40, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  padding: 0 32px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.5); }

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-logo img {
  height: 44px;
  width: 44px;
  object-fit: contain;
  border-radius: 4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  list-style: none;
  margin-left: 16px;
}
.nav-links a {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--gold); }

.btn-nav {
  background: var(--gold);
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 22px;
  border: none;
  border-radius: 2px;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.btn-nav:hover { background: #d4b360; transform: translateY(-1px); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--navy);
  z-index: 998;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 24px;
  font-family: 'Playfair Display', serif;
  color: var(--white);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .btn-nav { font-size: 16px; padding: 14px 32px; }

/* --- Shared Section Utilities --- */
.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-headline {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
}

.gold-rule {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 32px;
}

/* Scroll animation */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Hero --- */
.hero {
  min-height: 100vh;
  background: var(--navy);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 60px,
    rgba(201,168,76,0.04) 60px,
    rgba(201,168,76,0.04) 61px
  );
  pointer-events: none;
}

.hero-watermark {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
  /* Fade out toward the center so dots don't compete with text */
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 85% 80%, black 20%, transparent 70%);
  mask-image: radial-gradient(ellipse 80% 80% at 85% 80%, black 20%, transparent 70%);
}

.hero-content {
  text-align: center;
  max-width: 820px;
  padding: 80px 24px;
  position: relative;
  z-index: 1;
}

.hero-rule {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 36px;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.hero-rule.loaded { opacity: 1; }

.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease 0.3s, transform 0.6s ease 0.3s;
}
.hero-headline.loaded { opacity: 1; transform: translateY(0); }

.hero-sub {
  font-size: 20px;
  color: rgba(255,255,255,0.6);
  max-width: 640px;
  margin: 0 auto 44px;
  line-height: 1.7;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease 0.6s, transform 0.6s ease 0.6s;
}
.hero-sub.loaded { opacity: 1; transform: translateY(0); }

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease 0.9s, transform 0.6s ease 0.9s;
}
.hero-buttons.loaded { opacity: 1; transform: translateY(0); }

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 36px;
  border: 2px solid var(--gold);
  border-radius: 2px;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: #d4b360; border-color: #d4b360; transform: translateY(-2px); }

.btn-secondary {
  background: transparent;
  color: var(--gold);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 36px;
  border: 2px solid var(--gold);
  border-radius: 2px;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}
.btn-secondary:hover { background: rgba(201,168,76,0.1); transform: translateY(-2px); }

/* --- Journey Section --- */
.journey {
  background: var(--white);
  padding: 100px 40px;
}

.journey-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.journey .section-headline { color: var(--navy); }

.journey-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 60px;
  position: relative;
}

.journey-columns::before {
  content: '';
  position: absolute;
  top: 48px;
  left: calc(16.66% + 20px);
  right: calc(16.66% + 20px);
  height: 1px;
  border-top: 2px dashed rgba(201,168,76,0.4);
  pointer-events: none;
}

.journey-col {
  padding: 0 32px;
  text-align: center;
}

.journey-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.journey-icon svg { width: 26px; height: 26px; }

.phase-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.journey-col h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
}

.journey-col p {
  font-size: 15px;
  color: #5a6a7e;
  line-height: 1.75;
}

.journey-quote {
  margin-top: 60px;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--navy);
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  opacity: 0.85;
}

/* --- Services --- */
.services {
  background: var(--navy);
  padding: 100px 40px;
}

.services-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.services .section-headline { color: var(--white); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: 56px;
  background: rgba(201,168,76,0.08);
}

.service-card {
  background: var(--navy2);
  padding: 44px 40px;
  text-align: left;
  border-top: 3px solid var(--gold);
  transition: background 0.2s, transform 0.2s;
}
.service-card:hover { background: var(--navy3); transform: translateY(-3px); }

.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.service-card p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.8;
}

/* --- Digital Growth Branch --- */
.digital-growth {
  background: #F4F6F9;
  padding: 100px 40px;
  border-top: 4px solid var(--gold);
}

.dg-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.dg-header {
  text-align: center;
  margin-bottom: 60px;
}

.dg-branch-tag {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
}

.dg-branch-line {
  display: block;
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

.dg-branch-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}

.dg-header .section-label { margin-bottom: 12px; }
.dg-header .section-headline { color: var(--navy); margin-bottom: 20px; }

.dg-sub {
  font-size: 17px;
  color: #5a6a7e;
  max-width: 660px;
  margin: 0 auto;
  line-height: 1.75;
}

.dg-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 56px;
}

.dg-card {
  background: var(--white);
  border-top: 3px solid var(--gold);
  padding: 40px 32px;
  box-shadow: 0 4px 24px rgba(10,22,40,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}
.dg-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 36px rgba(10,22,40,0.1);
}

.dg-icon {
  width: 52px;
  height: 52px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.dg-icon svg { width: 24px; height: 24px; }

.dg-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.dg-card p {
  font-size: 15px;
  color: #5a6a7e;
  line-height: 1.8;
}

.dg-cta {
  text-align: center;
}

.dg-cta-text {
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 24px;
  font-family: 'Playfair Display', serif;
  font-style: italic;
}

@media (max-width: 768px) {
  .digital-growth { padding: 64px 20px; }
  .dg-cards { grid-template-columns: 1fr; }
  .dg-branch-line { display: none; }
}

/* --- Digital Growth Teaser --- */
.dg-teaser {
  background: var(--navy2);
  border-top: 1px solid rgba(201,168,76,0.15);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  padding: 80px 40px;
}

.dg-teaser-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: center;
}

.dg-teaser-text .section-label { margin-bottom: 12px; }

.dg-teaser-headline {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}

.dg-teaser-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 28px;
}

.dg-teaser-btn { display: inline-block; }

.dg-teaser-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  flex-shrink: 0;
}

.dg-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 4px;
  padding: 12px 16px;
  min-width: 180px;
}
.dg-badge svg { width: 18px; height: 18px; flex-shrink: 0; }
.dg-badge span {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
}

@media (max-width: 900px) {
  .dg-teaser-inner { grid-template-columns: 1fr; gap: 40px; }
  .dg-teaser-badges { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .dg-teaser { padding: 56px 20px; }
  .dg-teaser-badges { grid-template-columns: 1fr; }
}

/* --- Why Advanedge --- */
.why {
  background: var(--white);
  padding: 100px 40px;
}

.why-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.why-header { text-align: center; margin-bottom: 64px; }
.why .section-headline { color: var(--navy); }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.why-left p {
  font-size: 16px;
  color: #4a5a6e;
  line-height: 1.85;
  margin-bottom: 20px;
}

.why-right { padding-top: 8px; }

.why-point {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 32px;
}

.why-check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: rgba(201,168,76,0.1);
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.why-check svg { width: 14px; height: 14px; }

.why-point-text strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.why-point-text span {
  font-size: 14px;
  color: #5a6a7e;
}

/* --- Founder Bio --- */
.founder {
  background: var(--navy);
  padding: 100px 40px;
  border-top: 1px solid rgba(201,168,76,0.12);
}

.founder-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 80px;
  align-items: start;
}

.founder-photo-col {
  text-align: center;
}

.founder-photo-wrap {
  width: 240px;
  height: 240px;
  margin: 0 auto 24px;
  border-radius: 50%;
  border: 3px solid var(--gold);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy2);
  box-shadow: 0 0 0 8px rgba(201,168,76,0.08);
}

.founder-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-initials {
  font-family: 'Playfair Display', serif;
  font-size: 64px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.04em;
  line-height: 1;
}

.founder-social {
  margin-top: 8px;
}

.founder-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.4);
  padding: 8px 18px;
  border-radius: 2px;
  transition: background 0.2s, border-color 0.2s;
}
.founder-linkedin:hover { background: rgba(201,168,76,0.08); border-color: var(--gold); }
.founder-linkedin svg { width: 16px; height: 16px; }

.founder-bio-col .section-label { color: var(--gold); }
.founder-bio-col .section-headline { color: var(--white); margin-bottom: 4px; }

.founder-title-tag {
  font-size: 14px;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 28px;
  opacity: 0.85;
}

.founder-bio {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  line-height: 1.85;
  margin-bottom: 18px;
}

@media (max-width: 900px) {
  .founder-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .founder-photo-wrap {
    width: 180px;
    height: 180px;
  }
  .founder-initials { font-size: 48px; }
}

@media (max-width: 768px) {
  .founder { padding: 64px 20px; }
}

/* --- Ecosystem --- */
.ecosystem {
  background: var(--navy2);
  padding: 100px 40px;
}

.ecosystem-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.ecosystem .section-headline { color: var(--white); }

.ecosystem-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  max-width: 600px;
  margin: 0 auto 56px;
}

.ecosystem-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.eco-logo-card {
  background: #ffffff;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  padding: 14px 22px;
  min-width: 120px;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.eco-logo-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.eco-logo-card img {
  height: 34px;
  width: auto;
  max-width: 110px;
  object-fit: contain;
  opacity: 0.85;
  transition: opacity 0.2s;
}
.eco-logo-card:hover img { opacity: 1; }

.eco-text-badge {
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.75;
}

/* --- Testimonials --- */
.testimonials {
  background: var(--white);
  padding: 100px 40px;
}

.testimonials-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.testimonials .section-headline { color: var(--navy); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}

.testimonial-card {
  background: var(--white);
  border-left: 4px solid var(--gold);
  padding: 36px 32px;
  text-align: left;
  box-shadow: 0 4px 32px rgba(10,22,40,0.08);
  border-radius: 2px;
}

.testimonial-headshot {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 2px solid rgba(201,168,76,0.3);
}

.testimonial-quote {
  font-size: 15px;
  color: #4a5a6e;
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-name {
  font-weight: 700;
  color: var(--navy);
  font-size: 15px;
}

.testimonial-title {
  font-size: 13px;
  color: var(--gold);
  margin-top: 4px;
}

/* --- Blog --- */
.blog {
  background: var(--navy);
  padding: 100px 40px;
}

.blog-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.blog .section-headline { color: var(--white); }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}

.blog-card {
  background: var(--navy2);
  border-top: 3px solid var(--gold);
  padding: 36px 32px;
  text-align: left;
  transition: transform 0.2s;
}
.blog-card:hover { transform: translateY(-4px); }

.blog-date {
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.blog-title {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 24px;
}

.blog-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap 0.2s;
}
.blog-link:hover { gap: 10px; }
.blog-link svg { width: 14px; height: 14px; }

/* --- CTA Banner --- */
.cta-banner {
  background: var(--gold);
  padding: 80px 40px;
  text-align: center;
}

.cta-banner .section-headline {
  color: var(--navy);
  margin-bottom: 16px;
}

.cta-banner p {
  font-size: 18px;
  color: rgba(10,22,40,0.75);
  margin-bottom: 40px;
}

.btn-dark {
  background: var(--navy);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 40px;
  border: 2px solid var(--white);
  border-radius: 2px;
  transition: background 0.2s, transform 0.15s;
}
.btn-dark:hover { background: var(--navy2); transform: translateY(-2px); }

/* --- Footer --- */
.footer {
  background: var(--navy);
  border-top: 1px solid rgba(201,168,76,0.15);
  padding: 72px 40px 0;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.footer-logo img {
  height: 40px;
  width: 40px;
  object-fit: contain;
  border-radius: 3px;
}
.footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  max-width: 220px;
  line-height: 1.6;
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--white); }

.footer-contact { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.9; }
.footer-contact a { color: var(--gold); }
.footer-contact a:hover { text-decoration: underline; }

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}

.footer-bottom a { color: rgba(255,255,255,0.4); margin-left: 16px; }
.footer-bottom a:hover { color: var(--white); }

/* =========================================
   Responsive
   ========================================= */

@media (max-width: 1024px) {
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav { padding: 0 20px; }
  .nav-links, .btn-nav { display: none; }
  .hamburger { display: flex; }

  .hero-headline { font-size: 36px; }
  .hero-sub { font-size: 16px; }

  .section-headline { font-size: 30px; }

  .journey { padding: 64px 20px; }
  .journey-columns {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .journey-columns::before { display: none; }

  .services { padding: 64px 20px; }
  .services-grid { grid-template-columns: 1fr; gap: 2px; }

  .why { padding: 64px 20px; }

  .ecosystem { padding: 64px 20px; }

  .testimonials { padding: 64px 20px; }
  .testimonials-grid { grid-template-columns: 1fr; }

  .blog { padding: 64px 20px; }
  .blog-grid { grid-template-columns: 1fr; }

  .cta-banner { padding: 56px 20px; }

  .footer { padding: 56px 20px 0; }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .announcement-banner { font-size: 11px; }
  .hero-headline { font-size: 28px; }
}
