:root {
  --teal: #00897B;
  --teal-deep: #004D40;
  --teal-light: #00BFA5;
  --teal-glow: rgba(0,191,165,0.15);
  --navy: #0D1B2A;
  --navy-mid: #1B2838;
  --slate: #1E293B;
  --gold: #D4A853;
  --gold-light: #F0C878;
  --white: #FFFFFF;
  --off-white: #F8FAF9;
  --gray-100: #F1F5F4;
  --gray-200: #E2E8E6;
  --gray-300: #CBD5D2;
  --gray-500: #6B8580;
  --gray-600: #4A635E;
  --gray-700: #2D3E3A;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body { font-family: var(--font-body); color: var(--gray-700); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; }

/* ── NAV ── */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(255,255,255,0.92); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid rgba(0,137,123,0.08); transition: all 0.3s ease; }
.nav.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.06); }
.nav-inner { max-width: 1280px; margin: 0 auto; padding: 0 40px; display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--teal-deep); }
.nav-logo-icon { width: 40px; height: 40px; background: linear-gradient(135deg, var(--teal), var(--teal-deep)); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: white; font-family: var(--font-display); font-weight: 700; font-size: 22px; }
.nav-logo-text { font-family: var(--font-body); font-weight: 700; font-size: 18px; letter-spacing: -0.3px; }
.nav-logo-text span { color: var(--teal); }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a { text-decoration: none; color: var(--gray-600); font-size: 14px; font-weight: 500; letter-spacing: 0.2px; transition: color 0.2s; position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--teal); transition: width 0.3s ease; }
.nav-links a:hover { color: var(--teal); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { background: var(--teal); color: white !important; padding: 10px 24px; border-radius: 8px; font-weight: 600; transition: all 0.3s; }
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--teal-deep) !important; color: white !important; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(0,137,123,0.3); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { width: 24px; height: 2px; background: var(--gray-700); border-radius: 2px; transition: all 0.3s; }

/* ── HERO WITH IMAGE ── */
.hero { min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden; background: var(--navy); }
.hero-bg-img { position: absolute; inset: 0; }
.hero-bg-img img { width: 100%; height: 100%; object-fit: cover; opacity: 0.18; }
.hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 20% 50%, rgba(0,191,165,0.12) 0%, transparent 60%), radial-gradient(ellipse at 80% 20%, rgba(0,137,123,0.08) 0%, transparent 50%); z-index: 1; }
.hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(0,191,165,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(0,191,165,0.03) 1px, transparent 1px); background-size: 60px 60px; mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%); z-index: 1; }
.hero-inner { max-width: 1280px; margin: 0 auto; padding: 120px 40px 80px; position: relative; z-index: 2; display: flex; align-items: center; justify-content: center; }
.hero-inner > div { max-width: 680px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(0,191,165,0.1); border: 1px solid rgba(0,191,165,0.2); border-radius: 100px; padding: 6px 16px; font-size: 12px; font-weight: 600; color: var(--teal-light); letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 24px; }
.hero-badge-dot { width: 6px; height: 6px; background: var(--teal-light); border-radius: 50%; animation: pulse-dot 2s infinite; }
@keyframes pulse-dot { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.hero h1 { font-family: var(--font-display); font-size: 56px; font-weight: 600; color: var(--white); line-height: 1.1; letter-spacing: -1px; margin-bottom: 24px; }
.hero h1 em { font-style: normal; color: var(--teal-light); }
.hero-sub { font-size: 18px; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 40px; max-width: 520px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px; border-radius: 10px; font-size: 15px; font-weight: 600; text-decoration: none; transition: all 0.3s; border: none; cursor: pointer; }
.btn-primary { background: var(--teal); color: white; }
.btn-primary:hover { background: var(--teal-deep); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,137,123,0.3); }
.btn-outline { background: transparent; color: white; border: 1px solid rgba(255,255,255,0.2); }
.btn-outline:hover { border-color: var(--teal-light); color: var(--teal-light); }
.hero-stats { display: flex; flex-direction: column; gap: 20px; }
.hero-stat-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06); border-radius: 16px; padding: 28px 32px; backdrop-filter: blur(10px); transition: all 0.4s; }
.hero-stat-card:hover { background: rgba(0,191,165,0.06); border-color: rgba(0,191,165,0.15); transform: translateX(-4px); }
.hero-stat-num { font-family: var(--font-display); font-size: 40px; font-weight: 700; color: var(--teal-light); line-height: 1; margin-bottom: 6px; }
.hero-stat-label { font-size: 14px; color: rgba(255,255,255,0.5); font-weight: 500; }
.hero-stat-desc { font-size: 12px; color: rgba(255,255,255,0.3); margin-top: 4px; }

/* ── SECTIONS ── */
.section { padding: 100px 40px; }
.section-inner { max-width: 1280px; margin: 0 auto; }
.section-tag { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--teal); margin-bottom: 16px; }
.section-tag::before { content: ''; width: 24px; height: 2px; background: var(--teal); border-radius: 2px; }
.section-title { font-family: var(--font-display); font-size: 42px; font-weight: 600; color: var(--navy); line-height: 1.15; letter-spacing: -0.5px; margin-bottom: 16px; }
.section-desc { font-size: 17px; color: var(--gray-500); line-height: 1.7; max-width: 600px; margin-bottom: 48px; }

/* ── SERVICES GRID ── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: 16px; padding: 36px; transition: all 0.4s; position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--teal), var(--teal-light)); opacity: 0; transition: opacity 0.3s; }
.service-card:hover { border-color: var(--teal); box-shadow: 0 12px 40px rgba(0,137,123,0.1); transform: translateY(-4px); }
.service-card:hover::before { opacity: 1; }
.service-num { font-family: var(--font-mono); font-size: 12px; color: var(--teal); font-weight: 500; margin-bottom: 16px; }
.service-card h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 10px; line-height: 1.3; }
.service-card p { font-size: 14px; color: var(--gray-500); line-height: 1.6; }

/* ── IMAGE SHOWCASE STRIP ── */
.img-strip { padding: 0; overflow: hidden; }
.img-strip-inner { display: grid; grid-template-columns: 1fr 1fr; min-height: 420px; }
.img-strip-photo { position: relative; overflow: hidden; }
.img-strip-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.img-strip-photo:hover img { transform: scale(1.03); }
.img-strip-content { display: flex; flex-direction: column; justify-content: center; padding: 60px 64px; }
.img-strip-content.dark { background: var(--navy); color: white; }
.img-strip-content.dark .section-tag { color: var(--teal-light); }
.img-strip-content.dark .section-tag::before { background: var(--teal-light); }
.img-strip-content.dark h2 { color: white; }
.img-strip-content.dark p { color: rgba(255,255,255,0.55); }
.img-strip-content.light { background: var(--off-white); }
.img-strip-content h2 { font-family: var(--font-display); font-size: 32px; font-weight: 600; line-height: 1.2; letter-spacing: -0.3px; margin-bottom: 16px; }
.img-strip-content p { font-size: 15px; line-height: 1.7; color: var(--gray-500); }
.img-strip-content .btn { margin-top: 24px; align-self: flex-start; }

/* ── PARTNERS ── */
.partners-section { background: var(--off-white); }
.partners-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.partner-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: 16px; padding: 36px 28px; text-align: center; transition: all 0.3s; }
.partner-card:hover { border-color: var(--teal); box-shadow: 0 8px 32px rgba(0,137,123,0.08); transform: translateY(-4px); }
.partner-logo { width: 140px; height: 140px; margin: 0 auto 20px; display: flex; align-items: center; justify-content: center; padding: 10px; }
.partner-logo img { max-width: 100%; max-height: 100%; object-fit: contain; }
.partner-logo-wide { width: 220px; height: 120px; }
.partner-info h3 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.partner-info p { font-size: 13px; color: var(--gray-500); line-height: 1.6; }

/* ── ALIGNMENT BAR ── */
.alignment-bar { background: var(--navy); padding: 36px 40px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.alignment-inner { max-width: 1280px; margin: 0 auto; text-align: center; }
.alignment-label { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 16px; }
.alignment-items { display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; }
.alignment-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,0.45); font-weight: 500; }
.alignment-dot { width: 6px; height: 6px; background: var(--teal); border-radius: 50%; }

/* ── FOOTER ── */
.footer { background: var(--navy); color: white; padding: 64px 40px 32px; }
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-top { display: grid; gap: 40px; margin-bottom: 48px; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.4); line-height: 1.7; margin-top: 16px; max-width: 300px; }
.footer-col h4 { font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.footer-col a { display: block; font-size: 14px; color: rgba(255,255,255,0.4); text-decoration: none; margin-bottom: 10px; transition: color 0.2s; }
.footer-col a:hover { color: var(--teal-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; }
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.3); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 13px; color: rgba(255,255,255,0.3); text-decoration: none; transition: color 0.2s; }
.footer-legal a:hover { color: var(--teal-light); }

/* ── ANIMATIONS ── */
@keyframes fade-up { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.fade-in { opacity: 0; animation: fade-up 0.7s ease forwards; }
.fade-in-d1 { animation-delay: 0.1s; }
.fade-in-d2 { animation-delay: 0.2s; }
.fade-in-d3 { animation-delay: 0.3s; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero h1 { font-size: 42px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .partners-grid { grid-template-columns: repeat(2, 1fr); }
  .img-strip-inner { grid-template-columns: 1fr; }
  .img-strip-photo { min-height: 280px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .section { padding: 60px 20px; }
  .nav-inner { padding: 0 20px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: white; padding: 20px; border-bottom: 1px solid var(--gray-200); box-shadow: 0 12px 40px rgba(0,0,0,0.08); }
  .hero-inner { padding: 100px 20px 60px; }
  .hero h1 { font-size: 32px; }
  .section-title { font-size: 30px; }
  .services-grid { grid-template-columns: 1fr; }
  .partners-grid { grid-template-columns: 1fr; }
  .img-strip-content { padding: 40px 24px; }
  .img-strip-content h2 { font-size: 24px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .alignment-items { gap: 20px; }
  .alignment-bar { padding: 28px 20px; }
}