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

/* ============================================
   ROSE SLI — Shared Stylesheet
   ============================================ */

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

:root {
  --navy:   #0d1b2a;
  --blue:   #1a56db;
  --blue2:  #1e3a8a;
  --white:  #ffffff;
  --light:  #f5f7fa;
  --gray:   #6b7280;
  --font:   'Inter', 'Helvetica Neue', Arial, sans-serif;
}

html { scroll-behavior: smooth; }

/* ── SKIP LINK ── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--blue);
  color: #fff;
  padding: .5rem 1rem;
  font-weight: 700;
  font-size: .9rem;
  border-radius: 0 0 4px 4px;
  text-decoration: none;
  z-index: 999;
}
.skip-link:focus { top: 0; }

body {
  font-family: var(--font);
  color: var(--navy);
  background: var(--white);
}

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  height: 64px;
}

.nav-logo {
  color: var(--white);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
}
.nav-logo span { color: #60a5fa; }

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: #cdd5e0;
  text-decoration: none;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: color .2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); border-bottom: 2px solid var(--blue); padding-bottom: 2px; }

.nav-cta {
  background: var(--blue);
  color: var(--white) !important;
  padding: .45rem 1.2rem;
  border-radius: 4px;
  font-weight: 700 !important;
  font-size: .8rem !important;
  letter-spacing: .1em !important;
  transition: background .2s !important;
  border-bottom: none !important;
  padding-bottom: .45rem !important;
}
.nav-cta:hover { background: var(--blue2) !important; }

/* hamburger */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; }
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--white); margin: 5px 0;
  transition: .3s;
}

/* ── HERO ── */
.hero {
  background: var(--navy);
  color: var(--white);
  padding: 7rem 2.5rem 6rem;
  min-height: 70vh;
  display: flex;
  align-items: center;
}
.hero-inner { max-width: 720px; }
.hero h1 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: .02em;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
}
.hero p {
  font-size: 1rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 2.2rem;
}
.btn {
  display: inline-block;
  background: var(--blue);
  color: var(--white);
  text-decoration: none;
  padding: .8rem 2rem;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: background .2s;
}
.btn:hover { background: var(--blue2); }
.btn-outline {
  background: transparent;
  border: 2px solid var(--white);
  margin-left: 1rem;
}
.btn-outline:hover { background: rgba(255,255,255,.1); }

/* ── SECTION LABELS ── */
.section-label {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: .6rem;
}

/* ── GENERIC SECTION ── */
.section {
  padding: 5rem 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.section-blue {
  background: var(--blue2);
  color: var(--white);
  padding: 5rem 2.5rem;
}
.section-blue .section-inner { max-width: 1100px; margin: 0 auto; }
.section-blue .section-label { color: #93c5fd; }
.section-blue h2 { color: var(--white); font-size: clamp(1.8rem, 3.5vw, 3rem); font-weight: 900; text-transform: uppercase; letter-spacing: .04em; margin-bottom: 1.5rem; line-height: 1.1; }

.section-dark {
  background: var(--navy);
  color: var(--white);
  padding: 5rem 2.5rem;
}
.section-dark .section-inner { max-width: 1100px; margin: 0 auto; }
.section-dark .section-label { color: #93c5fd; }
.section-dark h2 { color: var(--white); font-size: clamp(1.8rem, 3.5vw, 3rem); font-weight: 900; text-transform: uppercase; letter-spacing: .04em; margin-bottom: 1.5rem; line-height: 1.1; }
.section-dark p { color: #94a3b8; }

.section h2 {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

/* ── CARDS ── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.card {
  background: var(--light);
  border-radius: 8px;
  padding: 2rem;
  border-top: 4px solid var(--blue);
}
.card h3 {
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: .75rem;
  color: var(--navy);
}
.card p { font-size: .92rem; line-height: 1.6; color: var(--gray); }

.card-dark {
  background: rgba(255,255,255,.05);
  border-radius: 8px;
  padding: 2rem;
  border-top: 4px solid #60a5fa;
}
.card-dark h3 { color: var(--white); font-size: 1rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; margin-bottom: .75rem; }
.card-dark p { color: #94a3b8; font-size: .92rem; line-height: 1.6; }

/* ── TEAM CARDS ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}
.team-card { text-align: center; }
.team-avatar {
  width: 120px; height: 120px;
  border-radius: 50%;
  background: var(--blue2);
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--white);
}
.team-card h3 { font-weight: 800; text-transform: uppercase; letter-spacing: .06em; font-size: .95rem; margin-bottom: .3rem; }
.team-card p { font-size: .85rem; color: var(--gray); }

/* ── WORK / PORTFOLIO ── */
.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.work-item {
  background: var(--navy);
  border-radius: 8px;
  overflow: hidden;
  color: var(--white);
}
.work-thumb {
  height: 180px;
  background: linear-gradient(135deg, var(--blue2), var(--navy));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}
.work-info { padding: 1.2rem 1.5rem 1.5rem; }
.work-info h3 { font-weight: 800; text-transform: uppercase; letter-spacing: .06em; font-size: .95rem; margin-bottom: .4rem; }
.work-info p { font-size: .85rem; color: #94a3b8; }

/* ── FORM ── */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-top: 2rem;
}
.form-grid .full { grid-column: 1 / -1; }

label {
  display: block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: .4rem;
  color: var(--navy);
}
.section-dark label { color: #cbd5e1; }

input, select, textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid #d1d5db;
  border-radius: 4px;
  font-size: .95rem;
  font-family: var(--font);
  background: var(--white);
  color: var(--navy);
  transition: border-color .2s;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--blue);
}
textarea { resize: vertical; min-height: 120px; }

.section-dark input, .section-dark select, .section-dark textarea {
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.15);
  color: var(--white);
}
.section-dark input::placeholder, .section-dark textarea::placeholder { color: #64748b; }

.btn-submit {
  background: var(--blue);
  color: var(--white);
  border: none;
  padding: .85rem 2.5rem;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  transition: background .2s;
  margin-top: .5rem;
}
.btn-submit:hover { background: var(--blue2); }

/* ── CLIENTS STRIP ── */
.clients-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 3rem;
  align-items: center;
  margin-top: 2rem;
}
.client-logo {
  font-size: .95rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #94a3b8;
  opacity: .7;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--navy);
  color: var(--white);
  padding: 5rem 2.5rem 4rem;
  text-align: center;
}
.page-hero .section-label { color: #93c5fd; margin-bottom: .8rem; }
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
  line-height: 1.1;
}
.page-hero p {
  margin-top: 1rem;
  font-size: 1rem;
  color: #94a3b8;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ── STAT ROW ── */
.stat-row {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}
.stat { text-align: left; }
.stat .num {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--blue);
  line-height: 1;
}
.stat .lbl {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--gray);
  margin-top: .3rem;
}

/* ── FOOTER ── */
footer {
  background: var(--navy);
  color: #94a3b8;
  padding: 3rem 2.5rem 2rem;
  text-align: center;
}
footer .footer-logo {
  color: var(--white);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: .5rem;
}
footer .footer-logo span { color: #60a5fa; }
footer p { font-size: .82rem; margin-bottom: .4rem; }
footer .footer-links { display: flex; justify-content: center; gap: 1.5rem; margin: 1rem 0; flex-wrap: wrap; }
footer .footer-links a { color: #94a3b8; text-decoration: none; font-size: .8rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; padding: .6rem 0; display: inline-flex; align-items: center; }
footer .footer-links a:hover { color: var(--white); }
footer hr { border-color: rgba(255,255,255,.08); margin: 1.5rem 0 1rem; }
footer .copy { font-size: .75rem; color: #94a3b8; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 64px; left: 0; right: 0;
    background: var(--navy);
    gap: 1.2rem;
    padding: 1rem 2rem 2rem;
  }
  .nav-links.open {
    display: flex;
    animation: navSlide 0.3s ease;
  }
  .nav-toggle { display: block; }
  .nav-links a { padding: .85rem 0; display: block; min-height: 44px; }
  .nav-cta { padding: .85rem 1.2rem !important; }
  .form-grid { grid-template-columns: 1fr; }
  .stat-row { gap: 1.5rem; }
  .hero { padding: 4rem 1.5rem 3rem; }
  .hero-inner { display: flex; flex-direction: column; align-items: flex-start; gap: .75rem; }
  .hero-inner .btn { width: 100%; text-align: center; margin: 0; }
  .btn-outline { margin-left: 0; }
  .section { padding: 3.5rem 1.5rem; }
  .section-blue, .section-dark { padding: 3.5rem 1.5rem; }
  nav { padding: 0 1.5rem; }
  .work-grid { grid-template-columns: 1fr; }
  .card-grid { grid-template-columns: 1fr; }
  .page-hero { padding: 3.5rem 1.5rem 3rem; }
  .vri-banner { flex-direction: column; align-items: flex-start; }
  footer { padding: 3rem 1.5rem; }
  footer .footer-links { gap: 1rem; }
}

/* ── ANIMATIONS ── */

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

/* Hero / page-hero entrance (plays on load) */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-inner > * {
  animation: fadeUp 0.65s ease backwards;
}
.hero-inner > *:nth-child(1) { animation-delay: 0.05s; }
.hero-inner > *:nth-child(2) { animation-delay: 0.2s; }
.hero-inner > *:nth-child(3) { animation-delay: 0.4s; }
.hero-inner > *:nth-child(4) { animation-delay: 0.5s; }

.page-hero > * {
  animation: fadeUp 0.65s ease backwards;
}
.page-hero > *:nth-child(1) { animation-delay: 0.05s; }
.page-hero > *:nth-child(2) { animation-delay: 0.18s; }
.page-hero > *:nth-child(3) { animation-delay: 0.32s; }

/* Scroll-triggered fade-up */
.will-animate {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.will-animate.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Hamburger → X */
.nav-toggle span { transition: transform 0.3s ease, opacity 0.2s ease; }
.nav-toggle.is-open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.is-open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Button lift on hover */
.btn, .btn-submit {
  transition: background 0.2s, transform 0.15s, box-shadow 0.15s;
}
.btn:hover, .btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(26, 86, 219, 0.3);
}
.btn:active, .btn-submit:active {
  transform: translateY(0);
  box-shadow: none;
}

/* ── VRI CALLOUT ── */
.vri-callout {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  background: rgba(26,86,219,.12);
  border: 1px solid rgba(96,165,250,.35);
  border-radius: 100px;
  padding: .4rem 1.1rem;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #93c5fd;
  margin-bottom: 1.4rem;
}
.vri-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 7px #4ade80;
  animation: pulse-dot 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(.85); }
}
.vri-tag {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(74,222,128,.1);
  border: 1px solid rgba(74,222,128,.25);
  border-radius: 4px;
  padding: .25rem .7rem;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #4ade80;
  margin-top: 1rem;
}
.vri-banner {
  background: linear-gradient(90deg, rgba(26,86,219,.15) 0%, rgba(26,86,219,.05) 100%);
  border: 1px solid rgba(96,165,250,.25);
  border-radius: 8px;
  padding: 1.1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}
.vri-banner-text { font-size: .85rem; line-height: 1.5; color: #94a3b8; }
.vri-banner-text strong { color: var(--white); font-weight: 800; }

/* ── REVIEWS ── */
.review-card {
  background: var(--white);
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.review-stars { color: #f59e0b; font-size: .95rem; letter-spacing: .1em; margin-bottom: .7rem; }
.review-text { font-size: .92rem; line-height: 1.75; color: #374151; font-style: italic; margin-bottom: 1rem; }
.review-author { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--navy); }
.review-source { font-size: .72rem; color: #6b7280; margin-top: .15rem; }
.google-summary {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.google-score { font-size: 4rem; font-weight: 900; color: var(--navy); line-height: 1; }
.google-meta { display: flex; flex-direction: column; gap: .4rem; }
.google-stars-lg { color: #f59e0b; font-size: 1.5rem; line-height: 1; }
.google-label { font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #6b7280; }
.google-cta-link { display: inline-block; margin-top: 2rem; font-size: .82rem; font-weight: 700; color: var(--blue); text-decoration: none; letter-spacing: .06em; }
.google-cta-link:hover { text-decoration: underline; }

/* ── MAP ── */
.map-wrap {
  border-radius: 8px;
  overflow: hidden;
  margin-top: 2rem;
  border: 1.5px solid #e5e7eb;
  line-height: 0;
}
.map-wrap iframe { width: 100%; height: 380px; border: 0; display: block; }

/* ── FAQ ACCORDION ── */
.faq-list { margin-top: 2rem; display: flex; flex-direction: column; gap: .6rem; max-width: 820px; }
.faq-item { border: 1px solid #e5e7eb; border-radius: 6px; overflow: hidden; }
.section-dark .faq-item { border-color: rgba(255,255,255,.1); }
.faq-q {
  width: 100%; text-align: left; background: var(--light); border: none;
  padding: 1rem 1.25rem; font-size: .9rem; font-weight: 700; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  color: var(--navy); font-family: var(--font); letter-spacing: .02em;
  transition: background .15s;
}
.section-dark .faq-q { background: rgba(255,255,255,.05); color: var(--white); }
.faq-q:hover { background: #e5e9f0; }
.section-dark .faq-q:hover { background: rgba(255,255,255,.1); }
.faq-chevron { font-size: .9rem; color: var(--blue); transition: transform .25s; flex-shrink: 0; margin-left: .75rem; }
.faq-q.is-open .faq-chevron { transform: rotate(180deg); }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .25s ease;
  font-size: .9rem; line-height: 1.75; color: #374151; padding: 0 1.25rem;
}
.section-dark .faq-a { color: #94a3b8; }
.faq-a.is-open { max-height: 400px; padding: .8rem 1.25rem 1.1rem; }

/* ── FEATURE CHECKLIST ── */
.feature-list { list-style: none; display: flex; flex-direction: column; gap: .65rem; margin-top: 1.5rem; }
.feature-list li { display: flex; align-items: flex-start; gap: .75rem; font-size: .95rem; line-height: 1.65; color: #374151; }
.feature-list li::before { content: '✓'; color: var(--blue); font-weight: 900; font-size: .85rem; margin-top: .18rem; flex-shrink: 0; }
.section-dark .feature-list li { color: #cbd5e1; }
.section-dark .feature-list li::before { color: #60a5fa; }
.section-blue .feature-list li { color: #bfdbfe; }
.section-blue .feature-list li::before { color: #93c5fd; }

/* ── PROCESS STEPS ── */
.steps { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2rem; max-width: 680px; }
.step { display: flex; gap: 1.25rem; align-items: flex-start; }
.step-num {
  flex-shrink: 0; width: 38px; height: 38px; border-radius: 50%;
  background: var(--blue); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: .82rem;
}
.step-body h4 { font-weight: 800; font-size: .92rem; text-transform: uppercase; letter-spacing: .06em; margin-bottom: .3rem; color: var(--navy); }
.step-body p { font-size: .9rem; line-height: 1.65; color: #374151; }
.section-dark .step-num { background: rgba(26,86,219,.45); border: 1px solid rgba(96,165,250,.5); }
.section-dark .step-body h4 { color: var(--white); }
.section-dark .step-body p { color: #94a3b8; }

/* ── BREADCRUMB ── */
.breadcrumb { font-size: .75rem; color: #94a3b8; margin-bottom: 1rem; }
.breadcrumb a { color: #93c5fd; text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { margin: 0 .4rem; }
