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

:root {
  --blue-950: #0c1a3a;
  --blue-900: #0f2356;
  --blue-700: #1d4ed8;
  --blue-600: #2563eb;
  --blue-500: #3b82f6;
  --blue-400: #60a5fa;
  --blue-100: #dbeafe;
  --blue-50:  #eff6ff;
  --burnt-orange: #CC5500;
  --burnt-orange-dark: #B8470E;
  --white:    #ffffff;
  --grey-50:  #f8fafc;
  --grey-100: #f1f5f9;
  --grey-300: #cbd5e1;
  --grey-500: #64748b;
  --grey-700: #334155;
  --grey-900: #0f172a;

  --font-display: 'Outfit', sans-serif;
  --font-body:    'DM Sans', sans-serif;

  --nav-h: 68px;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(15,35,86,0.08);
  --shadow-lg: 0 16px 48px rgba(15,35,86,0.14);
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: var(--font-body);
  color: var(--grey-900);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* ── Typography ── */
.section-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blue-600);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--blue-950);
  margin-bottom: 1.25rem;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--grey-500);
  max-width: 540px;
  margin-bottom: 3rem;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 50px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--burnt-orange);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(204,85,0,0.35);
}
.btn-primary:hover {
  background: var(--burnt-orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(204,85,0,0.45);
}

.btn-ghost {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

.btn-ghost-blue {
  background: transparent;
  color: var(--blue-600);
  border: 1.5px solid var(--blue-300, #93c5fd);
}
.btn-ghost-blue:hover {
  background: var(--blue-50);
  transform: translateY(-2px);
}

/* ── NAV ── */
.nav-wrap {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(37,99,235,0.08);
  transition: box-shadow 0.3s;
}

.nav-wrap.scrolled { box-shadow:0 2px 20px rgba(15,35,86,0.1); }

.nav {
  display: flex;
  align-items: center;
  height: var(--nav-h);
  width: 100%;
  padding: 0 40px;
}

.logo { font-family:var(--font-display); font-weight:800; font-size:1.4rem; color:var(--blue-950); text-decoration:none; letter-spacing:-0.02em; flex-shrink:0; display:flex; align-items:center; gap:10px; }
.logo .dot { color: var(--blue-600); }

.nav-links { list-style:none; display:flex; align-items:center; gap:2rem; flex:1; justify-content:center; }

.nav-links a {
  text-decoration: none;
  color: var(--grey-700);
  font-weight: 500;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--blue-600); }

.nav-cta { background:var(--burnt-orange); color:var(--white); padding:10px 22px; border-radius:50px; box-shadow:0 4px 16px rgba(204,85,0,0.3); transition:all 0.2s; flex-shrink:0; margin-left:auto; text-decoration:none; }

.nav-products-container { position:relative; }
.nav-products-btn { background:none; border:none; cursor:pointer; color:var(--grey-700); font-weight:500; font-size:0.9rem; display:flex; align-items:center; gap:6px; padding:0; transition:color 0.2s; }
/* ── Nav dropdown ── */
.nav-products-btn:hover { color: var(--blue-600); }
.nav-products-dropdown.show { opacity:1 !important; visibility:visible !important; }
.nav-products-dropdown .btn-primary { color:#fff !important; background:var(--burnt-orange) !important; border-color:var(--burnt-orange) !important; }
.nav-product-item:hover { background:#f0f4f8; }
.nav-cta:hover { background:var(--burnt-orange-dark); transform:translateY(-1px); box-shadow:0 6px 20px rgba(204,85,0,0.4); }

.burger {
  display: none;
  flex-shrink: 0;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--blue-950);
  border-radius: 2px;
  transition: all 0.3s;
}

/* Mobile Drawer */
.drawer {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--blue-100);
  z-index: 99;
  padding: 1rem 24px 1.5rem;
  box-shadow: 0 8px 24px rgba(15,35,86,0.1);
  transform: translateY(-10px);
  opacity: 0;
  transition: all 0.25s;
}
.drawer.open { display:block; transform:translateY(0); opacity:1; }

.drawer ul { list-style: none; display: flex; flex-direction: column; gap: 0; text-align: center; }
.drawer li { border-bottom: 1px solid #000; padding: 1rem 0; }
.drawer li:last-child { border-bottom: none; }
.drawer a { text-decoration: none; color: var(--grey-700); font-weight: 500; font-size: 1rem; display: block; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--blue-950) 0%, #1a3a8f 50%, var(--blue-700) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-h);
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image:
    linear-gradient(rgba(255,255,255,0.06) 2px, transparent 2px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 2px, transparent 2px);
  background-size: 40px 40px;
}

.hero-orb {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.orb-1 { width:600px; height:600px; background:radial-gradient(circle,rgba(59,130,246,0.35) 0%,transparent 70%); top:-150px; right:-100px; animation:float 8s ease-in-out infinite; }
.orb-2 { width:400px; height:400px; background:radial-gradient(circle,rgba(99,102,241,0.25) 0%,transparent 70%); bottom:-100px; left:-50px; animation:float 10s ease-in-out infinite reverse; }

@keyframes float {
  0%, 100% { transform: translateY(0px) scale(1); }
  50% { transform: translateY(-30px) scale(1.04); }
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 6.5rem 24px;
  text-align: center;
}

.hero.hero-photo {
  background:
    linear-gradient(rgba(15, 23, 42, 0.58), rgba(15, 23, 42, 0.58)),
    url('../Office-Picture-Main-Banner.webp') center/cover no-repeat;
}

.hero.hero-photo .hero-bg-grid,
.hero.hero-photo .hero-orb {
  display: none;
}

.hero.hero-compact {
  min-height: auto;
  align-items: flex-start;
  padding-bottom: 2rem;
}

.hero.hero-compact .hero-inner {
  padding: 4rem 24px 2rem;
}

.badge {
  display: inline-block;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--blue-100);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
  margin-bottom: 1.75rem;
  backdrop-filter: blur(8px);
  animation: fadeUp 0.6s ease both;
}

.hero-text__static {
  font-family: var(--font-body);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  animation: fadeUp 0.6s ease 0.1s both;
}
.hero-text__static em {
  font-style: italic;
  color: var(--blue-400);
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(219,234,254,0.85);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
  animation: fadeUp 0.6s ease 0.2s both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.6s ease 0.3s both;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  justify-content: center;
  margin-top: 5rem;
  flex-wrap: wrap;
  animation: fadeUp 0.6s ease 0.4s both;
}

.stat span {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
}
.stat p {
  font-size: 0.82rem;
  color: rgba(219,234,254,0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── SERVICES ── */
.services {
  padding: 4rem 0;
  background: var(--white);
}

/* ── Reviews Carousel ── */
.reviews-carousel { padding: 6px 0 6px 0; width: 100%; }
.reviews-track { display: block; padding: 0 24px; overflow: hidden; }
.reviews-track-inner { display: flex; gap: 22px; align-items: center; }
.reviews-track .review { flex: 0 0 auto; display: flex; flex-direction: column; align-items: center; justify-content: center; width: 160px; background: #fff; border: 1px solid var(--grey-100); border-radius: 14px; padding: 12px; box-shadow: var(--shadow-lg); }
.reviews-track .pfp { width: 64px; height: 64px; border-radius: 50%; background: linear-gradient(135deg, var(--blue-600), var(--burnt-orange)); color: white; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1.05rem; margin-bottom: 12px; }
.reviews-track .name { font-weight: 800; font-size: 1rem; color: var(--grey-900); margin-bottom: 8px; }
.reviews-track .stars { color: #f59e0b; font-size: 1rem; letter-spacing: 0.04em; }

@media (max-width: 1024px) {
  .reviews-track { padding: 0 12px; }
  .reviews-track-inner { gap: 18px; }
  .reviews-track .review { width: 140px; padding: 10px; }
}

@media (max-width: 768px) {
  .reviews-track .review { width: 120px; padding: 8px; }
  .reviews-track-inner { gap: 12px; }
}

/* Distinct solid block colours for each profile avatar */
:root {
  --pfp-c1: #CC5500;
  --pfp-c2: #2563eb;
  --pfp-c3: #10b981;
  --pfp-c4: #8b5cf6;
  --pfp-c5: #06b6d4;
  --pfp-c6: #ec4899;
}
.reviews-track .review:nth-child(6n+1) .pfp { background: var(--pfp-c1); }
.reviews-track .review:nth-child(6n+2) .pfp { background: var(--pfp-c2); }
.reviews-track .review:nth-child(6n+3) .pfp { background: var(--pfp-c3); }
.reviews-track .review:nth-child(6n+4) .pfp { background: var(--pfp-c4); }
.reviews-track .review:nth-child(6n+5) .pfp { background: var(--pfp-c5); }
.reviews-track .review:nth-child(6n+6) .pfp { background: var(--pfp-c6); }

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

.service-card {
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--blue-100);
  background: var(--white);
  transition: all 0.3s;
}
.service-card:hover {
  border-color: var(--blue-400);
  background: var(--blue-50);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.service-icon {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--blue-600);
  display: block;
}

.service-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--blue-950);
  margin-bottom: 0.5rem;
}

.service-card p {
  font-size: 0.88rem;
  color: var(--grey-500);
  line-height: 1.6;
}

/* ── PRICING ── */
.pricing {
  padding: 4rem 0;
  background: linear-gradient(180deg, var(--grey-50) 0%, var(--white) 100%);
}

.pricing-table-wrapper {
  background: var(--white);
  border: 1px solid var(--blue-100);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-top: 2rem;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
}

.pricing-table thead tr {
  background: var(--grey-50);
  border-bottom: 2px solid var(--blue-100);
}

.pricing-table th {
  padding: 1.5rem 1rem;
  text-align: left;
  font-weight: 600;
  border-right: 1px solid var(--blue-100);
  font-size: 0.95rem;
}

.pricing-table th.feature-col {
  text-align: center !important;
}

.pricing-table th:last-child {
  border-right: none;
}

.feature-col {
  width: 20%;
  text-align: center;
  vertical-align: middle;
  font-family: var(--font-display) !important;
  font-size: 1.5rem !important;
  font-weight: 800 !important;
  color: var(--blue-600);
  padding: 2.5rem 1rem !important;
  height: 100% !important;
  min-height: 120px !important;
}

.feature-col-subtitle {
  display: block;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--grey-900);
  margin-top: 0.5rem;
}

.plan-col {
  width: 20%;
  text-align: center;
  padding: 1.5rem 0.75rem !important;
}

.plan-header {
  position: relative;
}

.plan-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--grey-700);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
  text-align: center;
}

.plan-price {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--blue-950);
  margin-bottom: 0.25rem;
  line-height: 1;
  text-align: center;
}

.plan-monthly {
  font-size: 0.9rem;
  color: var(--grey-500);
  margin-top: 0.25rem;
  text-align: center;
}

.plan-monthly strong {
  color: var(--blue-600);
  font-weight: 700;
}

.plan-from {
  font-size: 0.9rem;
  color: var(--grey-500);
  font-weight: 400;
  display: block;
  margin-bottom: 0.25rem;
}

.plan-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--burnt-orange);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  font-family: var(--font-display);
  padding: 5px 12px;
  border-radius: 20px;
  white-space: nowrap;
  display: block;
}

.pricing-table .growth-col {
  background: linear-gradient(135deg, rgba(59,130,246,0.05) 0%, rgba(59,130,246,0.02) 100%);
  border-left: 2px solid var(--blue-600) !important;
  border-right: 2px solid var(--blue-600) !important;
  border-top: 2px solid var(--blue-600) !important;
  border-bottom: 2px solid var(--blue-600) !important;
}

.growth-col .plan-header {
  position: relative;
  padding-top: 20px;
}

.pricing-table td { padding:1rem 0.3rem 1rem 0.75rem; border-right:1px solid var(--blue-100); font-size:1rem; text-align:left; }

.pricing-table td.feature-name { padding-right:0.05rem !important; position:relative; cursor:help; background:white; border-left:1px solid #e2e8f0; border-right:1px solid #e2e8f0; border-bottom:1px solid #e2e8f0; }

.pricing-table td.feature-name:hover {
  text-decoration: underline;
  text-decoration-color: var(--blue-600);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.pricing-table td.feature-name[data-tooltip]:hover::after {
  content: attr(data-tooltip);
  position: absolute;
  top: 102%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue-950);
  color: var(--white);
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-size: 0.85rem;
  line-height: 1.4;
  white-space: normal;
  width: 200px;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(15,35,86,0.2);
  pointer-events: none;
}

.pricing-table td.feature-name[data-tooltip]:hover::before {
  content: '';
  position: absolute;
  top: 95%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-bottom-color: var(--blue-950);
  z-index: 10;
  pointer-events: none;
}

.pricing-table td:last-child {
  border-right: none;
}

.pricing-table tbody tr {
  border-bottom: 1px solid var(--grey-100);
}

.pricing-table tbody tr:last-child {
  border-bottom: 2px solid var(--blue-100);
}

/* Growth column borders */
.pricing-table td:nth-child(3) {
  border-left: 2px solid var(--blue-600);
  border-right: 2px solid var(--blue-600);
  background: rgba(59,130,246,0.02);
}

.pricing-table tbody tr:last-child td:nth-child(3) {
  border-bottom: 2px solid var(--blue-600);
}

/* Plan column cells - reduce right padding */
.pricing-table tbody tr td:nth-child(2),
.pricing-table tbody tr td:nth-child(3),
.pricing-table tbody tr td:nth-child(4),
.pricing-table tbody tr td:nth-child(5) {
  padding-right: 0.2rem;
  text-align: center;
}

/* Google setup & tracking row: override plan-badge inside table cells */
.plan-badge-cell { position: relative; vertical-align: middle; }
.plan-badge-cell .plan-badge {
  position: relative;
  top: auto;
  left: auto;
  transform: none;
  display: inline-flex;
  align-items: center;
  background: none;
  color: var(--grey-700);
  font-size: 0.88rem;
  font-weight: 400;
  padding: 0;
  border-radius: 0;
  white-space: nowrap;
  gap: 0;
}

.checkmark { color:#22c55e; font-weight:700; font-size:1.2rem; line-height:1; }
.hero-ck { display:inline-flex; align-items:center; justify-content:center; width:26px; height:26px; border-radius:50%; background:var(--burnt-orange); color:white; font-size:0.95rem; line-height:1; flex-shrink:0; }
.ck-c { display:inline-flex; align-items:center; justify-content:center; width:22px; height:22px; border-radius:50%; background:#22c55e; color:white; font-size:0.85rem; line-height:1; margin-right:0.35rem; }

/* Pricing table cell types */
.ptd-w { background:white; text-align:center; border-right:1px solid #e2e8f0; border-bottom:1px solid #e2e8f0; }
.ptd-g { background:rgba(59,130,246,0.02); text-align:center; border-left:2px solid #3b82f6; border-right:2px solid #3b82f6; border-bottom:1px solid #e2e8f0; }
.ptd-last { border-bottom:2px solid var(--blue-100) !important; }
.ptd-d { background:var(--blue-50); text-align:center; border-left:1px solid #e2e8f0; border-right:1px solid #e2e8f0; border-bottom:1px solid #e2e8f0; }

.cta-row td {
  padding: 1.5rem 1.25rem;
  border-bottom: none;
  text-align: center;
}

.cta-row {
  background: var(--grey-50);
}

.cta-row .btn {
  width: 100%;
  justify-content: center;
  box-sizing: border-box;
  display: flex !important;
  text-align: center;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 1rem;
  align-items: start;
}

.pricing-card {
  padding: 2.5rem 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--blue-100);
  background: var(--white);
  position: relative;
  transition: all 0.3s;
}
.pricing-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }

.pricing-card.featured {
  border: 2px solid var(--blue-600);
  box-shadow: 0 8px 36px rgba(37,99,235,0.18);
  transform: scale(1.03);
}
.pricing-card.featured:hover { transform: scale(1.03) translateY(-4px); }

.plan-desc { font-size: 0.85rem; color: var(--grey-500); margin-bottom: 1.5rem; }

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.plan-features li { font-size: 0.88rem; color: var(--grey-700); }

/* ── ABOUT ── */
.about {
  padding: 4rem 0;
  background: var(--blue-950);
}
.about .section-label { color: var(--blue-400); }
.about .section-title { color: var(--white); }
.about p { color: rgba(219,234,254,0.7); margin-bottom: 1rem; line-height: 1.7; }

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-blob {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.ab-stat {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  backdrop-filter: blur(8px);
  transition: all 0.3s;
}
.ab-stat:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-3px);
}
.ab-stat span {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--blue-400);
  margin-bottom: 0.25rem;
}
.ab-stat { font-size: 0.82rem; color: rgba(219,234,254,0.6); }

/* ── CONTACT ── */

/* Form Sections */
.form-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--grey-50);
  border-radius: var(--radius-sm);
  border: 1px solid var(--blue-100);
}

.form-section-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue-600);
  margin: 0;
}

.form-section-title .optional {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.85rem;
  color: var(--grey-500);
}

.form-label {
  font-weight: 600;
  color: var(--grey-900);
  font-size: 0.92rem;
  margin: 0;
}

.form-checkboxes {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.form-checkboxes label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.92rem;
  color: var(--grey-900);
  cursor: pointer;
  user-select: none;
}

.form-checkboxes input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  padding: 0;
  border: 1.5px solid var(--blue-100);
  border-radius: 4px;
  cursor: pointer;
  accent-color: var(--blue-600);
}

.form-checkboxes input[type="checkbox"]:focus {
  outline: none;
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(59,130,246,0.12);
}

.file-upload-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 14px 18px;
  background: var(--white);
  border: 1.5px solid var(--blue-100);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 0.92rem;
  color: var(--grey-700);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.file-upload-label:hover {
  border-color: var(--blue-500);
}

.file-upload-input {
  display: none;
}

.file-upload-input:focus-visible {
  outline: none;
}

/* === MODAL STYLES === */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  padding: 1rem;
  background-color: rgba(0,0,0,0.5);
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}
.modal.show {
  display: flex !important;
}
.modal-content {
  background-color: #fff;
  padding: 2.25rem;
  border-radius: 1rem;
  box-shadow: 0 10px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  width: 90%;
  max-width: 760px;
  position: relative;
  overflow: visible;
}
.modal-close {
  color: #94a3b8;
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 28px;
  font-weight: bold;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
}
.modal-close:hover,
.modal-close:focus {
  color: #0f172a;
  text-decoration: none;
}
.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 1rem;
  row-gap: 1rem;
  width: min(100%, 680px);
  margin: 1.25rem auto 0;
  border: 2px solid var(--blue-600);
  background: var(--blue-50);
  padding: 1.5rem;
  border-radius: var(--radius);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  grid-column: 1 / -1;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid var(--border,#e2e8f0);
  border-radius: 0.5rem;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.2s ease;
  background: #f8fafc;
}
.contact-form > input,
.contact-form > select,
.contact-form > textarea,
.contact-form > button {
  grid-column: span 1;
}

#email,
#website,
#requestDetails,
#contactSubmitBtn {
  grid-column: 1;
}

#phone,
#helpType {
  grid-column: 2;
}

#requestDetails,
#contactSubmitBtn {
  grid-column: 1 / -1;
}

.contact-form .form-select {
  width: 100%;
}

#requestDetails {
  min-height: 84px;
}

#contactSubmitBtn {
  justify-self: center;
  margin-top: 0.25rem;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary,#2563eb);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}

@media (max-width: 640px) {
  .modal {
    padding: 0;
  }

  .modal-content {
    width: 100%;
    max-width: 100%;
    height: 100vh;
    height: 100dvh;
    border-radius: 0;
    padding: 1.5rem 1rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
  }

  .modal-close {
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
  }

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

  .contact-form {
    grid-template-columns: 1fr;
    width: 100%;
    padding: 1rem;
  }

  .contact-form > input,
  .contact-form > select,
  .contact-form > textarea,
  .contact-form > button,
  #email,
  #phone,
  #website,
  #helpType,
  #requestDetails,
  #contactSubmitBtn {
    grid-column: 1;
  }

  #requestDetails {
    min-height: 100px;
  }

  #contactSubmitBtn {
    width: 100%;
  }

  .section-label,
  .section-title,
  .section-sub {
    margin-bottom: 0.75rem;
  }

  .section-title {
    font-size: 1.5rem;
  }
}

.file-upload-label:has(.file-upload-input:focus-visible) {
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(59,130,246,0.12);
}

.content-help-textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--blue-100);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--grey-900);
  background: var(--white);
  resize: vertical;
  min-height: 100px;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.content-help-textarea:focus {
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(59,130,246,0.12);
}

.content-help-textarea.hidden {
  display: none;
}

/* ── FOOTER ── */
.footer {
  background: var(--blue-950);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 3.5rem 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-brand .logo { font-size: 1.3rem; color: var(--white); margin-bottom: 0.75rem; display: block; }
.footer-brand p { font-size: 0.85rem; color: rgba(219,234,254,0.5); max-width: 260px; line-height: 1.6; }

.footer-links {
  display: flex;
  gap: 4rem;
}
.footer-links > div {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-links strong { 
  color: rgba(219,234,254,0.9); 
  font-size: 0.8rem; 
  text-transform: uppercase; 
  letter-spacing: 0.1em; 
  margin-bottom: 0.25rem; 
}

.footer-links a { 
  color: #94a3b8;
  font-size: 0.85rem; 
  text-decoration: none; 
  transition: color 0.2s; 
}

.footer-links a:hover { 
  color: #f2c94c; 
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding: 1.25rem 24px;
  max-width: 1160px;
  margin: 0 auto;
  font-size: 0.78rem;
  color: rgba(219,234,254,0.3);
}

/* ── Scroll Reveal ── */
.reveal { opacity:0; transform:translateY(28px); transition:opacity 0.55s ease,transform 0.55s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .previews-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; }
  .pricing-card.featured { transform: none; }
  .about-inner { grid-template-columns: 1fr; gap: 3rem; }
  
  /* Pricing table responsive */
  .pricing-table {
    font-size: 0.85rem;
  }
  .pricing-table th {
    padding: 1.5rem 0.75rem;
  }
  .pricing-table td {
    padding: 0.75rem;
  }
  .plan-price {
    font-size: 1.5rem;
  }
  .plan-col {
    padding: 1rem 0.5rem !important;
  }
  .feature-col {
    width: 30%;
  }
  .plan-col {
    width: 23%;
  }
}

@media (max-width: 768px) {
  /* Utility class to hide elements on mobile */
  .hide-on-mobile { display: none !important; }
  
  /* Hide unwanted sections on mobile */
  .pricing { display: none !important; }
  
  /* Make paragraph text not bold on mobile */
  p { font-weight: 400 !important; }

  .hero.hero-photo {
    background: linear-gradient(135deg, var(--blue-950) 0%, #1a3a8f 50%, var(--blue-700) 100%);
  }

  .hero.hero-photo .hero-inner,
  .hero.hero-photo .hero-text__static {
    text-align: center;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
    text-align: center !important;
    width: 100%;
    max-width: 100%;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .hero-actions > div,
  .hero-actions > div h3,
  .hero-actions > div p,
  .hero-actions > div a {
    text-align: center !important;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-card-builder {
    flex: 0 0 auto !important;
    order: 1;
    width: min(100%, 400px) !important;
    max-width: 400px !important;
    min-width: 0 !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .hero-card-custom {
    flex: 0 0 auto !important;
    order: 2;
    width: min(100%, 400px) !important;
    max-width: 400px !important;
    min-width: 0 !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .hero-reassurance-home {
    justify-content: flex-start !important;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-reassurance-home > span {
    justify-content: flex-start;
    text-align: left;
    width: 100%;
  }

  .build-mobile-hide {
    display: none !important;
  }

  .build-steps-mobile-stack {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .build-yourself-hero-inner {
    padding-top: 4.25rem !important;
    padding-bottom: 1.25rem !important;
  }

  .build-yourself-reassurance {
    margin-bottom: 0.35rem !important;
  }

  .build-yourself-slogan {
    display: none !important;
  }

  .build-yourself-steps-section {
    padding-top: 2rem !important;
    padding-bottom: 1rem !important;
  }

  .build-yourself-bottom-cta {
    padding-top: 0.5rem !important;
    padding-bottom: 2rem !important;
  }

  .build-hero-mobile-cta {
    display: inline-block !important;
  }

  .build-hero-desktop-cta {
    display: none !important;
  }

  .nav {
    padding: 0 16px;
    gap: 0.75rem;
    justify-content: space-between;
  }

  .logo {
    min-width: 0;
    gap: 8px;
    font-size: 1.15rem;
  }

  .nav .logo > div {
    min-width: 0;
  }

  .nav .logo > div > span:last-child {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .nav-links { display: none; }
  .burger { display: flex; }
  .previews-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .services-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-links { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:0.75rem; }
  .footer-links > div { display: flex; flex-direction: column; gap: 0.5rem; }
  .footer-links strong { font-size: 0.7rem; line-height: 1.25; letter-spacing: 0.06em; }
  .footer-links a { font-size: 0.75rem; line-height: 1.25; }
  .footer-bottom { flex-direction: column; gap: 0.25rem; }
  .hero-stats { gap: 2rem; }
  
  /* Hero title - add more padding above on mobile */
  .hero-text__static {
    margin-top: 1rem !important;
  }

  h1.hero-text__static {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  /* Reduce lightning tagline font-size on mobile */
  .hero-inner > p {
    font-size: 1.15rem !important;
    font-weight: 400 !important;
  }

  /* Equal padding above and below lightning tagline wrapper */
  .hero-inner > div[style*="margin-top: 24px"] {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  /* Drastically reduce padding below pricing cards on mobile */
  .simple-pricing {
    padding-bottom: 2rem !important;
  }

  div[style*="padding-bottom: 10rem"] {
    padding-bottom: 2rem !important;
  }

  /* Custom built hero reassurance - align left and stack vertically */
  div[style*="margin-top: 0.9rem"][style*="display: flex"][style*="justify-content: center"] {
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    gap: 12px !important;
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  /* Hosting banner - stack vertically on mobile */
  .hosting-banner {
    flex-direction: column !important;
    align-items: flex-start !important;
    text-align: left !important;
    gap: 12px !important;
  }

  /* Hosting banner tick - make smaller on mobile */
  .hosting-banner > div:first-child {
    width: 28px !important;
    height: 28px !important;
    min-width: 28px !important;
    font-size: 0.8rem !important;
  }

  /* Contact form improvements for mobile */
  .contact-form {
    padding: 1rem !important;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    padding: 12px 14px !important;
    font-size: 16px !important;
  }

  .modal-content {
    padding: 1.25rem !important;
  }

  /* Ensure hero cards are full width on mobile */
  .hero-card-custom,
  .hero-card-builder {
    width: 100% !important;
    max-width: 340px !important;
    margin: 0 auto !important;
  }
  
  /* Pricing table mobile */
  .pricing-table-wrapper {
    overflow-x: visible;
  }
  .pricing-table {
    font-size: 0.85rem;
  }
  .pricing-table th {
    padding: 1.25rem 0.75rem;
    font-size: 0.85rem;
  }
  .pricing-table td {
    padding: 0.85rem 0.75rem;
    font-size: 0.9rem;
  }
  .plan-price {
    font-size: 1.6rem;
  }
  .plan-monthly {
    font-size: 0.75rem;
  }
  .plan-name {
    font-size: 0.9rem;
  }
  .feature-name {
    font-size: 0.9rem;
  }
  .feature-col {
    width: 32%;
  }
  .plan-col {
    width: 23%;
    padding: 1rem 0.5rem !important;
  }
  .checkmark {
    font-size: 1rem;
    margin-right: 0.2rem;
  }
  .cta-row .btn {
    padding: 10px 12px;
    font-size: 0.85rem;
  }

  /* Additional mobile optimizations for checkmarks and layout */
  /* Make all checkmarks/ticks smaller */
  .checkmark {
    width: 16px !important;
    height: 16px !important;
    font-size: 0.6rem !important;
    min-width: 16px;
  }

  /* Smaller tick circles - wide selector for all inline styled ticks */
  span[style*="width: 28px"],
  span[style*="width:28px"] {
    width: 20px !important;
    height: 20px !important;
    font-size: 0.8rem !important;
  }

  /* Smaller tick circles in pricing sections - 26px circles */
  span[style*="width: 26px"],
  span[style*="width:26px"] {
    width: 18px !important;
    height: 18px !important;
    font-size: 0.7rem !important;
  }

  /* Smaller tick circles in step cards - 22px circles */
  span[style*="width: 22px"],
  span[style*="width:22px"] {
    width: 16px !important;
    height: 16px !important;
    font-size: 0.65rem !important;
  }

  /* Smaller tick circles in "Why We Are Different" section - 38px circles */
  div[style*="width: 38px"],
  div[style*="width:38px"] {
    width: 28px !important;
    height: 28px !important;
    font-size: 0.8rem !important;
  }

  /* Step numbers - 42px circles */
  div[style*="width: 42px"],
  div[style*="width:42px"] {
    width: 32px !important;
    height: 32px !important;
    font-size: 0.85rem !important;
  }

  /* Hero reassurance - align left on mobile */
  .hero-reassurance > span {
    justify-content: flex-start;
    text-align: left;
  }

  /* Build yourself reassurance */
  .build-yourself-reassurance > span {
    justify-content: flex-start;
    text-align: left;
  }

  /* Reduce hero padding drastically */
  .hero-inner {
    padding: 3.5rem 20px !important;
  }

  .hero-compact .hero-inner {
    padding: 3rem 20px 2rem !important;
  }

  /* Reduce padding above "Custom Websites Built for Your Business" */
  .hero-compact .hero-text__static {
    margin-top: 0 !important;
    font-size: 2rem !important;
  }

  .hero-compact > div > p:nth-of-type(1) {
    margin-top: 12px !important;
    margin-bottom: 20px !important;
    font-size: 1.1rem !important;
  }

  /* Reorder pricing cards for mobile - Starter, Growth, Studio */
  .simple-pricing {
    background: white !important;
  }

  /* Container for pricing cards - display as column */
  div[style*="display: flex; gap: 20px"] {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 16px !important;
  }

  /* Starter card ordering */
  .sc-starter {
    order: 1 !important;
    width: 100% !important;
    max-width: 340px;
    min-width: 280px;
  }

  /* Growth card ordering */
  .sc-growth {
    order: 2 !important;
    width: 100% !important;
    max-width: 340px;
    min-width: 280px;
  }

  /* Studio card - move to last and remove scale */
  .sc-card-studio {
    order: 3 !important;
    transform: scale(1) !important;
    width: 100% !important;
    max-width: 340px;
    padding: 2.5rem 2rem !important;
    z-index: auto;
  }

  /* Make Studio heading same size as others */
  .sc-card-studio h3 {
    font-size: 1.65rem !important;
  }

  .sc-card-studio .sc-price {
    font-size: 2.8rem !important;
  }

  /* Make numbered steps smaller and stacked */
  .steps-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .step-card {
    padding: 1.5rem 1.25rem !important;
  }

  .step-card h3 {
    font-size: 1.1rem !important;
  }

  .step-card p {
    font-size: 0.9rem !important;
  }

  /* Reduce "How It Works" section padding */
  .how-it-works {
    padding: 3.5rem 0 !important;
  }

  .how-it-works .section-title {
    font-size: 2rem !important;
  }

  .how-it-works .section-sub {
    font-size: 1.1rem !important;
  }

  /* Reduce padding on hosting banner */
  .hosting-banner {
    padding: 1.2rem 1.25rem !important;
    margin-top: 1.5rem !important;
    gap: 12px !important;
  }

  .hosting-banner strong {
    font-size: 1rem !important;
  }

  .hosting-banner p {
    font-size: 0.9rem !important;
  }

  /* Services section padding reduction */
  .services {
    padding: 2.5rem 0 !important;
  }

  /* Adjust tick alignment in list items */
  li[style*="display: flex"] {
    justify-content: flex-start !important;
  }
}

/* ── Hero reassurance strip ── */
.hero-reassurance { display:flex; gap:2rem; justify-content:center; flex-wrap:wrap; margin-top:1.5rem; animation:fadeUp 0.6s ease 0.35s both; }
.hero-reassurance-home { margin-top:3rem; gap:18px 34px; }
.hero-reassurance span {
  font-size: 0.82rem;
  color: rgba(219,234,254,0.75);
  font-weight: 500;
}

.build-hero-mobile-cta {
  display: inline-block !important;
}

.how-it-works {
  padding: 6rem 0;
  background: linear-gradient(180deg, #0c1a3b 0%, #16274f 100%);
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
  margin-bottom: 3rem;
}

.step-card {
  background: var(--blue-50);
  border: 1.5px solid var(--blue-100);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  transition: all 0.3s;
}
.step-card:hover {
  border-color: var(--blue-400);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.step-num { width:40px; height:40px; background:var(--blue-600); color:#fff; border-radius:50%; font-family:var(--font-display); font-weight:800; font-size:1rem; display:flex; align-items:center; justify-content:center; margin-bottom:1rem; }

.step-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--blue-950);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}
.step-card p {
  font-size: 1.05rem;
  color: var(--grey-500);
  line-height: 1.65;
}

.step-arrow {
  font-size: 1.9rem;
  color: var(--blue-300, #93c5fd);
  padding: 0 1.25rem;
  margin-top: 2.5rem;
  align-self: start;
}

/* Hosting banner */
.hosting-banner {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background: linear-gradient(135deg, var(--blue-600), var(--blue-700));
  border-radius: var(--radius);
  padding: 1.75rem 2rem;
  color: #fff;
}
.hosting-icon { font-size: 2rem; flex-shrink: 0; }
.hosting-banner strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}
.hosting-banner p {
  font-size: 0.88rem;
  color: rgba(219,234,254,0.85);
  line-height: 1.6;
}

/* Pricing note */
.pricing-note {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 0.9rem;
  color: var(--grey-500);
}
.pricing-note a {
  color: var(--blue-600);
  font-weight: 600;
  text-decoration: none;
}
.pricing-note a:hover { text-decoration: underline; }

@media (max-width: 900px) {
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .step-arrow {
    text-align: center;
    padding: 0;
    margin: 0;
    font-size: 1.2rem;
    transform: rotate(90deg);
  }
}

/* ── Cookie Banner ── */
#cookieBanner { position:fixed !important; left:20px !important; right:20px !important; bottom:20px !important; z-index:99999 !important; display:none; }
#cookieBanner.show { display:block !important; }
.cookie-inner { max-width:900px; margin:0 auto; background:#fff; color:#334155; border:1px solid #e2e8f0; border-radius:18px; padding:22px; box-shadow:0 20px 45px rgba(15,23,42,0.2); }
.cookie-inner h3 { color:#0f172a; margin:0 0 10px; font-size:1.2rem; }
.cookie-inner p { color:#334155; margin:0 0 10px; line-height:1.6; font-size:0.95rem; }
.cookie-inner a { color:#2563eb; font-weight:700; }
.cookie-actions { display:flex; gap:12px; margin-top:16px; flex-wrap:wrap; }
.cookie-btn { border:none; border-radius:999px; padding:12px 18px; font-weight:700; cursor:pointer; font-family:inherit; }
.cookie-accept { background:#f97316; color:#fff; }
.cookie-reject { background:#0f172a; color:#fff; }
@media (max-width:640px) {
  #cookieBanner { left:12px !important; right:12px !important; bottom:12px !important; }
  .cookie-actions { flex-direction:column; }
  .cookie-btn { width:100%; }
}

/* ── FAQ Accordion ── */
.faq-item { background:#fff; border:1px solid #e2e8f0; border-radius:12px; overflow:hidden; box-shadow:0 2px 8px rgba(0,0,0,0.05); }
.faq-toggle { width:100%; padding:1.25rem; text-align:left; background:#f8fafc; border:none; cursor:pointer; display:flex; justify-content:space-between; align-items:center; font-size:1.05rem; font-weight:600; color:#0f172a; }
.faq-content { max-height:0; overflow:hidden; transition:max-height 0.3s ease; background:#fff; }
.faq-content > div { padding:0 1.25rem 1.25rem; color:#475569; line-height:1.6; }
.faq-arrow { font-size:1.5rem; }
