/* ═══════════════════════════════════════════
   Easy Day Moving — Final Launch Edition
   ═══════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Plus+Jakarta+Sans:wght@500;600;700;800&display=swap');

:root {
  --white: #ffffff;
  --snow: #fafbfc;
  --pearl: #f4f5f7;
  --sand: #f7f5f2;
  --text: #1d1d1f;
  --text-2: #48484a;
  --text-3: #6e6e73;
  --text-4: #aeaeb2;
  --coastal: #3d8fa6;
  --coastal-dark: #2e7a8f;
  --coastal-light: #d8eef4;
  --coastal-pale: #eef7fa;
  --sage: #5a7d6a;
  --sage-pale: #f0f6f2;
  --line: #d1d1d6;
  --line-light: #e5e5ea;
  --line-faint: #f2f2f7;
  --error: #ff3b30;
  --shadow-xs: 0 1px 2px rgba(0,0,0,0.03);
  --shadow-sm: 0 2px 6px rgba(0,0,0,0.04);
  --shadow: 0 4px 14px rgba(0,0,0,0.05);
  --shadow-md: 0 8px 28px rgba(0,0,0,0.06);
  --shadow-lg: 0 20px 50px rgba(0,0,0,0.07);
  --shadow-focus: 0 0 0 4px rgba(61,143,166,0.1);
  --r: 14px;
  --r-sm: 10px;
  --r-xs: 8px;
  --t: 0.2s ease;
  --t-slow: 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.52;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: 'Plus Jakarta Sans', -apple-system, sans-serif; font-weight: 700; line-height: 1.1; letter-spacing: -0.025em; }
.container { width: min(1080px, calc(100% - 48px)); margin: 0 auto; }

/* ═══ SCROLL ANIMATIONS ═══ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

/* ═══ NAV ═══ */
.nav-bar {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,0.8);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 52px; }

.logo {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800; font-size: 0.98rem; color: var(--text);
  letter-spacing: -0.02em;
}

.nav-links { display: flex; gap: 28px; font-size: 0.8rem; font-weight: 500; color: var(--text-3); }
.nav-links a { transition: color var(--t); position: relative; }
.nav-links a:hover { color: var(--text); }
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 1.5px; background: var(--coastal);
  transition: width var(--t-slow);
}
.nav-links a:hover::after { width: 100%; }

.nav-end { display: flex; align-items: center; gap: 14px; }
.nav-phone { font-size: 0.8rem; font-weight: 500; color: var(--text-3); transition: color var(--t); }
.nav-phone:hover { color: var(--text); }

/* ═══ BTNS ═══ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 6px; border: 0; border-radius: 980px; padding: 11px 20px;
  font-family: inherit; font-weight: 600; font-size: 0.84rem;
  cursor: pointer; transition: all var(--t-slow); white-space: nowrap; line-height: 1;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-coastal { background: var(--coastal); color: #fff; box-shadow: 0 2px 8px rgba(61,143,166,0.2); }
.btn-coastal:hover { background: var(--coastal-dark); box-shadow: 0 4px 14px rgba(61,143,166,0.28); }
.btn-dark { background: var(--text); color: #fff; box-shadow: 0 2px 8px rgba(0,0,0,0.1); }
.btn-dark:hover { background: #2c2c2e; box-shadow: 0 4px 14px rgba(0,0,0,0.15); }
.btn-soft { background: var(--pearl); color: var(--text-2); }
.btn-soft:hover { background: var(--line-light); }
.btn-outline { background: transparent; color: var(--coastal); border: 1px solid var(--line); }
.btn-outline:hover { border-color: var(--coastal); background: var(--coastal-pale); }
.btn-ghost { background: transparent; color: var(--text-4); border: 1px solid var(--line-faint); }
.btn-ghost:hover { color: var(--text-3); border-color: var(--line-light); }
.btn-lg { padding: 14px 28px; font-size: 0.88rem; }
.btn-sm { padding: 9px 16px; font-size: 0.8rem; }

/* ═══ HERO ═══ */
.hero {
  padding: 68px 0 80px;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  top: -60px; right: -80px;
  width: 440px; height: 540px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 480' fill='none'%3E%3Cpath d='M150 480V180' stroke='%233d8fa6' stroke-width='9' stroke-opacity='0.03'/%3E%3Cpath d='M150 180c-45-30-100-22-130-8 35-28 75-35 130-20z' fill='%233d8fa6' fill-opacity='0.02'/%3E%3Cpath d='M150 180c45-30 100-22 130-8-35-28-75-35-130-20z' fill='%233d8fa6' fill-opacity='0.02'/%3E%3Cpath d='M150 168c-28-40-35-88-20-120 15 35 28 75 20 120z' fill='%233d8fa6' fill-opacity='0.018'/%3E%3Cpath d='M150 174c32-25 70-38 110-30-28 18-62 28-110 30z' fill='%233d8fa6' fill-opacity='0.015'/%3E%3Cpath d='M150 174c-32-25-70-38-110-30 28 18 62 28 110 30z' fill='%233d8fa6' fill-opacity='0.015'/%3E%3C/svg%3E") no-repeat center bottom;
  background-size: contain;
  pointer-events: none; z-index: 0;
}

.hero-grid {
  display: grid; grid-template-columns: 1fr 400px;
  gap: 56px; align-items: start;
  position: relative; z-index: 1;
}

.hero-left { padding-top: 16px; }

.hero-tag {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 0.74rem; font-weight: 600; color: var(--coastal);
  text-transform: uppercase; letter-spacing: 0.07em;
  margin-bottom: 20px;
}

.hero-tag-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--coastal); opacity: 0.4;
}

.hero h1 {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  letter-spacing: -0.04em; line-height: 1.04;
  margin-bottom: 24px;
}

.hero h1 .h1-accent { color: var(--coastal); }

.hero-sub {
  font-size: 0.98rem; line-height: 1.6;
  color: var(--text-3);
  max-width: 400px;
  margin-bottom: 32px;
}

.hero-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 40px; }

.hero-trust {
  display: flex; align-items: center; gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--line-faint);
}
.trust-item { font-size: 0.74rem; font-weight: 500; color: var(--text-4); }
.trust-sep { width: 3px; height: 3px; border-radius: 50%; background: var(--line-light); }

/* ═══ HERO CARD ═══ */
.hero-card {
  background: var(--white);
  border: 1px solid var(--line-light);
  border-radius: var(--r);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transition: box-shadow var(--t-slow);
}

.hero-card:hover { box-shadow: 0 24px 56px rgba(0,0,0,0.09); }

.card-head {
  padding: 18px 22px 14px;
  border-bottom: 1px solid var(--line-faint);
  background: var(--snow);
}
.card-head h3 { font-size: 0.88rem; font-weight: 700; margin-bottom: 1px; }
.card-head p { font-size: 0.74rem; color: var(--text-4); }

.card-body { padding: 20px 22px 22px; }

.progress-row { display: flex; justify-content: space-between; margin-bottom: 8px; }
.progress-label { font-size: 0.68rem; font-weight: 600; color: var(--text-4); text-transform: uppercase; letter-spacing: 0.05em; }

.progress-bar { height: 2px; border-radius: 999px; background: var(--line-faint); overflow: hidden; margin-bottom: 20px; }
.progress-bar span {
  display: block; height: 100%; width: 14.28%;
  background: var(--coastal); border-radius: 999px;
  transition: width 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* Form */
.fstep { display: none; }
.fstep.active { display: block; animation: stepReveal 0.3s cubic-bezier(0.22, 0.61, 0.36, 1); }
@keyframes stepReveal { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }

.fstep h3 { font-size: 0.9rem; font-weight: 700; margin-bottom: 3px; }
.fstep .hint { font-size: 0.72rem; color: var(--text-4); margin-bottom: 14px; }

form label { display: block; font-size: 0.74rem; font-weight: 600; color: var(--text-3); margin-bottom: 11px; }
form label .lbl { display: block; margin-bottom: 4px; }

form input, form select {
  width: 100%; border-radius: var(--r-xs); border: 1px solid var(--line-light);
  padding: 10px 12px; font-family: inherit; font-size: 0.84rem; color: var(--text);
  background: var(--white); outline: none;
  transition: border-color var(--t), box-shadow var(--t);
}
form input:focus, form select:focus { border-color: var(--coastal); box-shadow: var(--shadow-focus); }
form input::placeholder { color: #c7c7cc; }

.option-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 6px; }

.option-grid button {
  display: flex; align-items: center; gap: 6px;
  border: 1px solid var(--line-faint); background: var(--white);
  border-radius: var(--r-xs); padding: 10px 12px;
  font-family: inherit; font-size: 0.82rem; font-weight: 600;
  color: var(--text-2); cursor: pointer;
  transition: all var(--t-slow); text-align: left;
}
.option-grid button:hover { border-color: var(--coastal); background: var(--coastal-pale); transform: translateY(-1px); }
.option-grid button.selected { background: var(--coastal-light); border-color: var(--coastal); color: var(--coastal-dark); box-shadow: var(--shadow-focus); }

.funnel-nav { display: flex; justify-content: space-between; gap: 8px; margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--line-faint); }

.form-error { color: var(--error); font-size: 0.72rem; font-weight: 500; min-height: 14px; margin-top: 5px; }
.hidden { display: none !important; }

/* Result */
.result-card { animation: resultPop 0.4s cubic-bezier(0.22, 0.61, 0.36, 1); }
@keyframes resultPop { from { opacity: 0; transform: scale(0.97); } to { opacity: 1; transform: scale(1); } }

.result-check { width: 40px; height: 40px; border-radius: 50%; background: var(--coastal); display: flex; align-items: center; justify-content: center; margin: 0 auto 10px; }
.result-check svg { color: #fff; }
.result-header { text-align: center; margin-bottom: 14px; }
.result-title { font-size: 1rem; font-weight: 700; margin-bottom: 2px; }
.result-sub { font-size: 0.76rem; color: var(--text-4); }

.result-box { padding: 14px; background: var(--coastal-pale); border-radius: var(--r-sm); border: 1px solid var(--coastal-light); margin-bottom: 12px; text-align: center; }
.result-badge { display: inline-block; background: var(--coastal-light); color: var(--coastal-dark); font-weight: 700; font-size: 0.66rem; padding: 3px 8px; border-radius: 999px; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 4px; }
.result-range { font-size: 1.2rem; font-weight: 800; color: var(--text); letter-spacing: -0.02em; }

.result-next { padding: 12px; background: var(--sage-pale); border-radius: var(--r-sm); margin-bottom: 12px; font-size: 0.74rem; color: var(--sage); line-height: 1.5; }
.result-next strong { color: #4a6858; }

.result-btns { display: flex; flex-direction: column; gap: 6px; }
.result-btns .btn { width: 100%; }
.result-fine { margin-top: 8px; text-align: center; font-size: 0.66rem; color: var(--text-4); }

/* ═══ SECTIONS ═══ */
.section { padding: 80px 0; }
.section-alt { background: var(--snow); }
.section-warm { background: var(--sand); }

.s-label { font-size: 0.68rem; font-weight: 600; color: var(--coastal); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px; }
.s-head { max-width: 480px; margin-bottom: 40px; }
.s-head h2 { font-size: clamp(1.5rem, 2vw, 2rem); margin-bottom: 8px; }
.s-head p { color: var(--text-3); font-size: 0.9rem; line-height: 1.55; }

/* Services */
.svc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--line-faint); border-radius: var(--r); overflow: hidden; border: 1px solid var(--line-faint); }

.svc-card { background: var(--white); padding: 32px 26px; transition: background var(--t-slow); }
.svc-card:hover { background: var(--snow); }
.svc-icon { font-size: 1.4rem; margin-bottom: 14px; display: block; }
.svc-card h3 { font-size: 0.92rem; margin-bottom: 5px; }
.svc-card p { color: var(--text-3); font-size: 0.8rem; line-height: 1.5; }

/* Steps */
.steps-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 40px; }
.step-item { text-align: center; }
.step-num { display: inline-flex; width: 30px; height: 30px; border-radius: 50%; align-items: center; justify-content: center; background: var(--coastal-light); color: var(--coastal-dark); font-weight: 700; font-size: 0.76rem; margin-bottom: 12px; transition: transform var(--t-slow); }
.step-item:hover .step-num { transform: scale(1.08); }
.step-item h3 { font-size: 0.86rem; margin-bottom: 4px; }
.step-item p { color: var(--text-4); font-size: 0.76rem; line-height: 1.45; }

/* Included */
.inc-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--line-faint); border-radius: var(--r); overflow: hidden; border: 1px solid var(--line-faint); }
.inc-item { background: var(--white); padding: 22px 18px; transition: background var(--t-slow); }
.inc-item:hover { background: var(--snow); }
.inc-item h4 { font-size: 0.8rem; margin-bottom: 3px; font-weight: 700; }
.inc-item p { color: var(--text-4); font-size: 0.74rem; line-height: 1.4; }

/* Testimonials */
.test-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.test-card { padding: 24px; border: 1px solid var(--line-faint); border-radius: var(--r); transition: all var(--t-slow); }
.test-card:hover { border-color: var(--line-light); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.test-quote { font-size: 0.84rem; line-height: 1.55; color: var(--text-2); margin-bottom: 14px; font-style: italic; }
.test-author { font-size: 0.74rem; font-weight: 700; }
.test-meta { font-size: 0.68rem; color: var(--text-4); margin-top: 1px; }

/* Areas */
.area-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.area-tags span {
  padding: 7px 14px; border-radius: 980px; border: 1px solid var(--line-faint);
  font-size: 0.76rem; font-weight: 500; color: var(--text-3);
  transition: all var(--t-slow);
}
.area-tags span:hover { border-color: var(--coastal); color: var(--coastal); background: var(--coastal-pale); transform: translateY(-1px); }

/* FAQ */
.faq { max-width: 620px; }
.faq details { border-bottom: 1px solid var(--line-faint); }
.faq details:last-child { border-bottom: 0; }
.faq summary { cursor: pointer; font-weight: 600; font-size: 0.86rem; padding: 18px 0; list-style: none; display: flex; justify-content: space-between; gap: 12px; transition: color var(--t); }
.faq summary:hover { color: var(--coastal); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::marker { content: ''; }
.faq summary::after { content: '+'; font-size: 1rem; font-weight: 400; color: var(--text-4); flex-shrink: 0; transition: transform var(--t-slow); }
.faq details[open] summary::after { content: '−'; transform: rotate(180deg); }
.faq details p { padding: 0 0 18px; color: var(--text-3); line-height: 1.55; font-size: 0.84rem; }

/* CTA */
.cta-section { text-align: center; padding: 72px 0; background: var(--sand); position: relative; overflow: hidden; }
.cta-section::after {
  content: ''; position: absolute; bottom: 0; right: 10%;
  width: 160px; height: 200px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 200' fill='none'%3E%3Cpath d='M60 200V70' stroke='%233d8fa6' stroke-width='5' stroke-opacity='0.03'/%3E%3Cpath d='M60 70c-18-12-42-8-54-3 15-12 32-15 54-8z' fill='%233d8fa6' fill-opacity='0.02'/%3E%3Cpath d='M60 70c18-12 42-8 54-3-15-12-32-15-54-8z' fill='%233d8fa6' fill-opacity='0.02'/%3E%3Cpath d='M60 65c-12-18-14-38-8-52 6 15 12 32 8 52z' fill='%233d8fa6' fill-opacity='0.015'/%3E%3C/svg%3E") no-repeat center bottom;
  background-size: contain; pointer-events: none;
}
.cta-section h2 { font-size: clamp(1.4rem, 1.8vw, 1.8rem); margin-bottom: 6px; position: relative; z-index: 1; }
.cta-section > .container > p { color: var(--text-3); margin-bottom: 22px; font-size: 0.9rem; position: relative; z-index: 1; }
.cta-row { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; position: relative; z-index: 1; }

.result-note { font-size: 0.66rem; color: var(--text-4); margin-top: 6px; }

.result-video {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 14px; background: var(--coastal-pale); border: 1px solid var(--coastal-light);
  border-radius: var(--r-sm); margin-bottom: 14px;
}
.result-video-icon { font-size: 1.4rem; flex-shrink: 0; padding-top: 2px; }
.result-video-copy strong { display: block; font-size: 0.8rem; color: var(--coastal-dark); margin-bottom: 2px; }
.result-video-copy p { font-size: 0.74rem; color: var(--coastal); line-height: 1.45; margin: 0; }

.result-urgency {
  margin-top: 12px; text-align: center;
  font-size: 0.7rem; font-weight: 600;
  color: var(--text-3);
  padding: 8px; background: var(--sand);
  border-radius: var(--r-xs);
}

/* Footer */
.site-footer { padding: 22px 0; border-top: 1px solid var(--line-faint); }
.footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.footer-inner p { font-size: 0.7rem; color: var(--text-4); }
.footer-links { display: flex; gap: 14px; font-size: 0.7rem; color: var(--text-4); }
.footer-links a { transition: color var(--t); }
.footer-links a:hover { color: var(--text); }

/* Mobile sticky */
.mobile-sticky { display: none; }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .svc-grid, .steps-row, .test-row { grid-template-columns: 1fr; }
  .inc-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 768px) {
  .container { width: calc(100% - 32px); }
  .section { padding: 60px 0; }
  .hero { padding: 40px 0 48px; }
  .hero h1 { font-size: clamp(2rem, 7.5vw, 2.8rem); }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .hero-trust { flex-wrap: wrap; gap: 10px; }
  .card-body { padding: 16px 18px 20px; }
  .option-grid { grid-template-columns: 1fr; }
  .funnel-nav { flex-direction: column; }
  .funnel-nav .btn { width: 100%; }
  .inc-grid { grid-template-columns: 1fr; }
  .hero::after { right: -120px; opacity: 0.5; }
  body { padding-bottom: 66px; }

  .mobile-sticky {
    position: fixed; bottom: 0; left: 0; right: 0;
    display: grid; grid-template-columns: 1fr 1fr; gap: 6px;
    padding: 8px 12px calc(8px + env(safe-area-inset-bottom));
    background: rgba(255,255,255,0.94);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-top: 1px solid var(--line-faint); z-index: 70;
  }
  .mobile-sticky a {
    display: flex; align-items: center; justify-content: center;
    gap: 5px; padding: 11px; border-radius: 980px;
    font-weight: 700; font-size: 0.78rem; font-family: inherit;
    transition: all var(--t-slow);
  }
  .mobile-sticky .m-primary { background: var(--coastal); color: #fff; }
  .mobile-sticky .m-secondary { background: var(--pearl); color: var(--text-2); }
}
