@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garant:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --navy: #0B1E3F;
  --navy2: #1A3468;
  --orange: #E8622A;
  --orange2: #FF7A3D;
  --orange-pale: #FFF4EE;
  --white: #FFFFFF;
  --off: #F7F8FA;
  --border: #E4E8EF;
  --text: #0B1E3F;
  --muted: #5C6E85;
  --light: #8A9BAF;
  --radius: 4px;
  --shadow: 0 4px 24px rgba(11,30,63,0.08);
  --shadow-lg: 0 12px 48px rgba(11,30,63,0.13);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', sans-serif; background: var(--white); color: var(--text); font-weight: 400; overflow-x: hidden; line-height: 1.6; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4,h5 { font-family: 'Cormorant Garant', serif; line-height: 1.15; letter-spacing: -0.01em; }
.eyebrow { font-family: 'Inter', sans-serif; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase; color: var(--orange); display: block; margin-bottom: 0.9rem; }
.section-title { font-family: 'Cormorant Garant', serif; font-size: clamp(2.4rem, 4vw, 3.6rem); font-weight: 700; color: var(--navy); margin-bottom: 1rem; line-height: 1.1; letter-spacing: -0.01em; }
.section-title em { font-style: italic; color: var(--orange); }
.section-sub { font-family: 'Inter', sans-serif; font-size: 1rem; color: var(--muted); max-width: 560px; line-height: 1.8; }
.divider-line { width: 48px; height: 3px; background: var(--orange); border-radius: 2px; margin: 1.2rem 0; }
.divider-line.center { margin: 1.2rem auto; }

/* ── BUTTONS ── */
.btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.75rem 1.8rem; border-radius: var(--radius); font-family: 'Inter', sans-serif; font-size: 0.85rem; font-weight: 600; letter-spacing: 0.06em; cursor: pointer; transition: all 0.22s; border: 2px solid transparent; }
.btn-primary { background: var(--orange); color: #fff; border-color: var(--orange); }
.btn-primary:hover { background: var(--orange2); border-color: var(--orange2); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(232,98,42,0.3); }
.btn-navy { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn-navy:hover { background: var(--navy2); border-color: var(--navy2); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,0.6); }
.btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: #fff; }
.btn-sm { padding: 0.5rem 1.2rem; font-size: 0.78rem; }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(0,0,0,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.4); }
.nav-inner { max-width: 1240px; margin: 0 auto; padding: 0 2rem; display: flex; align-items: center; justify-content: space-between; height: 130px; }
.nav-logo img { height: 120px; width: auto; }
.nav-menu { display: flex; align-items: center; gap: 0.25rem; list-style: none; }
.nav-menu a { font-size: 0.85rem; font-weight: 500; color: rgba(255,255,255,0.7); padding: 0.45rem 0.85rem; border-radius: 4px; transition: color 0.2s, background 0.2s; }
.nav-menu a:hover, .nav-menu a.active { color: #fff; background: rgba(255,255,255,0.1); }
.nav-menu a.active { color: var(--orange); background: rgba(232,98,42,0.15); }
.nav-actions { display: flex; align-items: center; gap: 0.75rem; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.nav-hamburger span { width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: all 0.3s; }
.nav-mobile { display: none; }

/* ── PAGE HERO ── */
.page-hero {
  padding: 168px 2rem 80px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%);
  position: relative; overflow: hidden; text-align: center;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 70% 50%, rgba(232,98,42,0.18) 0%, transparent 70%);
}
.page-hero-dots {
  position: absolute; inset: 0; opacity: 0.06;
  background-image: radial-gradient(circle, rgba(255,255,255,0.8) 1px, transparent 1px);
  background-size: 32px 32px;
}
.page-hero-inner { position: relative; z-index: 2; max-width: 680px; margin: 0 auto; }
.page-hero h1 { font-size: clamp(2.2rem, 4vw, 3.2rem); color: #fff; margin-bottom: 0.75rem; }
.page-hero .breadcrumb { font-size: 0.82rem; color: rgba(255,255,255,0.5); display: flex; align-items: center; justify-content: center; gap: 0.5rem; margin-top: 1rem; }
.page-hero .breadcrumb a { color: rgba(255,255,255,0.6); }
.page-hero .breadcrumb a:hover { color: var(--orange); }
.page-hero .breadcrumb span { color: var(--orange); }

/* ── SECTIONS ── */
section { padding: 90px 2rem; }
.container { max-width: 1240px; margin: 0 auto; }
.section-header { margin-bottom: 3.5rem; }
.section-header.center { text-align: center; }
.section-header.center .divider-line { margin: 1.2rem auto; }
.section-header.center .section-sub { margin: 0 auto; }

/* ── CHECK LIST ── */
.check-list { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.check-list li { display: flex; align-items: flex-start; gap: 0.7rem; font-size: 0.92rem; color: var(--muted); }
.check-list li::before { content: ''; width: 18px; height: 18px; min-width: 18px; background: var(--orange-pale); border: 2px solid var(--orange); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-top: 1px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='8' viewBox='0 0 10 8'%3E%3Cpath d='M1 4l2.5 2.5L9 1' stroke='%23E8622A' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: center; }

/* ── CARDS ── */
.card { background: var(--white); border: 1px solid var(--border); border-radius: 8px; overflow: hidden; transition: transform 0.25s, box-shadow 0.25s; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.icon-card { padding: 2rem; }
.icon-card .icon { width: 52px; height: 52px; background: var(--orange-pale); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 1.2rem; }
.icon-card h4 { font-family: 'Inter', sans-serif; font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--navy); letter-spacing: -0.01em; }
.icon-card p { font-family: 'Inter', sans-serif; font-size: 0.875rem; color: var(--muted); line-height: 1.75; }

/* ── STATS STRIP ── */
.stats-strip { background: var(--navy); padding: 52px 2rem; }
.stats-strip .container { display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; }
.stat-item { text-align: center; }
.stat-item .num { font-family: 'Cormorant Garant', serif; font-size: 2.8rem; font-weight: 700; color: var(--orange); line-height: 1; }
.stat-item .label { font-size: 0.82rem; color: rgba(255,255,255,0.55); margin-top: 0.4rem; letter-spacing: 0.06em; }

/* ── TESTIMONIALS ── */
.testi-card { padding: 2rem 2.2rem; background: var(--white); border: 1px solid var(--border); border-radius: 8px; display: flex; flex-direction: column; gap: 1.2rem; transition: box-shadow 0.25s; }
.testi-card:hover { box-shadow: var(--shadow); }
.testi-stars { color: var(--orange); font-size: 0.9rem; letter-spacing: 2px; }
.testi-quote { font-family: 'Cormorant Garant', serif; font-style: italic; font-size: 1rem; color: var(--navy); line-height: 1.65; }
.testi-author { display: flex; align-items: center; gap: 0.9rem; margin-top: auto; }
.testi-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--orange-pale); border: 2px solid var(--orange); display: grid; place-items: center; font-family: 'Cormorant Garant', serif; font-size: 1rem; color: var(--orange); font-weight: 700; flex-shrink: 0; }
.testi-name { font-size: 0.88rem; font-weight: 600; color: var(--navy); }
.testi-role { font-size: 0.75rem; color: var(--muted); }

/* ── FAQ ── */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q { width: 100%; background: none; border: none; padding: 1.3rem 0; display: flex; justify-content: space-between; align-items: center; font-family: 'Cormorant Garant', serif; font-size: 1.05rem; color: var(--navy); cursor: pointer; text-align: left; gap: 1rem; }
.faq-q .faq-icon { width: 28px; height: 28px; min-width: 28px; border-radius: 50%; background: var(--off); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: var(--orange); font-weight: 300; transition: transform 0.3s, background 0.2s; }
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--orange-pale); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-item.open .faq-a { max-height: 300px; }
.faq-a p { font-size: 0.92rem; color: var(--muted); line-height: 1.8; padding-bottom: 1.3rem; }

/* ── FOOTER ── */
.footer { background: var(--navy); color: rgba(255,255,255,0.7); }
.footer-main { padding: 72px 2rem 48px; }
.footer-grid { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3.5rem; }
.footer-about { }
.footer-logo img { height: 72px; width: auto; margin-bottom: 1.2rem; }
.footer-about p { font-size: 0.85rem; line-height: 1.8; color: rgba(255,255,255,0.5); max-width: 280px; }
.footer-col h5 { font-family: 'Inter', sans-serif; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: #fff; margin-bottom: 1.4rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col ul li a { font-size: 0.85rem; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--orange); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.85rem; color: rgba(255,255,255,0.5); margin-bottom: 0.7rem; }
.footer-contact-item .ico { color: var(--orange); font-size: 1rem; margin-top: 1px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 1.4rem 2rem; }
.footer-bottom-inner { max-width: 1240px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; font-size: 0.78rem; color: rgba(255,255,255,0.3); }
.footer-bottom-inner a { color: var(--orange); }
.footer-socials { display: flex; gap: 0.6rem; }
.social-btn { width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1); display: grid; place-items: center; font-size: 0.8rem; color: rgba(255,255,255,0.5); transition: all 0.2s; }
.social-btn:hover { background: var(--orange); border-color: var(--orange); color: #fff; }

/* ── ANIMATIONS ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.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.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── RESPONSIVE ── */
@media(max-width:1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .stats-strip .container { grid-template-columns: repeat(2,1fr); }
}
@media(max-width:768px) {
  .nav-inner { height: 64px; }
  .nav-logo img { height: 50px; }
  .nav-menu, .nav-actions { display: none; }
  .nav-hamburger { display: flex; }
  .nav-mobile { display: none; position: fixed; top: 64px; left: 0; right: 0; background: #000; border-bottom: 1px solid rgba(255,255,255,0.1); padding: 1.5rem 2rem; z-index: 199; flex-direction: column; gap: 0.5rem; box-shadow: 0 8px 32px rgba(0,0,0,0.5); }
  .nav-mobile.open { display: flex; }
  .nav-mobile a { font-size: 0.95rem; font-weight: 500; color: rgba(255,255,255,0.7); padding: 0.6rem 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .nav-mobile a:last-child { border-bottom: none; }
  .nav-mobile a:hover, .nav-mobile a.active { color: var(--orange); }
  section { padding: 64px 1.25rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .stats-strip .container { grid-template-columns: repeat(2,1fr); }
  .page-hero { padding: 120px 1.25rem 60px; }
}
