/* =========================================================================
   Live Web Studios — Global Stylesheet
   livewebstudios.com | Est. 2004
   White / Minimal / Premium Build — April 2026
   ========================================================================= */

/* ----- THICCCBOI Self-Hosted ----- */
@font-face {
  font-family: 'THICCCBOI';
  src: url('../fonts/THICCCBOI-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'THICCCBOI';
  src: url('../fonts/THICCCBOI-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'THICCCBOI';
  src: url('../fonts/THICCCBOI-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'THICCCBOI';
  src: url('../fonts/THICCCBOI-ExtraBold.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

/* ----- DESIGN TOKENS ----- */
:root {
  /* Backgrounds */
  --bg:             #FFFFFF;
  --bg-soft:        #F9F9F9;
  --bg-card:        #FFFFFF;
  --bg-surface:     #f3fafd;
  --bg-alt:          #F4F5F7;

  /* Type */
  --text-head:      #1A1A1A;
  --text-body:      #4A4A4A;
  --text-muted:     #8A8A8A;

  /* Brand */
  --blue:           #0099CC;
  --blue-hover:     #007AA3;

  /* Borders & Shadows */
  --border:         #E0E0E0;
  --shadow-card:    0 2px 8px rgba(0,0,0,0.06), 0 8px 24px rgba(0,0,0,0.04);
  --shadow-hover:   0 4px 16px rgba(0,0,0,0.10), 0 16px 40px rgba(0,0,0,0.08);
  --shadow-nav:     0 1px 0 rgba(0,0,0,0.08), 0 4px 16px rgba(0,0,0,0.04);

  /* Typography */
  --font-heading:   'THICCCBOI', 'Plus Jakarta Sans', sans-serif;
  --font-body:      'Inter', system-ui, -apple-system, sans-serif;
  --text-h1:        clamp(2.5rem, 5vw, 4rem);
  --text-h2:        2.8rem;
  --text-h3:        1.2rem;
  --text-body-size: 1rem;

  /* Spacing */
  --space-xs:       0.5rem;
  --space-sm:       1rem;
  --space-md:       2rem;
  --space-lg:       4rem;
  --space-xl:       8rem;
  --space-section:  6rem;

  /* Layout */
  --max-width:      1200px;
  --radius:         10px;
  --radius-lg:      16px;
  --radius-pill:    100px;

  /* Timing */
  --ease:           cubic-bezier(0.22, 1, 0.36, 1);
}

/* =========================================================================
   RESET
   ========================================================================= */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: #EDF2FF;
  color: var(--text-body);
  font-family: var(--font-body);
  font-size: var(--text-body-size);
  font-weight: 400;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg, video { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; transition: color 0.18s ease; }
a:hover { color: var(--blue-hover); }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; font-size: 1rem; }
ul, ol { padding-left: 1.25rem; }

/* Focus */
:focus { outline: none; }
:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
  border-radius: 4px;
}

/* =========================================================================
   TYPOGRAPHY
   ========================================================================= */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  color: var(--text-head);
  line-height: 1.15;
  margin: 0 0 var(--space-sm);
  -webkit-font-smoothing: antialiased;
}
h1 { font-size: var(--text-h1); font-weight: 800; letter-spacing: -1.5px; line-height: 1.1; }
h2 { font-size: var(--text-h2); font-weight: 700; letter-spacing: -0.96px; line-height: 1.21; }
h3 { font-size: var(--text-h3); font-weight: 600; line-height: 1.67; }
h4 { font-size: 1.125rem; font-weight: 600; color: var(--text-head); }
p  { margin: 0 0 var(--space-sm); color: var(--text-body); line-height: 1.8; }

.label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: var(--space-xs);
}
.lead {
  font-size: 1.15rem;
  color: var(--text-body);
  max-width: 60ch;
  line-height: 1.8;
}
.text-muted { color: var(--text-muted); }

@media (max-width: 768px) {
  h2 { font-size: clamp(1.8rem, 5vw, 2.8rem); }
}

/* =========================================================================
   LAYOUT
   ========================================================================= */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}
.section { padding: var(--space-section) 0; position: relative; }
.section--soft { background: var(--bg-alt); }
.section--surface { background: var(--bg-surface); }

.grid { display: grid; gap: var(--space-md); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } .section { padding: var(--space-lg) 0; } }

.flex { display: flex; gap: var(--space-md); }
.flex-wrap { flex-wrap: wrap; }

/* =========================================================================
   BUTTONS
   ========================================================================= */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: var(--radius-pill);
  padding: 14px 28px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.2s ease;
  overflow: hidden;
}
.btn-primary:hover { background: var(--blue-hover); color: #fff; transform: translateY(-1px); }
.btn-primary .btn-arrow { display: inline-block; transition: transform 0.2s ease-out; }
.btn-primary:hover .btn-arrow { transform: translateX(5px); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text-head);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 13px 28px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.btn-secondary:hover { border-color: var(--blue); color: var(--blue); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-body);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.18s ease;
}
.link-arrow .arrow { display: inline-block; transition: transform 0.18s ease-out; }
.link-arrow:hover { color: var(--blue); }
.link-arrow:hover .arrow { transform: translateX(4px); }

/* =========================================================================
   NAV
   ========================================================================= */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: box-shadow 0.3s ease;
}
.site-nav.scrolled { box-shadow: var(--shadow-nav); }

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.9rem var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}
.nav-logo img { height: 52px; width: auto; }
.nav-links {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a,
.nav-links > li > a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--text-body);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: color 0.18s ease;
}
.nav-links a:hover,
.nav-links a.active { color: var(--blue); }

/* ── Dropdowns / Mega-menu ── */
.nav-item { position: relative; }

/* Invisible bridge fills the gap so mouse can travel to dropdown */
.nav-item::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -1rem;
  right: -1rem;
  height: 18px; /* matches gap below */
}

/* Chevron on items with dropdowns */
.nav-item > a::after {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  margin-left: 5px;
  vertical-align: middle;
  opacity: 0.55;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-item:hover > a::after,
.nav-item:focus-within > a::after {
  transform: rotate(-135deg) translateY(2px);
  opacity: 1;
  color: var(--blue);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 14px); left: -1rem;
  margin: 0; padding: 0;
  background: #fff;
  box-shadow: 0 4px 6px rgba(0,0,0,0.04), 0 12px 40px rgba(0,0,0,0.12);
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.07);
  opacity: 0;
  transform: translateY(-8px) scale(0.98);
  pointer-events: none;
  transition: opacity 0.2s ease-out, transform 0.2s ease-out;
  z-index: 200;
  overflow: hidden;
}
.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown,
.nav-item.is-focused .nav-dropdown {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

/* Services: 2-col grid */
.dropdown-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  padding: 10px;
  min-width: 480px;
}

/* Industries: 1-col list */
.dropdown-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px;
  min-width: 220px;
}

/* "View all" footer link inside dropdown */
.mega-footer {
  padding: 8px 12px 10px;
  border-top: 1px solid var(--border);
}
.mega-view-all {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
  text-transform: none;
  letter-spacing: 0;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.15s, gap 0.15s;
}
.mega-view-all:hover { color: var(--blue-hover); gap: 6px; }

/* Individual mega-menu item */
.nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 8px 10px;
  color: var(--text-head) !important;
  text-decoration: none !important;
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 1.25;
  border-radius: 8px;
  text-transform: none !important;
  letter-spacing: 0;
  white-space: nowrap;
  cursor: pointer;
  /* stagger in */
  opacity: 0;
  transform: translateY(-3px);
  transition: opacity 0.16s ease-out, transform 0.16s ease-out,
              color 0.14s ease, background 0.14s ease;
}
.nav-item:hover .nav-dropdown-item,
.nav-item:focus-within .nav-dropdown-item,
.nav-item.is-focused .nav-dropdown-item {
  opacity: 1; transform: translateY(0);
}
.nav-dropdown-item:hover {
  color: var(--blue) !important;
  background: rgba(0,153,204,0.05);
}
/* Stagger */
.nav-dropdown-item:nth-child(1)  { transition-delay: 0.02s; }
.nav-dropdown-item:nth-child(2)  { transition-delay: 0.04s; }
.nav-dropdown-item:nth-child(3)  { transition-delay: 0.06s; }
.nav-dropdown-item:nth-child(4)  { transition-delay: 0.08s; }
.nav-dropdown-item:nth-child(5)  { transition-delay: 0.10s; }
.nav-dropdown-item:nth-child(6)  { transition-delay: 0.12s; }
.nav-dropdown-item:nth-child(7)  { transition-delay: 0.14s; }
.nav-dropdown-item:nth-child(8)  { transition-delay: 0.16s; }
.nav-dropdown-item:nth-child(9)  { transition-delay: 0.18s; }
.nav-dropdown-item:nth-child(10) { transition-delay: 0.20s; }
.nav-dropdown-item:nth-child(11) { transition-delay: 0.22s; }
.nav-dropdown-item:nth-child(12) { transition-delay: 0.24s; }

/* Icon wrapper — Azuro-style colored square */
.nav-ico-wrap {
  width: 32px; height: 32px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,153,204,0.10);
  border-radius: 8px;
  color: var(--blue);
  transition: background 0.14s ease, color 0.14s ease;
}
.nav-dropdown-item:hover .nav-ico-wrap {
  background: rgba(0,153,204,0.18);
  color: var(--blue-hover);
}

.nav-cta { padding: 10px 22px; font-size: 0.8rem; }
/* Contact nav link — right-side emphasis */
.nav-contact-link {
  color: var(--blue) !important;
  font-weight: 600 !important;
}
.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  color: var(--text-head);
  font-size: 1.6rem;
  line-height: 1;
  padding: 0.25rem 0.5rem;
  cursor: pointer;
}

@media (max-width: 900px) { .nav-cta { display: none; } }
@media (max-width: 820px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed;
    top: 0; right: 0;
    width: min(85vw, 380px);
    height: 100vh;
    background: var(--bg);
    box-shadow: -8px 0 30px rgba(0,0,0,0.1);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 5rem var(--space-md) var(--space-md);
    transform: translateX(100%);
    transition: transform 0.35s var(--ease);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links li { width: 100%; border-bottom: 1px solid var(--border); }
  .nav-links a { padding: 1rem 0; display: block; font-size: 1rem; }
  .nav-dropdown {
    position: static; opacity: 1; transform: none;
    pointer-events: auto; background: transparent;
    box-shadow: none; border: none; border-radius: 0;
    padding: 0 0 0.5rem 0.5rem;
  }
  .nav-dropdown li { opacity: 1; transform: none; border: 0; }
  .nav-dropdown a  { font-size: 0.85rem; padding: 0.4rem 0; }
  .dropdown-grid   { grid-template-columns: 1fr; min-width: unset; padding: 4px 0; gap: 0; }
  .dropdown-list   { padding: 4px 0; gap: 0; min-width: unset; }
  .nav-dropdown-item { opacity: 1; transform: none; padding: 6px 8px; white-space: normal; }
  .nav-dropdown-item:nth-child(n) { transition-delay: 0s; }
  .mega-footer { display: none; }
  .nav-ico-wrap { width: 26px; height: 26px; border-radius: 6px; }
}

/* =========================================================================
   HERO
   ========================================================================= */
.hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 8rem var(--space-md) var(--space-xl);
  background: #EDF2FF;
  position: relative;
}
.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}
.hero--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--space-lg);
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  padding: 0 var(--space-md);
}
@media (max-width: 820px) {
  .hero--split { grid-template-columns: 1fr; }
  .hero { min-height: 72vh; }
}
.hero--compact { min-height: 50vh; padding-top: 7rem; }
.hero--centered { text-align: center; }
.hero--centered .hero-inner { max-width: 800px; margin: 0 auto; }

/* Hero animation classes */
.hero-headline,
.hero-subhead,
.hero-cta {
  opacity: 0;
  transform: translateY(28px);
  animation: heroReveal 0.65s var(--ease) forwards;
}
.hero-headline { animation-delay: 0.1s; }
.hero-subhead  { animation-delay: 0.28s; }
.hero-cta      { animation-delay: 0.46s; }

@keyframes heroReveal {
  to { opacity: 1; transform: translateY(0); }
}

/* Hero illustration float */
.hero-illustration { animation: floatY 4s ease-in-out infinite; }
/* Hero illustration image — natural size, no stretch */
.hero-illustration img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  border: 7px solid #ffffff;
  box-shadow: 0 8px 32px rgba(0,0,0,0.14);
  border-radius: var(--radius-lg);
  object-fit: contain;
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-16px); }
}

/* =========================================================================
   CARDS
   ========================================================================= */
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 2.5rem;
  position: relative;
  cursor: pointer;
  transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.2s ease-out;

  /* Animation 03 — initial hidden state */
  opacity: 0;
  transform: translateY(24px);
}
.feature-card.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease), box-shadow 0.3s ease, border-color 0.2s ease-out;
}
.feature-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
  border-color: var(--blue);
}
.feature-card h3 { margin-bottom: 0.75rem; }
.feature-card p { color: var(--text-muted); margin-bottom: 1rem; }
.feature-card .card-icon,
.card-icon {
  width: 32px; height: 32px;
  color: var(--blue);
  margin-bottom: var(--space-sm);
  flex-shrink: 0;
  transition: transform 0.2s ease-out;
}
.feature-card:hover .card-icon { transform: scale(1.1) rotate(-3deg); }
.badge-new {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  background: var(--blue);
  color: #fff;
  padding: 0.2rem 0.6rem;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
}

/* Stats */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  text-align: center;
  padding: var(--space-md) 0;
}
@media (max-width: 700px) { .stats-strip { grid-template-columns: repeat(2, 1fr); } }
.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--blue);
  display: block;
  line-height: 1;
}
.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.4rem;
  display: block;
}

/* Testimonials */
.quote {
  padding: var(--space-md);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-body);
  line-height: 1.7;
}
.quote-attrib {
  display: block;
  margin-top: 0.75rem;
  font-style: normal;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Pricing tiers */
.tier {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: var(--space-md) 2rem;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.tier:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); }
.tier--featured { border-color: var(--blue); }
.tier h3 { color: var(--text-head); }
.tier .price {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--text-head);
  margin: 0.5rem 0 1rem;
  display: block;
}
.tier .price small { font-size: 1rem; color: var(--text-muted); font-weight: 400; }
.tier ul { list-style: none; padding: 0; margin: 0 0 var(--space-md); flex: 1; }
.tier li {
  padding: 0.5rem 0 0.5rem 1.5rem;
  position: relative;
  font-size: 0.95rem;
  color: var(--text-body);
  border-bottom: 1px solid var(--bg-soft);
}
.tier li::before {
  content: "✓";
  position: absolute; left: 0;
  color: var(--blue);
  font-weight: 700;
}

/* Split sections */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--space-lg);
}
@media (max-width: 820px) { .split-section { grid-template-columns: 1fr; } }
.split-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.split-content {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease) 0.1s, transform 0.6s var(--ease) 0.1s;
}
.split-section.is-visible .split-image,
.split-section.is-visible .split-content {
  opacity: 1;
  transform: translate(0);
}
.split-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 16px;
  border: 7px solid #ffffff;
  box-shadow: 0 8px 32px rgba(0,0,0,0.14);
}

/* Section headings — scroll reveal */
.section-heading,
.section-subhead {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}
.section-subhead { transition-delay: 0.1s; }
.section-heading.is-visible,
.section-subhead.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Section header block */
.section-header { margin-bottom: var(--space-lg); }
.section-header.centered { text-align: center; }
.section-header.centered p { max-width: 55ch; margin-left: auto; margin-right: auto; }

/* =========================================================================
   FORMS
   ========================================================================= */
.contact-form { display: grid; gap: 1rem; max-width: 640px; }
.contact-form label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: -0.4rem;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  background: var(--bg-soft);
  color: var(--text-head);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.9rem 1rem;
  width: 100%;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.contact-form textarea { min-height: 160px; resize: vertical; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: var(--bg);
}

/* =========================================================================
   FOOTER
   ========================================================================= */
.site-footer {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  padding: var(--space-lg) 0 var(--space-md);
  margin-top: var(--space-section);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: var(--space-md);
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--space-sm);
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 0.45rem; }
.footer-col a { color: var(--text-body); font-size: 0.9rem; }
.footer-col a:hover { color: var(--blue); }
.footer-brand img { height: 32px; margin-bottom: 0.75rem; }
.footer-brand p { color: var(--text-muted); font-size: 0.85rem; }
.footer-bottom {
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
}
.footer-bottom small { color: var(--text-muted); font-size: 0.8rem; }
.footer-bottom a { color: var(--text-muted); font-size: 0.8rem; }
.footer-bottom a:hover { color: var(--blue); }
.footer-badge img { height: 48px; width: auto; }

/* =========================================================================
   FAQ ACCORDION
   ========================================================================= */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 20px 0;
  font-weight: 600;
  font-family: var(--font-heading);
  color: var(--text-head);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-size: 1.1rem;
}
.faq-icon { transition: transform 0.25s ease-out; flex-shrink: 0; font-size: 1.2rem; color: var(--text-muted); }
.faq-item.is-open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease), padding 0.3s ease;
  padding-bottom: 0;
  color: var(--text-body);
}
.faq-item.is-open .faq-answer { max-height: 400px; padding-bottom: 20px; }

/* =========================================================================
   BLOG CARDS
   ========================================================================= */
.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  cursor: pointer;
  opacity: 0;
  transform: translateY(24px);
}
.blog-card.is-visible { opacity: 1; transform: translateY(0); transition: opacity 0.5s var(--ease), transform 0.5s var(--ease), box-shadow 0.3s ease; }
.blog-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); }
.card-image-wrap {
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
}
.card-image {
  width: 100%; display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}
.blog-card:hover .card-image { transform: scale(1.05); }
.blog-card .body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.blog-card .meta {
  display: flex; gap: 0.75rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}
.blog-card h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.blog-card h3 a { color: var(--text-head); }
.blog-card h3 a:hover { color: var(--blue); }
.blog-card p { color: var(--text-muted); font-size: 0.9rem; flex: 1; }

/* Portfolio cards */
.portfolio-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  opacity: 0; transform: translateY(24px);
}
.portfolio-card.is-visible { opacity: 1; transform: translateY(0); transition: opacity 0.5s var(--ease), transform 0.5s var(--ease), box-shadow 0.3s ease; }
.portfolio-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); }
.portfolio-card:hover .card-image { transform: scale(1.05); }
.card-title { position: relative; display: inline-block; }
.card-title::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--blue);
  transition: width 0.25s ease-out;
}
.portfolio-card:hover .card-title::after,
.blog-card:hover .card-title::after { width: 100%; }

/* =========================================================================
   ARTICLE BODY (blog post pages)
   ========================================================================= */
.article { max-width: 760px; margin: 0 auto; padding: var(--space-lg) var(--space-md); }
.article-header { margin-bottom: var(--space-lg); }
.article-body { font-size: 1.05rem; line-height: 1.8; }
.article-body h2 { font-size: 1.8rem; margin-top: var(--space-lg); margin-bottom: var(--space-sm); }
.article-body h3 { font-size: 1.25rem; margin-top: var(--space-md); margin-bottom: 0.75rem; }
.article-body p { margin-bottom: 1.25rem; }
.article-body ul, .article-body ol { margin-bottom: 1.5rem; }
.article-body li { margin-bottom: 0.5rem; }
.article-body blockquote {
  border-left: 3px solid var(--blue);
  padding: 0.5rem 1.25rem;
  color: var(--text-muted);
  font-style: italic;
  margin: var(--space-md) 0;
}

/* =========================================================================
   CTA BAND
   ========================================================================= */
.cta-band {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: var(--space-lg);
  text-align: center;
}
.cta-band h2 { margin-bottom: var(--space-sm); }
.cta-band p { color: var(--text-muted); max-width: 50ch; margin: 0 auto var(--space-md); }

/* =========================================================================
   UTILITIES
   ========================================================================= */
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.max-prose { max-width: 70ch; }

.tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(0,153,204,0.08);
  color: var(--blue);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-pill);
}
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--blue); color: #fff;
  padding: 0.5rem 1rem; z-index: 9999;
}
.skip-link:focus { left: 1rem; top: 1rem; }

/* Alternating section BGs */
section:nth-child(even) { background: var(--bg-alt); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .hero-headline, .hero-subhead, .hero-cta,
  .feature-card, .section-heading, .section-subhead,
  .split-image, .split-content, .blog-card, .portfolio-card { opacity: 1; transform: none; }
  .hero-illustration { animation: none; }
  html { scroll-behavior: auto; }
}

/* ============================================
   PASS 2 ADDITIONS — livewebstudios.com
   ============================================ */

/* Section alternate bg */
.section--alt { background: var(--bg-alt); }

/* Clutch badge — hard-capped, never stretches */
.clutch-badge {
  display: block !important;
  width: 140px !important;
  max-width: 140px !important;
  height: auto !important;
  flex-shrink: 0;
  margin-top: 16px;
  opacity: 0.90;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
  transition: opacity 0.2s ease;
}
.clutch-badge:hover { opacity: 1; }

/* Hero CTA group */
.hero-cta-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
.hero--centered .hero-cta-group { align-items: center; }

/* Illustration placeholder */
.illustration-placeholder {
  width: 420px;
  max-width: 100%;
  height: 320px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.illustration-placeholder::after {
  content: 'Image Coming Soon';
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 0.875rem;
}

/* Card title hover */
.feature-card h3 {
  transition: color 0.18s ease;
}
.feature-card:hover h3 { color: var(--blue); }

/* END PASS 2 ADDITIONS */
