/* ============================================================
   CLAIMRIGHT USA — SHARED STYLES
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600;700&family=Outfit:wght@300;400;500;600;700&display=swap');

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

:root {
  --navy:       #07111f;
  --navy-2:     #0d1e33;
  --navy-3:     #122649;
  --gold:       #c9913a;
  --gold-lt:    #e4af5d;
  --gold-pale:  #fdf5e8;
  --gold-dim:   rgba(201,145,58,0.18);
  --white:      #ffffff;
  --offwhite:   #f9f8f5;
  --gray-100:   #f0ede7;
  --gray-300:   #d4cfc7;
  --gray-500:   #9a9490;
  --gray-700:   #4a4640;
  --text-dark:  #0f1a28;
  --text-body:  #3d3a36;
  --red:        #c23b2e;
  --green:      #1e8c4a;
  --radius-sm:  6px;
  --radius-md:  10px;
  --radius-lg:  16px;
  --radius-xl:  24px;
  --shadow-sm:  0 2px 8px rgba(7,17,31,0.08);
  --shadow-md:  0 8px 30px rgba(7,17,31,0.12);
  --shadow-lg:  0 20px 60px rgba(7,17,31,0.18);
  --transition: 0.22s cubic-bezier(0.4,0,0.2,1);
}

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

body {
  font-family: 'Outfit', sans-serif;
  color: var(--text-body);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--text-dark);
  line-height: 1.15;
}

a { color: inherit; }
img { max-width: 100%; display: block; }

/* ── UTILITY ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 5%; }
.section { padding: 96px 5%; }
.section-sm { padding: 64px 5%; }
.bg-navy { background: var(--navy); }
.bg-navy2 { background: var(--navy-2); }
.bg-offwhite { background: var(--offwhite); }
.bg-white { background: var(--white); }

.section-eyebrow {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.9rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--gray-500);
  font-weight: 300;
  line-height: 1.75;
  max-width: 580px;
}

.centered { text-align: center; }
.centered .section-sub { margin: 0 auto; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-sm);
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: 0.2px;
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
}
.btn-gold:hover { background: var(--gold-lt); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(201,145,58,0.35); }

.btn-outline-gold {
  background: transparent;
  color: var(--gold-lt);
  border: 1.5px solid rgba(201,145,58,0.5);
}
.btn-outline-gold:hover { background: var(--gold-dim); border-color: var(--gold); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.3);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.6); }

.btn-white {
  background: var(--white);
  color: var(--navy);
}
.btn-white:hover { background: var(--gray-100); transform: translateY(-2px); }

.btn-lg { padding: 1rem 2.4rem; font-size: 1.05rem; }
.btn-sm { padding: 0.55rem 1.2rem; font-size: 0.85rem; }

/* ── NAV ── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 72px;
  background: rgba(7,17,31,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,145,58,0.2);
  display: flex;
  align-items: center;
  padding: 0 5%;
  transition: box-shadow var(--transition);
}

#navbar.scrolled { box-shadow: 0 4px 40px rgba(0,0,0,0.4); }

.nav-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.3px;
  flex-shrink: 0;
}
.nav-logo span { color: var(--gold); }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  list-style: none;
}

.nav-menu > li { position: relative; }

.nav-menu > li > a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0.5rem 0.85rem;
  color: rgba(255,255,255,0.78);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 400;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.nav-menu > li > a:hover, .nav-menu > li > a.active {
  color: var(--white);
  background: rgba(255,255,255,0.07);
}

.nav-menu > li > a .chevron {
  width: 12px; height: 12px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  transition: transform var(--transition);
}

.nav-menu > li:hover > a .chevron { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: var(--navy-2);
  border: 1px solid rgba(201,145,58,0.2);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 0.5rem;
  z-index: 200;
  animation: dropIn 0.2s ease;
}

@keyframes dropIn {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

.nav-menu > li:hover .dropdown { display: block; }

.dropdown a {
  display: block;
  padding: 0.6rem 0.9rem;
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  font-size: 0.87rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.dropdown a:hover { background: rgba(201,145,58,0.12); color: var(--gold-lt); }

.nav-actions { display: flex; align-items: center; gap: 0.8rem; }

.nav-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.6);
  font-size: 0.82rem;
  text-decoration: none;
}
.nav-phone:hover { color: var(--gold-lt); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
#mobile-nav {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0; bottom: 0;
  background: var(--navy);
  z-index: 999;
  overflow-y: auto;
  padding: 1.5rem 5%;
  flex-direction: column;
  gap: 0.3rem;
}
#mobile-nav.open { display: flex; }

#mobile-nav a {
  display: block;
  padding: 0.9rem 1rem;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color var(--transition);
}
#mobile-nav a:hover { color: var(--gold-lt); }
#mobile-nav .mob-cta { margin-top: 1.5rem; }

/* ── FOOTER ── */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.55);
  padding: 5rem 5% 2.5rem;
  border-top: 1px solid rgba(201,145,58,0.2);
}

.footer-top {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto 3rem;
}

.footer-brand .nav-logo { margin-bottom: 1rem; display: block; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; max-width: 300px; }

.footer-contact-row {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 1.5rem;
}
.footer-contact-row a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color var(--transition);
}
.footer-contact-row a:hover { color: var(--gold-lt); }
.footer-contact-row svg { width: 14px; height: 14px; flex-shrink: 0; }

.footer-col h4 {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  letter-spacing: 0.3px;
}
.footer-col a {
  display: block;
  color: rgba(255,255,255,0.48);
  text-decoration: none;
  font-size: 0.85rem;
  margin-bottom: 0.65rem;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--gold-lt); }

.footer-badges {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.badge-pill {
  background: rgba(201,145,58,0.12);
  border: 1px solid rgba(201,145,58,0.3);
  color: var(--gold-lt);
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 500;
}

.footer-disclaimer {
  max-width: 1200px;
  margin: 0 auto 2rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 1.2rem 1.5rem;
  font-size: 0.77rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.3);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
}

.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { color: rgba(255,255,255,0.4); text-decoration: none; transition: color var(--transition); }
.footer-bottom-links a:hover { color: var(--gold-lt); }

/* ── FLOATING CTA ── */
#float-cta {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 900;
  background: var(--gold);
  color: var(--navy);
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  box-shadow: 0 4px 24px rgba(201,145,58,0.45);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: transform var(--transition), box-shadow var(--transition), opacity var(--transition);
}
#float-cta:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(201,145,58,0.55); }
#float-cta.hidden { opacity: 0; pointer-events: none; }

.pulse-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  animation: blink 2s infinite;
}
@keyframes blink {
  0%,100% { opacity:1; transform: scale(1); }
  50% { opacity:0.4; transform: scale(1.3); }
}

/* ── CARDS ── */
.card {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.card-navy {
  background: var(--navy-2);
  border: 1px solid rgba(201,145,58,0.18);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: border-color var(--transition), background var(--transition);
}
.card-navy:hover {
  border-color: rgba(201,145,58,0.45);
  background: rgba(201,145,58,0.05);
}

/* ── ICON BOX ── */
.icon-box {
  width: 52px; height: 52px;
  background: var(--gold-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 1.2rem;
}
.icon-box svg { width: 22px; height: 22px; stroke: var(--gold); fill: none; stroke-width: 2; }

.icon-box-dark {
  width: 52px; height: 52px;
  background: rgba(201,145,58,0.12);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 1.2rem;
}
.icon-box-dark svg { width: 22px; height: 22px; stroke: var(--gold-lt); fill: none; stroke-width: 2; }

/* ── HERO VARIANTS ── */
.page-hero {
  background: var(--navy);
  padding: 140px 5% 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 80% 50%, rgba(201,145,58,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero-content { max-width: 700px; position: relative; z-index: 2; }
.page-hero h1 { color: var(--white); font-size: clamp(2.2rem, 5vw, 3.8rem); margin-bottom: 1.2rem; }
.page-hero p { color: rgba(255,255,255,0.65); font-size: 1.1rem; font-weight: 300; line-height: 1.75; margin-bottom: 2rem; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 1.5rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}
.breadcrumb a { color: var(--gold); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold-lt); }
.breadcrumb span { color: rgba(255,255,255,0.3); }

/* ── STATS STRIP ── */
.stats-strip {
  background: var(--gold);
  padding: 1.6rem 5%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3rem;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--navy);
  display: block;
  line-height: 1;
}
.stat-lbl {
  font-size: 0.75rem;
  color: rgba(7,17,31,0.65);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-weight: 500;
  margin-top: 4px;
  display: block;
}

/* ── TESTIMONIAL ── */
.testimonial {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; margin-bottom: 1rem; }
.testimonial-text { font-size: 0.95rem; font-style: italic; line-height: 1.7; color: var(--text-body); margin-bottom: 1.4rem; }
.author { display: flex; align-items: center; gap: 0.8rem; }
.avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--navy);
  color: var(--gold-lt);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.83rem; flex-shrink: 0;
}
.author-name { font-weight: 600; font-size: 0.9rem; color: var(--text-dark); }
.author-loc { font-size: 0.78rem; color: var(--gray-500); }

/* ── FORM ── */
.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-label {
  font-size: 0.83rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.2px;
}
.form-label-dark { color: var(--gray-700); }

.form-input {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-size: 0.93rem;
  outline: none;
  transition: border-color var(--transition), background var(--transition);
  width: 100%;
}
.form-input::placeholder { color: rgba(255,255,255,0.28); }
.form-input:focus { border-color: var(--gold); background: rgba(201,145,58,0.07); }
.form-input option { background: var(--navy-2); }

.form-input-light {
  background: var(--white);
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  color: var(--text-dark);
  font-family: 'Outfit', sans-serif;
  font-size: 0.93rem;
  outline: none;
  transition: border-color var(--transition);
  width: 100%;
}
.form-input-light:focus { border-color: var(--gold); }

/* ── FAQ ── */
.faq-item {
  border-bottom: 1px solid var(--gray-300);
  cursor: pointer;
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.3rem 0;
  font-weight: 500;
  font-size: 0.97rem;
  color: var(--text-dark);
  user-select: none;
}
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--gold-pale);
  border: 1px solid rgba(201,145,58,0.3);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 1.3rem;
  line-height: 1;
  transition: transform var(--transition), background var(--transition);
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--gold); color: var(--white); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding-bottom 0.2s;
  font-size: 0.91rem;
  color: var(--gray-500);
  line-height: 1.75;
}
.faq-item.open .faq-a { max-height: 400px; padding-bottom: 1.2rem; }

/* ── PROCESS TIMELINE ── */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 720px;
  margin: 0 auto;
}
.tl-item {
  display: flex;
  gap: 1.5rem;
  position: relative;
}
.tl-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 19px;
  top: 48px;
  bottom: -20px;
  width: 2px;
  background: rgba(201,145,58,0.25);
}
.tl-dot {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--gold-lt);
  margin-top: 2px;
}
.tl-content { padding-bottom: 2.5rem; }
.tl-content h3 { font-size: 1.1rem; font-weight: 600; color: var(--white); margin-bottom: 0.4rem; }
.tl-content p { font-size: 0.9rem; color: rgba(255,255,255,0.5); line-height: 1.65; }

/* ── TABLES ── */
table { width: 100%; border-collapse: collapse; }
th {
  background: var(--navy-2);
  color: var(--gold-lt);
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 1rem 1.2rem;
  text-align: left;
  font-weight: 600;
}
td {
  padding: 0.95rem 1.2rem;
  border-bottom: 1px solid var(--gray-100);
  font-size: 0.9rem;
  color: var(--text-body);
  vertical-align: top;
}
tr:last-child td { border-bottom: none; }
tr:hover td { background: var(--offwhite); }

/* ── ACCORDION ── */
.accordion-wrap { border: 1px solid var(--gray-300); border-radius: var(--radius-lg); overflow: hidden; }

/* ── GRID HELPERS ── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.grid-auto-sm { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }

/* ── ALERT / NOTICE ── */
.notice {
  background: rgba(201,145,58,0.08);
  border: 1px solid rgba(201,145,58,0.25);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 1rem 1.3rem;
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.6;
}

.notice-danger {
  background: rgba(194,59,46,0.06);
  border: 1px solid rgba(194,59,46,0.2);
  border-left: 4px solid var(--red);
}

/* ── PAGE TRANSITIONS ── */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-menu, .nav-phone { display: none; }
  .hamburger { display: flex; }
  .section { padding: 64px 5%; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .stats-strip { gap: 1.5rem; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .section { padding: 48px 4%; }
  .page-hero { padding: 120px 4% 60px; }
}
