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

:root {
  --navy:    #0B1929;
  --blue:    #1B3A5C;
  --steel:   #4A7FB5;
  --gold:    #C9982A;
  --gold-lt: #E8C46A;
  --teal:    #2A9D8F;
  --teal-lt: #3DBDAE;
  --smoke:   #F4F6F9;
  --light:   #E8ECF1;
  --muted:   #6B7A8D;
  --ink:     #0F1923;
  --white:   #FFFFFF;

  --font-display: 'Tajawal', sans-serif;
  --font-body: 'IBM Plex Sans Arabic', sans-serif;

  --transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-card: 0 8px 40px rgba(11,25,41,0.12), 0 2px 8px rgba(0,0,0,0.06);
  --shadow-gold: 0 0 40px rgba(201,152,42,0.15);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ═══════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity:0; transform:translateY(32px); }
  to   { opacity:1; transform:translateY(0); }
}
@keyframes fadeIn {
  from { opacity:0; } to { opacity:1; }
}
@keyframes rotateSlow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes rotateReverse {
  from { transform: rotate(0deg); }
  to   { transform: rotate(-360deg); }
}
@keyframes pulse {
  0%,100% { opacity:0.6; transform:scale(1); }
  50%     { opacity:1;   transform:scale(1.08); }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}
@keyframes drawLine {
  from { stroke-dashoffset: 300; }
  to   { stroke-dashoffset: 0; }
}
@keyframes scaleIn {
  from { opacity:0; transform:scale(0.92); }
  to   { opacity:1; transform:scale(1); }
}

.animate-up   { animation: fadeUp  0.7s var(--transition) both; }
.animate-in   { animation: fadeIn  0.6s ease both; }
.animate-scale{ animation: scaleIn 0.6s var(--transition) both; }
.delay-1 { animation-delay:0.1s; }
.delay-2 { animation-delay:0.2s; }
.delay-3 { animation-delay:0.35s; }
.delay-4 { animation-delay:0.5s; }
.delay-5 { animation-delay:0.65s; }

/* ═══════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 48px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(11,25,41,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: var(--transition);
}

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

.nav-logo-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.nav-brand { font-family:var(--font-display); font-size:17px; font-weight:800; color:var(--gold); letter-spacing:0.5px; }
.nav-sub   { font-size:9px; letter-spacing:2px; color:rgba(255,255,255,0.3); font-weight:500; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content:'';
  position:absolute;
  bottom:-4px; right:0;
  width:0; height:1.5px;
  background: var(--gold);
  transition: width 0.3s var(--transition);
}
.nav-links a:hover { color: white; }
.nav-links a:hover::after { width:100%; }

.nav-cta {
  padding: 9px 22px;
  background: var(--gold);
  color: var(--navy) !important;
  border-radius: 6px;
  font-weight: 700 !important;
  font-size: 13px !important;
  letter-spacing: 0.3px;
  transition: all 0.2s !important;
  white-space: nowrap;
}
.nav-cta:hover {
  background: var(--gold-lt) !important;
  transform: translateY(-1px);
}
.nav-cta::after { display:none !important; }

.nav-mobile-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-mobile-btn span {
  width: 22px; height: 2px;
  background: rgba(255,255,255,0.7);
  border-radius: 2px;
  transition: var(--transition);
}

/* ═══════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════ */
.hero {
  min-height: 100vh;
  background: var(--navy);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 120px 48px 80px;
}

/* Background atmosphere */
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-bg::before {
  content:'';
  position:absolute;
  width: 900px; height: 900px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(27,58,92,0.5) 0%, transparent 70%);
  top: 50%; left: 60%;
  transform: translate(-50%,-50%);
}

.hero-bg::after {
  content:'';
  position:absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,152,42,0.06) 0%, transparent 70%);
  top: 30%; right: 5%;
}

/* Grid dots pattern */
.hero-dots {
  position:absolute; inset:0;
  background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}

/* LEFT — text content */
.hero-content { display:flex; flex-direction:column; gap:28px; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
}
.hero-eyebrow::before {
  content:'';
  width: 28px; height: 1.5px;
  background: var(--gold);
  display: inline-block;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 900;
  line-height: 1.18;
  color: white;
}
.hero-title .gold  { color: var(--gold); }
.hero-title .teal  { color: var(--teal); }
.hero-title .light { color: rgba(255,255,255,0.65); font-weight:300; }

.hero-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  line-height: 2;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.25s;
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
}
.btn-primary:hover {
  background: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,152,42,0.3);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 28px;
  border: 1.5px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.75);
  border-radius: 8px;
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.25s;
  font-family: var(--font-body);
  cursor: pointer;
  background: transparent;
}
.btn-outline:hover {
  border-color: rgba(255,255,255,0.5);
  color: white;
  background: rgba(255,255,255,0.05);
}

.hero-stats {
  display: flex;
  gap: 40px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: white;
  line-height: 1;
}
.hero-stat-num span { color: var(--gold); }
.hero-stat-label {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  margin-top: 4px;
  letter-spacing: 0.5px;
}

/* RIGHT — animated heptagon */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.heptagon-wrapper {
  position: relative;
  width: 380px;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hept-outer-ring {
  position:absolute;
  animation: rotateSlow 60s linear infinite;
}

.hept-inner-ring {
  position:absolute;
  animation: rotateReverse 40s linear infinite;
}

.hept-center {
  position: relative;
  z-index: 2;
}

/* Glow effect behind heptagon */
.hept-glow {
  position:absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,152,42,0.08) 0%, transparent 70%);
  animation: pulse 4s ease-in-out infinite;
}

/* ═══════════════════════════════════════
   PROMISE STRIP
═══════════════════════════════════════ */
.promise-strip {
  background: linear-gradient(135deg, var(--blue), #0D2640);
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  overflow: hidden;
  position: relative;
}
.promise-strip::before {
  content:'';
  position:absolute;
  top:0; right:0; bottom:0;
  width: 3px;
  background: linear-gradient(to bottom, var(--gold), var(--teal));
}
.promise-strip::after {
  content:'';
  position:absolute;
  top:0; left:0; bottom:0;
  width: 3px;
  background: linear-gradient(to bottom, var(--teal), var(--gold));
}

.promise-text {
  font-family: var(--font-display);
  font-size: clamp(16px, 2.5vw, 22px);
  font-weight: 700;
  color: white;
  text-align: center;
  line-height: 1.6;
}
.promise-text .g { color: var(--gold); }
.promise-text .t { color: var(--teal-lt); }

.promise-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════
   SECTION UTILITIES
═══════════════════════════════════════ */
.section { padding: 96px 48px; }
.section-light { background: var(--smoke); }
.section-white { background: var(--white); }
.section-dark  { background: var(--navy); }
.section-blue  { background: var(--blue); }

.section-header { margin-bottom: 56px; }
.section-header.centered { text-align: center; }

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 800;
  line-height: 1.25;
  color: var(--ink);
}
.section-title.light { color: white; }
.section-title .g { color: var(--gold); }
.section-title .t { color: var(--teal); }

.section-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.9;
  max-width: 560px;
  margin-top: 14px;
}
.section-desc.light { color: rgba(255,255,255,0.45); }

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

/* ═══════════════════════════════════════
   SERVICES SECTION
═══════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--white);
  border-radius: 16px;
  padding: 36px;
  border: 1.5px solid var(--light);
  transition: all 0.35s var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  display: block;
  color: inherit;
}

.service-card::before {
  content:'';
  position:absolute;
  top:0; right:0;
  width:0; height:3px;
  background: linear-gradient(to left, var(--gold), var(--teal));
  transition: width 0.4s var(--transition);
}

.service-card:hover {
  border-color: rgba(201,152,42,0.25);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.service-card:hover::before { width: 100%; }

.service-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(27,58,92,0.08), rgba(201,152,42,0.06));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 20px;
}

.service-number {
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 8px;
}

.service-title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.3;
}

.service-desc {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.85;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  margin-top: 20px;
  letter-spacing: 0.5px;
  opacity: 0;
  transform: translateX(8px);
  transition: all 0.3s;
}
.service-card:hover .service-link {
  opacity: 1;
  transform: translateX(0);
}

/* ═══════════════════════════════════════
   ABOUT TEASER
═══════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 80px;
  align-items: center;
}

.about-photo-wrapper {
  position: relative;
}

.about-photo-frame {
  aspect-ratio: 0.85;
  border-radius: 20px;
  background: linear-gradient(160deg, var(--blue), #0D2640);
  position: relative;
  overflow: hidden;
  max-width: 380px;
}

/* Placeholder photo with initials */
.about-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.about-initials {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 900;
  color: rgba(255,255,255,0.08);
}

.about-photo-label {
  font-size: 10px;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.2);
}

/* Floating badge */
.about-badge {
  position: absolute;
  bottom: -16px;
  left: -20px;
  background: var(--navy);
  border: 1px solid rgba(201,152,42,0.25);
  border-radius: 14px;
  padding: 16px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-card);
}

.about-badge-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(201,152,42,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-badge-num {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.about-badge-label {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  margin-top: 2px;
}

/* Heptagon watermark in photo */
.about-photo-hept {
  position: absolute;
  bottom: 20px;
  right: 20px;
  opacity: 0.06;
}

.about-content { display:flex; flex-direction:column; gap:24px; }

.about-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.about-tag {
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.tag-gold  { background: rgba(201,152,42,0.1);  color: var(--gold); }
.tag-teal  { background: rgba(42,157,143,0.1);  color: var(--teal); }
.tag-steel { background: rgba(74,127,181,0.1);  color: var(--steel); }

.about-text {
  font-size: 15px;
  color: #444;
  line-height: 2;
}

.about-quote {
  border-right: 3px solid var(--gold);
  padding-right: 20px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.6;
}
.about-quote .g { color: var(--gold); }

.clifton-strip {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.clifton-badge {
  padding: 6px 14px;
  border-radius: 6px;
  background: var(--smoke);
  border: 1px solid var(--light);
  font-size: 11.5px;
  font-weight: 600;
  color: var(--blue);
}

/* ═══════════════════════════════════════
   NUMBERS BAR
═══════════════════════════════════════ */
.numbers-bar {
  background: linear-gradient(135deg, #0A1929, #1B3A5C);
  padding: 64px 48px;
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.number-item {
  text-align: center;
  padding: 32px 24px;
  border-radius: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.3s;
}

.number-item:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(201,152,42,0.2);
  transform: translateY(-3px);
}

.number-value {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 900;
  color: white;
  line-height: 1;
  margin-bottom: 8px;
}
.number-value span { color: var(--gold); }

.number-label {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
  letter-spacing: 0.5px;
}

/* ═══════════════════════════════════════
   SEVEN PATHS TEASER
═══════════════════════════════════════ */
.paths-section {
  background: var(--navy);
  padding: 96px 48px;
  position: relative;
  overflow: hidden;
}

.paths-section::before {
  content:'';
  position:absolute;
  top:-200px; left:50%;
  transform: translateX(-50%);
  width: 800px; height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(27,58,92,0.4) 0%, transparent 70%);
  pointer-events: none;
}

.paths-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.paths-radar {
  display: flex;
  justify-content: center;
  position: relative;
}

.paths-content { display:flex; flex-direction:column; gap:28px; }

.path-pills {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.path-pill {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 18px;
  border-radius: 10px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.25s;
  cursor: default;
}

.path-pill:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(201,152,42,0.15);
  transform: translateX(-4px);
}

.pill-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.pill-name {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  flex: 1;
}

.pill-en {
  font-size: 10px;
  color: rgba(255,255,255,0.2);
  letter-spacing: 1px;
  direction: ltr;
}

.paths-teaser-note {
  padding: 18px 22px;
  border-radius: 10px;
  background: rgba(201,152,42,0.07);
  border: 1px solid rgba(201,152,42,0.15);
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
}
.paths-teaser-note strong { color: var(--gold); }

/* ═══════════════════════════════════════
   KNOWLEDGE CENTER PREVIEW
═══════════════════════════════════════ */
.knowledge-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 0;
}

.article-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  border: 1.5px solid var(--light);
  transition: all 0.3s var(--transition);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}

.article-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: rgba(201,152,42,0.2);
}

.article-thumb {
  height: 180px;
  background: linear-gradient(135deg, var(--blue), #0D2640);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.article-thumb-icon { opacity: 0.12; }

.article-category {
  position: absolute;
  bottom: 12px;
  right: 12px;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
}
.cat-gold  { background: rgba(201,152,42,0.9); color: var(--navy); }
.cat-teal  { background: rgba(42,157,143,0.9); color: white; }
.cat-steel { background: rgba(74,127,181,0.9); color: white; }

.article-body { padding: 24px; flex: 1; display:flex; flex-direction:column; }

.article-date {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.article-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.5;
  margin-bottom: 10px;
  flex: 1;
}

.article-excerpt {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.8;
}

.article-footer {
  padding: 14px 24px;
  border-top: 1px solid var(--light);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.article-read-time { font-size:11px; color:var(--muted); }

.article-arrow {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--smoke);
  display: flex; align-items:center; justify-content:center;
  font-size: 12px;
  color: var(--gold);
  transition: all 0.2s;
}
.article-card:hover .article-arrow {
  background: var(--gold);
  color: white;
}

/* ═══════════════════════════════════════
   TESTIMONIAL
═══════════════════════════════════════ */
.testimonial-section {
  background: var(--smoke);
  padding: 80px 48px;
}

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

.quote-mark {
  font-family: var(--font-display);
  font-size: 80px;
  font-weight: 900;
  color: var(--gold);
  opacity: 0.2;
  line-height: 0.8;
  margin-bottom: 16px;
  direction: rtl;
}

.testimonial-text {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.7;
  margin-bottom: 32px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--steel));
  display: flex; align-items:center; justify-content:center;
  font-size: 14px; font-weight: 700; color: white;
}

.author-info { text-align: right; }
.author-name  { font-size:14px; font-weight:700; color:var(--ink); }
.author-title { font-size:11px; color:var(--muted); margin-top:2px; }

/* ═══════════════════════════════════════
   CTA SECTION
═══════════════════════════════════════ */
.cta-section {
  background: linear-gradient(135deg, #0A1929 0%, #1B3A5C 50%, #0A1929 100%);
  padding: 100px 48px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-section::before {
  content:'';
  position:absolute; inset:0;
  background-image:
    radial-gradient(circle at 30% 50%, rgba(201,152,42,0.05) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(42,157,143,0.04) 0%, transparent 50%);
}

.cta-hept {
  position:absolute;
  top:50%; left:50%;
  transform:translate(-50%,-50%);
  opacity:0.03;
}

.cta-inner {
  max-width: 640px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.cta-eyebrow {
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  color: white;
  line-height: 1.3;
}
.cta-title .g { color: var(--gold); }

.cta-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.45);
  line-height: 1.8;
  max-width: 440px;
}

.cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}

.btn-primary-lg {
  padding: 16px 36px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.25s;
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.btn-primary-lg:hover {
  background: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201,152,42,0.3);
}

.btn-whatsapp {
  padding: 16px 28px;
  background: rgba(37,211,102,0.15);
  color: #25D366;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.25s;
  font-family: var(--font-body);
  border: 1.5px solid rgba(37,211,102,0.25);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.btn-whatsapp:hover {
  background: rgba(37,211,102,0.25);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.footer {
  background: #060E1A;
  padding: 64px 48px 32px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand { display:flex; flex-direction:column; gap:20px; }

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-brand-name { font-family:var(--font-display); font-size:20px; font-weight:800; color:var(--gold); }
.footer-brand-sub  { font-size:10px; letter-spacing:2px; color:rgba(255,255,255,0.25); margin-top:2px; }

.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.35);
  line-height: 1.8;
  max-width: 300px;
  font-style: italic;
}

.footer-social {
  display: flex;
  gap: 10px;
}
.social-btn {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.07);
  display: flex; align-items:center; justify-content:center;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: all 0.2s;
}
.social-btn:hover {
  background: rgba(201,152,42,0.1);
  border-color: rgba(201,152,42,0.2);
  color: var(--gold);
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-links { display:flex; flex-direction:column; gap:10px; list-style:none; }
.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 10px;
  direction: ltr;
  text-align: left;
}
.contact-icon {
  width: 18px; height: 18px;
  color: var(--gold);
  flex-shrink: 0;
  opacity: 0.7;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size:12px; color:rgba(255,255,255,0.2); }
.footer-motto { font-size:11px; color:rgba(255,255,255,0.15); letter-spacing:1px; font-style:italic; }

/* ═══════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--transition), transform 0.7s var(--transition);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.35s; }

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 960px) {
  .nav { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-mobile-btn { display: flex; }

  .hero { padding: 100px 24px 60px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .heptagon-wrapper { width:280px; height:280px; }

  .section { padding: 64px 24px; }

  .services-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-photo-wrapper { max-width: 340px; }
  .numbers-grid { grid-template-columns: repeat(2,1fr); }
  .knowledge-grid { grid-template-columns: 1fr; }
  .paths-inner { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap:36px; }

  .cta-section { padding: 64px 24px; }
  .promise-strip { flex-direction: column; }
  .promise-divider { display: none; }
}
