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

/* Focus styles for accessibility */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* Skip navigation for screen readers */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: var(--red);
  color: var(--white);
  padding: 8px;
  text-decoration: none;
  border-radius: 4px;
  z-index: 1000;
  font-weight: 600;
  font-size: 0.9rem;
}

.skip-link:focus {
  top: 6px;
  background: var(--brown-deep);
  outline: 2px solid var(--gold);
}

:root {
  --brown-deep:  #3D2B1F;
  --brown-mid:   #6B4C38;
  --brown-light: #8B6F5C;
  --cream:       #F5EFE2;
  --cream-dark:  #EDE4D0;
  --cream-white: #FBF7F0;
  --tan:         #D4C4A8;
  --gold:        #C8A96E;
  --gold-light:  #FFF8EC;
  --red:         #C8102E;
  --red-dark:    #a50d25;
  --green:       #15803d;
  --green-light: #dcfce7;
  --white:       #FFFFFF;
  --border:      #D4C4A8;
}

html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--cream); color: var(--brown-deep); overflow-x: hidden; }

body::before {
  content: '';
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.4;
}
* { position: relative; z-index: 1; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(245,239,226,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 2px solid var(--tan);
  padding: 0 2.5rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.nav-logo {
  font-family: 'Libre Baskerville', serif;
  font-weight: 700; font-size: 1.3rem; color: var(--brown-deep);
  text-decoration: none; display: flex; align-items: center; gap: 0.5rem;
}
.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a { font-size: 0.88rem; font-weight: 500; color: var(--brown-light); text-decoration: none; transition: color 0.2s; }
.nav-links a:hover { color: var(--brown-deep); }
.nav-cta {
  background: var(--red) !important; color: var(--white) !important;
  padding: 0.55rem 1.25rem; border-radius: 100px;
  font-weight: 700 !important; font-size: 0.85rem !important;
  transition: background 0.2s, transform 0.1s !important;
}
.nav-cta:hover { background: var(--red-dark) !important; transform: translateY(-1px); }

/* ── HERO ── */
.hero {
  padding-top: 6rem;
  min-height: 100vh;
  display: flex; align-items: center;
  max-width: 800px; margin: 0 auto;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  position: relative;
  z-index: 1;
}
.hero-left { padding: 2rem 0; animation: fadeUp 0.7s ease both; width: 100%; }
.hero-stamp {
  display: inline-flex; align-items: center; gap: 0.5rem;
  border: 2px solid var(--gold);
  background: var(--gold-light); color: var(--brown-mid);
  font-size: 0.8rem; font-weight: 700;
  padding: 0.4rem 1rem; border-radius: 100px;
  margin-bottom: 1.75rem; letter-spacing: 0.03em;
}
.hero h1 {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(2.8rem, 4.5vw, 4rem);
  font-weight: 700; line-height: 1.15; color: var(--brown-deep);
  margin-bottom: 1.25rem;
}
.hero h1 em { font-style: italic; color: var(--red); }
.hero-sub {
  font-size: 1.08rem; color: var(--brown-light);
  line-height: 1.7; margin-bottom: 2.5rem; max-width: 620px;
}
.btn-primary {
  display: inline-block;
  background: var(--brown-deep); color: var(--white);
  padding: 0.95rem 2.2rem; border-radius: 100px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700; font-size: 1rem; text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 6px 24px rgba(61,43,31,0.2);
}
.btn-primary:hover { background: var(--red); transform: translateY(-2px); }
.hero-trust {
  margin-top: 2rem; display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
  padding-top: 2rem; border-top: 1px solid var(--tan);
}
.trust-item { display: flex; align-items: center; gap: 0.4rem; font-size: 0.82rem; color: var(--brown-light); font-weight: 500; }

/* Postcard */
.hero-right { padding: 5rem 0; animation: fadeUp 0.7s ease 0.15s both; }
.postcard {
  background: var(--white);
  border-radius: 4px; padding: 2.25rem;
  box-shadow: 8px 8px 0 var(--tan), 16px 16px 0 var(--gold);
  transform: rotate(-1.5deg);
  max-width: 400px;
}
.postcard-header {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 1.25rem; padding-bottom: 1.25rem;
  border-bottom: 2px dashed var(--cream-dark);
}
.postcard-title { font-family: 'Libre Baskerville', serif; font-size: 1.1rem; color: var(--brown-deep); font-weight: 700; }
.postcard-subtitle { font-size: 0.75rem; color: var(--brown-light); margin-top: 0.2rem; }
.postcard-stamp {
  background: var(--red); color: var(--white);
  width: 54px; height: 64px; display: flex; align-items: center;
  justify-content: center; flex-direction: column; gap: 0.1rem;
  border: 2px solid var(--brown-deep); font-size: 1.5rem;
}
.postcard-stamp small { font-size: 0.5rem; letter-spacing: 0.06em; font-family: 'DM Sans', sans-serif; }
.postcard-addr {
  font-family: 'Libre Baskerville', serif;
  font-size: 0.88rem; color: var(--brown-light); line-height: 2;
  margin-bottom: 1.5rem;
}
.postcard-addr strong { color: var(--brown-deep); }
.postcard-pkgs { display: flex; flex-direction: column; gap: 0.6rem; }
.pkg-row {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.65rem 0.85rem;
  background: var(--gold-light); border-radius: 6px;
  border-left: 3px solid var(--gold);
}
.pkg-row .icon { font-size: 1.15rem; }
.pkg-row .name { font-size: 0.83rem; color: var(--brown-deep); font-weight: 600; flex: 1; }
.pkg-row .save { font-size: 0.75rem; font-weight: 700; color: var(--green); background: var(--green-light); padding: 0.15rem 0.5rem; border-radius: 100px; }
.postcard-footer { margin-top: 1.25rem; font-family: 'Libre Baskerville', serif; font-style: italic; font-size: 0.78rem; color: var(--gold); text-align: right; }

/* ── STRIP ── */
.strip { background: var(--brown-deep); padding: 2.75rem 2.5rem; }
.strip-inner {
  max-width: 1000px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2rem; text-align: center; position: relative;
}
.strip-inner::before, .strip-inner::after {
  content: ''; position: absolute; top: 10%; bottom: 10%;
  width: 1px; background: rgba(255,255,255,0.1);
}
.strip-inner::before { left: 33.33%; }
.strip-inner::after { left: 66.66%; }
.strip-num { font-family: 'Libre Baskerville', serif; font-size: 2.8rem; font-weight: 700; color: var(--white); line-height: 1; }
.strip-num span { color: var(--gold); }
.strip-label { font-size: 0.88rem; color: rgba(255,255,255,0.55); margin-top: 0.5rem; line-height: 1.5; }

/* ── MAIN CONTENT ── */
main {
  margin-top: 80px;
}

/* ── SHARED SECTION ── */
section { padding: 6rem 2.5rem; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-tag { display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--red); margin-bottom: 0.75rem; }
.section-title { font-family: 'Libre Baskerville', serif; font-size: clamp(1.9rem, 3.5vw, 2.7rem); font-weight: 700; color: var(--brown-deep); line-height: 1.25; margin-bottom: 1rem; }
.section-title em { font-style: italic; color: var(--red); }
.section-sub { font-size: 1rem; color: var(--brown-light); line-height: 1.7; max-width: 540px; }

/* ── ADDRESS BOX ── */
.address-box { margin-top: 1rem; background: var(--gold-light); border: 2px dashed var(--gold); border-radius: 8px; padding: 1rem 1.25rem; text-align: left; font-family: monospace; font-size: 0.82rem; line-height: 1.9; color: var(--brown-deep); }
.addr-line { color: var(--brown-deep); }
.addr-line span { color: var(--brown-light); font-weight: 600; }

/* ── SEND A PACKAGE ── */
.send-single { display: flex; justify-content: center; margin-top: 3.5rem; }
.send-address-card { background: var(--white); border: 2px solid var(--tan); border-radius: 8px; padding: 2.5rem; max-width: 480px; width: 100%; text-align: center; }
.send-address-card .send-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.send-address-card h3 { font-family: "Libre Baskerville", serif; font-size: 1.2rem; font-weight: 700; color: var(--brown-deep); margin-bottom: 0.5rem; }
.send-address-card p { font-size: 0.9rem; color: var(--brown-light); line-height: 1.65; margin-bottom: 1.25rem; }
.pro-tip-callout { margin-top: 2.5rem; background: var(--brown-deep); border-radius: 12px; padding: 1.5rem 2.5rem; display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; position: relative; overflow: hidden; }
.pro-tip-callout::before { content: "🍁"; position: absolute; right: -30px; top: -30px; font-size: 10rem; opacity: 0.05; pointer-events: none; }
.pro-tip-callout::after { content: "🍁"; position: absolute; left: -40px; bottom: -40px; font-size: 12rem; opacity: 0.05; pointer-events: none; }
.pro-tip-eyebrow { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.3rem; }
.pro-tip-heading { font-family: "Libre Baskerville", serif; font-size: 1.05rem; font-weight: 700; color: var(--white); line-height: 1.3; margin-bottom: 0; }
.pro-tip-body { font-size: 0.88rem; color: rgba(255,255,255,0.6); line-height: 1.6; margin-top: 0.3rem; }
.pro-tip-btn { display: inline-block; white-space: nowrap; padding: 0.6rem 1.5rem; background: transparent; border: 2px solid var(--gold); color: var(--gold); border-radius: 100px; font-size: 0.82rem; font-weight: 700; text-decoration: none; transition: background 0.2s, color 0.2s; flex-shrink: 0; }
.pro-tip-btn:hover { background: var(--gold); color: var(--brown-deep); }
.send-section { background: var(--cream-white); border-top: 2px solid var(--tan); border-bottom: 2px solid var(--tan); }
.send-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3.5rem; }
.send-card { background: var(--white); border: 2px solid var(--tan); border-radius: 8px; padding: 1.75rem; position: relative; transition: transform 0.2s, box-shadow 0.2s; }
.send-card:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(61,43,31,0.08); }
.send-num { position: absolute; top: -14px; left: 1.5rem; width: 28px; height: 28px; background: var(--brown-deep); color: var(--white); border-radius: 50%; font-family: "Libre Baskerville", serif; font-size: 0.85rem; font-weight: 700; display: flex; align-items: center; justify-content: center; box-shadow: 0 2px 8px rgba(61,43,31,0.25); }
.send-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.send-card h3 { font-family: "Libre Baskerville", serif; font-size: 1rem; font-weight: 700; color: var(--brown-deep); margin-bottom: 0.5rem; }
.send-card p { font-size: 0.88rem; color: var(--brown-light); line-height: 1.65; }
.send-address { margin-top: 0.85rem; background: var(--gold-light); border: 2px dashed var(--gold); border-radius: 8px; padding: 0.85rem 1rem; font-family: monospace; font-size: 0.82rem; line-height: 1.9; color: var(--brown-deep); }
.send-card-tip { background: var(--brown-deep); border-color: var(--brown-deep); }
.send-card-tip p { color: rgba(255,255,255,0.7); }
.send-tip-label { font-size: 0.85rem; font-weight: 700; color: var(--gold); margin-bottom: 0.75rem; }
.send-tip-link { display: inline-block; margin-top: 1rem; font-size: 0.82rem; font-weight: 600; color: var(--gold); text-decoration: none; border-bottom: 1px solid rgba(200,169,110,0.4); padding-bottom: 0.1rem; transition: border-color 0.2s; }
.send-tip-link:hover { border-color: var(--gold); }
@media (max-width: 960px) { .send-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .send-grid { grid-template-columns: 1fr; } }

/* ── HOW IT WORKS ── */
.how-section { background: var(--cream-white); border-top: 2px solid var(--tan); border-bottom: 2px solid var(--tan); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin-top: 3.5rem; position: relative; }
.steps::before { content: ''; position: absolute; top: 28px; left: 10%; right: 10%; height: 2px; background: repeating-linear-gradient(90deg, var(--tan) 0, var(--tan) 8px, transparent 8px, transparent 18px); }
.step { text-align: center; padding: 0 0.5rem; animation: fadeUp 0.5s ease both; }
.step:nth-child(1){animation-delay:0.05s} .step:nth-child(2){animation-delay:0.15s}
.step:nth-child(3){animation-delay:0.25s} .step:nth-child(4){animation-delay:0.35s}
.step-num { width: 56px; height: 56px; border-radius: 50%; background: var(--brown-deep); color: var(--white); font-family: 'Libre Baskerville', serif; font-size: 1.3rem; font-weight: 700; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem; position: relative; z-index: 1; box-shadow: 0 4px 16px rgba(61,43,31,0.25); }
.step-emoji { font-size: 2rem; margin-bottom: 0.75rem; }
.step h3 { font-family: 'Libre Baskerville', serif; font-size: 1rem; font-weight: 700; color: var(--brown-deep); margin-bottom: 0.5rem; }
.step p { font-size: 0.88rem; color: var(--brown-light); line-height: 1.65; }

/* ── WHY CANADA ── */
.why-section { background: var(--cream); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; margin-top: 3rem; }
.rate-card { background: var(--brown-deep); border-radius: 8px; padding: 2.5rem; color: var(--white); position: relative; overflow: hidden; }
.rate-card::after { content: '🍁'; position: absolute; right: -16px; bottom: -28px; font-size: 9rem; opacity: 0.06; pointer-events: none; }
.rate-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 1.25rem; }
.rate-big { font-family: 'Libre Baskerville', serif; font-size: 3.5rem; font-weight: 700; line-height: 1; margin-bottom: 0.5rem; }
.rate-big span { color: var(--gold); }
.rate-sub { font-size: 0.95rem; color: rgba(255,255,255,0.6); margin-bottom: 2rem; }
.rate-table { background: rgba(255,255,255,0.08); border-radius: 8px; padding: 1.25rem; }
.rate-row { display: flex; justify-content: space-between; align-items: center; font-size: 0.88rem; padding: 0.45rem 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.rate-row:last-child { border-bottom: none; font-weight: 700; }
.rate-row span:first-child { color: rgba(255,255,255,0.6); }
.rate-row span:last-child { color: var(--gold); }
.reasons { display: flex; flex-direction: column; gap: 1.5rem; }
.reason { display: flex; gap: 1rem; }
.reason-icon { width: 48px; height: 48px; min-width: 48px; background: var(--gold-light); border: 2px solid var(--gold); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; }
.reason h4 { font-family: 'Libre Baskerville', serif; font-size: 1rem; font-weight: 700; color: var(--brown-deep); margin-bottom: 0.25rem; }
.reason p { font-size: 0.88rem; color: var(--brown-light); line-height: 1.6; }

/* ── PRICING SIMPLE ── */
.pricing-simple { display: flex; justify-content: center; margin-top: 3.5rem; }
.price-card { background: var(--white); border: 2px solid var(--brown-deep); border-radius: 8px; padding: 3rem; box-shadow: 8px 8px 0 var(--gold); max-width: 620px; width: 100%; text-align: center; }
.price-row { display: flex; align-items: center; justify-content: center; gap: 3rem; margin-bottom: 2rem; }
.price-tier-label { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--brown-light); margin-bottom: 0.5rem; }
.price-tier-amount { font-family: 'Libre Baskerville', serif; font-size: 4rem; font-weight: 700; color: var(--brown-deep); line-height: 1; }
.price-tier-amount span { font-size: 2rem; vertical-align: super; }
.price-tier-sub { font-size: 0.82rem; color: var(--brown-light); margin-top: 0.25rem; }
.price-divider { font-family: 'Libre Baskerville', serif; font-size: 2rem; color: var(--tan); font-weight: 700; }
.price-hr { border: none; border-top: 1px solid var(--tan); margin-bottom: 1.75rem; }
.price-features { text-align: left; max-width: 360px; margin: 0 auto 2rem; }

/* ── PRICING ── */
.pricing-section { background: var(--cream-white); border-top: 2px solid var(--tan); border-bottom: 2px solid var(--tan); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3.5rem; }
.plan { border: 2px solid var(--tan); border-radius: 8px; padding: 2rem; background: var(--white); transition: transform 0.2s, box-shadow 0.2s; position: relative; }
.plan:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(61,43,31,0.1); }
.plan.featured { border-color: var(--brown-deep); background: var(--brown-deep); color: var(--white); box-shadow: 8px 8px 0 var(--gold); }
.plan-popular { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--gold); color: var(--brown-deep); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 0.25rem 0.9rem; border-radius: 100px; white-space: nowrap; border: 2px solid var(--brown-deep); }
.plan-name { font-family: 'Libre Baskerville', serif; font-size: 1.15rem; font-weight: 700; margin-bottom: 0.2rem; color: var(--brown-deep); }
.plan.featured .plan-name { color: var(--white); }
.plan-tagline { font-size: 0.8rem; color: var(--brown-light); margin-bottom: 1.25rem; }
.plan.featured .plan-tagline { color: rgba(255,255,255,0.55); }
.plan-price { font-family: 'Libre Baskerville', serif; font-size: 3rem; font-weight: 700; color: var(--brown-deep); line-height: 1; }
.plan.featured .plan-price { color: var(--gold); }
.plan-period { font-size: 0.82rem; color: var(--brown-light); margin-bottom: 1.5rem; margin-top: 0.2rem; }
.plan.featured .plan-period { color: rgba(255,255,255,0.5); }
.plan hr { border: none; border-top: 1px solid var(--tan); margin-bottom: 1.5rem; }
.plan.featured hr { border-color: rgba(255,255,255,0.15); }
.plan-features { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; margin-bottom: 2rem; }
.plan-features li { display: flex; gap: 0.6rem; font-size: 0.88rem; color: var(--brown-light); align-items: flex-start; }
.plan.featured .plan-features li { color: rgba(255,255,255,0.75); }
.plan-features li::before { content: '✓'; color: var(--green); font-weight: 700; min-width: 16px; margin-top: 1px; }
.plan.featured .plan-features li::before { color: var(--gold); }
.plan-btn { display: block; text-align: center; text-decoration: none; padding: 0.9rem; border-radius: 100px; font-weight: 700; font-size: 0.92rem; border: 2px solid var(--brown-deep); color: var(--brown-deep); background: transparent; transition: all 0.2s; cursor: pointer; font-family: 'DM Sans', sans-serif; }
.plan-btn:hover { background: var(--brown-deep); color: var(--white); }
.plan.featured .plan-btn { background: var(--white); border-color: var(--white); color: var(--brown-deep); }
.plan.featured .plan-btn:hover { background: var(--gold); border-color: var(--gold); }

/* ── FAQ ── */
.faq-section { background: var(--cream); }
.faq-list { display: flex; flex-direction: column; gap: 1rem; margin-top: 3rem; max-width: 780px; }
.faq-item { background: var(--white); border: 2px solid var(--tan); border-radius: 8px; overflow: hidden; cursor: pointer; transition: border-color 0.2s; }
.faq-item:hover { border-color: var(--gold); }
.faq-item.open { border-color: var(--brown-deep); }
.faq-q { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1.25rem 1.5rem; font-family: 'Libre Baskerville', serif; font-weight: 700; font-size: 0.98rem; color: var(--brown-deep); }
.faq-toggle { width: 28px; height: 28px; min-width: 28px; border-radius: 50%; background: var(--cream-dark); color: var(--brown-deep); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; font-weight: 400; transition: transform 0.25s, background 0.2s; }
.faq-item.open .faq-toggle { transform: rotate(45deg); background: var(--brown-deep); color: var(--white); }
.faq-a { display: none; padding: 1rem 1.5rem 1.25rem; font-size: 0.9rem; color: var(--brown-light); line-height: 1.7; border-top: 1px solid var(--cream-dark); }
.faq-item.open .faq-a { display: block; }

/* ── CONTACT ── */
.contact-section { background: var(--cream-white); border-top: 2px solid var(--tan); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; margin-top: 3rem; align-items: start; }
.contact-items { display: flex; flex-direction: column; gap: 1.75rem; }
.contact-item { display: flex; gap: 1rem; }
.contact-icon { width: 46px; height: 46px; min-width: 46px; background: var(--gold-light); border: 2px solid var(--gold); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.contact-item h4 { font-family: 'Libre Baskerville', serif; font-weight: 700; color: var(--brown-deep); margin-bottom: 0.25rem; font-size: 0.95rem; }
.contact-item p { font-size: 0.88rem; color: var(--brown-light); line-height: 1.6; }
.contact-item a { color: var(--red); text-decoration: none; }
.contact-item a:hover { text-decoration: underline; }

/* ── FOOTER ── */
footer { background: #1e140d; padding: 3.5rem 2.5rem 2.5rem; }
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 3rem; padding-bottom: 2rem; margin-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,0.08); flex-wrap: wrap; }
.footer-logo { font-family: 'Libre Baskerville', serif; font-weight: 700; font-size: 1.4rem; color: var(--white); margin-bottom: 0.5rem; }
.footer-logo span { color: var(--gold); }
.footer-tagline { font-size: 0.85rem; color: rgba(255,255,255,0.35); font-style: italic; }
.footer-links { display: flex; gap: 3rem; flex-wrap: wrap; }
.footer-col h5 { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 0.9rem; }
.footer-col a { display: block; font-size: 0.85rem; color: rgba(255,255,255,0.5); text-decoration: none; margin-bottom: 0.5rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.2); }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse {
  0% { opacity: 0.5; transform: scale(0.95); }
  50% { opacity: 1; transform: scale(1.05); }
  100% { opacity: 1; transform: scale(1); }
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
}

.modal-content {
  background-color: var(--cream-white);
  border-radius: 12px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  position: relative;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 24px 16px;
  border-bottom: 1px solid var(--tan);
}

.modal-header h3 {
  margin: 0;
  color: var(--brown-deep);
  font-size: 1.5rem;
  font-weight: 600;
}

.modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--brown-light);
  padding: 4px;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.modal-close:hover {
  background-color: var(--cream-dark);
  color: var(--brown-deep);
}

.modal-body {
  padding: 20px 24px 24px;
}

.modal-body h4 {
  color: var(--brown-deep);
  font-size: 1.1rem;
  font-weight: 600;
  margin: 20px 0 12px 0;
}

.modal-body h4:first-child {
  margin-top: 0;
}

.modal-body p {
  color: var(--brown-mid);
  line-height: 1.6;
  margin-bottom: 16px;
}

.modal-body ul {
  margin: 12px 0;
  padding-left: 20px;
}

.modal-body li {
  color: var(--brown-mid);
  margin-bottom: 8px;
  line-height: 1.5;
}

.modal-body em {
  color: var(--brown-light);
  font-size: 0.9rem;
}

/* Mobile Responsive Modal */
@media (max-width: 768px) {
  .modal {
    padding: 10px;
  }
  
  .modal-content {
    max-height: 90vh;
    border-radius: 8px;
  }
  
  .modal-header {
    padding: 20px 20px 12px;
  }
  
  .modal-header h3 {
    font-size: 1.3rem;
  }
  
  .modal-body {
    padding: 16px 20px 20px;
  }
  
  .modal-body h4 {
    font-size: 1rem;
  }
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .hero { padding-top: 6rem; }
  .strip-inner { grid-template-columns: 1fr; }
  .strip-inner::before, .strip-inner::after { display: none; }
  .steps { grid-template-columns: 1fr 1fr; }
  .steps::before { display: none; }
  .why-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .nav-links { display: none; }
  .footer-top { flex-direction: column; }
}
@media (max-width: 600px) {
  .hero { padding-top: 180px; }
  section { padding: 4rem 1.5rem; }
  nav { padding: 0 1.5rem; }
}
