/* ============================================================
   SG Pinnacle Finance — Lead Generation & Marketing Agency
   Singapore. Navy + gold, editorial serif display.
   ============================================================ */

:root {
  --navy-950: #060D1B;
  --navy-900: #0A1628;
  --navy-800: #12213B;
  --navy-700: #1B2A4A;
  --navy-600: #2A3F6A;
  --gold: #C8A951;
  --gold-light: #E0C878;
  --gold-deep: #A98A38;
  --gold-pale: #F6EFDC;
  --white: #FFFFFF;
  --off-white: #F8F9FC;
  --paper: #FBFAF6;
  --gray-100: #F1F3F7;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --text-dark: #0A1628;
  --text-body: #48505F;
  --text-light: #6B7280;
  --shadow-sm: 0 1px 2px rgba(10, 22, 40, 0.06);
  --shadow-md: 0 8px 24px rgba(10, 22, 40, 0.09);
  --shadow-lg: 0 18px 44px rgba(10, 22, 40, 0.13);
  --shadow-xl: 0 32px 70px rgba(10, 22, 40, 0.20);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --transition: 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  --container: 1200px;
  --font-display: 'Fraunces', 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

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

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

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--text-dark);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.15rem; }
p { margin-bottom: 1rem; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* --- Accents --- */
.overline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-deep);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  margin-bottom: 18px;
}
.overline::before {
  content: '';
  width: 26px;
  height: 1px;
  background: var(--gold);
}
.overline.center::before { display: none; }

.text-gold { color: var(--gold-deep); }
.serif-em { font-style: italic; color: var(--gold-deep); }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn i { font-size: 0.85em; transition: transform var(--transition); }
.btn:hover i { transform: translateX(4px); }

.btn-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 60%, var(--gold-deep));
  color: var(--navy-950);
  box-shadow: 0 10px 26px rgba(200, 169, 81, 0.32);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 38px rgba(200, 169, 81, 0.42); }

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.35);
}
.btn-secondary:hover { background: rgba(255, 255, 255, 0.08); border-color: var(--white); transform: translateY(-3px); }

.btn-outline {
  background: transparent;
  color: var(--navy-700);
  border: 1px solid var(--navy-700);
}
.btn-outline:hover { background: var(--navy-900); color: var(--white); transform: translateY(-3px); }

.btn-lg { padding: 17px 38px; font-size: 1.02rem; }

/* --- Navigation --- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(6, 13, 27, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(200, 169, 81, 0.12);
  transition: background var(--transition), box-shadow var(--transition);
}
.navbar.scrolled { background: rgba(6, 13, 27, 0.94); box-shadow: var(--shadow-lg); }

.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 82px; }

.nav-logo { display: flex; align-items: center; gap: 12px; color: var(--white); }
.nav-logo .logo-mark {
  width: 42px; height: 42px;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-deep));
  display: flex; align-items: center; justify-content: center;
  color: var(--navy-950);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  box-shadow: 0 6px 18px rgba(200, 169, 81, 0.35);
}
.nav-logo .logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.nav-logo .logo-text strong { font-family: var(--font-display); font-weight: 600; font-size: 1.02rem; letter-spacing: 0.01em; }
.nav-logo .logo-text span {
  font-size: 0.62rem; font-weight: 600; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--gold-light);
}

.nav-links { display: flex; align-items: center; gap: 38px; }
.nav-links a { color: rgba(255, 255, 255, 0.82); font-size: 0.94rem; font-weight: 500; position: relative; }
.nav-links a::after {
  content: ''; position: absolute; bottom: -6px; left: 0;
  width: 0; height: 2px; background: var(--gold); transition: width var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links .nav-cta { color: var(--navy-950); }
.nav-links .nav-cta::after { display: none; }
.nav-cta { padding: 11px 26px !important; font-size: 0.88rem !important; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.nav-toggle span { width: 26px; height: 2px; background: var(--white); transition: all var(--transition); border-radius: 2px; }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  background:
    radial-gradient(1100px 700px at 78% 8%, rgba(200, 169, 81, 0.16), transparent 60%),
    radial-gradient(900px 600px at 8% 90%, rgba(42, 63, 106, 0.55), transparent 60%),
    linear-gradient(160deg, var(--navy-950) 0%, var(--navy-800) 55%, var(--navy-700) 100%);
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.028) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 50% 40%, #000 0%, transparent 78%);
  -webkit-mask-image: radial-gradient(circle at 50% 40%, #000 0%, transparent 78%);
}

.hero-grid {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(200, 169, 81, 0.12);
  border: 1px solid rgba(200, 169, 81, 0.32);
  color: var(--gold-light);
  padding: 9px 18px;
  border-radius: 50px;
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold-light); box-shadow: 0 0 0 4px rgba(200,169,81,0.25); }

.hero h1 { color: var(--white); font-weight: 600; margin-bottom: 24px; }
.hero h1 .hl { color: transparent; background: linear-gradient(120deg, var(--gold-light), var(--gold-deep)); -webkit-background-clip: text; background-clip: text; font-style: italic; }
.hero p.lead { color: rgba(255, 255, 255, 0.74); font-size: 1.18rem; line-height: 1.75; margin-bottom: 36px; max-width: 540px; }

.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 44px; }

.hero-trust { display: flex; align-items: center; gap: 18px; color: rgba(255,255,255,0.6); font-size: 0.9rem; }
.hero-trust .avatars { display: flex; }
.hero-trust .avatars span {
  width: 38px; height: 38px; border-radius: 50%; border: 2px solid var(--navy-800);
  margin-left: -12px; background-size: cover; background-position: center;
}
.hero-trust .avatars span:first-child { margin-left: 0; }
.hero-trust strong { color: var(--white); }

/* hero visual card */
.hero-visual { position: relative; }
.hero-visual .frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255,255,255,0.1);
}
.hero-visual .frame img { width: 100%; height: 460px; object-fit: cover; }
.hero-visual .float-card {
  position: absolute;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(6px);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 14px;
}
.hero-visual .float-card .ic {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--gold-pale); color: var(--gold-deep);
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.hero-visual .float-card .n { font-family: var(--font-display); font-size: 1.35rem; font-weight: 600; color: var(--navy-900); line-height: 1; }
.hero-visual .float-card .l { font-size: 0.78rem; color: var(--text-light); }
.hero-visual .float-card.tl { top: 28px; left: -34px; }
.hero-visual .float-card.br { bottom: 30px; right: -30px; }

/* --- Marquee / logos --- */
.logo-strip { background: var(--navy-950); padding: 34px 0; border-top: 1px solid rgba(255,255,255,0.06); }
.logo-strip .eyebrow { text-align: center; color: rgba(255,255,255,0.42); font-size: 0.76rem; letter-spacing: 0.22em; text-transform: uppercase; margin-bottom: 22px; }
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; gap: 64px; width: max-content; animation: scroll-x 32s linear infinite; }
.marquee-track span { color: rgba(255,255,255,0.5); font-family: var(--font-display); font-size: 1.3rem; font-weight: 500; white-space: nowrap; }
@keyframes scroll-x { to { transform: translateX(-50%); } }

/* --- Section shells --- */
.section { padding: 108px 0; }
.section-light { background: var(--paper); }
.section-navy {
  background:
    radial-gradient(900px 500px at 85% 0%, rgba(200,169,81,0.12), transparent 60%),
    linear-gradient(160deg, var(--navy-950), var(--navy-800));
  color: rgba(255,255,255,0.75);
}
.section-navy h2, .section-navy h3, .section-navy h4 { color: var(--white); }

.section-header { max-width: 640px; margin: 0 auto 64px; text-align: center; }
.section-header.left { margin-left: 0; text-align: left; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { color: var(--text-light); font-size: 1.08rem; }
.section-navy .section-header p { color: rgba(255,255,255,0.6); }

/* --- Stats band --- */
.stats-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.stat { text-align: center; padding: 8px; }
.stat .num { font-family: var(--font-display); font-size: clamp(2.2rem, 4vw, 3rem); font-weight: 600; color: var(--gold); line-height: 1; margin-bottom: 8px; }
.stat .lbl { font-size: 0.92rem; color: rgba(255,255,255,0.6); }
.section-light .stat .lbl { color: var(--text-light); }
.section-light .stat .num { color: var(--gold-deep); }

/* --- Services --- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 38px 32px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; inset: 0 0 auto 0; height: 3px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold-deep));
  transform: scaleX(0); transform-origin: left; transition: transform var(--transition);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-card .ic {
  width: 58px; height: 58px; border-radius: 16px;
  background: linear-gradient(135deg, var(--gold-pale), #EFE3C0);
  color: var(--gold-deep);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 24px;
}
.service-card h3 { margin-bottom: 12px; font-size: 1.3rem; }
.service-card p { color: var(--text-light); font-size: 0.96rem; margin-bottom: 20px; }
.service-card .more { font-family: var(--font-body); font-size: 0.88rem; font-weight: 600; color: var(--gold-deep); display: inline-flex; align-items: center; gap: 7px; }
.service-card .more i { transition: transform var(--transition); }
.service-card:hover .more i { transform: translateX(4px); }

/* --- Feature split --- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split.rev .split-media { order: 2; }
.split-media { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.split-media img { width: 100%; height: 100%; min-height: 440px; object-fit: cover; }
.split-content h2 { margin-bottom: 18px; }
.split-content > p { color: var(--text-light); font-size: 1.05rem; margin-bottom: 28px; }

.check-list { display: flex; flex-direction: column; gap: 18px; }
.check-list li { display: flex; gap: 14px; align-items: flex-start; }
.check-list .tick {
  width: 26px; height: 26px; min-width: 26px; border-radius: 50%;
  background: var(--gold-pale); color: var(--gold-deep);
  display: flex; align-items: center; justify-content: center; font-size: 0.72rem; margin-top: 3px;
}
.check-list h4 { font-size: 1.02rem; margin-bottom: 3px; font-family: var(--font-body); font-weight: 700; }
.check-list p { font-size: 0.92rem; color: var(--text-light); margin-bottom: 0; }
.section-navy .check-list p { color: rgba(255,255,255,0.62); }

/* --- Process timeline --- */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; position: relative; }
.process-grid::before { content: ''; position: absolute; top: 32px; left: 8%; right: 8%; height: 1px; background: rgba(200,169,81,0.3); }
.process-step { position: relative; text-align: center; }
.process-step .n {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--navy-900); color: var(--gold);
  border: 1px solid rgba(200,169,81,0.4);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.3rem; font-weight: 600;
  margin: 0 auto 22px; position: relative; z-index: 2;
}
.section-navy .process-step .n { background: var(--navy-950); }
.process-step h4 { margin-bottom: 8px; font-family: var(--font-body); font-weight: 700; }
.process-step p { font-size: 0.9rem; color: var(--text-light); margin-bottom: 0; }
.section-navy .process-step p { color: rgba(255,255,255,0.6); }

/* --- Testimonials --- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testi-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 34px 30px;
  transition: all var(--transition);
}
.testi-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.testi-card .stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 16px; letter-spacing: 2px; }
.testi-card .quote { font-family: var(--font-display); font-size: 1.08rem; font-style: italic; color: var(--navy-800); line-height: 1.6; margin-bottom: 22px; }
.testi-card .who { display: flex; align-items: center; gap: 13px; }
.testi-card .who .av { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--navy-700), var(--navy-600)); color: var(--gold-light); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 600; }
.testi-card .who .nm { font-weight: 700; font-size: 0.92rem; color: var(--text-dark); }
.testi-card .who .rl { font-size: 0.82rem; color: var(--text-light); }

/* --- CTA --- */
.cta {
  position: relative; overflow: hidden; text-align: center;
  padding: 100px 0;
  background:
    radial-gradient(700px 400px at 50% 0%, rgba(200,169,81,0.16), transparent 65%),
    linear-gradient(160deg, var(--navy-950), var(--navy-800));
}
.cta h2 { color: var(--white); margin-bottom: 16px; }
.cta p { color: rgba(255,255,255,0.7); font-size: 1.1rem; max-width: 560px; margin: 0 auto 34px; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* --- Page hero (inner) --- */
.page-hero {
  padding: 168px 0 96px;
  text-align: center;
  position: relative; overflow: hidden;
  background:
    radial-gradient(800px 500px at 80% 0%, rgba(200,169,81,0.14), transparent 60%),
    linear-gradient(160deg, var(--navy-950), var(--navy-800));
}
.page-hero .breadcrumb { margin-bottom: 18px; font-size: 0.86rem; }
.page-hero .breadcrumb a { color: var(--gold-light); }
.page-hero .breadcrumb span { color: rgba(255,255,255,0.4); margin: 0 8px; }
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.68); font-size: 1.12rem; max-width: 600px; margin: 0 auto; }

/* --- About story --- */
.about-lead { max-width: 760px; margin: 0 auto 64px; text-align: center; }
.about-lead p { font-family: var(--font-display); font-size: clamp(1.25rem, 2.4vw, 1.6rem); font-style: italic; color: var(--navy-800); line-height: 1.5; }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.value-card { padding: 34px 28px; background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); transition: all var(--transition); }
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.value-card .ic { width: 54px; height: 54px; border-radius: 14px; background: var(--gold-pale); color: var(--gold-deep); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; margin-bottom: 18px; }
.value-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.value-card p { font-size: 0.94rem; color: var(--text-light); margin-bottom: 0; }

/* --- Services detail --- */
.svc-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; padding: 56px 0; border-bottom: 1px solid var(--gray-200); }
.svc-detail:last-child { border-bottom: none; }
.svc-detail.rev .svc-detail-media { order: 2; }
.svc-detail-media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.svc-detail-media img { width: 100%; height: 380px; object-fit: cover; }
.svc-detail .tag { display: inline-block; background: var(--gold-pale); color: var(--gold-deep); font-size: 0.76rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; padding: 6px 14px; border-radius: 50px; margin-bottom: 16px; }
.svc-detail h3 { font-size: 1.7rem; margin-bottom: 14px; }
.svc-detail > div > p { color: var(--text-light); margin-bottom: 20px; }
.svc-detail ul { display: flex; flex-direction: column; gap: 10px; }
.svc-detail ul li { display: flex; gap: 11px; align-items: flex-start; font-size: 0.95rem; color: var(--text-body); }
.svc-detail ul li::before { content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900; color: var(--gold-deep); font-size: 0.75rem; margin-top: 4px; }

/* --- Pricing --- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; align-items: stretch; }
.price-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 40px 32px; display: flex; flex-direction: column; transition: all var(--transition); }
.price-card.featured { border-color: var(--gold); box-shadow: var(--shadow-lg); position: relative; }
.price-card.featured::after { content: 'Most popular'; position: absolute; top: 18px; right: 18px; background: var(--gold-pale); color: var(--gold-deep); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 5px 12px; border-radius: 50px; }
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.price-card .plan { font-family: var(--font-body); font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.8rem; color: var(--gold-deep); margin-bottom: 12px; }
.price-card .amt { font-family: var(--font-display); font-size: 2.4rem; font-weight: 600; color: var(--navy-900); line-height: 1; margin-bottom: 6px; }
.price-card .amt span { font-size: 0.95rem; color: var(--text-light); font-family: var(--font-body); font-weight: 500; }
.price-card .desc { font-size: 0.92rem; color: var(--text-light); margin-bottom: 24px; }
.price-card ul { display: flex; flex-direction: column; gap: 12px; margin-bottom: 30px; flex: 1; }
.price-card ul li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.92rem; }
.price-card ul li::before { content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900; color: var(--gold-deep); font-size: 0.72rem; margin-top: 3px; }
.price-card .btn { justify-content: center; }

/* --- FAQ --- */
.faq { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--gray-200); }
.faq-q { width: 100%; text-align: left; background: none; border: none; cursor: pointer; padding: 24px 0; display: flex; justify-content: space-between; align-items: center; gap: 20px; font-family: var(--font-display); font-size: 1.12rem; font-weight: 600; color: var(--navy-900); }
.faq-q i { color: var(--gold-deep); transition: transform var(--transition); font-size: 0.9rem; }
.faq-item.open .faq-q i { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height var(--transition); }
.faq-a p { padding-bottom: 24px; color: var(--text-light); font-size: 0.98rem; margin-bottom: 0; }

/* --- Contact --- */
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: start; }
.contact-form { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 44px; box-shadow: var(--shadow-md); }
.contact-form h3 { margin-bottom: 6px; }
.contact-form > p { color: var(--text-light); margin-bottom: 28px; font-size: 0.96rem; }
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group label { display: block; font-weight: 600; font-size: 0.85rem; color: var(--text-dark); margin-bottom: 7px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 13px 15px;
  border: 1px solid var(--gray-200); border-radius: var(--radius-sm);
  font-size: 0.98rem; font-family: inherit; color: var(--text-dark);
  background: var(--off-white); transition: all var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--gold); background: var(--white);
  box-shadow: 0 0 0 3px rgba(200, 169, 81, 0.16);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-status { margin-top: 14px; font-size: 0.9rem; display: none; }
.form-status.is-success { display: block; color: #15803d; }
.form-status.is-error { display: block; color: #b91c1c; }

.contact-aside { display: flex; flex-direction: column; gap: 20px; }
.contact-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-md); padding: 26px; display: flex; gap: 16px; align-items: flex-start; }
.contact-card .ic { width: 46px; height: 46px; min-width: 46px; border-radius: 12px; background: var(--gold-pale); color: var(--gold-deep); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; }
.contact-card h4 { font-size: 1rem; margin-bottom: 4px; font-family: var(--font-body); font-weight: 700; }
.contact-card p { font-size: 0.92rem; color: var(--text-light); margin-bottom: 0; }
.contact-note { background: linear-gradient(150deg, var(--navy-950), var(--navy-700)); border-radius: var(--radius-md); padding: 28px; color: var(--white); }
.contact-note h4 { color: var(--gold-light); margin-bottom: 8px; font-family: var(--font-body); font-weight: 700; }
.contact-note p { color: rgba(255,255,255,0.72); font-size: 0.92rem; margin-bottom: 0; }

/* --- Legal --- */
.legal { padding: 72px 0; }
.legal .container { max-width: 800px; }
.legal h2 { font-size: 1.4rem; margin: 36px 0 14px; padding-bottom: 8px; border-bottom: 2px solid var(--gold-pale); }
.legal h2:first-of-type { margin-top: 0; }
.legal p, .legal li { color: var(--text-body); font-size: 1rem; line-height: 1.8; }
.legal ul { list-style: disc; padding-left: 22px; margin-bottom: 16px; }
.legal .updated { font-style: italic; color: var(--text-light); font-size: 0.9rem; margin-bottom: 28px; }

/* --- Footer --- */
.footer { background: var(--navy-950); padding: 72px 0 0; color: rgba(255, 255, 255, 0.6); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 44px; padding-bottom: 44px; border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
.footer-brand .nav-logo { margin-bottom: 18px; }
.footer-brand p { font-size: 0.93rem; line-height: 1.7; max-width: 300px; }
.footer h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 18px; font-family: var(--font-body); font-weight: 600; }
.footer-links a { display: block; color: rgba(255, 255, 255, 0.58); font-size: 0.9rem; padding: 5px 0; }
.footer-links a:hover { color: var(--gold-light); padding-left: 4px; }
.footer-social { display: flex; gap: 12px; margin-top: 8px; }
.footer-social a { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.7); }
.footer-social a:hover { background: var(--gold); color: var(--navy-950); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 24px 0; font-size: 0.84rem; }
.footer-bottom-links { display: flex; gap: 22px; }
.footer-bottom-links a:hover { color: var(--gold-light); }

/* --- Animations --- */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: 0.08s; }
.fade-in-delay-2 { transition-delay: 0.16s; }
.fade-in-delay-3 { transition-delay: 0.24s; }
.fade-in-delay-4 { transition-delay: 0.32s; }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { max-width: 520px; }
  .hero-visual .float-card.tl { left: 0; }
  .hero-visual .float-card.br { right: 0; }
  .services-grid, .testi-grid, .values-grid, .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .process-grid::before { display: none; }
  .stats-band { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .split, .svc-detail { grid-template-columns: 1fr; gap: 40px; }
  .split.rev .split-media, .svc-detail.rev .svc-detail-media { order: 0; }
  .split-media img, .svc-detail-media img { min-height: 340px; height: 340px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .nav-links {
    display: none; position: absolute; top: 82px; left: 0; right: 0;
    background: var(--navy-950); flex-direction: column; padding: 24px; gap: 4px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  .nav-links.active { display: flex; }
  .nav-links a { padding: 12px 0; width: 100%; }
  .nav-toggle { display: flex; }
  .section { padding: 72px 0; }
  .services-grid, .testi-grid, .values-grid, .pricing-grid, .stats-band { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .form-row { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; align-items: stretch; }
  .hero-buttons .btn { justify-content: center; }
  .contact-form { padding: 28px 22px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .hero-visual .float-card { display: none; }
}
