/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #0d1e3d;
  --navy-mid:   #132752;
  --blue:       #1d4ed8;
  --blue-light: #3b82f6;
  --blue-pale:  #eff6ff;
  --white:      #ffffff;
  --off-white:  #f8faff;
  --text:       #1e293b;
  --text-muted: #64748b;
  --border:     #e2e8f0;
  --green:      #25d366;
  --red:        #ef4444;
  --radius:     12px;
  --radius-lg:  20px;
  --shadow:     0 4px 24px rgba(13,30,61,.10);
  --shadow-lg:  0 8px 48px rgba(13,30,61,.18);
  --transition: .22s ease;
}

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

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: .95rem;
  transition: all var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
  line-height: 1;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn-primary:hover {
  background: #1e40af;
  border-color: #1e40af;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(29,78,216,.35);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
}

.btn-nav {
  background: var(--blue);
  color: var(--white);
  padding: 9px 20px;
  font-size: .875rem;
}
.btn-nav:hover { background: #1e40af; }

.btn-whatsapp {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn-whatsapp:hover {
  background: #1ebe5a;
  border-color: #1ebe5a;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37,211,102,.35);
}

.btn-lg { padding: 15px 32px; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

/* ── SECTION HEADER ── */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.2;
}
.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}
.section-header.light h2 { color: var(--white); }
.section-header.light p  { color: rgba(255,255,255,.75); }

.section-tag {
  display: inline-block;
  background: var(--blue-pale);
  color: var(--blue);
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.tag-light {
  background: rgba(255,255,255,.15);
  color: var(--white);
}

/* ── HEADER / NAV ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
  padding: 20px 0;
}
.site-header.scrolled {
  background: var(--navy);
  box-shadow: 0 2px 20px rgba(0,0,0,.25);
  padding: 12px 0;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
}
.logo-icon { width: 40px; height: 40px; flex-shrink: 0; }
.logo-text {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1;
}
.logo-text strong { font-weight: 900; font-size: 1.35rem; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
.main-nav a {
  color: rgba(255,255,255,.85);
  font-size: .9rem;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
}
.main-nav a:not(.btn):hover {
  color: var(--white);
  background: rgba(255,255,255,.1);
}

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

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a7a 50%, #1d4ed8 100%);
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(59,130,246,.25) 0%, transparent 60%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,.15);
  color: rgba(255,255,255,.9);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,.2);
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -.02em;
  margin-bottom: 24px;
}
.hero h1 .accent { color: #60a5fa; }

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,.8);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.85);
  font-size: .9rem;
  font-weight: 500;
}
.trust-item svg { width: 16px; height: 16px; color: #4ade80; flex-shrink: 0; }

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: rgba(255,255,255,.5);
  animation: bounce 2s infinite;
}
.hero-scroll svg { width: 28px; height: 28px; }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ── SERVICES STRIP ── */
.services-strip {
  background: var(--white);
  padding: 64px 0;
  border-bottom: 1px solid var(--border);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  transition: all var(--transition);
  text-align: center;
}
.service-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.service-icon {
  width: 56px;
  height: 56px;
  background: var(--blue-pale);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  transition: background var(--transition);
}
.service-card:hover .service-icon { background: var(--blue); }
.service-icon svg { width: 26px; height: 26px; color: var(--blue); transition: color var(--transition); }
.service-card:hover .service-icon svg { color: var(--white); }

.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.service-card p {
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── STOCK SECTION ── */
.stock-section {
  padding: 96px 0;
  background: var(--off-white);
}

.stock-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}

.car-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  border: 1px solid var(--border);
}
.car-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-light);
}

.car-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.car-img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: #94a3b8;
}
.car-img-placeholder svg { width: 48px; height: 48px; }
.car-img-placeholder span { font-size: .8rem; font-weight: 600; letter-spacing: .05em; }

.car-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--blue);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: .05em;
}
.car-badge.sold { background: #64748b; }
.car-badge.reserved { background: #f59e0b; }

.car-body { padding: 20px; }
.car-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.car-spec {
  font-size: .8rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.car-details {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.car-detail {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: .78rem;
  color: var(--text-muted);
  font-weight: 500;
}
.car-detail svg { width: 13px; height: 13px; }

.car-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.car-price {
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--navy);
}
.car-price-mo {
  font-size: .75rem;
  color: var(--text-muted);
  font-weight: 400;
  display: block;
}
.car-enquire {
  font-size: .82rem;
  font-weight: 600;
  color: var(--blue);
  padding: 7px 14px;
  border: 1.5px solid var(--blue);
  border-radius: 6px;
  transition: all var(--transition);
}
.car-enquire:hover {
  background: var(--blue);
  color: var(--white);
}

.stock-cta {
  text-align: center;
}
.stock-cta p {
  color: var(--text-muted);
  margin-bottom: 16px;
}

/* ── FINANCE SECTION ── */
.finance-section {
  padding: 96px 0;
  background: var(--white);
}

.finance-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.finance-copy .section-tag { margin-bottom: 14px; }
.finance-copy h2 {
  font-size: clamp(1.75rem, 2.8vw, 2.4rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 18px;
}
.finance-copy p {
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.75;
}

.finance-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}
.finance-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .95rem;
  font-weight: 500;
  color: var(--text);
}
.finance-bullets li svg { width: 18px; height: 18px; color: var(--blue); flex-shrink: 0; }

.calc-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 36px;
  color: var(--white);
  box-shadow: var(--shadow-lg);
}
.calc-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 4px;
}
.calc-note {
  font-size: .82rem;
  color: rgba(255,255,255,.55);
  margin-bottom: 24px;
}

.calc-field {
  margin-bottom: 20px;
}
.calc-field label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: rgba(255,255,255,.75);
  margin-bottom: 8px;
}
.calc-field input[type="number"],
.calc-field select {
  width: 100%;
  background: rgba(255,255,255,.1);
  border: 1.5px solid rgba(255,255,255,.15);
  border-radius: 8px;
  padding: 10px 14px;
  color: var(--white);
  font-size: .95rem;
  font-family: inherit;
  transition: border-color var(--transition);
  -webkit-appearance: none;
}
.calc-field input[type="number"]:focus,
.calc-field select:focus {
  outline: none;
  border-color: var(--blue-light);
}
.calc-field select option { color: var(--text); background: var(--white); }

.calc-field input[type="range"] {
  -webkit-appearance: none;
  width: 100%;
  height: 4px;
  background: rgba(255,255,255,.2);
  border-radius: 2px;
  outline: none;
  margin-bottom: 6px;
}
.calc-field input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--blue-light);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(59,130,246,.4);
}
.range-val {
  font-size: .9rem;
  font-weight: 700;
  color: var(--white);
}

.calc-result {
  background: rgba(255,255,255,.08);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  margin-bottom: 20px;
  border: 1px solid rgba(255,255,255,.1);
}
.calc-result p { font-size: .82rem; color: rgba(255,255,255,.6); margin-bottom: 4px; }
.calc-amount {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--white);
  margin: 6px 0;
  letter-spacing: -.02em;
}
.calc-disclaimer {
  font-size: .72rem !important;
  color: rgba(255,255,255,.4) !important;
  margin: 6px 0 0 !important;
  line-height: 1.5 !important;
}

/* ── WHY US ── */
.why-section {
  padding: 96px 0;
  background: var(--off-white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.why-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.why-card:hover::before { transform: scaleX(1); }

.why-num {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--blue-pale);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -.04em;
}
.why-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.why-card p {
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── REVIEWS ── */
.reviews-section {
  padding: 96px 0;
  background: var(--navy);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.review-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
}
.review-card:hover {
  background: rgba(255,255,255,.1);
  transform: translateY(-3px);
}
.review-stars {
  color: #fbbf24;
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.review-card p {
  color: rgba(255,255,255,.8);
  font-size: .9rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}
.reviewer {
  font-size: .82rem;
  font-weight: 600;
  color: rgba(255,255,255,.5);
}

/* ── CONTACT ── */
.contact-section {
  padding: 96px 0;
  background: var(--white);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.contact-info .section-tag { margin-bottom: 14px; }
.contact-info h2 {
  font-size: clamp(1.75rem, 2.8vw, 2.4rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 18px;
}
.contact-info > p {
  color: var(--text-muted);
  margin-bottom: 36px;
  line-height: 1.75;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all var(--transition);
  color: var(--text);
}
a.contact-item:hover {
  border-color: var(--blue);
  background: var(--blue-pale);
  transform: translateX(4px);
}
.contact-icon {
  width: 42px;
  height: 42px;
  background: var(--blue-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 18px; height: 18px; color: var(--blue); }
.contact-item div strong {
  display: block;
  font-size: .88rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}
.contact-item div span,
.contact-item div p {
  font-size: .83rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ── ENQUIRY FORM ── */
.enquiry-form-wrap {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--border);
}

.enquiry-form h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-field {
  margin-bottom: 16px;
}
.form-field label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: .9rem;
  font-family: inherit;
  color: var(--text);
  transition: border-color var(--transition);
  resize: vertical;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(29,78,216,.1);
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: #94a3b8; }

.form-privacy {
  font-size: .75rem;
  color: var(--text-muted);
  margin-top: 12px;
  line-height: 1.5;
}

.form-success {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f0fdf4;
  border: 1.5px solid #86efac;
  border-radius: 8px;
  padding: 14px 16px;
  margin-top: 16px;
  color: #166534;
  font-weight: 600;
  font-size: .9rem;
}
.form-success svg { width: 20px; height: 20px; color: #22c55e; flex-shrink: 0; }

/* ── FOOTER ── */
.site-footer {
  background: #080f1f;
  color: rgba(255,255,255,.7);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding: 64px 24px 48px;
}

.footer-brand .logo { margin-bottom: 14px; }
.footer-brand p {
  font-size: .875rem;
  line-height: 1.7;
  color: rgba(255,255,255,.5);
  margin-bottom: 20px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}
.footer-socials a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.footer-socials a:hover { background: var(--blue); }
.footer-socials svg { width: 16px; height: 16px; }

.footer-links h4, .footer-services h4, .footer-contact-col h4 {
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--white);
  margin-bottom: 18px;
}

.footer-links nav,
.footer-services nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a,
.footer-services a {
  font-size: .875rem;
  color: rgba(255,255,255,.5);
  transition: color var(--transition);
}
.footer-links a:hover,
.footer-services a:hover { color: var(--white); }

.footer-contact-col a,
.footer-contact-col p {
  display: block;
  font-size: .875rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 8px;
  transition: color var(--transition);
}
.footer-contact-col a { color: rgba(255,255,255,.7); font-weight: 600; }
.footer-contact-col a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
}
.footer-bottom .container {
  padding-top: 24px;
  padding-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-bottom p {
  font-size: .75rem;
  color: rgba(255,255,255,.3);
  line-height: 1.6;
}

/* ── MOBILE STICKY CTA ── */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 50;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 12px 16px;
  gap: 10px;
  box-shadow: 0 -4px 20px rgba(0,0,0,.12);
}
.mobile-sticky-cta .btn {
  flex: 1;
  justify-content: center;
  font-size: .85rem;
  padding: 12px 16px;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stock-grid { grid-template-columns: repeat(2, 1fr); }
  .finance-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--navy);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    z-index: 99;
  }
  .main-nav.open {
    display: flex;
  }
  .main-nav a {
    font-size: 1.2rem;
    padding: 14px 24px;
    width: 200px;
    text-align: center;
  }
  .main-nav .btn-nav {
    margin-top: 8px;
    font-size: 1rem;
    padding: 14px 32px;
    width: 200px;
  }
  .nav-toggle { display: flex; z-index: 101; position: relative; }

  .hero { min-height: calc(100vh - 0px); padding: 100px 0 100px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }

  .services-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .service-card { padding: 24px 16px; }

  .stock-grid { grid-template-columns: 1fr; }

  .why-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }

  .contact-inner { grid-template-columns: 1fr; gap: 40px; }

  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .footer-brand, .footer-links, .footer-services, .footer-contact-col { padding: 0; }

  .mobile-sticky-cta { display: flex; }
  body { padding-bottom: 72px; }

  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.4rem; }
  .calc-card { padding: 24px; }
  .enquiry-form-wrap { padding: 24px; }
}

/* ── ANIMATIONS ── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-in-up {
  animation: fadeInUp .6s ease both;
}

.hero-badge   { animation: fadeInUp .5s .1s ease both; }
.hero h1      { animation: fadeInUp .5s .2s ease both; }
.hero-sub     { animation: fadeInUp .5s .3s ease both; }
.hero-ctas    { animation: fadeInUp .5s .4s ease both; }
.hero-trust   { animation: fadeInUp .5s .5s ease both; }
