/* ===========================================================================
   ADS BY CREST — Blueprint Blue design system
   Premium industrial. Florida trades. Built to rank.
   =========================================================================== */

:root {
  --navy:        #0A1A5C;
  --navy-2:      #0D2278;
  --royal:       #1240AB;
  --bright-blue: #1A6FD4;
  --sky:         #3B9BF0;
  --white:       #FFFFFF;
  --off-white:   #F4F7FC;
  --dark-text:   #0D1224;
  --mid-text:    #3D4F6E;
  --line:        #E2E9F5;

  --grad-primary: linear-gradient(135deg, #0A1A5C 0%, #1240AB 50%, #1A6FD4 100%);
  --grad-accent:  linear-gradient(45deg, #1A6FD4, #3B9BF0);

  --radius-card: 12px;
  --radius-btn: 8px;
  --shadow-card: 0 4px 24px rgba(10, 26, 92, 0.10);
  --shadow-lift: 0 14px 40px rgba(10, 26, 92, 0.16);

  --maxw: 1180px;
  --gutter: clamp(20px, 5vw, 48px);
  --space-section: clamp(64px, 9vw, 116px);

  --ff: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* --- Reset / base ------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--ff);
  color: var(--dark-text);
  background: var(--white);
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--royal); text-decoration: none; }
a:hover { color: var(--bright-blue); }
ul { padding-left: 1.15rem; }
h1, h2, h3, h4 { line-height: 1.15; font-weight: 800; letter-spacing: -0.02em; color: var(--dark-text); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.5rem); letter-spacing: -0.01em; }
p { color: var(--mid-text); }
strong { color: var(--dark-text); font-weight: 700; }

/* --- Layout helpers ----------------------------------------------------- */
.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--space-section); }
.section--tight { padding-block: clamp(48px, 7vw, 80px); }
.bg-offwhite { background: var(--off-white); }
.bg-navy { background: var(--navy); color: #fff; }
.bg-navy h2, .bg-navy h3 { color: #fff; }
.bg-navy p { color: #C6D4EE; }

.eyebrow {
  font-size: .78rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--bright-blue); display: inline-flex; align-items: center; gap: .55rem; margin-bottom: .9rem;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--sky); display: inline-block; }
.bg-navy .eyebrow { color: var(--sky); }

.section-head { max-width: 720px; margin-bottom: clamp(34px, 5vw, 54px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head p { font-size: 1.08rem; margin-top: .9rem; }

.lede { font-size: 1.18rem; color: var(--mid-text); }
.bg-navy .lede { color: #D5E0F5; }

/* --- Buttons ------------------------------------------------------------ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-weight: 700; font-size: 1rem; padding: .92rem 1.7rem; border-radius: var(--radius-btn);
  border: 2px solid transparent; cursor: pointer; transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  line-height: 1; text-align: center;
}
.btn-primary { background: var(--royal); color: #fff; box-shadow: 0 6px 18px rgba(18,64,171,.32); }
.btn-primary:hover { background: var(--bright-blue); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-lift); }
.btn-secondary { background: #fff; color: var(--navy); border-color: var(--navy); }
.btn-secondary:hover { background: var(--navy); color: #fff; transform: translateY(-2px); }
.btn-ghost-light { background: rgba(255,255,255,.06); color: #fff; border-color: rgba(255,255,255,.55); }
.btn-ghost-light:hover { background: #fff; color: var(--navy); transform: translateY(-2px); }
.btn-lg { padding: 1.05rem 2.1rem; font-size: 1.06rem; }

/* --- Header ------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.brand { display: flex; align-items: center; gap: .65rem; font-weight: 800; color: var(--navy); font-size: 1.18rem; letter-spacing: -.02em; }
.brand img { width: 40px; height: 40px; }
.brand:hover { color: var(--navy); }
.nav { display: flex; align-items: center; gap: 1.55rem; }
.nav a { color: var(--dark-text); font-weight: 600; font-size: .96rem; position: relative; }
.nav a::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px; background: var(--bright-blue); transition: width .22s ease; }
.nav a:hover { color: var(--royal); }
.nav a:hover::after { width: 100%; }
.nav .btn { padding: .62rem 1.2rem; font-size: .92rem; }
.nav .btn::after { display: none; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 26px; height: 2px; background: var(--navy); margin: 5px 0; transition: .25s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --- HERO --------------------------------------------------------------- */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  background: linear-gradient(135deg, #0A1A5C, #1240AB, #1A6FD4, #0D2278, #0A1A5C);
  background-size: 400% 400%; overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; top: -20%; right: -10%; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(59,155,240,.18) 0%, transparent 70%); pointer-events: none;
}
/* blueprint grid overlay — the industrial signature */
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(ellipse at 30% 40%, #000 30%, transparent 78%);
          mask-image: radial-gradient(ellipse at 30% 40%, #000 30%, transparent 78%);
}
.hero-inner {
  position: relative; z-index: 2; display: grid; grid-template-columns: 1.15fr .85fr;
  gap: clamp(32px, 5vw, 64px); align-items: center; width: 100%;
  padding-block: clamp(110px, 14vh, 150px) clamp(70px, 9vh, 90px);
}
.hero-copy { color: #fff; max-width: 620px; }
.hero-eyebrow { color: var(--sky); font-weight: 600; letter-spacing: .16em; text-transform: uppercase; font-size: .82rem; display: block; margin-bottom: 1.1rem; }
.hero h1 { color: #fff; font-size: clamp(2.5rem, 6vw, 4.1rem); font-weight: 800; line-height: 1.04; letter-spacing: -.03em; }
.hero h1 .accent { background: linear-gradient(90deg, #8FC4FF, #3B9BF0); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-sub { color: #D9E4F8; font-size: clamp(1.05rem, 1.8vw, 1.22rem); margin-top: 1.4rem; max-width: 540px; }
.hero-ctas { display: flex; gap: .9rem; margin-top: 2.1rem; flex-wrap: wrap; }
.hero-trust { margin-top: 2rem; display: flex; gap: 1.5rem; flex-wrap: wrap; color: #AFC4EC; font-size: .9rem; font-weight: 500; }
.hero-trust span { display: inline-flex; align-items: center; gap: .45rem; }
.hero-trust span::before { content: "✓"; color: var(--sky); font-weight: 800; }

.hero-card {
  background: rgba(255,255,255,.08); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.15); border-radius: 20px; padding: 32px 28px; color: #fff;
  box-shadow: 0 8px 48px rgba(10,26,92,.4); justify-self: end; max-width: 400px; width: 100%;
}
.hero-card-label { font-size: .95rem; font-weight: 700; color: var(--sky); display: flex; align-items: center; gap: .55rem; letter-spacing: .01em; }
.hero-card-msg {
  font-size: 1.4rem; font-weight: 700; line-height: 1.32; margin-top: 1.1rem; min-height: 5.4em;
  transition: opacity .4s ease; color: #fff;
}
.hero-card-foot { margin-top: 1.2rem; padding-top: 1.1rem; border-top: 1px solid rgba(255,255,255,.14); font-size: .92rem; font-style: italic; color: var(--sky); }
.scroll-cue { position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); z-index: 2; color: rgba(255,255,255,.6); font-size: .75rem; letter-spacing: .14em; text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: .5rem; }
.scroll-cue span { width: 1px; height: 34px; background: linear-gradient(rgba(255,255,255,.6), transparent); }

/* --- Problem bar -------------------------------------------------------- */
.problem-bar { background: var(--navy-2); }
.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 40px); }
.problem-item { color: #fff; display: flex; gap: 1rem; align-items: flex-start; }
.problem-item .x { flex: none; width: 42px; height: 42px; border-radius: 10px; background: rgba(255,90,90,.16); color: #ff8a8a; display: grid; place-items: center; font-weight: 800; font-size: 1.2rem; }
.problem-item h3 { color: #fff; font-size: 1.12rem; margin-bottom: .25rem; }
.problem-item p { color: #B9C8E8; font-size: .96rem; }

/* --- Cards / grids ------------------------------------------------------ */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-card);
  padding: 30px 28px; box-shadow: var(--shadow-card); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lift); border-color: #cfdcf2; }
.card .ico {
  width: 52px; height: 52px; border-radius: 12px; background: var(--grad-accent);
  display: grid; place-items: center; margin-bottom: 1.1rem;
}
.card .ico svg { width: 26px; height: 26px; stroke: #fff; fill: none; stroke-width: 2; }
.card h3 { margin-bottom: .5rem; }
.card p { font-size: .97rem; flex: 1; }
.card .more { margin-top: 1.1rem; font-weight: 700; color: var(--royal); font-size: .94rem; display: inline-flex; align-items: center; gap: .4rem; }
.card .more::after { content: "→"; transition: transform .18s ease; }
.card:hover .more::after { transform: translateX(4px); }
.card-link { color: inherit; display: flex; flex-direction: column; height: 100%; }
.card-link:hover { color: inherit; }

/* numbered process */
.steps { counter-reset: step; display: grid; gap: 22px; }
.steps.grid-4 { grid-template-columns: repeat(4, 1fr); }
.step { position: relative; padding: 26px 24px 24px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-card); box-shadow: var(--shadow-card); }
.step::before {
  counter-increment: step; content: "0" counter(step);
  font-weight: 800; font-size: 1.05rem; color: var(--bright-blue); letter-spacing: .04em;
  display: inline-block; margin-bottom: .7rem;
}
.bg-navy .step { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.12); }
.bg-navy .step::before { color: var(--sky); }
.step h3 { font-size: 1.08rem; margin-bottom: .35rem; }

/* feature list (checks) */
.checklist { list-style: none; padding: 0; display: grid; gap: 1rem; }
.checklist li { display: flex; gap: .85rem; align-items: flex-start; }
.checklist li .tick { flex: none; width: 26px; height: 26px; border-radius: 7px; background: var(--grad-accent); display: grid; place-items: center; margin-top: 2px; }
.checklist li .tick svg { width: 14px; height: 14px; stroke: #fff; stroke-width: 3; fill: none; }
.checklist li strong { display: block; }
.checklist li span.body { color: var(--mid-text); font-size: .97rem; }

/* two-column split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(34px, 5vw, 64px); align-items: center; }
.split--narrow { grid-template-columns: 1.1fr .9fr; }

/* link chips (cities / industries grids) */
.chip-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 12px; }
.chip {
  display: flex; align-items: center; justify-content: space-between; gap: .5rem;
  background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: .85rem 1.1rem;
  font-weight: 600; color: var(--dark-text); font-size: .95rem; transition: .18s ease;
}
.chip:hover { border-color: var(--bright-blue); color: var(--royal); transform: translateY(-2px); box-shadow: var(--shadow-card); }
.chip::after { content: "→"; color: var(--sky); opacity: 0; transition: .18s ease; }
.chip:hover::after { opacity: 1; }
.bg-navy .chip { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.12); color: #fff; }
.bg-navy .chip:hover { border-color: var(--sky); background: rgba(255,255,255,.1); color: #fff; }

/* --- Pricing ------------------------------------------------------------ */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; align-items: stretch; }
.price-card { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 34px 30px; box-shadow: var(--shadow-card); display: flex; flex-direction: column; position: relative; }
.price-card.featured { border: 2px solid var(--royal); box-shadow: var(--shadow-lift); }
.price-card.featured .badge { position: absolute; top: -13px; left: 30px; background: var(--royal); color: #fff; font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: .35rem .8rem; border-radius: 6px; }
.price-card h3 { font-size: 1.2rem; }
.price-card .price { font-size: 2.6rem; font-weight: 800; color: var(--navy); margin: .6rem 0 .2rem; letter-spacing: -.03em; }
.price-card .price small { font-size: .95rem; font-weight: 600; color: var(--mid-text); }
.price-card .price-sub { color: var(--mid-text); font-size: .92rem; margin-bottom: 1.3rem; }
.price-card ul { list-style: none; padding: 0; display: grid; gap: .7rem; margin-bottom: 1.6rem; flex: 1; }
.price-card ul li { display: flex; gap: .6rem; align-items: flex-start; font-size: .95rem; color: var(--mid-text); }
.price-card ul li::before { content: "✓"; color: var(--bright-blue); font-weight: 800; flex: none; }
.price-card .btn { width: 100%; }

.price-table { width: 100%; border-collapse: collapse; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-card); overflow: hidden; box-shadow: var(--shadow-card); }
.price-table th, .price-table td { text-align: left; padding: 1rem 1.2rem; border-bottom: 1px solid var(--line); }
.price-table th { background: var(--off-white); font-weight: 700; color: var(--navy); font-size: .92rem; letter-spacing: .02em; }
.price-table td:last-child { font-weight: 800; color: var(--navy); white-space: nowrap; }
.price-table tr:last-child td { border-bottom: 0; }

/* --- FAQ (details/summary) --------------------------------------------- */
.faq { display: grid; gap: 12px; max-width: 820px; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: 10px; overflow: hidden; transition: border-color .18s ease; }
.faq details[open] { border-color: #cbd9f1; box-shadow: var(--shadow-card); }
.faq summary { cursor: pointer; list-style: none; padding: 1.05rem 1.3rem; font-weight: 700; color: var(--dark-text); display: flex; justify-content: space-between; gap: 1rem; align-items: center; font-size: 1.02rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-weight: 700; font-size: 1.5rem; color: var(--bright-blue); line-height: 1; transition: transform .2s ease; flex: none; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .answer { padding: 0 1.3rem 1.2rem; color: var(--mid-text); font-size: .99rem; }
.bg-navy .faq details { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.12); }
.bg-navy .faq summary { color: #fff; }
.bg-navy .faq .answer { color: #C6D4EE; }

/* --- Contact / form ----------------------------------------------------- */
.contact-section { background: var(--grad-primary); position: relative; overflow: hidden; }
.contact-section::after {
  content: ""; position: absolute; inset: 0; opacity: .4; pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(ellipse at 70% 30%, #000 20%, transparent 75%); mask-image: radial-gradient(ellipse at 70% 30%, #000 20%, transparent 75%);
}
.contact-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(34px, 5vw, 70px); align-items: start; }
.contact-copy { color: #fff; }
.contact-copy h2 { color: #fff; }
.contact-copy p { color: #D5E0F5; font-size: 1.08rem; }
.contact-points { list-style: none; padding: 0; margin-top: 1.6rem; display: grid; gap: 1rem; }
.contact-points li { display: flex; gap: .8rem; align-items: center; color: #fff; font-weight: 600; }
.contact-points li a { color: #fff; }
.contact-points li a:hover { color: var(--sky); }
.contact-points li .ci { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,.12); display: grid; place-items: center; flex: none; }
.contact-points li .ci svg { width: 20px; height: 20px; stroke: var(--sky); fill: none; stroke-width: 2; }

.form-card { background: #fff; border-radius: 16px; padding: clamp(26px, 4vw, 38px); box-shadow: 0 18px 60px rgba(10,26,92,.32); }
.form-card h3 { margin-bottom: .3rem; }
.form-card .form-note { color: var(--mid-text); font-size: .94rem; margin-bottom: 1.4rem; }
.field { margin-bottom: 1.05rem; }
.field label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: .4rem; color: var(--dark-text); }
.field input, .field select, .field textarea {
  width: 100%; padding: .82rem .95rem; border: 1.5px solid var(--line); border-radius: var(--radius-btn);
  font-family: inherit; font-size: 1rem; color: var(--dark-text); background: #fff; transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--bright-blue); box-shadow: 0 0 0 3px rgba(26,111,212,.14); }
.field textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
form .btn { width: 100%; margin-top: .4rem; }
.form-success { display: none; background: #ECF7EE; border: 1.5px solid #BFE6C7; color: #1B6E2C; padding: 1rem 1.2rem; border-radius: var(--radius-btn); font-weight: 600; margin-top: 1rem; }
.form-error { display: none; background: #FDEDED; border: 1.5px solid #F5C2C2; color: #B22; padding: .85rem 1.1rem; border-radius: var(--radius-btn); font-weight: 600; margin-top: 1rem; font-size: .95rem; }
.form-tiny { font-size: .78rem; color: var(--mid-text); margin-top: .9rem; text-align: center; }

/* --- Breadcrumbs -------------------------------------------------------- */
.breadcrumbs { font-size: .85rem; color: var(--mid-text); padding-top: 1.6rem; }
.breadcrumbs ol { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: .4rem; align-items: center; }
.breadcrumbs li::after { content: "/"; margin-left: .4rem; color: #b9c4da; }
.breadcrumbs li:last-child::after { display: none; }
.breadcrumbs a { color: var(--royal); font-weight: 600; }
.breadcrumbs li:last-child { color: var(--mid-text); }

/* --- Page hero (interior) ---------------------------------------------- */
.page-hero { background: var(--grad-primary); color: #fff; position: relative; overflow: hidden; padding-block: clamp(28px, 5vw, 44px) clamp(48px, 7vw, 76px); }
.page-hero::after {
  content: ""; position: absolute; inset: 0; opacity: .45; pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 44px 44px; -webkit-mask-image: radial-gradient(ellipse at 75% 30%, #000 25%, transparent 78%); mask-image: radial-gradient(ellipse at 75% 30%, #000 25%, transparent 78%);
}
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero .breadcrumbs { color: #B9C8E8; }
.page-hero .breadcrumbs a { color: #fff; }
.page-hero .breadcrumbs li:last-child { color: #B9C8E8; }
.page-hero .breadcrumbs li::after { color: rgba(255,255,255,.4); }
.page-hero h1 { color: #fff; font-size: clamp(2.1rem, 5vw, 3.3rem); margin-top: 1.1rem; max-width: 860px; }
.page-hero .eyebrow { color: var(--sky); }
.page-hero .sub { color: #D5E0F5; font-size: clamp(1.05rem, 1.8vw, 1.22rem); margin-top: 1.1rem; max-width: 680px; }
.page-hero .hero-ctas { margin-top: 1.8rem; }

/* --- Prose / article ---------------------------------------------------- */
.prose { max-width: 760px; }
.prose h2 { margin-top: 2.4rem; margin-bottom: .8rem; }
.prose h3 { margin-top: 1.8rem; margin-bottom: .5rem; }
.prose p { margin-bottom: 1.1rem; font-size: 1.05rem; }
.prose ul { margin-bottom: 1.2rem; display: grid; gap: .5rem; }
.prose li { color: var(--mid-text); }
.prose .callout { background: var(--off-white); border-left: 4px solid var(--bright-blue); padding: 1.2rem 1.4rem; border-radius: 0 10px 10px 0; margin: 1.6rem 0; }
.prose .callout p { margin: 0; color: var(--dark-text); }

/* numbered article points */
.points { display: grid; gap: 18px; counter-reset: pt; max-width: 820px; }
.point { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-card); padding: 24px 26px; box-shadow: var(--shadow-card); display: flex; gap: 1.1rem; }
.point .num { counter-increment: pt; flex: none; }
.point .num::before { content: counter(pt); width: 40px; height: 40px; border-radius: 10px; background: var(--grad-accent); color: #fff; font-weight: 800; display: grid; place-items: center; font-size: 1.05rem; }
.point h3 { font-size: 1.12rem; margin-bottom: .3rem; }
.point p { font-size: .99rem; margin: 0; }

/* comparison table */
.compare { width: 100%; border-collapse: collapse; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-card); overflow: hidden; box-shadow: var(--shadow-card); max-width: 900px; }
.compare th, .compare td { padding: 1rem 1.2rem; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; font-size: .97rem; }
.compare thead th { background: var(--navy); color: #fff; font-weight: 700; }
.compare thead th:first-child { background: var(--navy-2); }
.compare tbody td:first-child { font-weight: 700; color: var(--navy); background: var(--off-white); white-space: nowrap; }
.compare tr:last-child td { border-bottom: 0; }

/* tags */
.tag-row { display: flex; flex-wrap: wrap; gap: .55rem; margin: 1.2rem 0; }
.tag { background: var(--off-white); border: 1px solid var(--line); border-radius: 999px; padding: .4rem .9rem; font-size: .85rem; font-weight: 600; color: var(--royal); }

/* projects */
.project-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-card); overflow: hidden; box-shadow: var(--shadow-card); }
.project-thumb { aspect-ratio: 16/10; background: var(--grad-primary); display: grid; place-items: center; position: relative; overflow: hidden; }
.project-thumb::after { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px); background-size: 30px 30px; }
.project-thumb .ph-label { position: relative; z-index: 1; color: rgba(255,255,255,.9); font-weight: 700; letter-spacing: .12em; text-transform: uppercase; font-size: .8rem; border: 1.5px solid rgba(255,255,255,.4); padding: .5rem 1rem; border-radius: 8px; }
.project-body { padding: 22px 24px; }
.project-body h3 { font-size: 1.1rem; }
.project-meta { color: var(--mid-text); font-size: .9rem; margin-top: .3rem; }

/* in-progress banner */
.notice { background: var(--off-white); border: 1px dashed #b9c8e8; border-radius: var(--radius-card); padding: 1.6rem 1.8rem; display: flex; gap: 1rem; align-items: center; }
.notice .dot { width: 12px; height: 12px; border-radius: 50%; background: var(--sky); flex: none; box-shadow: 0 0 0 4px rgba(59,155,240,.2); }

/* --- Footer ------------------------------------------------------------- */
.site-footer { background: var(--navy); color: #fff; padding-block: clamp(50px, 7vw, 76px) 0; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: clamp(28px, 4vw, 52px); }
.footer-brand img { width: 52px; height: 52px; margin-bottom: 1rem; }
.footer-brand p { color: #AFC0E0; font-size: .96rem; max-width: 300px; }
.footer-brand .fcontact { margin-top: 1.3rem; display: grid; gap: .5rem; }
.footer-brand .fcontact a { color: #fff; font-weight: 600; display: inline-flex; gap: .5rem; align-items: center; }
.footer-brand .fcontact a:hover { color: var(--sky); }
.footer-col h4 { color: #fff; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 1rem; color: var(--sky); }
.footer-col ul { list-style: none; padding: 0; display: grid; gap: .6rem; }
.footer-col a { color: #C2D0EC; font-size: .94rem; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: clamp(40px, 5vw, 60px); padding-block: 1.6rem; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; color: #93A6CC; font-size: .88rem; }
.footer-bottom a { color: #93A6CC; }
.footer-bottom a:hover { color: #fff; }

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

/* --- Scroll reveal ------------------------------------------------------ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* --- Animations --------------------------------------------------------- */
@media (prefers-reduced-motion: no-preference) {
  .hero { animation: heroGradientShift 12s ease infinite; will-change: background-position; }
  @keyframes heroGradientShift {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }
  @keyframes cardFloat {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-12px); }
  }
  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .hero-eyebrow { animation: fadeInUp .6s ease .10s both; }
  .hero h1      { animation: fadeInUp .6s ease .25s both; }
  .hero-sub     { animation: fadeInUp .6s ease .40s both; }
  .hero-ctas    { animation: fadeInUp .6s ease .55s both; }
  .hero-trust   { animation: fadeInUp .6s ease .70s both; }
  .hero-card    { animation: fadeInUp .7s ease .30s both, cardFloat 6s ease-in-out 1s infinite; }
  .scroll-cue span { animation: scrollPulse 2s ease-in-out infinite; }
  @keyframes scrollPulse { 0%,100%{opacity:.3} 50%{opacity:1} }
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  * { scroll-behavior: auto !important; }
}

/* ===========================================================================
   RESPONSIVE
   =========================================================================== */
@media (max-width: 980px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .steps.grid-4 { grid-template-columns: repeat(2, 1fr); }
  .price-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .nav { position: fixed; inset: 74px 0 auto 0; flex-direction: column; align-items: stretch; gap: 0; background: #fff; border-bottom: 1px solid var(--line); padding: .5rem var(--gutter) 1.2rem; transform: translateY(-130%); transition: transform .3s ease; box-shadow: 0 18px 40px rgba(10,26,92,.12); max-height: calc(100vh - 74px); overflow-y: auto; }
  .nav.open { transform: translateY(0); }
  .nav a { padding: .9rem 0; border-bottom: 1px solid var(--line); font-size: 1.02rem; }
  .nav a::after { display: none; }
  .nav .btn { margin-top: .8rem; }
  .nav-toggle { display: block; }

  .hero-inner { grid-template-columns: 1fr; gap: 36px; padding-block: 100px 110px; }
  .hero-card { justify-self: stretch; max-width: 100%; }
  .hero-card-msg { font-size: 1.25rem; min-height: 4.6em; }
  .scroll-cue { display: none; }

  .split, .split--narrow, .contact-grid { grid-template-columns: 1fr; }
  .problem-grid { grid-template-columns: 1fr; gap: 18px; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .grid-4 { grid-template-columns: 1fr; }
  .steps.grid-4 { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .compare { font-size: .9rem; }
  .compare th, .compare td { padding: .8rem .7rem; }
  .price-table th, .price-table td { padding: .8rem .7rem; font-size: .88rem; }

  body { padding-bottom: 64px; }   /* room for sticky bar */
  .mobile-sticky-bar {
    display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; height: 60px;
    box-shadow: 0 -6px 24px rgba(10,26,92,.18);
  }
  .mobile-sticky-bar a { flex: 1; display: flex; align-items: center; justify-content: center; gap: .45rem; color: #fff; font-weight: 700; font-size: 1rem; }
  .mobile-sticky-bar .sticky-call { background: var(--navy); }
  .mobile-sticky-bar .sticky-quote { background: var(--royal); }
  .site-footer { padding-bottom: 60px; }
}
@media (max-width: 380px) {
  .hero h1 { font-size: 2.15rem; }
}

/* --- Live build showcase ------------------------------------------------- */
.showcase-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; align-items: stretch; }
.showcase-card { background: #fff; border: 1px solid var(--line); border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-card); display: flex; flex-direction: column; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.showcase-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lift); border-color: #cfdcf2; }
.showcase-logo { background: #fff; border-bottom: 1px solid var(--line); padding: clamp(24px, 3.5vw, 36px); display: grid; place-items: center; min-height: 200px; position: relative; }
.showcase-logo img { max-height: 150px; width: auto; max-width: 80%; object-fit: contain; }
.showcase-tier { position: absolute; top: 14px; left: 14px; background: var(--navy); color: #fff; font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: .38rem .72rem; border-radius: 6px; }
.showcase-body { padding: 26px 28px 28px; display: flex; flex-direction: column; flex: 1; }
.showcase-body h3 { font-size: 1.28rem; }
.showcase-specs { display: flex; flex-wrap: wrap; gap: 8px; margin: .9rem 0 1rem; }
.showcase-specs span { background: var(--off-white); border: 1px solid var(--line); color: var(--navy); font-size: .8rem; font-weight: 700; padding: .32rem .68rem; border-radius: 999px; }
.showcase-body > p { font-size: .97rem; flex: 1; }
.showcase-result { margin-top: 1.1rem; background: #F0FAF4; border: 1px solid #CDEBD8; border-radius: 10px; padding: .85rem 1rem; font-size: .92rem; color: #14532D; display: flex; gap: .6rem; align-items: flex-start; font-weight: 600; line-height: 1.5; }
.showcase-result svg { flex: none; width: 18px; height: 18px; stroke: #16A34A; stroke-width: 2.5; fill: none; margin-top: 2px; }
.showcase-result small { display: block; font-weight: 500; color: #3D6B4F; margin-top: .25rem; font-size: .82rem; }
.showcase-actions { margin-top: 1.4rem; }
.showcase-actions .btn { width: 100%; }
@media (max-width: 860px) { .showcase-grid { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; } }

/* --- 4-up pricing grid ----------------------------------------------------- */
.price-grid--4 { grid-template-columns: repeat(4, 1fr); gap: 22px; }
.price-grid--4 .price-card { padding: 30px 24px; }
.price-card { transition: transform .2s ease, box-shadow .2s ease; }
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
@media (max-width: 1120px) { .price-grid--4 { grid-template-columns: repeat(2, 1fr); max-width: 940px; margin-inline: auto; } }
@media (max-width: 640px) { .price-grid--4 { grid-template-columns: 1fr; max-width: 460px; } }

/* --- Package comparison table ---------------------------------------------- */
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.table-scroll .price-table { min-width: 600px; }
.compare-table th:not(:first-child), .compare-table td:not(:first-child) { text-align: center; }
.compare-table td:last-child { white-space: normal; font-weight: 600; color: var(--mid-text); }
.compare-table td.yes { color: #16A34A; font-weight: 800; }
.compare-table td.no { color: #A9B6CF; font-weight: 700; }

/* --- Navy section readability (checklist + strong text) ------------------- */
.bg-navy strong { color: #fff; }
.bg-navy .checklist li span.body { color: #C6D4EE; }
