/* ==========================================================================
   Zucker & Zucker — Modern, Mobile-Ready, SEO-Optimized Homepage Mockup
   Color scheme built around the existing teal/turquoise prism logo
   No icons used anywhere
   ========================================================================== */

:root {
  --navy:   #0a1f2e;   /* deep navy background */
  --ink:    #112d40;   /* slightly lighter navy for cards */
  --teal:   #18c5c5;   /* primary teal accent (matches logo) */
  --teal-d: #0e9a9a;   /* darker teal for hover/depth */
  --cyan:   #5ef0e8;   /* light cyan highlight */
  --sand:   #f4f7f6;   /* off-white section bg */
  --paper:  #ffffff;   /* cards */
  --slate:  #3b5563;   /* body text on light */
  --mist:   #7a8c97;   /* muted text */
  --line:   #e2e8ea;   /* hairline borders */
  --gold:   #f0b440;   /* warm accent for stats/numbers */
  --radius: 14px;
  --shadow: 0 10px 30px rgba(10,31,46,.08);
  --shadow-lg: 0 24px 60px rgba(10,31,46,.16);
  --maxw: 1200px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, Roboto, Helvetica, Arial, sans-serif;
  color: var(--slate);
  line-height: 1.65;
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-weight: 800;
  line-height: 1.15;
  color: var(--navy);
  letter-spacing: -.02em;
}

p { color: var(--slate); }

a { color: var(--teal-d); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--teal); }

img { max-width: 100%; height: auto; display: block; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---------- Accessibility skip link ---------- */
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--navy); color: #fff; padding: 12px 20px; z-index: 2000;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Top utility bar ---------- */
.utility-bar {
  background: var(--navy);
  color: #cfe6e6;
  font-size: 13px;
  border-bottom: 1px solid rgba(24,197,197,.25);
}
.utility-bar .container {
  display: flex; justify-content: space-between; align-items: center;
  height: 40px; gap: 16px;
}
.utility-bar a { color: #cfe6e6; }
.utility-bar a:hover { color: var(--cyan); }
.utility-bar .regions { display: flex; gap: 18px; flex-wrap: wrap; }
.utility-bar .phone { font-weight: 700; color: var(--cyan); letter-spacing: .02em; }

@media (max-width: 720px){
  .utility-bar .regions { display: none; }
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: #07151f;
  border-bottom: 1px solid rgba(24,197,197,.18);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 78px; gap: 24px;
}
.brand { display: flex; align-items: center; flex-shrink: 0; }
.brand img { height: 46px; width: auto; filter: drop-shadow(0 2px 10px rgba(0,0,0,.4)); }

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  color: #cfe0e0; font-weight: 600; font-size: 15px;
  padding: 10px 14px; border-radius: 8px; position: relative;
  transition: color .2s var(--ease), background .2s var(--ease);
}
.main-nav a:hover { color: #fff; background: rgba(24,197,197,.12); }

/* ---- Services dropdown ---- */
.nav-dropdown { position: relative; }
.nav-dropdown > .nav-drop-toggle {
  color: #cfe0e0; font-weight: 600; font-size: 15px;
  padding: 10px 14px; border-radius: 8px; cursor: pointer;
  display: inline-flex; align-items: center; gap: 6px;
  background: none; border: none; font-family: inherit;
  transition: color .2s var(--ease), background .2s var(--ease);
}
.nav-dropdown > .nav-drop-toggle:hover { color: #fff; background: rgba(24,197,197,.12); }
.nav-drop-toggle .caret {
  display: inline-block; width: 0; height: 0;
  border-left: 5px solid transparent; border-right: 5px solid transparent;
  border-top: 5px solid currentColor; transition: transform .25s var(--ease);
}
.nav-dropdown:hover .caret,
.nav-dropdown.open .caret { transform: rotate(180deg); }

.nav-drop-menu {
  position: absolute; top: 100%; left: 0;
  min-width: 280px; background: #0a1f2e;
  border: 1px solid rgba(24,197,197,.2); border-radius: 12px;
  box-shadow: 0 18px 40px rgba(0,0,0,.45);
  padding: 8px; display: flex; flex-direction: column; gap: 2px;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .22s var(--ease), transform .22s var(--ease), visibility .22s;
  z-index: 1000;
}
.nav-dropdown:hover .nav-drop-menu,
.nav-dropdown.open .nav-drop-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-drop-menu a {
  padding: 10px 14px; border-radius: 8px; font-size: 14px; font-weight: 500;
  color: #b8cccc; white-space: nowrap;
  border-bottom: none !important;
}
.nav-drop-menu a:hover { color: #fff; background: rgba(24,197,197,.14); }
.nav-drop-menu .drop-sep { height: 1px; background: rgba(24,197,197,.15); margin: 4px 8px; }

.nav-cta {
  background: var(--teal); color: #04222a !important; font-weight: 700;
  padding: 12px 22px !important; border-radius: 999px;
  box-shadow: 0 6px 18px rgba(24,197,197,.35);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.nav-cta:hover { transform: translateY(-2px); color:#04222a !important; background: var(--cyan); box-shadow: 0 10px 24px rgba(24,197,197,.5); }

.nav-toggle { display: none; }

@media (max-width: 980px){
  .main-nav {
    position: fixed; inset: 78px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #07151f; padding: 12px 24px 24px;
    border-bottom: 1px solid rgba(24,197,197,.18);
    box-shadow: var(--shadow-lg);
    transform: translateY(-120%); transition: transform .35s var(--ease);
    max-height: calc(100vh - 78px); overflow-y: auto;
  }
  .main-nav.open { transform: translateY(0); }
  .main-nav a { padding: 14px 8px; border-radius: 8px; border-bottom: 1px solid rgba(255,255,255,.07); color: #cfe0e0; }
  .main-nav a:hover { color: #fff; background: rgba(24,197,197,.1); }
  .main-nav a:last-child { border-bottom: none; }
  .nav-cta { margin-top: 10px; text-align: center; border-bottom: none !important; }

  /* Mobile dropdown: expand inline instead of absolute */
  .nav-dropdown { width: 100%; }
  .nav-dropdown > .nav-drop-toggle {
    width: 100%; justify-content: space-between; padding: 14px 8px;
    border-radius: 8px; border-bottom: 1px solid rgba(255,255,255,.07);
    color: #cfe0e0; font-size: 15px;
  }
  .nav-dropdown > .nav-drop-toggle:hover { background: rgba(24,197,197,.1); }
  .nav-drop-menu {
    position: static; opacity: 1; visibility: visible; transform: none;
    min-width: 0; background: rgba(0,0,0,.25); border: none; border-radius: 0;
    box-shadow: none; padding: 4px 0 4px 16px;
    max-height: 0; overflow: hidden; transition: max-height .3s var(--ease);
  }
  .nav-dropdown.open .nav-drop-menu { max-height: 600px; }
  .nav-drop-menu a { padding: 10px 10px; font-size: 14px; border-bottom: 1px solid rgba(255,255,255,.05) !important; }
  .nav-drop-menu .drop-sep { display: none; }

  .nav-toggle {
    display: inline-flex; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 8px;
  }
  .nav-toggle span {
    width: 28px; height: 3px; background: #ffffff; border-radius: 2px;
    transition: .3s var(--ease);
  }
  .nav-toggle.open span:nth-child(1){ transform: translateY(8px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2){ opacity: 0; }
  .nav-toggle.open span:nth-child(3){ transform: translateY(-8px) rotate(-45deg); }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  color: #eaf6f6;
  padding: 110px 0 130px;
  overflow: hidden;
  background-color: #0a1f2e;
  background-image: url("assets/hero-bg.png");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}
/* Layered overlay: darkens left for headline legibility, fades to transparent on right */
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background:
    linear-gradient(100deg, rgba(7,21,31,.94) 0%, rgba(7,21,31,.82) 35%, rgba(7,21,31,.45) 60%, rgba(7,21,31,.2) 100%),
    radial-gradient(900px 500px at 85% 20%, rgba(24,197,197,.22), transparent 65%);
  pointer-events: none;
}
.hero::after {
  content: ""; position: absolute; inset: auto 0 0 0; height: 140px; z-index: 0;
  background: linear-gradient(to bottom, transparent, var(--paper));
  pointer-events: none;
}
.hero .container { position: relative; z-index: 2; }
.hero .container {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center;
}
.hero-eyebrow {
  display: inline-block; font-size: 13px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--cyan);
  padding: 8px 16px; border: 1px solid rgba(94,240,232,.35);
  border-radius: 999px; margin-bottom: 24px;
}
.hero h1 {
  color: #fff; font-size: clamp(2.2rem, 5.2vw, 3.6rem); margin-bottom: 18px;
  text-shadow: 0 2px 30px rgba(0,0,0,.35);
}
.hero h1 .accent { color: var(--teal); }
.hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.2rem); color: #d8eaea; max-width: 560px;
  margin-bottom: 28px; font-weight: 500;
}
.hero-cta-row { display: flex; gap: 16px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 700; font-size: 16px; padding: 15px 30px; border-radius: 999px;
  border: 2px solid transparent; cursor: pointer; transition: all .25s var(--ease);
  text-align: center;
}
.btn-primary { background: var(--teal); color: #04222a; box-shadow: 0 10px 28px rgba(24,197,197,.4); }
.btn-primary:hover { transform: translateY(-3px); background: var(--cyan); color: #04222a; box-shadow: 0 16px 36px rgba(24,197,197,.55); }
.btn-ghost { background: transparent; color: #eaf6f6; border-color: rgba(234,246,246,.4); }
.btn-ghost:hover { border-color: var(--teal); color: var(--cyan); transform: translateY(-3px); }

.hero-trust { display: flex; gap: 28px; margin-top: 38px; flex-wrap: wrap; }
.hero-trust .item b { display:block; font-size: 1.7rem; color: var(--cyan); font-weight: 800; }
.hero-trust .item span { font-size: 13px; color: #9fc0c0; text-transform: uppercase; letter-spacing: .08em; }

/* ---- Hero lead-capture form (funnel) ---- */
.lead-form-card {
  background: rgba(255,255,255,.97); border-radius: 18px; padding: 28px 26px 26px;
  box-shadow: 0 24px 60px rgba(0,0,0,.45); border: 1px solid rgba(94,240,232,.25);
  color: var(--navy);
}
.lead-form-card .lf-head { text-align:center; margin-bottom: 18px; }
.lead-form-card .lf-head .tag {
  display:inline-block; background: var(--navy); color: var(--cyan); font-size: 11px;
  font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 999px; margin-bottom: 10px;
}
.lead-form-card .lf-head h3 { font-size: 1.35rem; color: var(--navy); }
.lead-form-card .lf-head p { color: var(--mist); font-size: 13.5px; margin-top: 4px; }
.lead-form-card .lf-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.lead-form-card .lf-field { margin-bottom: 12px; }
.lead-form-card .lf-field.full { grid-column: 1 / -1; }
.lead-form-card label { display:block; font-weight: 600; color: var(--navy); font-size: 12.5px; margin-bottom: 5px; }
.lead-form-card input, .lead-form-card select {
  width: 100%; padding: 11px 13px; border: 1px solid var(--line); border-radius: 9px;
  font-size: 14.5px; font-family: inherit; color: var(--navy); background: #fff;
  transition: border-color .2s, box-shadow .2s;
}
.lead-form-card input:focus, .lead-form-card select:focus {
  outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(24,197,197,.16);
}
.lead-form-card .btn { width: 100%; margin-top: 4px; }
.lead-form-card .lf-note { text-align:center; font-size: 11.5px; color: var(--mist); margin-top: 12px; }
.lead-form-card .lf-note b { color: var(--teal-d); }

@media (max-width: 900px){
  .hero .container { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; }
}

/* ---------- Section base ---------- */
section { padding: 84px 0; }
.section-head { max-width: 720px; margin: 0 auto 52px; text-align: center; }
.section-head .eyebrow {
  font-size: 13px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--teal-d); margin-bottom: 12px; display: inline-block;
}
.section-head h2 { font-size: clamp(1.7rem, 3.5vw, 2.5rem); margin-bottom: 16px; }
.section-head p { color: var(--mist); font-size: 1.08rem; }

/* ---------- Funnel: benefits band ---------- */
.benefits { background: var(--paper); }
.benefits-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.benefit-card {
  background: var(--sand); border-radius: var(--radius); padding: 30px 26px;
  border: 1px solid var(--line); border-top: 4px solid var(--teal);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.benefit-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.benefit-card h3 { font-size: 1.18rem; margin-bottom: 10px; color: var(--navy); }
.benefit-card p { font-size: .96rem; color: var(--slate); }
.benefits-cta { text-align:center; margin-top: 44px; }
@media (max-width: 900px){ .benefits-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px){ .benefits-grid { grid-template-columns: 1fr; } }

/* ---------- Funnel: final conversion section ---------- */
.convert { background: linear-gradient(135deg, #081a26, #0e2738); color: #eaf6f6; position: relative; overflow:hidden; }
.convert::before {
  content:""; position:absolute; inset:0;
  background: radial-gradient(800px 500px at 80% 20%, rgba(24,197,197,.18), transparent 60%);
}
.convert .container { position:relative; z-index:1; }
.convert .section-head h2 { color: #fff; }
.convert .section-head p { color: #bcd6d6; }
.convert .section-head .eyebrow { color: var(--cyan); }
.convert-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.convert-points h3 { color:#fff; font-size:1.4rem; margin-bottom:18px; }
.convert-points ul { list-style:none; display:grid; gap:16px; }
.convert-points li { display:flex; gap:14px; align-items:flex-start; color:#d8eaea; }
.convert-points li b { color: var(--cyan); flex-shrink:0; font-size:1.3rem; line-height:1.2; }
.convert-points li span b { color:#fff; display:inline; }
.convert-form {
  background: rgba(255,255,255,.97); border-radius: var(--radius); padding: 34px;
  box-shadow: var(--shadow-lg); color: var(--navy);
}
.convert-form .cf-head { margin-bottom: 20px; text-align:center; }
.convert-form .cf-head .tag {
  display:inline-block; background: var(--navy); color: var(--cyan); font-size: 11px;
  font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 999px; margin-bottom: 10px;
}
.convert-form .cf-head h3 { font-size: 1.4rem; }
.convert-form .cf-head p { color: var(--mist); font-size: 13.5px; margin-top:4px; }
.convert-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.convert-form .form-field { margin-bottom: 14px; }
.convert-form .form-field label { display:block; font-weight: 600; color: var(--navy); font-size: 13px; margin-bottom: 5px; }
.convert-form .form-field input, .convert-form .form-field select, .convert-form .form-field textarea {
  width: 100%; padding: 11px 13px; border: 1px solid var(--line); border-radius: 9px;
  font-size: 14.5px; font-family: inherit; color: var(--navy); background: #fff; transition: border-color .2s, box-shadow .2s;
}
.convert-form .form-field input:focus, .convert-form .form-field select:focus, .convert-form .form-field textarea:focus {
  outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(24,197,197,.16);
}
.convert-form .form-field textarea { min-height: 90px; resize: vertical; }
.convert-form .btn { width: 100%; }
.convert-form .cf-note { text-align:center; font-size: 11.5px; color: var(--mist); margin-top: 12px; }
.convert-form .cf-note b { color: var(--teal-d); }
@media (max-width: 900px){ .convert-grid { grid-template-columns: 1fr; } .convert-form .form-row { grid-template-columns: 1fr; } }

/* ---------- Intro / Welcome ---------- */
.intro { background: var(--paper); }
.intro-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 56px; align-items: start; }
.intro h2 { font-size: clamp(1.8rem, 3.5vw, 2.4rem); margin-bottom: 20px; }
.intro p { margin-bottom: 18px; font-size: 1.06rem; }
.intro .lead-para { font-size: 1.18rem; color: var(--navy); font-weight: 600; }
.intro-aside {
  background: var(--sand); border-radius: var(--radius); padding: 30px;
  border-left: 5px solid var(--teal);
}
.intro-aside h3 { font-size: 1.2rem; margin-bottom: 14px; }
.intro-aside ul { list-style: none; display: grid; gap: 12px; }
.intro-aside li { padding-left: 18px; position: relative; color: var(--slate); }
.intro-aside li::before { content:""; position:absolute; left:0; top:9px; width:8px; height:8px; background:var(--teal); border-radius:50%; }
@media (max-width: 900px){ .intro-grid { grid-template-columns: 1fr; } }

/* ---------- About ---------- */
.about { background: var(--sand); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-grid .media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4/3; background: var(--ink); }
.about-grid .media img { width:100%; height:100%; object-fit: cover; }
.about-text h2 { margin-bottom: 20px; }
.about-text p { margin-bottom: 18px; }
.about-pillars { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 28px; }
.pillar { background: var(--paper); border-radius: 12px; padding: 20px; border: 1px solid var(--line); }
.pillar b { display:block; color: var(--teal-d); font-size: 1.1rem; margin-bottom: 6px; }
.pillar span { color: var(--mist); font-size: 14px; }
@media (max-width: 900px){ .about-grid, .about-pillars { grid-template-columns: 1fr; } }

/* ---------- Services ---------- */
.services { background: var(--paper); }
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.service-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 28px; transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s;
  position: relative; overflow: hidden;
}
.service-card::before {
  content:""; position:absolute; left:0; top:0; height:4px; width:100%;
  background: linear-gradient(90deg, var(--teal), var(--cyan)); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-card .tag { font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--teal-d); }
.service-card h3 { font-size: 1.3rem; margin: 10px 0 12px; }
.service-card p { font-size: .98rem; color: var(--slate); margin-bottom: 16px; }
.service-card a.more { font-weight: 700; font-size: 14px; color: var(--teal-d); }
.service-card a.more:hover { color: var(--teal); }
@media (max-width: 900px){ .services-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px){ .services-grid { grid-template-columns: 1fr; } }

/* ---------- Stats ---------- */
.stats { background: var(--navy); color: #eaf6f6; position: relative; }
.stats .container { position: relative; z-index: 1; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.stat { text-align: center; padding: 20px; }
.stat b { display:block; font-size: clamp(2.2rem, 5vw, 3rem); font-weight: 800; color: var(--cyan); line-height:1; }
.stat b .unit { color: var(--gold); }
.stat span { display:block; margin-top: 10px; color: #9fc0c0; text-transform: uppercase; letter-spacing: .08em; font-size: 13px; }
.stats-note { text-align:center; margin-top: 40px; color: #9fc0c0; font-size: 1.02rem; }
@media (max-width: 700px){ .stats-grid { grid-template-columns: repeat(2,1fr); } }

/* ---------- Process (SEO-friendly) ---------- */
.process { background: var(--sand); }
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.step { background: var(--paper); border-radius: var(--radius); padding: 28px 24px; border:1px solid var(--line); position:relative; }
.step .num { font-size: 2.4rem; font-weight: 800; color: var(--teal); opacity:.25; line-height:1; margin-bottom: 8px; }
.step h3 { font-size: 1.15rem; margin-bottom: 10px; }
.step p { font-size: .95rem; color: var(--slate); }
@media (max-width: 900px){ .process-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px){ .process-grid { grid-template-columns: 1fr; } }

/* ---------- Testimonials ---------- */
.testimonials { background: var(--paper); }
.quotes-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.quote-card {
  background: var(--sand); border-radius: var(--radius); padding: 32px 28px;
  border-top: 4px solid var(--teal); position: relative;
}
.quote-card .mark { font-size: 3rem; color: var(--teal); opacity:.35; line-height:.6; font-family: Georgia, serif; }
.quote-card blockquote { font-size: 1.02rem; color: var(--navy); margin: 8px 0 18px; font-weight: 500; }
.quote-card .cite { font-size: 13px; color: var(--mist); border-top:1px solid var(--line); padding-top:14px; }
.quote-card .cite b { display:block; color: var(--teal-d); }
@media (max-width: 900px){ .quotes-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; } }

/* ---------- Portfolio ---------- */
.portfolio { background: var(--sand); }
.portfolio-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.work {
  border-radius: var(--radius); overflow: hidden; background: var(--paper);
  box-shadow: var(--shadow); position: relative; aspect-ratio: 16/11; cursor:pointer;
}
.work img { width:100%; height:100%; object-fit: cover; transition: transform .5s var(--ease); }
.work:hover img { transform: scale(1.06); }
.work .overlay {
  position: absolute; inset: 0; background: linear-gradient(to top, rgba(8,26,38,.92), rgba(8,26,38,.1) 60%, transparent);
  display:flex; flex-direction:column; justify-content: flex-end; padding: 22px;
  opacity: 0; transition: opacity .3s var(--ease);
}
.work:hover .overlay { opacity: 1; }
.work .overlay h3 { color: #fff; font-size: 1.15rem; }
.work .overlay span { color: var(--cyan); font-size: 13px; }
.portfolio-foot { text-align:center; margin-top: 44px; }
@media (max-width: 900px){ .portfolio-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px){ .portfolio-grid { grid-template-columns: 1fr; } }

/* ---------- Quote CTA ---------- */
.quote-cta { background: linear-gradient(135deg, var(--teal-d), var(--teal)); color: #04222a; }
.quote-cta .section-head h2 { color: #04222a; }
.quote-cta .section-head p { color: rgba(4,34,42,.8); }
.quote-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.qcard {
  background: rgba(255,255,255,.92); border-radius: var(--radius); padding: 34px 28px;
  text-align:center; transition: transform .25s var(--ease); color: var(--navy);
}
.qcard:hover { transform: translateY(-6px); }
.qcard h3 { font-size: 1.35rem; margin-bottom: 8px; }
.qcard p { color: var(--mist); margin-bottom: 20px; }
.qcard .btn { width: 100%; }
@media (max-width: 900px){ .quote-cards { grid-template-columns: 1fr; max-width: 480px; margin:0 auto; } }

/* ---------- FAQ (SEO gold) ---------- */
.faq { background: var(--paper); }
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border: 1px solid var(--line); border-radius: 12px; margin-bottom: 14px; overflow: hidden; background: var(--paper); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 20px 24px; font-weight: 700; color: var(--navy);
  font-size: 1.05rem; display:flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .chev { color: var(--teal-d); font-weight: 800; transition: transform .25s; }
.faq-item[open] summary .chev { transform: rotate(45deg); }
.faq-item .answer { padding: 0 24px 22px; color: var(--slate); }
.faq-item[open] { border-color: var(--teal); box-shadow: var(--shadow); }

/* ---------- Contact ---------- */
.contact { background: var(--sand); }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 48px; align-items: start; }
.contact-trust { width:100%; }
.trust-card {
  background: var(--paper); border-radius: var(--radius); padding: 34px;
  box-shadow: var(--shadow); border: 1px solid var(--line); border-top: 4px solid var(--teal);
}
.trust-card h3 { font-size: 1.35rem; margin-bottom: 18px; }
.trust-card ul { list-style:none; display:grid; gap:14px; }
.trust-card li { padding-left: 18px; position: relative; color: var(--slate); }
.trust-card li::before { content:""; position:absolute; left:0; top:9px; width:8px; height:8px; background:var(--teal); border-radius:50%; }
.trust-card li b { color: var(--navy); }
.contact-info h2 { margin-bottom: 16px; }
.contact-info p { margin-bottom: 14px; }
.contact-info .row { display:flex; gap:14px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.contact-info .row b { color: var(--navy); min-width: 110px; }
.contact-info .row span, .contact-info .row a { color: var(--slate); }
.regions-card { margin-top: 24px; background: var(--paper); border-radius: 12px; padding: 22px; border:1px solid var(--line); }
.regions-card h3 { font-size: 1.1rem; margin-bottom: 12px; }
.regions-card ul { list-style:none; display:grid; gap:10px; }
.regions-card li { display:flex; justify-content: space-between; gap:12px; font-size: 14px; }
.regions-card li a { font-weight: 600; }

.contact-form {
  background: var(--paper); border-radius: var(--radius); padding: 34px;
  box-shadow: var(--shadow); border: 1px solid var(--line);
}
.contact-form h3 { margin-bottom: 6px; }
.contact-form .sub { color: var(--mist); margin-bottom: 24px; font-size: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { margin-bottom: 16px; }
.form-field label { display:block; font-weight: 600; color: var(--navy); font-size: 14px; margin-bottom: 6px; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: 10px;
  font-size: 15px; font-family: inherit; color: var(--navy); background: #fff; transition: border-color .2s, box-shadow .2s;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--teal); box-shadow: 0 0 0 4px rgba(24,197,197,.15);
}
.form-field textarea { min-height: 120px; resize: vertical; }
.contact-form .btn { width: 100%; margin-top: 8px; }
@media (max-width: 900px){ .contact-grid { grid-template-columns: 1fr; } .form-row { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */
.site-footer { background: #07151f; color: #9fc0c0; padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; }
.footer-col h4 { color: #fff; font-size: 1rem; margin-bottom: 18px; letter-spacing:.04em; }
.footer-col ul { list-style: none; display: grid; gap: 10px; }
.footer-col a { color: #9fc0c0; font-size: 14px; }
.footer-col a:hover { color: var(--cyan); }
.footer-brand img { height: 44px; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; max-width: 320px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08); padding: 22px 0;
  display:flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13px;
}
.footer-bottom .seo-block { color: #6f9090; font-size: 12.5px; max-width: 760px; line-height: 1.7; }
@media (max-width: 900px){ .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .footer-grid { grid-template-columns: 1fr; } }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce){
  .reveal { opacity:1; transform:none; transition:none; }
  html { scroll-behavior: auto; }
}

/* ==========================================================================
   INTERIOR PAGES (services / about / faq / portfolio / quote)
   ========================================================================== */

/* ---- Page hero (smaller than home hero) ---- */
.page-hero {
  position: relative; color: #eaf6f6; padding: 70px 0 60px; overflow: hidden;
  background-color: #0a1f2e;
  background-image: linear-gradient(120deg, rgba(7,21,31,.92), rgba(10,31,46,.7)), url("assets/hero-bg.png");
  background-size: cover; background-position: center right;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; font-size: clamp(1.9rem, 4vw, 2.8rem); margin-bottom: 12px; }
.page-hero p { color: #cfe0e0; font-size: 1.08rem; max-width: 680px; }

/* ---- Breadcrumbs ---- */
.crumbs { font-size: 13px; color: #9fc0c0; margin-bottom: 18px; }
.crumbs a { color: var(--cyan); }
.crumbs span { opacity: .5; margin: 0 8px; }

/* ---- Service page hero image ---- */
.svc-hero-img {
  width: 100%; max-height: 340px; object-fit: cover;
  display: block; border-radius: 0 0 18px 18px;
  box-shadow: 0 12px 32px rgba(0,0,0,.25);
}
.svc-hero-wrap { position: relative; }
.svc-hero-wrap::after {
  content: ""; position: absolute; bottom: 0; left: 0; right: 0; height: 80px;
  background: linear-gradient(to bottom, transparent, var(--paper));
  pointer-events: none; z-index: 2; border-radius: 0 0 18px 18px;
}

/* ---- Homepage full-width banner ---- */
.home-banner {
  position: relative; width: 100%; overflow: hidden;
  margin-top: -1px;
}
.home-banner img {
  width: 100%; height: 420px; object-fit: cover; display: block;
}
.home-banner::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(7,21,31,.78) 0%, rgba(10,31,46,.45) 50%, rgba(7,21,31,.72) 100%);
  pointer-events: none;
}
.home-banner .banner-overlay {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  text-align: center; padding: 0 24px;
}
.home-banner .banner-overlay h2 {
  color: #fff; font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 800; max-width: 800px; line-height: 1.25;
  text-shadow: 0 2px 20px rgba(0,0,0,.4);
}
.home-banner .banner-overlay h2 .hl { color: var(--cyan); }
.home-banner .banner-overlay p {
  color: #d4ecec; font-size: 1.1rem; margin-top: 14px; max-width: 620px;
  text-shadow: 0 1px 10px rgba(0,0,0,.3);
}
.home-banner .banner-eyebrow {
  color: var(--cyan); font-size: .8rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; margin-bottom: 12px; text-shadow: 0 1px 10px rgba(0,0,0,.5);
}
.home-banner .banner-overlay .btn { margin-top: 24px; }
.home-banner .banner-overlay .banner-cta {
  margin-top: 22px; display: flex; gap: 14px; flex-wrap: wrap; justify-content: center;
}
@media (max-width: 700px) {
  .home-banner img { height: 300px; }
}

/* ---- Page layout: content + sidebar lead form ---- */
.page-body { padding: 72px 0; background: var(--paper); }
.page-body .container { display: grid; grid-template-columns: 1.5fr 1fr; gap: 48px; align-items: start; }
.page-content h2 { font-size: 1.6rem; margin: 30px 0 14px; }
.page-content h2:first-child { margin-top: 0; }
.page-content p { margin-bottom: 18px; font-size: 1.05rem; }
.page-content ul.feat { list-style: none; display: grid; gap: 12px; margin: 18px 0 24px; }
.page-content ul.feat li { padding-left: 22px; position: relative; color: var(--slate); }
.page-content ul.feat li::before { content:""; position:absolute; left:0; top:10px; width:9px; height:9px; background:var(--teal); border-radius:50%; }

/* ---- Sidebar sticky lead form ---- */
.page-aside { position: sticky; top: 100px; }
.aside-card {
  background: linear-gradient(160deg, #081a26, #0e2738); color:#eaf6f6;
  border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-lg);
  border: 1px solid rgba(24,197,197,.2);
}
.aside-card .tag { display:inline-block; background: var(--teal); color:#04222a; font-size:11px; font-weight:700; letter-spacing:.12em; text-transform:uppercase; padding:5px 12px; border-radius:999px; margin-bottom:12px; }
.aside-card h3 { color:#fff; font-size:1.3rem; margin-bottom:8px; }
.aside-card p { color:#bcd6d6; font-size:14px; margin-bottom:18px; }
.aside-card .lf-field { margin-bottom: 12px; }
.aside-card label { display:block; font-weight:600; color:#cfe0e0; font-size:12.5px; margin-bottom:5px; }
.aside-card input, .aside-card select, .aside-card textarea {
  width:100%; padding:11px 13px; border:1px solid rgba(94,240,232,.25); border-radius:9px;
  font-size:14.5px; font-family:inherit; color:#fff; background:rgba(255,255,255,.06); transition:border-color .2s, box-shadow .2s;
}
.aside-card input::placeholder, .aside-card textarea::placeholder { color:#7fa0a0; }
.aside-card input:focus, .aside-card select:focus, .aside-card textarea:focus { outline:none; border-color:var(--teal); box-shadow:0 0 0 3px rgba(24,197,197,.18); }
.aside-card .btn { width:100%; }
.aside-card .lf-note { text-align:center; font-size:11.5px; color:#9fc0c0; margin-top:12px; }
.aside-card .quick { margin-top:18px; padding-top:18px; border-top:1px solid rgba(94,240,232,.18); font-size:14px; color:#bcd6d6; }
.aside-card .quick b { color:var(--cyan); }
.aside-card .quick a { color:#fff; font-weight:700; }

@media (max-width: 900px){
  .page-body .container { grid-template-columns: 1fr; }
  .page-aside { position: static; }
}

/* ---- Pricing table (hosting) ---- */
.price-wrap { overflow-x:auto; }
table.price { width:100%; border-collapse: collapse; background:#fff; border-radius: var(--radius); overflow:hidden; box-shadow: var(--shadow); min-width:680px; }
table.price th, table.price td { padding: 13px 16px; text-align:center; border-bottom:1px solid var(--line); font-size:14px; }
table.price thead th { background: var(--navy); color:#fff; font-weight:700; }
table.price thead th.featured { background: var(--teal); color:#04222a; }
table.price td:first-child, table.price th:first-child { text-align:left; font-weight:600; color:var(--navy); background: var(--sand); }
table.price td.yes { color: var(--teal-d); font-weight:700; }
table.price tr.price-row td { font-weight:800; font-size:1.05rem; color:var(--navy); background: rgba(24,197,197,.06); }
table.price tr.price-row td.featured { color: var(--teal-d); }

/* ---- Feature columns (hosting features) ---- */
.feat-cols { display:grid; grid-template-columns: repeat(2,1fr); gap:18px; margin-top:24px; }
.feat-box { background:var(--sand); border-radius:12px; padding:22px; border:1px solid var(--line); border-top:3px solid var(--teal); }
.feat-box h3 { font-size:1.05rem; margin-bottom:10px; }
.feat-box ul { list-style:none; display:grid; gap:8px; font-size:14px; color:var(--slate); }
@media (max-width:600px){ .feat-cols { grid-template-columns:1fr; } }

/* ---- FAQ accordion (interior) ---- */
.faq-cat { margin-bottom: 30px; }
.faq-cat h2 { font-size:1.3rem; color:var(--navy); margin-bottom:14px; border-bottom:2px solid var(--teal); padding-bottom:8px; }

/* ---- Portfolio grid (interior, larger) ---- */
.port-full { padding: 72px 0; background: var(--paper); }
.port-full-grid { display:grid; grid-template-columns: repeat(4,1fr); gap:18px; }
@media (max-width:900px){ .port-full-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width:560px){ .port-full-grid { grid-template-columns: 1fr; } }

/* Full-width page body (no sidebar) */
.page-body-full { padding: 72px 0; background: var(--paper); }
.page-body-full .container { max-width: 820px; }
.page-body-full h2 { font-size: 1.6rem; margin: 30px 0 14px; }
.page-body-full h2:first-child { margin-top: 0; }
.page-body-full p { margin-bottom: 18px; font-size: 1.05rem; }
.page-body-full ul { margin: 14px 0 24px 20px; }
.page-body-full ul li { margin-bottom: 8px; font-size: 1.05rem; color: var(--slate); }

/* ---- Quote page lead form (centered, wider) ---- */
.quote-page { padding: 72px 0; background: var(--sand); }
.quote-wrap { max-width: 720px; margin: 0 auto; background:#fff; border-radius:var(--radius); padding:40px; box-shadow:var(--shadow-lg); border:1px solid var(--line); }
.quote-wrap h1 { font-size:1.8rem; margin-bottom:6px; }
.quote-wrap .sub { color:var(--mist); margin-bottom:26px; }
.quote-steps { display:flex; gap:8px; margin-bottom:26px; }
.quote-steps .s { flex:1; height:6px; background:var(--line); border-radius:3px; }
.quote-steps .s.active { background:var(--teal); }
