/* LLoupe — Brand Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

:root {
  --navy: #01154F;
  --navy-mid: #0D1930;
  --navy-light: #1a2d5a;
  --gold: #C9A84C;
  --gold-light: #e8c97a;
  --white: #ffffff;
  --off-white: #f8f9fc;
  --gray: #6b7280;
  --gray-light: #e5e7eb;
  --font: 'Urbanist', sans-serif;
  --radius: 8px;
  --shadow: 0 4px 24px rgba(1,21,79,0.10);
  --transition: all 0.25s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--navy-mid);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
}

/* ── NAVIGATION ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(1,21,79,0.08);
  padding: 0 2rem;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.nav-logo span { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: var(--navy-mid);
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition);
}
.nav-links a:hover { color: var(--gold); }

.nav-cta {
  background: var(--navy);
  color: var(--white) !important;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-weight: 600 !important;
  transition: var(--transition) !important;
}
.nav-cta:hover { background: var(--gold) !important; color: var(--navy) !important; }

.lang-switcher {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  margin-left: 1rem;
}
.lang-switcher a {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray);
  text-decoration: none;
  padding: 2px 6px;
  border-radius: 4px;
  transition: var(--transition);
}
.lang-switcher a.active, .lang-switcher a:hover {
  color: var(--navy);
  background: var(--gray-light);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 60%, #1e3a7a 100%);
  display: flex;
  align-items: center;
  padding: 6rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -10%; left: -5%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-content {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.hero-tag {
  display: inline-block;
  background: rgba(201,168,76,0.2);
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(201,168,76,0.3);
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}
.hero h1 em { color: var(--gold-light); font-style: normal; }
.hero p {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin-bottom: 2.5rem;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}
.btn-primary { background: var(--gold); color: var(--navy); }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.4); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.4); }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.8); }
.btn-dark { background: var(--navy); color: var(--white); }
.btn-dark:hover { background: var(--navy-light); transform: translateY(-2px); }

/* ── SECTIONS ── */
section { padding: 5rem 2rem; }
.container { max-width: 1100px; margin: 0 auto; }

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.section-sub {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 580px;
  margin-bottom: 3rem;
}

/* ── SERVICES GRID ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 16px;
  padding: 2.5rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--navy), var(--gold));
  opacity: 0;
  transition: var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 52px; height: 52px;
  background: var(--off-white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}
.service-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.service-card p { color: var(--gray); font-size: 0.95rem; margin-bottom: 1.25rem; }
.service-card ul { list-style: none; padding: 0; }
.service-card ul li {
  padding: 0.3rem 0;
  font-size: 0.9rem;
  color: var(--navy-mid);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.service-card ul li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; }
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.5rem;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
}
.card-link:hover { color: var(--gold); gap: 0.6rem; }

/* ── BENEFITS ── */
.benefits-section { background: var(--off-white); }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.benefit-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 2px 12px rgba(1,21,79,0.06);
  transition: var(--transition);
}
.benefit-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.benefit-icon { font-size: 2rem; margin-bottom: 1rem; }
.benefit-card h4 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
.benefit-card p { font-size: 0.85rem; color: var(--gray); }

/* ── PACKAGES ── */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.package-card {
  border: 2px solid var(--gray-light);
  border-radius: 20px;
  padding: 2.5rem;
  position: relative;
  transition: var(--transition);
  background: var(--white);
}
.package-card.featured {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}
.package-card.featured h3, .package-card.featured p, .package-card.featured li { color: var(--white); }
.package-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 1rem;
  border-radius: 50px;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.package-card h3 { font-size: 1.3rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
.package-target { font-size: 0.85rem; color: var(--gray); margin-bottom: 1.5rem; }
.package-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.25rem;
}
.package-card.featured .package-price { color: var(--gold-light); }
.package-duration { font-size: 0.85rem; color: var(--gray); margin-bottom: 1.5rem; }
.package-card.featured .package-duration { color: rgba(255,255,255,0.6); }
.package-features { list-style: none; padding: 0; margin-bottom: 2rem; }
.package-features li {
  padding: 0.4rem 0;
  font-size: 0.9rem;
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  color: var(--navy-mid);
  border-bottom: 1px solid var(--gray-light);
}
.package-card.featured .package-features li { color: rgba(255,255,255,0.85); border-bottom-color: rgba(255,255,255,0.1); }
.package-features li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; }
.package-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

/* ── ABOUT / STATS ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 768px) { .about-grid { grid-template-columns: 1fr; } }
.about-text p { color: var(--gray); margin-bottom: 1rem; line-height: 1.8; }
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}
.stat-box {
  background: var(--navy);
  color: var(--white);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
}
.stat-number { font-size: 2rem; font-weight: 800; color: var(--gold-light); }
.stat-label { font-size: 0.85rem; color: rgba(255,255,255,0.7); margin-top: 0.25rem; }

/* ── PARTNERS ── */
.partners-section { background: var(--off-white); text-align: center; }
.partners-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.partner-chip {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 50px;
  padding: 0.6rem 1.5rem;
  font-weight: 600;
  color: var(--navy);
  font-size: 0.9rem;
  box-shadow: 0 2px 8px rgba(1,21,79,0.06);
}

/* ── INSIGHTS ── */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.insight-card {
  border: 1px solid var(--gray-light);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition);
  background: var(--white);
}
.insight-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.insight-img {
  height: 180px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.insight-body { padding: 1.5rem; }
.insight-tag { font-size: 0.75rem; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.5rem; }
.insight-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; line-height: 1.4; }
.insight-card p { font-size: 0.85rem; color: var(--gray); }
.read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  transition: var(--transition);
}
.read-more:hover { color: var(--gold); }

/* ── CTA BAND ── */
.cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a7a 100%);
  color: var(--white);
  text-align: center;
  padding: 5rem 2rem;
}
.cta-band h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 800; margin-bottom: 1rem; }
.cta-band p { color: rgba(255,255,255,0.75); max-width: 500px; margin: 0 auto 2rem; }

/* ── DEMO PAGE ── */
.demo-page {
  min-height: 100vh;
  padding-top: 100px;
  background: var(--off-white);
}
.demo-container {
  max-width: 700px;
  margin: 0 auto;
  padding: 2rem;
}
.demo-header { text-align: center; margin-bottom: 3rem; }
.demo-header h1 { font-size: 2.5rem; font-weight: 800; color: var(--navy); margin-bottom: 0.75rem; }
.demo-header p { color: var(--gray); font-size: 1.05rem; }
.demo-bullets { list-style: none; text-align: left; max-width: 480px; margin: 1.5rem auto; }
.demo-bullets li {
  padding: 0.5rem 0;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  color: var(--navy-mid);
}
.demo-bullets li::before { content: '→'; color: var(--gold); font-weight: 700; flex-shrink: 0; }
.demo-form {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--navy); }
.form-group input, .form-group textarea, .form-group select {
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--navy-mid);
  transition: var(--transition);
  background: var(--off-white);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none;
  border-color: var(--navy);
  background: var(--white);
}
.form-group textarea { min-height: 100px; resize: vertical; }
.form-check { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 1.5rem; }
.form-check input { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; accent-color: var(--navy); }
.form-check label { font-size: 0.85rem; color: var(--gray); }
.form-check a { color: var(--navy); }
.btn-submit {
  width: 100%;
  padding: 1rem;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}
.btn-submit:hover { background: var(--gold); color: var(--navy); }

/* ── FOOTER ── */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 4rem 2rem 2rem;
}
.footer-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-brand .nav-logo { color: var(--white); display: block; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; max-width: 260px; }
.footer-col h4 { font-size: 0.8rem; font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a { color: rgba(255,255,255,0.65); text-decoration: none; font-size: 0.9rem; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-contact p { font-size: 0.9rem; margin-bottom: 0.4rem; }
.footer-contact a { color: rgba(255,255,255,0.65); text-decoration: none; }
.footer-contact a:hover { color: var(--gold-light); }
.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
}
.footer-bottom a { color: rgba(255,255,255,0.5); text-decoration: none; }
.footer-bottom a:hover { color: var(--white); }

/* ── RESPONSIVE NAV ── */
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); margin: 5px 0; transition: var(--transition); }

@media (max-width: 900px) {
  .hamburger { display: block; }
  .nav-links { display: none; position: absolute; top: 68px; left: 0; right: 0; background: var(--white); padding: 1rem 2rem 2rem; flex-direction: column; gap: 1rem; border-bottom: 1px solid var(--gray-light); }
  .nav-links.open { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* ── MOBILE OPTIMIZATION (added 2026-07-17) ── */
html,body{overflow-x:hidden;max-width:100%}
.nav-toggle{display:none}
@media(max-width:768px){
  .nav-toggle{display:flex;align-items:center;justify-content:center;background:rgba(255,255,255,.06);border:1px solid var(--border,#333);color:inherit;width:42px;height:38px;border-radius:6px;cursor:pointer;font-size:1.2rem;margin-left:auto}
  nav{position:relative;flex-wrap:wrap}
  .nav-links,.navbar .nav-links,#navbar .nav-links{display:none;width:100%;flex-direction:column;align-items:stretch;gap:4px;margin-top:10px;padding-top:10px;border-top:1px solid var(--border,#333)}
  .nav-links.open,#navbar .nav-links.open,.navbar .nav-links.open{display:flex}
  .nav-drop,.dropdown{width:100%}
  .nav-drop-btn,.dropdown-btn{width:100%;text-align:left;padding:10px 4px}
  .nav-drop-menu,.dropdown-menu{position:static;min-width:0;box-shadow:none;background:rgba(255,255,255,.03);margin-top:2px;padding:4px 0 4px 12px}
  .nav-links a,.navbar a{padding:10px 4px}
  .lang-wrap{width:100%;margin-top:4px}
  .lang-current{width:100%;text-align:center}
  .lang-list{position:static;min-width:0;box-shadow:none;margin-top:4px}
}
@media(max-width:640px){
  .domain-grid,.how-grid,.tech-grid,.grid,.card-grid{grid-template-columns:1fr!important}
  .hero,.hero-section{min-height:78vh;padding:72px 18px 36px}
  section,.section{padding:64px 18px!important}
  .container,.wrapper{max-width:100%}
  .cta-block,.cta{padding:40px 20px;margin:0 12px}
  .testi-card,.card{min-width:0;width:100%}
  .form-row{grid-template-columns:1fr}
  .provider-grid{grid-template-columns:repeat(auto-fill,minmax(120px,1fr))}
}
@media(max-width:480px){
  .form-block,.form{padding:28px 16px}
  section,.section{padding:52px 14px!important}
  .nav-logo,.logo{font-size:.8rem;max-width:60%}
}
