/* ═══════════════════════════════════════════════════════
   UNLOCK SOLUTION INC — MASTER STYLESHEET
   Covers: index, about, contact, privacy, terms pages
═══════════════════════════════════════════════════════ */

/* ─── VARIABLES ─── */
:root {
  --navy: #0a1628;
  --navy-mid: #112240;
  --navy-light: #1a3460;
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --gold-pale: #f5e9c8;
  --white: #ffffff;
  --off-white: #f8f6f1;
  --gray: #8a9ab5;
  --text-dark: #0a1628;
}

/* ─── RESET ─── */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════
   NAV
═══════════════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10, 22, 40, 0.96);
  backdrop-filter: blur(12px);
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
  border-bottom: 1px solid rgba(201,168,76,0.2);
}

.nav-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
}
.nav-logo img { height: 36px; width: auto; display: block; }

.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 14px; font-weight: 500;
  letter-spacing: 0.5px;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a.active { color: var(--gold); }

.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy) !important;
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: 600 !important;
  transition: opacity 0.3s !important;
}
.nav-cta:hover { opacity: 0.9; color: var(--navy) !important; }

/* ─── HAMBURGER ─── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: none; border: none;
  cursor: pointer; padding: 4px;
  z-index: 1100;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── MOBILE MENU ─── */
.nav-mobile-menu {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0; bottom: 0;
  background: rgba(10, 22, 40, 0.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 40px 24px;
}
.nav-mobile-menu.open { display: flex; }
.nav-mobile-menu a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 22px; font-weight: 500;
  letter-spacing: 0.5px;
  padding: 18px 0;
  width: 100%; text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color 0.2s;
}
.nav-mobile-menu a:last-child { border-bottom: none; }
.nav-mobile-menu a:hover { color: var(--gold); }
.nav-mobile-menu .nav-cta-mobile {
  margin-top: 32px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy) !important;
  padding: 16px 40px;
  border-radius: 8px;
  font-weight: 700 !important;
  font-size: 16px !important;
  border-bottom: none !important;
  width: auto !important;
}

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.6);
  padding: 64px 5% 36px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand p { font-size: 14px; line-height: 1.75; margin-top: 16px; max-width: 280px; }
.footer-col h4 { color: var(--white); font-size: 14px; font-weight: 700; letter-spacing: 0.5px; margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 14px; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--gold); }
.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,0.08); margin-bottom: 28px; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px; font-size: 13px;
}
.footer-bottom a { color: var(--gold); text-decoration: none; }

/* ═══════════════════════════════════════════
   SHARED / GLOBAL
═══════════════════════════════════════════ */
section { padding: 100px 5%; }

.section-label {
  font-size: 12px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 900; color: var(--navy);
  line-height: 1.15; max-width: 600px;
}
.section-title.white { color: var(--white); }
.section-sub { font-size: 17px; color: #4a5a72; line-height: 1.75; max-width: 560px; margin-top: 16px; }
.section-sub.white { color: rgba(255,255,255,0.65); }

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  padding: 16px 36px; border-radius: 8px;
  font-weight: 700; font-size: 15px;
  text-decoration: none; display: inline-block;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 24px rgba(201,168,76,0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(201,168,76,0.45); }

.btn-outline {
  border: 1.5px solid rgba(255,255,255,0.3);
  color: var(--white);
  padding: 16px 36px; border-radius: 8px;
  font-weight: 500; font-size: 15px;
  text-decoration: none; display: inline-block;
  transition: border-color 0.3s, background 0.3s;
}
.btn-outline:hover { border-color: var(--gold); background: rgba(201,168,76,0.08); }

.gold { color: var(--gold); }

/* ═══════════════════════════════════════════
   INDEX — HERO
═══════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: grid; grid-template-columns: 1fr 1fr;
  position: relative; overflow: hidden;
  padding-top: 72px;
  background-image:
    linear-gradient(rgba(212,160,23,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,160,23,.06) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-image-side { position: relative; overflow: hidden; }
.hero-image-side img { width: 100%; height: 90%; object-fit: cover; display: block; margin-top: 50px; }
.hero-image-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(0,0,0,0.10) 0%, rgba(0,0,0,0.20) 100%); }
.hero-image-tag {
  position: absolute; bottom: 32px; left: 28px;
  background: rgba(10,22,40,0.85);
  border: 1px solid rgba(201,168,76,0.3);
  backdrop-filter: blur(8px);
  border-radius: 10px; padding: 14px 20px;
  display: flex; align-items: center; gap: 12px;
}
.hero-image-tag .dot-live { width: 8px; height: 8px; border-radius: 50%; background: #4ade80; animation: pulse 2s infinite; }
.hero-image-tag span { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.9); }
.hero-glow { position: absolute; top: -200px; right: -100px; z-index: 0; width: 700px; height: 700px; background: radial-gradient(ellipse, rgba(26,140,255,.14) 0%, transparent 70%); pointer-events: none; }
.hero-content-side { display: flex; align-items: center; padding: 80px 60px 80px 56px; position: relative; z-index: 2; }
.hero-grid-bg { position: absolute; inset: 0; opacity: 0.03; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold-light);
  font-size: 12px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 8px 16px; border-radius: 100px;
  margin-bottom: 28px;
}
.hero-badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); animation: pulse 2s infinite; }
.hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(40px, 6vw, 72px); font-weight: 900; color: var(--white); line-height: 1.08; margin-bottom: 24px; }
.hero h1 .gold { color: var(--gold); }
.hero p { font-size: 18px; font-weight: 300; color: rgba(255,255,255,0.7); line-height: 1.75; max-width: 560px; margin-bottom: 40px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ═══════════════════════════════════════════
   INDEX — PLATFORMS
═══════════════════════════════════════════ */
.platforms { background: var(--off-white); padding: 60px 5%; overflow: hidden; }
.platforms-label { text-align: center; font-size: 12px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gray); margin-bottom: 36px; }
.platforms-track { display: flex; gap: 48px; align-items: center; animation: scroll 30s linear infinite; width: max-content; }
.platform-badge { display: flex; align-items: center; gap: 10px; background: var(--white); border: 1px solid #e0ddd5; border-radius: 10px; padding: 14px 24px; white-space: nowrap; font-weight: 600; font-size: 15px; color: var(--navy); box-shadow: 0 2px 8px rgba(0,0,0,0.04); }
.platform-badge .dot { width: 10px; height: 10px; border-radius: 50%; }

/* ═══════════════════════════════════════════
   INDEX — SERVICES
═══════════════════════════════════════════ */
.services { background: var(--white); }
.services-header { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; margin-bottom: 64px; flex-wrap: wrap; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.service-card { background: var(--off-white); border: 1px solid #e8e4db; border-radius: 16px; padding: 36px 32px; position: relative; overflow: hidden; transition: transform 0.3s, box-shadow 0.3s; }
.service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(10,22,40,0.1); }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-light)); opacity: 0; transition: opacity 0.3s; }
.service-card:hover::before { opacity: 1; }
.service-icon { width: 56px; height: 56px; border-radius: 14px; background: linear-gradient(135deg, var(--navy), var(--navy-light)); display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 24px; }
.service-card h3 { font-family: 'Playfair Display', serif; font-size: 21px; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.service-card p { font-size: 15px; color: #5a6a82; line-height: 1.7; }

/* ═══════════════════════════════════════════
   INDEX — HOW IT WORKS
═══════════════════════════════════════════ */
.how-it-works { background: var(--navy); position: relative; overflow: hidden; }
.how-it-works::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 0% 50%, rgba(201,168,76,0.06) 0%, transparent 70%); }
.hiw-header { margin-bottom: 72px; position: relative; z-index: 1; }
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 32px; position: relative; z-index: 1; }
.step { position: relative; }
.step-number { font-family: 'Playfair Display', serif; font-size: 72px; font-weight: 900; color: rgba(201,168,76,0.12); line-height: 1; margin-bottom: -16px; }
.step-content { background: rgba(255,255,255,0.04); border: 1px solid rgba(201,168,76,0.12); border-radius: 14px; padding: 28px 24px; }
.step-content h3 { font-family: 'Playfair Display', serif; font-size: 19px; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.step-content p { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.7; }

/* ═══════════════════════════════════════════
   INDEX — WHY US
═══════════════════════════════════════════ */
.why-us { background: var(--off-white); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.why-list { display: flex; flex-direction: column; gap: 24px; margin-top: 36px; }
.why-item { display: flex; gap: 16px; align-items: flex-start; }
.why-check { width: 28px; height: 28px; min-width: 28px; background: linear-gradient(135deg, var(--gold), var(--gold-light)); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 14px; color: var(--navy); font-weight: 700; }
.why-item h4 { font-weight: 600; font-size: 16px; color: var(--navy); margin-bottom: 4px; }
.why-item p { font-size: 14px; color: #5a6a82; line-height: 1.65; }
.why-visual { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.why-card { background: var(--white); border: 1px solid #e0ddd5; border-radius: 14px; padding: 28px 22px; text-align: center; }
.why-card .big { font-family: 'Playfair Display', serif; font-size: 40px; font-weight: 900; color: var(--navy); }
.why-card .big span { color: var(--gold); }
.why-card small { display: block; font-size: 12px; color: var(--gray); margin-top: 4px; }
.why-card.featured { grid-column: span 2; background: linear-gradient(135deg, var(--navy), var(--navy-light)); color: var(--white); border-color: transparent; }
.why-card.featured .big { color: var(--white); }
.why-card.featured small { color: rgba(255,255,255,0.5); }
.why-card.featuredwhite { grid-column: span 2; background: var(--white); color: var(--text-dark); border-color: transparent; font-weight: normal; font-size: 18px; }

/* ═══════════════════════════════════════════
   INDEX — CONTACT SECTION
═══════════════════════════════════════════ */
.contact { background: var(--white); }
.contact-wrap { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.contact-info h2 { font-family: 'Playfair Display', serif; font-size: clamp(28px, 3.5vw, 42px); font-weight: 900; color: var(--navy); margin-bottom: 20px; line-height: 1.15; }
.contact-info p { font-size: 16px; color: #4a5a72; line-height: 1.75; margin-bottom: 36px; }
.contact-detail { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; }
.contact-detail-icon { width: 40px; height: 40px; min-width: 40px; background: var(--gold-pale); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 18px; }
.contact-detail h4 { font-size: 13px; color: var(--gray); font-weight: 500; }
.contact-detail p { font-size: 15px; color: var(--navy); font-weight: 600; margin: 0; }
.contact-form { background: var(--off-white); border: 1px solid #e8e4db; border-radius: 20px; padding: 48px 40px; }
.mapimg { width: 100%; margin: 100px 0 0 0; float: left; border-radius: 10px; }
.mapimg img { width: 100%; margin: 0; float: left; border-radius: 10px; }

/* ─── FORMS (shared across index + contact page) ─── */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--navy); letter-spacing: 0.3px; }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--white);
  border: 1.5px solid #d8d4cb;
  border-radius: 8px;
  padding: 13px 16px;
  font-size: 15px;
  font-family: 'DM Sans', sans-serif;
  color: var(--navy);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,0.08); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238a9ab5' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; cursor: pointer; }
.form-submit { width: 100%; background: linear-gradient(135deg, var(--navy), var(--navy-light)); color: var(--white); border: none; border-radius: 10px; padding: 16px; font-size: 16px; font-weight: 600; font-family: 'DM Sans', sans-serif; cursor: pointer; transition: opacity 0.2s, transform 0.2s; margin-top: 8px; }
.form-submit:hover { opacity: 0.9; transform: translateY(-1px); }
.form-note { font-size: 12px; color: var(--gray); text-align: center; margin-top: 14px; line-height: 1.6; }

/* ═══════════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════════ */
.about-hero { background: var(--navy); padding: 140px 5% 100px; position: relative; overflow: hidden; background-image: linear-gradient(rgba(212,160,23,.06) 1px,transparent 1px),linear-gradient(90deg,rgba(212,160,23,.06) 1px,transparent 1px); background-size: 60px 60px; }
.about-hero-glow { position: absolute; top: -150px; right: -100px; width: 600px; height: 600px; background: radial-gradient(ellipse,rgba(201,168,76,0.12) 0%,transparent 70%); pointer-events: none; }
.about-hero-glow2 { position: absolute; bottom: -200px; left: -50px; width: 500px; height: 500px; background: radial-gradient(ellipse,rgba(26,140,255,0.08) 0%,transparent 70%); pointer-events: none; }
.about-hero-inner { position: relative; z-index: 2; max-width: 860px; }
.about-hero-breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 28px; }
.about-hero-breadcrumb a { color: rgba(255,255,255,0.45); text-decoration: none; font-size: 13px; font-weight: 500; transition: color 0.2s; }
.about-hero-breadcrumb a:hover { color: var(--gold); }
.about-hero-breadcrumb span { color: rgba(255,255,255,0.25); font-size: 13px; }
.about-hero-breadcrumb .current { color: var(--gold); font-size: 13px; font-weight: 600; }
.about-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(38px,5.5vw,68px); font-weight: 900; color: var(--white); line-height: 1.08; margin-bottom: 28px; }
.about-hero h1 .gold { color: var(--gold); }
.about-hero-lead { font-size: 19px; font-weight: 300; color: rgba(255,255,255,0.7); line-height: 1.8; max-width: 720px; }
.about-hero-badges { display: flex; align-items: center; gap: 16px; margin-top: 36px; flex-wrap: wrap; }
.about-hero-badge { display: flex; align-items: center; gap: 8px; background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.2); border-radius: 100px; padding: 8px 16px; font-size: 12px; font-weight: 600; color: var(--gold-light); letter-spacing: 0.5px; }
.about-divider { height: 4px; background: linear-gradient(90deg, var(--gold), var(--gold-light), transparent); }
.about-website-strip { background: var(--off-white); border-bottom: 1px solid #ede9e0; padding: 20px 5%; display: flex; align-items: center; gap: 16px; }
.about-website-strip .ws-label { font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gray); }
.about-website-strip .ws-url { font-size: 15px; font-weight: 600; color: var(--navy); text-decoration: none; display: flex; align-items: center; gap: 8px; }
.about-website-strip .ws-url:hover { color: var(--gold); }
.about-website-strip .ws-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); animation: pulse 2s infinite; }
.about-who { padding: 100px 5%; background: var(--white); }
.about-who-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-who-content p { font-size: 17px; color: #4a5a72; line-height: 1.9; margin-bottom: 24px; }
.about-who-content p:last-child { margin-bottom: 0; }
.about-stat-stack { display: flex; flex-direction: column; gap: 16px; }
.about-stat-card { background: var(--navy); border-radius: 16px; padding: 32px 36px; display: flex; align-items: center; gap: 28px; border: 1px solid rgba(201,168,76,0.15); transition: transform 0.2s, box-shadow 0.2s; }
.about-stat-card:hover { transform: translateX(6px); box-shadow: 0 8px 40px rgba(10,22,40,0.2); }
.about-stat-card.gold-card { background: linear-gradient(135deg, var(--gold), var(--gold-light)); border-color: transparent; }
.about-stat-num { font-family: 'Playfair Display', serif; font-size: 44px; font-weight: 900; color: var(--gold); line-height: 1; white-space: nowrap; }
.about-stat-card.gold-card .about-stat-num { color: var(--navy); }
.about-stat-label { font-size: 15px; font-weight: 600; color: rgba(255,255,255,0.85); line-height: 1.4; }
.about-stat-card.gold-card .about-stat-label { color: var(--navy); }
.about-stat-sub { font-size: 13px; color: rgba(255,255,255,0.45); margin-top: 4px; font-weight: 400; }
.about-stat-card.gold-card .about-stat-sub { color: rgba(10,22,40,0.55); }
.about-pillars { background: var(--off-white); padding: 80px 5%; border-top: 1px solid #ede9e0; border-bottom: 1px solid #ede9e0; }
.about-pillars-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 32px; }
.pillar-card { background: var(--white); border: 1px solid #e0ddd5; border-radius: 16px; padding: 40px 32px; transition: box-shadow 0.2s, transform 0.2s; position: relative; overflow: hidden; }
.pillar-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-light)); transform: scaleX(0); transform-origin: left; transition: transform 0.3s; }
.pillar-card:hover { box-shadow: 0 10px 40px rgba(10,22,40,0.08); transform: translateY(-4px); }
.pillar-card:hover::after { transform: scaleX(1); }
.pillar-icon { width: 56px; height: 56px; background: var(--gold-pale); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 26px; margin-bottom: 22px; }
.pillar-card h3 { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 14px; line-height: 1.3; }
.pillar-card p { font-size: 15px; color: #5a6a82; line-height: 1.8; }
.about-story { padding: 100px 5%; background: var(--navy); position: relative; overflow: hidden; background-image: linear-gradient(rgba(212,160,23,.04) 1px,transparent 1px),linear-gradient(90deg,rgba(212,160,23,.04) 1px,transparent 1px); background-size: 60px 60px; }
.about-story-glow { position: absolute; top: -100px; left: 50%; transform: translateX(-50%); width: 800px; height: 400px; background: radial-gradient(ellipse,rgba(201,168,76,0.08) 0%,transparent 70%); pointer-events: none; }
.about-story-inner { position: relative; z-index: 2; max-width: 960px; margin: 0 auto; text-align: center; }
.about-story-inner .section-label { text-align: center; }
.about-story-inner h2 { font-family: 'Playfair Display', serif; font-size: clamp(28px,4vw,46px); font-weight: 900; color: var(--white); line-height: 1.15; margin: 0 auto 48px; max-width: 720px; }
.about-story-inner h2 .gold { color: var(--gold); }
.about-story-blocks { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; text-align: left; margin-bottom: 52px; }
.story-block { background: rgba(255,255,255,0.04); border: 1px solid rgba(201,168,76,0.12); border-radius: 14px; padding: 32px; }
.story-block:first-child { grid-column: span 2; }
.story-block-label { font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.story-block p { font-size: 16px; color: rgba(255,255,255,0.7); line-height: 1.9; font-weight: 300; }
.about-cta-row { display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; }
.about-values { padding: 100px 5%; background: var(--white); }
.about-values-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 60px; flex-wrap: wrap; gap: 24px; }
.about-values-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.value-card { border: 1.5px solid #e0ddd5; border-radius: 16px; padding: 36px 28px; transition: border-color 0.2s, box-shadow 0.2s; position: relative; overflow: hidden; }
.value-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-light)); transform: scaleX(0); transform-origin: left; transition: transform 0.3s; }
.value-card:hover { border-color: var(--gold); box-shadow: 0 8px 40px rgba(201,168,76,0.08); }
.value-card:hover::after { transform: scaleX(1); }
.value-num { font-family: 'Playfair Display', serif; font-size: 13px; font-weight: 700; color: var(--gold); letter-spacing: 2px; margin-bottom: 20px; display: block; }
.value-card h4 { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 12px; line-height: 1.3; }
.value-card p { font-size: 14px; color: #5a6a82; line-height: 1.75; }
.about-cta-banner { background: linear-gradient(135deg, var(--navy), var(--navy-light)); padding: 80px 5%; text-align: center; border-top: 1px solid rgba(201,168,76,0.2); }
.about-cta-banner h2 { font-family: 'Playfair Display', serif; font-size: clamp(26px,3.5vw,42px); font-weight: 900; color: var(--white); margin-bottom: 18px; }
.about-cta-banner h2 .gold { color: var(--gold); }
.about-cta-banner p { font-size: 17px; color: rgba(255,255,255,0.65); line-height: 1.75; margin-bottom: 40px; max-width: 560px; margin-left: auto; margin-right: auto; }

/* ═══════════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════════ */
.contact-hero { background: var(--navy); padding: 140px 5% 100px; position: relative; overflow: hidden; background-image: linear-gradient(rgba(212,160,23,.06) 1px,transparent 1px),linear-gradient(90deg,rgba(212,160,23,.06) 1px,transparent 1px); background-size: 60px 60px; }
.contact-hero-glow { position: absolute; top: -150px; right: -100px; width: 600px; height: 600px; background: radial-gradient(ellipse,rgba(201,168,76,0.12) 0%,transparent 70%); pointer-events: none; }
.contact-hero-glow2 { position: absolute; bottom: -200px; left: -50px; width: 500px; height: 500px; background: radial-gradient(ellipse,rgba(26,140,255,0.08) 0%,transparent 70%); pointer-events: none; }
.contact-hero-inner { position: relative; z-index: 2; max-width: 760px; }
.contact-hero-breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 28px; }
.contact-hero-breadcrumb a { color: rgba(255,255,255,0.45); text-decoration: none; font-size: 13px; font-weight: 500; transition: color 0.2s; }
.contact-hero-breadcrumb a:hover { color: var(--gold); }
.contact-hero-breadcrumb span { color: rgba(255,255,255,0.25); font-size: 13px; }
.contact-hero-breadcrumb .current { color: var(--gold); font-size: 13px; font-weight: 600; }
.contact-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(36px,5vw,62px); font-weight: 900; color: var(--white); line-height: 1.1; margin-bottom: 24px; }
.contact-hero h1 .gold { color: var(--gold); }
.contact-hero-lead { font-size: 18px; font-weight: 300; color: rgba(255,255,255,0.65); line-height: 1.8; max-width: 640px; }
.contact-divider { height: 4px; background: linear-gradient(90deg, var(--gold), var(--gold-light), transparent); }
.contact-body { padding: 80px 5%; background: var(--white); }
.contact-body .contact-wrap { display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px; align-items: start; }
.contact-info-col h2 { font-family: 'Playfair Display', serif; font-size: clamp(26px,3.2vw,38px); font-weight: 900; color: var(--navy); margin-bottom: 16px; line-height: 1.2; }
.contact-info-col > p { font-size: 16px; color: #4a5a72; line-height: 1.8; margin-bottom: 40px; }
.contact-detail-icon { width: 46px; height: 46px; min-width: 46px; background: var(--gold-pale); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; }
.contact-detail-text h4 { font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gray); margin-bottom: 4px; }
.contact-detail-text p { font-size: 15px; color: var(--navy); font-weight: 600; }
.contact-detail-text a { color: var(--navy); text-decoration: none; font-weight: 600; font-size: 15px; transition: color 0.2s; }
.contact-detail-text a:hover { color: var(--gold); }
.info-divider { border: none; border-top: 1px solid #ede9e0; margin: 36px 0; }
.contact-quick-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 8px; }
.quick-card { background: var(--navy); border-radius: 12px; padding: 20px; border: 1px solid rgba(201,168,76,0.12); }
.quick-card .qc-num { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 900; color: var(--gold); line-height: 1; }
.quick-card .qc-label { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 4px; }
.quick-card.qc-gold { background: linear-gradient(135deg, var(--gold), var(--gold-light)); border-color: transparent; grid-column: span 2; display: flex; align-items: center; gap: 16px; padding: 22px 24px; }
.quick-card.qc-gold .qc-num { color: var(--navy); font-size: 24px; }
.quick-card.qc-gold .qc-label { color: rgba(10,22,40,0.6); }
.contact-map { margin-top: 36px; border-radius: 14px; overflow: hidden; border: 1px solid #e8e4db; }
.contact-map img { width: 100%; display: block; }
.contact-form-col { background: var(--off-white); border: 1px solid #e8e4db; border-radius: 20px; padding: 48px 44px; }
.form-header { margin-bottom: 32px; }
.form-header h3 { font-family: 'Playfair Display', serif; font-size: 26px; color: var(--navy); font-weight: 700; margin-top: 6px; }
.contact-why { background: var(--navy); padding: 72px 5%; border-top: 1px solid rgba(201,168,76,0.1); background-image: linear-gradient(rgba(212,160,23,.04) 1px,transparent 1px),linear-gradient(90deg,rgba(212,160,23,.04) 1px,transparent 1px); background-size: 60px 60px; }
.contact-why-inner { max-width: 1000px; margin: 0 auto; text-align: center; }
.contact-why-inner h2 { font-family: 'Playfair Display', serif; font-size: clamp(24px,3.5vw,38px); font-weight: 900; color: var(--white); margin-bottom: 48px; }
.contact-why-inner h2 .gold { color: var(--gold); }
.contact-why .why-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.why-item-icon { font-size: 26px; margin-bottom: 14px; }
.contact-why .why-item { background: rgba(255,255,255,0.04); border: 1px solid rgba(201,168,76,0.1); border-radius: 14px; padding: 28px 22px; text-align: left; display: block; }
.contact-why .why-item h4 { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.contact-why .why-item p { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.7; }

/* ═══════════════════════════════════════════
   PRIVACY PAGE
═══════════════════════════════════════════ */
.privacy-hero { background: var(--navy); padding: 140px 5% 100px; position: relative; overflow: hidden; background-image: linear-gradient(rgba(212,160,23,.06) 1px,transparent 1px),linear-gradient(90deg,rgba(212,160,23,.06) 1px,transparent 1px); background-size: 60px 60px; }
.privacy-hero-glow { position: absolute; top: -150px; right: -80px; width: 600px; height: 600px; background: radial-gradient(ellipse,rgba(201,168,76,0.1) 0%,transparent 70%); pointer-events: none; }
.privacy-hero-glow2 { position: absolute; bottom: -200px; left: -60px; width: 500px; height: 500px; background: radial-gradient(ellipse,rgba(26,140,255,0.07) 0%,transparent 70%); pointer-events: none; }
.privacy-hero-inner { position: relative; z-index: 2; max-width: 820px; }
.privacy-hero-breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 28px; }
.privacy-hero-breadcrumb a { color: rgba(255,255,255,0.45); text-decoration: none; font-size: 13px; font-weight: 500; transition: color 0.2s; }
.privacy-hero-breadcrumb a:hover { color: var(--gold); }
.privacy-hero-breadcrumb span { color: rgba(255,255,255,0.25); font-size: 13px; }
.privacy-hero-breadcrumb .current { color: var(--gold); font-size: 13px; font-weight: 600; }
.privacy-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(34px,5vw,60px); font-weight: 900; color: var(--white); line-height: 1.1; margin-bottom: 24px; }
.privacy-hero h1 .gold { color: var(--gold); }
.privacy-hero-lead { font-size: 16px; font-weight: 300; color: rgba(255,255,255,0.6); line-height: 1.8; max-width: 700px; }
.privacy-hero-meta { display: flex; align-items: center; gap: 16px; margin-top: 36px; flex-wrap: wrap; }
.privacy-meta-badge { display: flex; align-items: center; gap: 8px; background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.2); border-radius: 100px; padding: 8px 16px; font-size: 12px; font-weight: 600; color: var(--gold-light); letter-spacing: 0.5px; }
.privacy-divider { height: 4px; background: linear-gradient(90deg, var(--gold), var(--gold-light), transparent); }
.privacy-body { padding: 80px 5%; background: var(--white); }
.privacy-layout { display: grid; grid-template-columns: 260px 1fr; gap: 64px; align-items: start; }
.privacy-toc { position: sticky; top: 96px; max-height: calc(100vh - 120px); overflow-y: auto; }
.privacy-toc::-webkit-scrollbar { width: 3px; }
.privacy-toc::-webkit-scrollbar-thumb { background: var(--gold-pale); border-radius: 3px; }
.privacy-toc-title { font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.privacy-toc ul { list-style: none; }
.privacy-toc ul li { margin-bottom: 3px; }
.privacy-toc ul a { display: block; font-size: 12.5px; font-weight: 500; color: #5a6a82; text-decoration: none; padding: 6px 12px; border-left: 2px solid #e8e4db; transition: color 0.2s, border-color 0.2s, background 0.2s; border-radius: 0 6px 6px 0; line-height: 1.4; }
.privacy-toc ul a:hover, .privacy-toc ul a.active { color: var(--navy); border-left-color: var(--gold); background: var(--gold-pale); }
.privacy-content { min-width: 0; }
.privacy-intro-card { background: var(--navy); border-radius: 16px; padding: 36px 40px; margin-bottom: 56px; border: 1px solid rgba(201,168,76,0.2); background-image: linear-gradient(rgba(212,160,23,.04) 1px,transparent 1px),linear-gradient(90deg,rgba(212,160,23,.04) 1px,transparent 1px); background-size: 40px 40px; }
.privacy-intro-card .intro-label { font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.privacy-intro-card p { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.85; font-weight: 300; }
.promise-card { background: linear-gradient(135deg, var(--navy), var(--navy-light)); border-radius: 14px; padding: 36px 40px; margin-top: 16px; border: 1px solid rgba(201,168,76,0.15); }
.promise-card p { font-size: 15px; color: rgba(255,255,255,0.7); line-height: 1.9; font-weight: 300; margin-bottom: 14px; }
.promise-card p:last-child { margin-bottom: 0; }
.promise-card strong { color: var(--gold); }
.privacy-cta { background: linear-gradient(135deg, var(--navy), var(--navy-light)); border-radius: 16px; padding: 48px 44px; margin-top: 64px; text-align: center; border: 1px solid rgba(201,168,76,0.15); }
.privacy-cta h3 { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.privacy-cta h3 .gold { color: var(--gold); }
.privacy-cta p { font-size: 15px; color: rgba(255,255,255,0.6); margin-bottom: 28px; line-height: 1.7; }

/* ═══════════════════════════════════════════
   TERMS PAGE
═══════════════════════════════════════════ */
.terms-hero { background: var(--navy); padding: 140px 5% 100px; position: relative; overflow: hidden; background-image: linear-gradient(rgba(212,160,23,.06) 1px,transparent 1px),linear-gradient(90deg,rgba(212,160,23,.06) 1px,transparent 1px); background-size: 60px 60px; }
.terms-hero-glow { position: absolute; top: -150px; right: -80px; width: 600px; height: 600px; background: radial-gradient(ellipse,rgba(201,168,76,0.1) 0%,transparent 70%); pointer-events: none; }
.terms-hero-glow2 { position: absolute; bottom: -200px; left: -60px; width: 500px; height: 500px; background: radial-gradient(ellipse,rgba(26,140,255,0.07) 0%,transparent 70%); pointer-events: none; }
.terms-hero-inner { position: relative; z-index: 2; max-width: 820px; }
.terms-hero-breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 28px; }
.terms-hero-breadcrumb a { color: rgba(255,255,255,0.45); text-decoration: none; font-size: 13px; font-weight: 500; transition: color 0.2s; }
.terms-hero-breadcrumb a:hover { color: var(--gold); }
.terms-hero-breadcrumb span { color: rgba(255,255,255,0.25); font-size: 13px; }
.terms-hero-breadcrumb .current { color: var(--gold); font-size: 13px; font-weight: 600; }
.terms-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(34px,5vw,60px); font-weight: 900; color: var(--white); line-height: 1.1; margin-bottom: 24px; }
.terms-hero h1 .gold { color: var(--gold); }
.terms-hero-lead { font-size: 16px; font-weight: 300; color: rgba(255,255,255,0.6); line-height: 1.8; max-width: 700px; }
.terms-hero-meta { display: flex; align-items: center; gap: 16px; margin-top: 36px; flex-wrap: wrap; }
.terms-meta-badge { display: flex; align-items: center; gap: 8px; background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.2); border-radius: 100px; padding: 8px 16px; font-size: 12px; font-weight: 600; color: var(--gold-light); letter-spacing: 0.5px; }
.terms-divider { height: 4px; background: linear-gradient(90deg, var(--gold), var(--gold-light), transparent); }
.terms-body { padding: 80px 5%; background: var(--white); }
.terms-layout { display: grid; grid-template-columns: 260px 1fr; gap: 64px; align-items: start; }
.terms-toc { position: sticky; top: 96px; max-height: calc(100vh - 120px); overflow-y: auto; }
.terms-toc::-webkit-scrollbar { width: 3px; }
.terms-toc::-webkit-scrollbar-thumb { background: var(--gold-pale); border-radius: 3px; }
.terms-toc-title { font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.terms-toc ul { list-style: none; }
.terms-toc ul li { margin-bottom: 3px; }
.terms-toc ul a { display: block; font-size: 12.5px; font-weight: 500; color: #5a6a82; text-decoration: none; padding: 6px 12px; border-left: 2px solid #e8e4db; transition: color 0.2s, border-color 0.2s, background 0.2s; border-radius: 0 6px 6px 0; line-height: 1.4; }
.terms-toc ul a:hover, .terms-toc ul a.active { color: var(--navy); border-left-color: var(--gold); background: var(--gold-pale); }
.terms-content { min-width: 0; }
.terms-warning-card { background: var(--navy); border-radius: 16px; padding: 36px 40px; margin-bottom: 56px; border: 1px solid rgba(201,168,76,0.2); background-image: linear-gradient(rgba(212,160,23,.04) 1px,transparent 1px),linear-gradient(90deg,rgba(212,160,23,.04) 1px,transparent 1px); background-size: 40px 40px; }
.terms-warning-card .warn-label { font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.terms-warning-card p { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.85; font-weight: 300; }
.terms-warning-card p + p { margin-top: 12px; }
.terms-cta { background: linear-gradient(135deg, var(--navy), var(--navy-light)); border-radius: 16px; padding: 48px 44px; margin-top: 64px; text-align: center; border: 1px solid rgba(201,168,76,0.15); }
.terms-cta h3 { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.terms-cta h3 .gold { color: var(--gold); }
.terms-cta p { font-size: 15px; color: rgba(255,255,255,0.6); margin-bottom: 28px; line-height: 1.7; }

/* ═══════════════════════════════════════════
   SHARED POLICY SECTION STYLES (privacy + terms)
═══════════════════════════════════════════ */
.policy-section { margin-bottom: 52px; padding-bottom: 52px; border-bottom: 1px solid #f0ece3; }
.policy-section:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.policy-section-header { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 20px; }
.policy-section-icon { width: 44px; height: 44px; min-width: 44px; background: var(--gold-pale); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 20px; margin-top: 2px; }
.policy-section-num { font-family: 'Playfair Display', serif; font-size: 13px; font-weight: 700; color: var(--gold); letter-spacing: 1px; margin-bottom: 4px; }
.policy-section h2 { font-family: 'Playfair Display', serif; font-size: 21px; font-weight: 700; color: var(--navy); line-height: 1.3; }
.policy-section p { font-size: 15px; color: #4a5a72; line-height: 1.85; margin-bottom: 14px; }
.policy-section p:last-child { margin-bottom: 0; }
.policy-list { list-style: none; margin: 14px 0; }
.policy-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: #4a5a72; line-height: 1.75; margin-bottom: 10px; }
.policy-list li::before { content: ''; display: block; width: 6px; height: 6px; min-width: 6px; border-radius: 50%; background: var(--gold); margin-top: 9px; }
.policy-highlight { background: var(--off-white); border-left: 3px solid var(--gold); border-radius: 0 10px 10px 0; padding: 20px 24px; margin: 16px 0; }
.policy-highlight p { font-size: 14px; color: #4a5a72; margin: 0 0 8px 0; line-height: 1.75; }
.policy-highlight p:last-child { margin: 0; }
.policy-highlight strong { color: var(--navy); }
.policy-warning { background: rgba(201,168,76,0.06); border: 1px solid rgba(201,168,76,0.2); border-radius: 10px; padding: 20px 24px; margin: 16px 0; }
.policy-warning p { font-size: 13.5px; color: #4a5a72; margin: 0; line-height: 1.75; }
.policy-warning strong { color: var(--navy); }
.policy-caps { background: var(--navy); border-radius: 12px; padding: 24px 28px; margin: 16px 0; }
.policy-caps p { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.8; margin: 0; }
.policy-subsection { margin-top: 24px; padding-top: 20px; border-top: 1px solid #f0ece3; }
.policy-subsection h3 { font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.policy-subsection p { font-size: 15px; color: #4a5a72; line-height: 1.85; margin-bottom: 12px; }
.policy-subsection p:last-child { margin-bottom: 0; }
.bellwether-block { background: var(--off-white); border-radius: 10px; padding: 20px 24px; margin: 14px 0; }
.bellwether-block h4 { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.bellwether-block p { font-size: 14px; color: #4a5a72; line-height: 1.8; margin: 0; }

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 960px) {
  .about-values-grid { grid-template-columns: 1fr 1fr; }
  .privacy-layout, .terms-layout { grid-template-columns: 1fr; }
  .privacy-toc, .terms-toc { display: none; }
  .contact-body .contact-wrap { grid-template-columns: 1fr; gap: 48px; }
  .contact-why .why-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .hero { grid-template-columns: 1fr; }
  .hero-image-side { min-height: 300px; }
  .hero-content-side { padding: 48px 28px; }
  .why-grid { grid-template-columns: 1fr; }
  .contact-wrap { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 32px 24px; }
  .about-who-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-pillars-grid { grid-template-columns: 1fr; }
  .about-story-blocks { grid-template-columns: 1fr; }
  .story-block:first-child { grid-column: span 1; }
  .about-values-header { flex-direction: column; align-items: flex-start; }
  .about-values-grid { grid-template-columns: 1fr; }
  .about-website-strip { flex-direction: column; align-items: flex-start; gap: 8px; }
  .contact-form-col { padding: 32px 24px; }
  .contact-quick-cards { grid-template-columns: 1fr; }
  .quick-card.qc-gold { grid-column: span 1; }
  .contact-why .why-grid { grid-template-columns: 1fr; }
  .privacy-intro-card, .terms-warning-card { padding: 24px 20px; }
  .privacy-cta, .terms-cta { padding: 32px 24px; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}
