/* LAPFREEDESK.COM — Corporate / Secular Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=DM+Serif+Display:ital@0;1&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --navy: #0A1628;
  --navy-mid: #152340;
  --navy-light: #1E3A5F;
  --gold: #C8A96E;
  --gold-light: #E2C99A;
  --gold-dark: #9A7A48;
  --slate: #64748B;
  --slate-light: #94A3B8;
  --ice: #F1F5F9;
  --ice-dark: #E2E8F0;
  --white: #FFFFFF;
  --text: #0A1628;
  --text-muted: #64748B;
  --accent: #2563EB;
  --green: #059669;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', 'Inter', sans-serif;
  background: var(--white);
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
}

/* NAV */
nav {
  background: var(--navy);
  padding: 0 2rem;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(200,169,110,0.2);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav-logo {
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.nav-logo span { color: var(--gold); }
.nav-logo sup {
  font-size: 0.5rem;
  color: var(--gold-dark);
  letter-spacing: 0.05em;
  vertical-align: super;
  font-weight: 600;
}
.nav-links { display: flex; gap: 0; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  font-weight: 500;
  padding: 0 1.1rem;
  height: 68px;
  display: flex;
  align-items: center;
  transition: color 0.2s;
  font-family: 'Inter', sans-serif;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  font-weight: 700 !important;
  margin-left: 0.5rem;
}
.nav-cta:hover { background: var(--gold-light) !important; }

/* HAMBURGER */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--gold); border-radius: 2px; }
.mobile-menu { display: none; }

/* HERO */
.hero {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  padding: 6rem 2rem 5rem;
}
.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,169,110,0.12) 0%, transparent 70%);
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,0.08) 0%, transparent 70%);
}
.hero-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 2; }
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(200,169,110,0.12);
  border: 1px solid rgba(200,169,110,0.3);
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 2rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
}
.hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  max-width: 800px;
  letter-spacing: -0.01em;
}
.hero h1 em { color: var(--gold); font-style: italic; }
.hero h1 span { color: var(--gold); }
.hero-sub {
  color: rgba(255,255,255,0.65);
  font-size: 1.15rem;
  max-width: 580px;
  margin-bottom: 2.5rem;
  font-weight: 400;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 4rem; }

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,169,110,0.35); }
.btn-outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.3); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-mid); transform: translateY(-2px); }
.btn-white { background: var(--white); color: var(--navy); }
.btn-white:hover { background: var(--ice); transform: translateY(-2px); }

/* STAT STRIP */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  overflow: hidden;
}
.stat-item {
  padding: 1.5rem 2rem;
  background: rgba(255,255,255,0.04);
}
.stat-num {
  font-family: 'DM Serif Display', serif;
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}

/* SECTIONS */
section { padding: 5rem 2rem; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 700;
  margin-bottom: 0.8rem;
  font-family: 'Inter', sans-serif;
}
.section-label.light { color: var(--gold); }
.section-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}
.section-title.light { color: var(--white); }
.section-title em { font-style: italic; color: var(--gold-dark); }
.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 580px;
  margin-bottom: 3rem;
  line-height: 1.8;
}
.section-sub.light { color: rgba(255,255,255,0.65); }

/* BG */
.bg-white { background: var(--white); }
.bg-ice { background: var(--ice); }
.bg-ice-dark { background: var(--ice-dark); }
.bg-navy { background: var(--navy); }
.bg-navy-mid { background: var(--navy-mid); }

/* CARDS */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.card {
  background: var(--white);
  border: 1px solid var(--ice-dark);
  border-radius: 10px;
  padding: 2rem;
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
}
.card:hover { box-shadow: 0 12px 40px rgba(10,22,40,0.1); transform: translateY(-4px); border-color: var(--gold); }
.card-icon {
  width: 48px; height: 48px;
  background: var(--ice);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1.2rem;
}
.card h3 { font-family: 'DM Serif Display', serif; font-size: 1.2rem; color: var(--navy); margin-bottom: 0.5rem; }
.card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; }

/* USE CASE CARDS */
.use-card {
  background: var(--navy-mid);
  border: 1px solid rgba(200,169,110,0.15);
  border-radius: 10px;
  padding: 2rem;
  transition: border-color 0.25s, transform 0.25s;
}
.use-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.use-card-icon { font-size: 2rem; margin-bottom: 1rem; }
.use-card h3 { font-family: 'DM Serif Display', serif; font-size: 1.15rem; color: var(--white); margin-bottom: 0.5rem; }
.use-card p { color: rgba(255,255,255,0.6); font-size: 0.92rem; line-height: 1.7; }

/* TWO COL */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

/* IMG BLOCK */
.img-block {
  background: var(--ice);
  border: 1px solid var(--ice-dark);
  border-radius: 12px;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
}
.img-block::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(200,169,110,0.06) 0%, transparent 60%);
}
.img-block-label { font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold-dark); font-weight: 700; font-family: 'Inter', sans-serif; }
.img-block-sub { font-size: 0.9rem; color: var(--text-muted); font-family: 'DM Serif Display', serif; font-style: italic; text-align: center; max-width: 220px; }

/* SHOP CARDS */
.shop-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; margin-top: 3rem; align-items: stretch; }
.shop-card { background: var(--white); border: 1.5px solid var(--ice-dark); border-radius: 12px; overflow: hidden; display: flex; flex-direction: column; transition: box-shadow 0.3s, transform 0.3s; }
.shop-card:hover { box-shadow: 0 16px 48px rgba(10,22,40,0.12); transform: translateY(-4px); }
.shop-card-header { padding: 2rem 2rem 1rem; border-bottom: 1px solid var(--ice-dark); }
.shop-card-body { padding: 1.5rem 2rem 2rem; flex: 1; display: flex; flex-direction: column; }
.shop-card.featured { border-color: var(--gold); }
.shop-card.dark { background: var(--navy); border-color: rgba(200,169,110,0.3); }
.price-tag { font-family: 'DM Serif Display', serif; font-size: 2.4rem; color: var(--navy); line-height: 1; }
.price-tag.light { color: var(--white); }
.price-tag sup { font-size: 1.1rem; vertical-align: super; }
.price-per { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.2rem; }
.price-per.light { color: rgba(255,255,255,0.5); }
.savings { display: inline-block; background: rgba(5,150,105,0.1); color: var(--green); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.2rem 0.6rem; border-radius: 100px; margin-top: 0.4rem; }
.shop-card ul { list-style: none; margin: 1.2rem 0 1.5rem; flex: 1; }
.shop-card ul li { padding: 0.45rem 0; font-size: 0.9rem; color: var(--text-muted); display: flex; align-items: flex-start; gap: 0.6rem; border-bottom: 1px solid var(--ice); }
.shop-card.dark ul li { color: rgba(255,255,255,0.65); border-bottom-color: rgba(255,255,255,0.06); }
.shop-card ul li:last-child { border: none; }
.shop-card ul li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }
.shop-card.dark ul li::before { color: var(--gold); }

/* FAQ */
.faq-item { border-bottom: 1px solid var(--ice-dark); }
.faq-q {
  width: 100%; text-align: left; padding: 1.3rem 0;
  background: none; border: none; cursor: pointer;
  font-family: 'DM Serif Display', serif; font-size: 1.1rem; color: var(--navy);
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq-q:hover { color: var(--gold-dark); }
.faq-icon { color: var(--gold); font-size: 1.4rem; transition: transform 0.3s; flex-shrink: 0; font-family: 'Inter', sans-serif; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-a p { padding-bottom: 1.3rem; color: var(--text-muted); line-height: 1.8; font-size: 0.97rem; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-item.open .faq-a { max-height: 400px; }

/* PAGE HERO */
.page-hero {
  background: var(--navy);
  padding: 4rem 2rem 3.5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; top: -50%; right: -5%;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(200,169,110,0.1) 0%, transparent 70%);
}
.page-hero-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 2; }
.breadcrumb { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 1rem; font-family: 'Inter', sans-serif; }
.breadcrumb a { color: var(--gold-dark); text-decoration: none; }
.page-hero h1 { font-family: 'DM Serif Display', serif; font-size: clamp(2rem, 4vw, 3.2rem); color: var(--white); margin-bottom: 0.6rem; letter-spacing: -0.01em; }
.page-hero p { color: rgba(255,255,255,0.6); font-size: 1.05rem; max-width: 560px; }

/* CTA BANNER */
.cta-banner { background: var(--gold); padding: 5rem 2rem; text-align: center; }
.cta-banner h2 { font-family: 'DM Serif Display', serif; font-size: clamp(1.8rem, 3vw, 2.8rem); color: var(--navy); margin-bottom: 1rem; letter-spacing: -0.01em; }
.cta-banner p { color: rgba(10,22,40,0.7); margin-bottom: 2rem; font-size: 1.05rem; }

/* FORMS */
.form-group { margin-bottom: 1.4rem; }
.form-group label { display: block; font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--navy); font-weight: 600; margin-bottom: 0.5rem; font-family: 'Inter', sans-serif; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 0.85rem 1rem;
  border: 1.5px solid var(--ice-dark); border-radius: 6px;
  background: var(--white); color: var(--text);
  font-family: 'DM Sans', sans-serif; font-size: 0.95rem;
  transition: border-color 0.2s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: var(--gold);
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* FOOTER */
footer { background: var(--navy); color: rgba(255,255,255,0.55); padding: 4rem 2rem 2rem; border-top: 1px solid rgba(200,169,110,0.15); }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-logo { font-family: 'Inter', sans-serif; font-size: 1.3rem; font-weight: 800; color: var(--white); letter-spacing: -0.02em; margin-bottom: 0.8rem; }
.footer-logo span { color: var(--gold); }
.footer-desc { font-size: 0.9rem; line-height: 1.7; margin-bottom: 1rem; }
.footer-col h4 { font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 1rem; font-family: 'Inter', sans-serif; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 0.9rem; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; font-size: 0.82rem; flex-wrap: wrap; gap: 0.5rem; }
.footer-bottom a { color: var(--gold-dark); text-decoration: none; }
.patent-tag { display: inline-block; background: rgba(200,169,110,0.1); border: 1px solid rgba(200,169,110,0.25); color: var(--gold-dark); font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.25rem 0.7rem; border-radius: 4px; font-weight: 700; font-family: 'Inter', sans-serif; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; gap: 2.5rem; }
  .two-col.reverse { direction: ltr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-menu.open {
    display: flex; flex-direction: column;
    background: var(--navy); position: absolute;
    top: 68px; left: 0; right: 0;
    border-top: 1px solid rgba(200,169,110,0.15); z-index: 99;
  }
  .mobile-menu.open a {
    color: rgba(255,255,255,0.8); text-decoration: none;
    padding: 1rem 2rem; font-size: 0.9rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-family: 'Inter', sans-serif; font-weight: 500;
  }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .form-grid { grid-template-columns: 1fr; }
  .hero { padding: 4rem 1.5rem 3.5rem; }
  section { padding: 3.5rem 1.5rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; }
}
