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

:root {
  --navy:       #1B3A5C;
  --navy-dark:  #0F2338;
  --navy-light: #2A5280;
  --accent:     #F5921E;
  --accent-h:   #DC7A0D;
  --light-bg:   #F4F7FA;
  --white:      #FFFFFF;
  --text:       #1A202C;
  --muted:      #64748B;
  --border:     #E2E8F0;
  --sh-sm:      0 1px 3px rgba(0,0,0,.07), 0 1px 2px rgba(0,0,0,.05);
  --sh:         0 4px 8px rgba(0,0,0,.07), 0 2px 4px rgba(0,0,0,.05);
  --sh-lg:      0 10px 30px rgba(0,0,0,.10), 0 4px 8px rgba(0,0,0,.07);
  --r:  8px;
  --rl: 14px;
  --mw: 1100px;
  --nh: 64px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  line-height: 1.65;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

h1 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 800; line-height: 1.15; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); font-weight: 700; line-height: 1.2; }
h3 { font-size: 1.2rem; font-weight: 700; line-height: 1.3; }
h4 { font-size: .95rem; font-weight: 600; }
p  { color: var(--muted); }

.container { max-width: var(--mw); margin: 0 auto; padding: 0 1.5rem; }
.section     { padding: 5rem 0; }
.section-alt { background: var(--light-bg); }

.section-header { text-align: center; max-width: 620px; margin: 0 auto 3.5rem; }
.section-header h2 { color: var(--text); }
.section-header p  { margin-top: .75rem; font-size: 1.05rem; }

.eyebrow {
  display: inline-block;
  color: var(--accent);
  font-size: .75rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  margin-bottom: .6rem;
}

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .8rem 1.8rem; border-radius: var(--r);
  font-weight: 600; font-size: .95rem; border: none;
  transition: all .2s ease; line-height: 1; cursor: pointer;
  font-family: inherit;
}
.btn-primary { background: var(--accent); color: var(--white); }
.btn-primary:hover { background: var(--accent-h); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(245,146,30,.45); }
.btn-outline-white { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.5); }
.btn-outline-white:hover { border-color: rgba(255,255,255,.9); background: rgba(255,255,255,.08); }
.btn-dark { background: var(--navy); color: var(--white); }
.btn-dark:hover { background: var(--navy-dark); transform: translateY(-1px); }
.btn-lg { padding: 1rem 2.25rem; font-size: 1rem; }

/* ── Nav ── */
.nav { background: var(--navy); position: sticky; top: 0; z-index: 200; box-shadow: 0 2px 8px rgba(0,0,0,.15); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: var(--nh); }
.nav-logo { font-size: 1.05rem; font-weight: 700; color: var(--white); letter-spacing: -.02em; }
.nav-logo .a { color: var(--accent); }
.nav-menu { display: flex; align-items: center; gap: .2rem; }
.nav-menu a {
  color: rgba(255,255,255,.8); font-size: .875rem; font-weight: 500;
  padding: .45rem .85rem; border-radius: var(--r); transition: all .15s;
}
.nav-menu a:hover, .nav-menu a.active { color: var(--white); background: rgba(255,255,255,.1); }
.nav-menu .nav-cta {
  margin-left: .4rem;
  background: var(--accent) !important; color: var(--white) !important;
  padding: .45rem 1.1rem !important; font-weight: 600 !important;
  border-radius: var(--r);
}
.nav-menu .nav-cta:hover { background: var(--accent-h) !important; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 6px; cursor: pointer; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: white; border-radius: 2px; transition: all .3s; }
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── Hero ── */
.hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 55%, var(--navy-light) 100%);
  padding: 6rem 0 5.5rem; text-align: center; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 18% 82%, rgba(245,146,30,.07) 0%, transparent 48%),
    radial-gradient(circle at 82% 18%, rgba(255,255,255,.04) 0%, transparent 48%);
}
.hero > * { position: relative; }
.hero-pill {
  display: inline-block;
  background: rgba(245,146,30,.12); color: var(--accent);
  border: 1px solid rgba(245,146,30,.3);
  padding: .3rem 1rem; border-radius: 100px;
  font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.hero h1 { color: var(--white); margin-bottom: 1rem; }
.hero h1 .a { color: var(--accent); }
.hero .sub { color: rgba(255,255,255,.72); font-size: 1.15rem; max-width: 520px; margin: 0 auto 2.25rem; }
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.hero-stats { display: flex; gap: 3.5rem; justify-content: center; margin-top: 4rem; flex-wrap: wrap; }
.hero-stat .num { display: block; font-size: 2rem; font-weight: 800; color: var(--white); line-height: 1; }
.hero-stat .lbl { font-size: .78rem; color: rgba(255,255,255,.5); margin-top: .25rem; }

/* ── Cards ── */
.cards   { display: grid; gap: 1.5rem; }
.cards-3 { grid-template-columns: repeat(3, 1fr); }
.cards-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--rl); padding: 2rem; box-shadow: var(--sh-sm);
  transition: transform .2s, box-shadow .2s;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--sh-lg); }
.card-icon {
  width: 50px; height: 50px; background: rgba(27,58,92,.08);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem; font-size: 1.4rem;
}
.card h3 { color: var(--text); margin-bottom: .5rem; }
.card-rate {
  display: inline-block; background: rgba(27,58,92,.06); color: var(--navy);
  border-radius: var(--r); padding: .2rem .65rem;
  font-size: .78rem; font-weight: 700; margin-top: 1rem;
}
.card-link {
  display: inline-flex; align-items: center; gap: .3rem;
  color: var(--accent); font-weight: 600; font-size: .875rem;
  margin-top: 1.25rem; transition: gap .2s;
}
.card-link:hover { gap: .5rem; }

/* ── Why grid ── */
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.why-item {
  display: flex; gap: 1.25rem; align-items: flex-start;
  padding: 1.5rem; background: var(--white); border: 1px solid var(--border);
  border-radius: var(--rl); box-shadow: var(--sh-sm);
}
.why-icon {
  width: 44px; height: 44px; background: rgba(27,58,92,.07);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.why-item h3 { font-size: 1rem; color: var(--text); margin-bottom: .35rem; }

/* ── Steps ── */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.step { text-align: center; padding: 2rem 1.5rem; position: relative; }
.step:not(:last-child)::after {
  content: '→'; position: absolute; right: -0.6rem; top: 50%; transform: translateY(-50%);
  font-size: 1.5rem; color: var(--border); z-index: 1;
}
.step-num {
  width: 48px; height: 48px; background: var(--accent); color: white;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.1rem; margin: 0 auto 1rem;
}
.step h3 { color: var(--text); margin-bottom: .4rem; }

/* ── CTA Banner ── */
.cta-banner {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  padding: 5rem 0; text-align: center;
}
.cta-banner h2 { color: var(--white); margin-bottom: .75rem; }
.cta-banner p { color: rgba(255,255,255,.72); max-width: 480px; margin: 0 auto 2.25rem; font-size: 1.05rem; }

/* ── Page Hero ── */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  padding: 4.5rem 0; text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: .75rem; }
.page-hero p { color: rgba(255,255,255,.72); font-size: 1.1rem; max-width: 520px; margin: 0 auto; }

/* ── Feature list ── */
.feature-list { margin: 1rem 0; }
.feature-list li {
  display: flex; align-items: flex-start; gap: .6rem;
  padding: .45rem 0; font-size: .925rem; color: var(--text);
  border-bottom: 1px solid var(--border);
}
.feature-list li:last-child { border-bottom: none; }
.check { color: #16A34A; font-size: 1rem; flex-shrink: 0; line-height: 1.5; }

/* ── Services ── */
.service-block { padding: 3.5rem 0; }
.service-block + .service-block { border-top: 1px solid var(--border); }
.service-rate {
  display: inline-block; background: var(--accent); color: white;
  padding: .25rem .85rem; border-radius: var(--r);
  font-size: .85rem; font-weight: 700; margin-top: .6rem;
}

/* ── Pricing ── */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.pricing-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--rl); padding: 2rem; box-shadow: var(--sh-sm);
  display: flex; flex-direction: column; position: relative;
}
.pricing-card.featured { border-color: var(--navy); box-shadow: 0 0 0 1px var(--navy), var(--sh-lg); }
.pricing-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--navy); color: white;
  padding: .25rem 1rem; border-radius: 100px;
  font-size: .7rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  white-space: nowrap;
}
.plan-name { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); }
.plan-price { display: flex; align-items: flex-end; gap: .1rem; margin: .75rem 0 .25rem; }
.plan-price .cur { font-size: 1.4rem; font-weight: 800; color: var(--text); align-self: flex-start; padding-top: .35rem; }
.plan-price .amt { font-size: 2.75rem; font-weight: 800; color: var(--text); line-height: 1; }
.plan-price .per { font-size: .875rem; color: var(--muted); padding-bottom: .2rem; }
.plan-desc { font-size: .875rem; color: var(--muted); margin-bottom: 1.5rem; border-bottom: 1px solid var(--border); padding-bottom: 1.5rem; }
.pricing-card .feature-list { flex-grow: 1; }
.pricing-card .btn { margin-top: 1.75rem; width: 100%; justify-content: center; }

/* ── About ── */
.about-layout { display: grid; grid-template-columns: 1fr 1.6fr; gap: 4rem; align-items: start; }
.about-photo {
  background: var(--light-bg); border-radius: var(--rl); aspect-ratio: 4/5;
  display: flex; align-items: center; justify-content: center;
  border: 2px dashed var(--border); color: var(--muted); font-size: .875rem;
  text-align: center; padding: 2rem;
}
.about-content h2 { margin-bottom: 1rem; }
.about-content p + p { margin-top: .9rem; }

.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; margin-top: .5rem; }
.value-item {
  display: flex; gap: .9rem; align-items: flex-start;
  padding: 1.1rem; background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r); box-shadow: var(--sh-sm);
}
.value-icon {
  width: 36px; height: 36px; background: rgba(27,58,92,.07);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.value-item h4 { color: var(--text); margin-bottom: .15rem; }
.value-item p { font-size: .82rem; }

/* ── Contact ── */
.contact-layout { display: grid; grid-template-columns: 1fr 1.75fr; gap: 3.5rem; align-items: start; }
.contact-info {
  background: var(--navy); border-radius: var(--rl); padding: 2.25rem; color: white;
}
.contact-info h3 { color: white; margin-bottom: .4rem; }
.contact-info > p { color: rgba(255,255,255,.65); font-size: .9rem; margin-bottom: 2rem; }

.c-detail { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.4rem; }
.c-detail-icon {
  width: 40px; height: 40px; background: rgba(255,255,255,.1);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 1.1rem;
}
.c-detail .lbl { font-size: .72rem; color: rgba(255,255,255,.45); font-weight: 600; text-transform: uppercase; letter-spacing: .07em; }
.c-detail .val { color: white; font-weight: 500; font-size: .95rem; margin-top: .15rem; }

.hours-section { margin-top: 2rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.1); }
.hours-section h4 { color: white; font-size: .875rem; margin-bottom: .75rem; }
.hours-row { display: flex; justify-content: space-between; font-size: .85rem; padding: .35rem 0; border-bottom: 1px solid rgba(255,255,255,.07); }
.hours-row:last-child { border-bottom: none; }
.hours-row .day { color: rgba(255,255,255,.65); }
.hours-row .time { color: white; font-weight: 500; }

.contact-form-wrap {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--rl); padding: 2.5rem; box-shadow: var(--sh);
}
.contact-form-wrap h3 { margin-bottom: .3rem; }
.contact-form-wrap > p { margin-bottom: 2rem; }

.form-group { margin-bottom: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
label { display: block; font-size: .78rem; font-weight: 600; color: var(--text); margin-bottom: .4rem; text-transform: uppercase; letter-spacing: .04em; }
input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  width: 100%; padding: .7rem 1rem; border: 1.5px solid var(--border);
  border-radius: var(--r); font-size: .95rem; font-family: inherit;
  color: var(--text); background: var(--white);
  transition: border-color .2s, box-shadow .2s; appearance: none;
}
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(27,58,92,.1);
}
textarea { resize: vertical; min-height: 115px; }
select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2364748B' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem;
}
.form-note { font-size: .775rem; color: var(--muted); text-align: center; margin-top: .75rem; }

/* ── Footer ── */
footer { background: var(--navy-dark); padding: 3rem 0 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 3rem; margin-bottom: 2.5rem; }
.footer-logo { font-size: 1.05rem; font-weight: 700; color: white; }
.footer-logo .a { color: var(--accent); }
.footer-brand p { color: rgba(255,255,255,.5); font-size: .875rem; margin-top: .75rem; max-width: 260px; }
.footer-col h4 { color: white; font-size: .875rem; margin-bottom: 1rem; }
.footer-col li { margin-bottom: .55rem; }
.footer-col li a { color: rgba(255,255,255,.5); font-size: .875rem; transition: color .15s; }
.footer-col li a:hover { color: white; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08); padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: .75rem;
}
.footer-bottom p, .footer-bottom a { font-size: .8rem; color: rgba(255,255,255,.38); }
.footer-bottom a:hover { color: rgba(255,255,255,.7); }

/* ── Responsive ── */
@media (max-width: 900px) {
  .cards-3, .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .steps { grid-template-columns: 1fr; gap: 0; }
  .step:not(:last-child)::after { content: '↓'; right: auto; left: 50%; top: auto; bottom: -.6rem; transform: translateX(-50%); }
}

@media (max-width: 768px) {
  .cards-3, .cards-2, .pricing-grid { grid-template-columns: 1fr; }
  .contact-layout, .about-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .why-grid { grid-template-columns: 1fr; }

  .nav { position: relative; }
  .nav-menu {
    display: none; flex-direction: column; align-items: stretch;
    position: absolute; top: var(--nh); left: 0; right: 0;
    background: var(--navy-dark); padding: 1rem 1.5rem 1.5rem;
    gap: .2rem; box-shadow: 0 8px 20px rgba(0,0,0,.2);
  }
  .nav-menu.open { display: flex; }
  .nav-menu a { padding: .6rem .75rem; }
  .nav-menu .nav-cta { text-align: center; margin-left: 0 !important; margin-top: .5rem; }
  .nav-toggle { display: flex; }

  .hero { padding: 4rem 0 3.5rem; }
  .hero-stats { gap: 2rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 300px; justify-content: center; }
}
