/* =============================================
   Top Notch Computer Solutions — Stylesheet
   ============================================= */

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

/*:root {*/
/*  --blue-deep:  #0D3B6B;*/
/*  --blue-mid:   #1565a8;*/
/*  --blue:       #2080d0;*/
/*  --blue-light: #4fa8e8;*/
/*  --blue-pale:  #e8f4fd;*/
/*  --blue-50:    #f0f8ff;*/
/*  --aqua:       #00b4cc;*/
/*  --aqua-light: #00d4f0;*/
/*  --white:      #ffffff;*/
/*  --gray-50:    #f8fafc;*/
/*  --gray-100:   #f0f4f8;*/
/*  --gray-200:   #dde5ef;*/
/*  --gray-400:   #94a3b8;*/
/*  --gray-600:   #4a6080;*/
/*  --gray-700:   #3a5070;*/
/*  --gray-800:   #1e3050;*/
/*  --nav-h:      70px;*/
/*}*/

Style · CSS
Copy

  /* ============================================================
     TOP NOTCH COMPUTER SOLUTIONS — Master Stylesheet
     Brand: Deep-blue professional IT with fluid, aquatic undertones
     Colors: #0D3B6B (deep) · #1B5BA3 (primary) · #4A90E2 (light)
     ============================================================ */

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

:root {
  /* ─── Canonical Brand Palette ─── */
  /* Blues — deep-to-pale ramp */
  --blue-deep:  #0D3B6B;   /* nav, footer, dark hero backgrounds */
  --blue-mid:   #1565a8;   /* primary actions, buttons, links */
  --blue:       #2080d0;   /* interactive highlights, active states */
  --blue-light: #4fa8e8;   /* hover states, emphasis, secondary accent */
  --blue-pale:  #e8f4fd;   /* tinted backgrounds, subtle fills */
  --blue-50:    #f0f8ff;   /* near-white blue wash, alt section bg */

  /* Aqua — signature aquarium accent */
  --aqua:       #00b4cc;   /* badges, status dots, accent borders */
  --aqua-light: #00d4f0;   /* aqua hover / glow states */

  /* Neutrals */
  --white:      #ffffff;
  --gray-50:    #f8fafc;   /* lightest alt bg */
  --gray-100:   #f0f4f8;   /* card bg on dark, off-white sections */
  --gray-200:   #dde5ef;   /* borders, dividers */
  --gray-400:   #94a3b8;   /* placeholder text, disabled states */
  --gray-600:   #4a6080;   /* secondary body text, muted copy */
  --gray-700:   #3a5070;   /* stronger muted text */
  --gray-800:   #1e3050;   /* primary body text, headings on light bg */

  /* Semantic */
  --tn-danger:  #e74c3c;
  --tn-success: #27ae60;

  /* ─── Legacy aliases (mapped to canonical values) ─── */
  --tn-deep:    var(--blue-deep);
  --tn-primary: var(--blue-mid);
  --tn-light:   var(--blue-light);
  --tn-accent:  var(--aqua);
  --tn-white:   var(--white);
  --tn-off:     var(--gray-100);
  --tn-border:  var(--gray-200);
  --tn-text:    var(--gray-800);
  --tn-muted:   var(--gray-600);

  /* ─── Layout ─── */
  --nav-h:      70px;
  --max-w:      1200px;

  /* ─── Shadows ─── */
  --shadow-sm:  0 1px 3px rgba(13,59,107,.08);
  --shadow-md:  0 4px 14px rgba(13,59,107,.10);
  --shadow-lg:  0 8px 30px rgba(13,59,107,.14);
  --shadow-btn: 0 4px 12px rgba(21,101,168,.22);

  /* ─── Radii ─── */
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-xl: 24px;

  /* ─── Spacing ─── */
  --sp-xs: 6px;
  --sp-sm: 12px;
  --sp-md: 20px;
  --sp-lg: 32px;
  --sp-xl: 48px;
  --sp-2xl: 72px;

  /* ─── Typography ─── */
  --font-display: 'DM Sans', 'Segoe UI', sans-serif;
  --font-body:    'DM Sans', 'Segoe UI', sans-serif;
  --font-mono:    'JetBrains Mono', 'Fira Code', monospace;
}

html { scroll-behavior: smooth; }

/* FIX: explicit margin/padding reset on html+body prevents ghost pixel rows
   from any previously removed header or topbar element */
html, body { margin: 0; padding: 0; }

body {
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  color: var(--gray-800); background: var(--white);
  overflow-x: hidden; font-size: 18px; line-height: 1.7;
}

/* ---- ACCESSIBILITY ---- */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 9999;
  background: var(--blue-deep); color: #fff;
  padding: 12px 20px; font-weight: 600; border-radius: 0 0 8px 0; text-decoration: none;
}
.skip-link:focus { left: 0; }
:focus-visible { outline: 3px solid var(--aqua); outline-offset: 3px; border-radius: 4px; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}

/* ---- PAGE SYSTEM (SPA fallback for pages that embed the full shell) ---- */
.page { display: none; }
.page.active { display: block; }

/* ---- SINGLE FIXED NAV ---- */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: linear-gradient(to right, #ffffff 0%, var(--blue-deep) 100%);  padding: 0 5%; display: flex; align-items: center; justify-content: space-between;
  box-shadow: 0 2px 20px rgba(0,0,0,0.22);
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; cursor: pointer; }
.nav-em {
  width: 40px; height: 40px; background: white; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Sora', Georgia, serif; font-size: 16px; font-weight: 700; color: var(--blue-deep); flex-shrink: 0;
}
.nav-nm { font-family: 'Sora', Georgia, serif; font-size: 16px; font-weight: 600; color: #fff; line-height: 1.2; }
.nav-nm small { display: block; font-size: 11px; font-weight: 400; color: rgba(255,255,255,0.45); }
.nav-em img {
  width: 80%;
  height: 80%;
  border-radius: 8px;
}

.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; }
.nav-links a {
  font-size: 15px; font-weight: 500; color: rgba(255,255,255,0.72);
  text-decoration: none; padding: 8px 13px; border-radius: 6px;
  transition: all 0.15s; cursor: pointer; background: none; border: none; font-family: 'Inter', sans-serif;
}
.nav-links a:hover { background: rgba(255,255,255,0.1); color: #fff; }
.nav-links a.active { color: #fff; font-weight: 600; }
.nav-cta { background: var(--aqua) !important; color: var(--blue-deep) !important; font-weight: 700 !important; margin-left: 8px; }
.nav-cta:hover { background: var(--aqua-light) !important; }

.nav-right { display: flex; align-items: center; gap: 16px; }
.nav-phone-num { font-size: 15px; font-weight: 700; color: var(--aqua-light); text-decoration: none; white-space: nowrap; }
.nav-phone-num:hover { color: #fff; }

.nav-ham { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; border-radius: 6px; }
.nav-ham span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; }

/* ---- MOBILE NAV ---- */
#mob-nav {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; z-index: 199;
  background: var(--blue-deep); border-top: 1px solid rgba(255,255,255,0.1);
  padding: 16px 5% 28px; box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
#mob-nav a { display: block; font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.8); padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.08); text-decoration: none; }
#mob-nav a:hover { color: #fff; }
#mob-nav .mob-call { display: block; margin-top: 20px; background: var(--aqua); color: var(--blue-deep); text-align: center; padding: 16px; border-radius: 8px; font-size: 18px; font-weight: 700; text-decoration: none; border: none; }
.Top {color: #232323; font-weight: 800; font-size: 22px}
.PC {color: var(--blue-mid); font-weight: 600; font-size: 22px}

/* Logo Text Branding */
.nav-nm {
  font-family: 'Sora', sans-serif;
  font-size: 16px; /* Slightly larger for better impact */
  letter-spacing: -0.02em; /* Tighter logo-style tracking */
}

/* "Solutions" - Black */
.nav-nm {
  color: #232323;
  padding: 8px;
}

/* Subtext adjustment */
.nav-nm small {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 2px;
  color: #727272;
}

/* ---- LAYOUT ---- */
/* FIX: pt-page pads below the fixed nav so no content is hidden behind it */
.pt-page { padding-top: var(--nav-h); }
/* For standalone pages where <body> IS the page — same offset */
body.standalone-page { padding-top: var(--nav-h); }

section { padding: 80px 5%; }
.container { max-width: 1100px; margin: 0 auto; }

/* FIX: eyebrow bumped from 11px to 13px for WCAG readability across age ranges */
.eyebrow { font-size: 13px; font-weight: 700; color: var(--aqua); letter-spacing: 3px; text-transform: uppercase; margin-bottom: 14px; display: flex; align-items: center; gap: 10px; }
.eyebrow::before { content: ''; display: block; width: 20px; height: 2px; background: var(--aqua); }
.eyebrow-light { color: var(--aqua-light); }
.eyebrow-light::before { background: var(--aqua-light); }

h1, h2, h3 { font-family: 'Sora', Georgia, serif; line-height: 1.15; color: var(--blue-deep); }
h1 { font-size: clamp(30px, 5vw, 54px); margin-bottom: 20px; }
h2 { font-size: clamp(24px, 4vw, 40px); margin-bottom: 16px; }
h3 { font-size: clamp(18px, 2.5vw, 22px); margin-bottom: 10px; }
p  { font-size: 17px; line-height: 1.8; color: var(--gray-600); }
.lead { font-size: 19px; line-height: 1.85; color: var(--gray-600); margin-bottom: 40px; max-width: 640px; }

/* ---- BUTTONS ---- */
.btn { display: inline-block; padding: 15px 34px; border-radius: 8px; font-size: 17px; font-weight: 600; text-decoration: none; cursor: pointer; border: none; font-family: 'Inter', sans-serif; transition: all 0.2s; }
.btn-aqua { background: var(--aqua); color: var(--blue-deep); font-weight: 700; }
.btn-aqua:hover { background: var(--aqua-light); transform: translateY(-2px); }
.btn-blue { background: var(--blue-mid); color: #fff; }
.btn-blue:hover { background: var(--blue-deep); transform: translateY(-2px); }
.btn-outline-white { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.45); }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
.btn-outline { background: transparent; color: var(--blue-mid); border: 2px solid var(--blue-mid); }
.btn-outline:hover { background: var(--blue-mid); color: #fff; }
.btn-lg { padding: 18px 42px; font-size: 18px; }

/* ---- HERO ---- */
.hero-wrap { background: linear-gradient(155deg, var(--blue-deep) 0%, var(--blue-mid) 60%, #1a7abf 100%); padding: 96px 5% 80px; position: relative; overflow: hidden; }
.hero-wrap::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 85% 40%, rgba(0,180,204,0.18) 0%, transparent 55%), radial-gradient(ellipse at 10% 90%, rgba(255,255,255,0.04) 0%, transparent 40%); }
.hero-inner { display: grid; grid-template-columns: 1fr 400px; gap: 56px; align-items: center; max-width: 1100px; margin: 0 auto; position: relative; z-index: 2; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(0,212,240,0.15); color: var(--aqua-light); border: 1px solid rgba(0,212,240,0.35); font-size: 13px; font-weight: 600; padding: 7px 16px; border-radius: 20px; margin-bottom: 22px; }
.hero-badge::before { content: ''; width: 7px; height: 7px; background: var(--aqua-light); border-radius: 50%; }
.hero-title { font-family: 'Sora', Georgia, serif; font-size: clamp(32px, 5vw, 54px); font-weight: 700; color: #fff; line-height: 1.08; margin-bottom: 20px; }
.hero-title em { font-style: normal; color: var(--aqua-light); }
.hero-sub { font-size: 18px; color: rgba(255,255,255,0.78); line-height: 1.8; margin-bottom: 36px; max-width: 520px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; margin-bottom: 44px; }
.hero-trust { display: flex; gap: 28px; flex-wrap: wrap; }
.trust-item { font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.65); display: flex; align-items: center; gap: 7px; }
.trust-item::before { content: '✓'; color: var(--aqua-light); font-weight: 700; }
.hero-lockup {
  display: flex;
  align-items: center;
  gap: 32px;
  margin: 20px 0 32px;
}

.hero-logo {
  width: 256px;
  flex-shrink: 0;
  display: block;
  background: #fff;
  border-radius: 32px;
  padding: 16px;
}

.hero-lockup .hero-title {
  margin-bottom: 0;
}
.hero-card { background: #fff; border-radius: 16px; padding: 36px; box-shadow: 0 12px 40px rgba(0,0,0,0.14); border-top: 4px solid var(--aqua); }
.hc-label { font-size: 11px; font-weight: 700; color: var(--blue); letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 14px; }
.hc-phone { font-family: 'Sora', Georgia, serif; font-size: clamp(24px, 3vw, 32px); font-weight: 700; color: var(--blue-deep); line-height: 1; margin-bottom: 4px; }
.hc-sub { font-size: 13px; color: var(--gray-400); margin-bottom: 22px; }
.hc-btns { display: flex; flex-direction: column; gap: 10px; }
.hc-btns a { display: block; text-align: center; padding: 14px 20px; border-radius: 8px; font-size: 16px; font-weight: 600; text-decoration: none; transition: all 0.18s; cursor: pointer; }
.hcb-call { background: var(--aqua); color: var(--blue-deep); }
.hcb-call:hover { background: var(--aqua-light); }
.hcb-txt { background: var(--blue-pale); color: var(--blue-mid); border: 1px solid var(--blue-light); }
.hcb-txt:hover { background: #d4ecfb; }
.hcb-form { background: transparent; color: var(--blue-mid); border: 2px solid var(--blue-mid); font-size: 14px; padding: 11px 20px; }
.hcb-form:hover { background: var(--blue-mid); color: #fff; }
.hc-note { margin-top: 14px; font-size: 12px; color: var(--gray-400); text-align: center; line-height: 1.5; }

/* ---- VALUE STRIP ---- */
.value-strip { background: #0a2d54; padding: 0 5%; display: flex; align-items: stretch; justify-content: center; flex-wrap: wrap; border-bottom: 2px solid rgba(0,180,204,0.25); }
.value-item { display: flex; align-items: center; gap: 10px; padding: 20px 32px; font-size: 15px; font-weight: 500; color: rgba(255,255,255,0.75); border-right: 1px solid rgba(255,255,255,0.1); }
.value-item:last-child { border-right: none; }
.value-item strong { color: #fff; }
.value-check { color: var(--aqua-light); font-weight: 700; font-size: 17px; }

/* ---- WHY CARDS ---- */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 20px; margin-top: 48px; }
.why-card { background: var(--white); border-radius: 12px; padding: 30px; border: 1px solid var(--gray-200); border-top: 3px solid var(--aqua); transition: box-shadow 0.2s, transform 0.2s; }
.why-card:hover { box-shadow: 0 8px 28px rgba(21,101,168,0.1); transform: translateY(-2px); }
.why-card h3 { font-size: 18px; margin-bottom: 8px; }
.why-card p { font-size: 16px; color: var(--gray-600); line-height: 1.7; }
.why-icon {
  width: 64px;
  height: 64px;
  background: var(--blue-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  overflow: hidden;
}
.why-icon img {
  width: 80%;
  height: 80%;
  object-fit: contain;
  display: block;
}
/* ---- SERVICE OVERVIEW GRID ---- */
.svc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; margin-top: 48px; }
.svc-card { background: var(--white); border-radius: 12px; padding: 30px; border: 1px solid var(--gray-200); cursor: pointer; transition: all 0.2s; position: relative; overflow: hidden;  text-decoration: none;}
.svc-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--aqua); transform: scaleX(0); transition: transform 0.2s; }
.svc-card:hover { box-shadow: 0 8px 28px rgba(21,101,168,0.12); transform: translateY(-3px); border-color: var(--blue-light); }
.svc-card:hover::after { transform: scaleX(1); }
.svc-icon {
  width: 64px;
  height: 64px;
  background: var(--blue-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  overflow: hidden; /* ✨ ensures image respects the rounded corners */
}

.svc-icon img {
  width: 80%;
  height: 80%;
  object-fit: contain; /* keeps proportions, fits within the square */
  display: block;
}.svc-card h3 { font-size: 18px; margin-bottom: 8px; }
.svc-card p { font-size: 15px; color: var(--gray-600); line-height: 1.7; margin-bottom: 14px; }
.svc-link { font-size: 14px; font-weight: 600; color: var(--blue); }

/* ---- AREA COVERAGE ---- */
.area-wrap { background: var(--blue-deep); padding: 72px 5%; }
.area-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(145px, 1fr)); gap: 10px; margin-top: 40px; }
.area-chip { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; padding: 14px; text-align: center; font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.75); transition: all 0.2s; }
.area-chip:hover { background: rgba(0,212,240,0.1); border-color: rgba(0,212,240,0.4); color: #fff; }
.area-chip.primary { background: rgba(0,180,204,0.14); border-color: rgba(0,180,204,0.4); color: var(--aqua-light); font-weight: 600; }

/* ---- TESTIMONIALS ---- */
.testi-wrap { background: var(--gray-50); padding: 80px 5%; }
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-top: 48px; }
.testi-card { background: var(--white); border-radius: 12px; padding: 32px; border: 1px solid var(--gray-200); border-top: 3px solid var(--aqua); box-shadow: 0 2px 12px rgba(12,61,110,0.05); }
.testi-stars { color: #f59e0b; font-size: 17px; margin-bottom: 14px; letter-spacing: 2px; }
.testi-q { font-size: 16px; color: var(--gray-700); line-height: 1.8; font-style: italic; margin-bottom: 22px; }
.testi-auth { display: flex; align-items: center; gap: 12px; }
.testi-av { width: 42px; height: 42px; background: var(--blue-mid); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Sora', Georgia, serif; font-size: 14px; font-weight: 700; color: #fff; flex-shrink: 0; }
.testi-name { font-size: 15px; font-weight: 600; color: var(--blue-deep); margin-bottom: 2px; }
.testi-role { font-size: 12px; color: var(--gray-400); }

/* ---- GOOGLE PROFILE EMBED ---- */
.google-section { background: var(--white); padding: 80px 5%; border-top: 1px solid var(--gray-100); }
.google-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.google-map-wrap { border-radius: 16px; overflow: hidden; box-shadow: 0 4px 24px rgba(12,61,110,0.1); border: 1px solid var(--gray-200); }
.google-map-wrap iframe { display: block; width: 100%; height: 360px; border: none; }
.google-cta-box { background: var(--blue-50); border: 1px solid var(--blue-pale); border-top: 4px solid var(--aqua); border-radius: 16px; padding: 40px; text-align: center; }
.g-rating-big { font-family: 'Sora', Georgia, serif; font-size: 60px; font-weight: 700; color: var(--blue-deep); line-height: 1; }
.g-stars-row { color: #f59e0b; font-size: 26px; letter-spacing: 4px; margin: 8px 0 6px; }
.g-count { font-size: 15px; color: var(--gray-400); margin-bottom: 28px; }
.g-btn { display: inline-block; background: var(--blue-mid); color: #fff; padding: 14px 28px; border-radius: 8px; font-size: 16px; font-weight: 600; text-decoration: none; transition: all 0.2s; }
.g-btn:hover { background: var(--blue-deep); transform: translateY(-2px); }
.g-leave { display: block; margin-top: 14px; font-size: 14px; color: var(--gray-400); text-decoration: none; }
.g-leave:hover { color: var(--blue-mid); }

/* ---- BOUTIQUE SERVICES ---- */
.boutique-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; margin-top: 48px; }
.boutique-card { border-radius: 14px; overflow: hidden; border: 1px solid var(--gray-200); box-shadow: 0 2px 12px rgba(12,61,110,0.06); transition: transform 0.2s, box-shadow 0.2s; }
.boutique-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(12,61,110,0.12); }
.bc-header { height: 110px; display: flex; align-items: center; justify-content: flex-start; padding: 0 28px; gap: 14px; }
.bc-header-pc    { background: linear-gradient(135deg, #0d1b2a, #1a3a5c); }
.bc-header-ai    { background: linear-gradient(135deg, #083344, #0891b2); }
.bc-header-coral { background: linear-gradient(135deg, #063d2a, #0d7c4a); }
.bc-label { font-family: 'Sora', Georgia, serif; font-size: 20px; font-weight: 700; color: rgba(255,255,255,0.9); }
.bc-sub-label { font-size: 12px; color: rgba(255,255,255,0.45); margin-top: 2px; }
.bc-body { background: var(--white); padding: 26px 28px; }
.bc-body h3 { font-size: 18px; margin-bottom: 10px; }
.bc-body p { font-size: 15px; color: var(--gray-600); line-height: 1.7; margin-bottom: 16px; }
.bc-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.bc-tag { font-size: 12px; font-weight: 600; color: var(--blue-mid); background: var(--blue-pale); padding: 4px 11px; border-radius: 20px; }

/* ---- PRICING ---- */
.pricing-wrap { background: var(--gray-50); padding: 80px 5%; }
.price-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; margin-top: 48px; }
.price-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: 14px; padding: 36px; position: relative; transition: all 0.2s; }
.price-card:hover { box-shadow: 0 8px 32px rgba(21,101,168,0.1); border-color: var(--blue-light); }
.price-card.featured { border: 2px solid var(--blue-mid); box-shadow: 0 8px 32px rgba(21,101,168,0.15); }
.price-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--blue-mid); color: #fff; font-size: 11px; font-weight: 700; padding: 5px 16px; border-radius: 20px; white-space: nowrap; }
.price-tier { font-size: 11px; font-weight: 700; color: var(--blue); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 10px; }
.price-name { font-family: 'Sora', Georgia, serif; font-size: 22px; font-weight: 700; color: var(--blue-deep); margin-bottom: 8px; }
.price-desc { font-size: 14px; color: var(--gray-400); line-height: 1.6; margin-bottom: 22px; }
.price-amount { display: flex; align-items: baseline; gap: 4px; margin-bottom: 22px; padding-bottom: 22px; border-bottom: 1px solid var(--gray-100); }
.price-from { font-size: 13px; color: var(--gray-400); }
.price-num { font-family: 'Sora', Georgia, serif; font-size: 38px; font-weight: 700; color: var(--blue-deep); line-height: 1; }
.price-per { font-size: 13px; color: var(--gray-400); }
.price-list { list-style: none; margin-bottom: 26px; }
.price-list li { font-size: 14px; color: var(--gray-600); padding: 8px 0; border-bottom: 1px solid var(--gray-50); display: flex; align-items: flex-start; gap: 10px; line-height: 1.5; }
.price-list li::before { content: '✓'; color: var(--blue-mid); font-weight: 700; font-size: 13px; flex-shrink: 0; margin-top: 2px; }
.price-cta { display: block; text-align: center; padding: 13px 24px; border-radius: 8px; font-size: 15px; font-weight: 600; text-decoration: none; cursor: pointer; font-family: 'Inter', sans-serif; border: none; transition: all 0.2s; }
.pc-outline { border: 2px solid var(--blue-mid) !important; color: var(--blue-mid); background: transparent; }
.pc-outline:hover { background: var(--blue-mid); color: #fff; }
.pc-solid { background: var(--blue-mid); color: #fff; }
.pc-solid:hover { background: var(--blue-deep); }

/* ---- ABOUT ---- */
.about-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; max-width: 1100px; margin: 0 auto; }
.about-vis { position: relative; }
.about-ph { width: 100%; aspect-ratio: 7/8; background: linear-gradient(145deg, var(--blue-deep), var(--blue-mid)); border-radius: 16px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px; color: rgba(255,255,255,0.35); font-size: 15px; text-align: center; }
.about-ph img {
  width: 90%;
  height: 90%;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: 24px;
}
.about-badge { position: absolute; bottom: -16px; right: -16px; background: var(--blue-mid); color: #fff; padding: 18px 22px; border-radius: 12px; text-align: center; box-shadow: 0 4px 20px rgba(21,101,168,0.35); border-top: 3px solid var(--aqua); }
.ab-num { font-family: 'Sora', Georgia, serif; font-size: 34px; font-weight: 700; color: var(--aqua-light); line-height: 1; }
.ab-lbl { font-size: 11px; font-weight: 600; margin-top: 4px; text-transform: uppercase; letter-spacing: 0.5px; color: rgba(255,255,255,0.6); }
.pillars { margin-top: 30px; display: flex; flex-direction: column; gap: 20px; }
.pillar { display: flex; gap: 16px; }
.pcheck { width: 30px; height: 30px; flex-shrink: 0; background: var(--blue-pale); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; color: var(--blue-mid); margin-top: 2px; font-weight: 700; }
.p-name { font-family: 'Sora', Georgia, serif; font-size: 17px; font-weight: 700; color: var(--blue-deep); margin-bottom: 4px; }
.p-desc { font-size: 15px; color: var(--gray-600); line-height: 1.65; }

/* ---- CTA BAND ---- */
.cta-band { background: linear-gradient(135deg, var(--blue-deep), var(--blue-mid)); padding: 72px 5%; text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 80% 50%, rgba(0,180,204,0.15) 0%, transparent 60%); }
.cta-band > * { position: relative; z-index: 2; }
.cta-band h2 { color: #fff; font-size: clamp(24px, 4vw, 38px); margin-bottom: 12px; }
.cta-band p { font-size: 18px; color: rgba(255,255,255,0.7); margin-bottom: 12px; max-width: 540px; margin-left: auto; margin-right: auto; }
.cta-ph { font-family: 'Sora', Georgia, serif; font-size: clamp(26px, 4vw, 42px); font-weight: 700; color: var(--aqua-light); text-decoration: none; display: block; margin-bottom: 28px; }
.cta-ph:hover { color: #fff; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---- HELP PAGE ---- */
.help-hero { background: linear-gradient(155deg, var(--blue-deep), var(--blue-mid)); padding: 80px 5%; text-align: center; position: relative; overflow: hidden; }
.help-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 70% 50%, rgba(0,180,204,0.12) 0%, transparent 60%); }
.help-hero h1, .help-hero p { position: relative; z-index: 2; }
.help-hero h1 { color: #fff; }
.help-hero p { color: rgba(255,255,255,0.7); max-width: 560px; margin: 0 auto; }
.ph-block { background: var(--white); border: 2px solid var(--blue-light); border-top: 4px solid var(--aqua); border-radius: 16px; padding: 44px; max-width: 560px; margin: 0 auto 60px; text-align: center; box-shadow: 0 4px 24px rgba(21,101,168,0.12); }
.ph-num { font-family: 'Sora', Georgia, serif; font-size: clamp(30px, 6vw, 48px); font-weight: 700; color: var(--blue-deep); display: block; margin: 14px 0 8px; text-decoration: none; }
.ph-num:hover { color: var(--blue-mid); }
.ph-sub { font-size: 16px; color: var(--gray-400); margin-bottom: 26px; }
.ph-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.ph-btns a { padding: 14px 24px; border-radius: 8px; font-size: 16px; font-weight: 600; text-decoration: none; transition: all 0.2s; cursor: pointer; }
.phb-call { background: var(--aqua); color: var(--blue-deep); }
.phb-call:hover { background: var(--aqua-light); }
.phb-rmm { background: var(--aqua); color: var(--blue-pale); display: block; text-align: center; width: 100%; max-width: 320px; margin: 0 auto; }
.phb-rmm:hover { background: var(--blue-light); }
.phb-txt { background: var(--blue-pale); color: var(--blue-mid); border: 1px solid var(--blue-light); }
.phb-txt:hover { background: #d4ecfb; }
.guides-hd { text-align: center; margin-bottom: 48px; }
.guides-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(310px, 1fr)); gap: 24px; }
.gc { background: var(--white); border-radius: 14px; border: 1px solid var(--gray-200); overflow: hidden; box-shadow: 0 2px 12px rgba(12,61,110,0.06); }
.gc-hd { background: var(--blue-deep); padding: 20px 24px; }
.gc-hd-yell { background: #ff9900; padding: 20px 24px; }
.gc-hd h3 { color: #fff; font-size: 18px; margin: 0; }
.gc-step { display: flex; gap: 14px; align-items: flex-start; padding: 16px 24px; border-bottom: 1px solid var(--gray-50); }
.step-b { width: 26px; height: 26px; background: var(--blue-pale); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; color: var(--blue-mid); flex-shrink: 0; margin-top: 2px; }
.step-t { font-size: 15px; color: var(--gray-700); line-height: 1.6; }
.gc-ft { display: flex; align-items: center; justify-content: space-between; padding: 16px 24px; background: var(--gray-50); font-size: 14px; color: var(--gray-400); }
.gc-ft a { color: var(--blue-mid); font-weight: 600; text-decoration: none; }
.gc-ft a:hover { color: var(--blue-deep); }

/* ---- PAGE HERO (services, contact, specialty) ---- */
.page-hero { background: linear-gradient(155deg, var(--blue-deep), var(--blue-mid)); padding: 80px 5%; text-align: center; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 65% 50%, rgba(0,180,204,0.12) 0%, transparent 60%); }
.page-hero h1, .page-hero p, .page-hero .eyebrow, .page-hero .btn { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; max-width: 720px; margin: 0 auto 20px; }
.page-hero p { color: rgba(255,255,255,0.7); max-width: 580px; margin: 0 auto 28px; font-size: 18px; }
.sp-gaming { background: linear-gradient(155deg, #0d1b2a, #1a3a5c); }
.sp-ai     { background: linear-gradient(155deg, #083344, #0891b2); }
.sp-refurb { background: linear-gradient(155deg, var(--blue-deep), #1a5080); }

/* ---- SERVICE FULL GRID ---- */
.svc-full-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-top: 40px; }
.sfc { background: var(--white); border-radius: 12px; padding: 30px; border: 1px solid var(--gray-200); transition: all 0.2s; }
.sfc:hover { box-shadow: 0 4px 20px rgba(21,101,168,0.1); border-color: var(--blue-light); }
.sfc h3 { font-size: 18px; margin-bottom: 10px; }
.sfc p { font-size: 15px; color: var(--gray-600); line-height: 1.7; margin-bottom: 16px; }
.sfc-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.sfc-tag { font-size: 12px; font-weight: 600; color: var(--blue-mid); background: var(--blue-pale); padding: 4px 11px; border-radius: 20px; }
.vert-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 12px; margin-top: 40px; }
.vc { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: 10px; padding: 18px; text-align: center; transition: all 0.2s; }
.vc:hover { background: rgba(0,212,240,0.1); border-color: var(--aqua-light); }
.vc-name { font-family: 'Sora', Georgia, serif; font-size: 14px; color: #fff; margin-bottom: 3px; font-weight: 600; }
.vc-sub { font-size: 12px; color: rgba(255,255,255,0.4); }

/* ---- SIN CITY CORALS BANNER — FIX: overlay scrim for legibility ---- */
.coral-bl {
  position: relative;
  background: url('./images/SinCity.png') center/cover no-repeat;
  border-radius: 16px;
  padding: 44px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  margin-top: 60px;
  border: 1px solid rgba(0,212,240,0.2);
  overflow: hidden;
}
/* Dark gradient scrim — left-heavy so text on left stays readable */
.coral-bl::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
          to right,
          rgba(3, 18, 10, 0.82) 0%,
          rgba(3, 18, 10, 0.62) 55%,
          rgba(3, 18, 10, 0.32) 100%
  );
  border-radius: inherit;
  z-index: 0;
}
/* All direct children sit above the scrim */
.coral-bl > * { position: relative; z-index: 1; }

.coral-ey { font-size: 13px; font-weight: 700; color: var(--aqua-light); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 10px; display: flex; align-items: center; gap: 8px; }
.coral-ey::before { content: ''; display: block; width: 14px; height: 2px; background: var(--aqua-light); }
.coral-bl h3 { font-family: 'Sora', Georgia, serif; font-size: 24px; color: #fff; margin-bottom: 10px; }
/* FIX: bumped paragraph opacity from 0.6 to 0.88 for WCAG compliance over the image */
.coral-bl p { font-size: 15px; color: rgba(255,255,255,0.88); line-height: 1.7; margin-bottom: 22px; max-width: 460px; }
.coral-btn { display: inline-block; background: rgba(0,212,240,0.18); color: var(--aqua-light); padding: 12px 22px; border-radius: 8px; font-size: 15px; font-weight: 600; text-decoration: none; border: 1px solid rgba(0,212,240,0.45); transition: all 0.2s; }
.coral-btn:hover { background: rgba(0,212,240,0.32); color: #fff; }
.coral-fish { font-size: 60px; }

/* ---- CONTACT ---- */
.cnt-split { display: grid; grid-template-columns: 1fr 1.5fr; gap: 56px; max-width: 1100px; margin: 0 auto; }
.cnt-info h3 { font-size: 21px; margin-bottom: 20px; }
.cm { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px; }
.cm-icon { width: 44px; height: 44px; background: var(--blue-pale); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.cm-lbl { font-size: 11px; font-weight: 700; color: var(--blue); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 4px; }
.cm-val { font-size: 16px; font-weight: 500; color: var(--blue-deep); }
.cnt-form { background: var(--blue-50); border: 1px solid var(--blue-pale); border-radius: 16px; padding: 40px; }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.f-group { margin-bottom: 18px; }
.f-label { display: block; font-size: 15px; font-weight: 600; color: var(--blue-deep); margin-bottom: 7px; }
.f-input, .f-select, .f-textarea { width: 100%; background: var(--white); border: 2px solid var(--blue-pale); border-radius: 8px; padding: 13px 15px; font-family: 'Inter', sans-serif; font-size: 16px; color: var(--gray-800); transition: border-color 0.2s; outline: none; appearance: none; }
.f-input:focus, .f-select:focus, .f-textarea:focus { border-color: var(--blue-mid); }
.f-select { cursor: pointer; color: var(--gray-600); }
.f-textarea { resize: vertical; min-height: 120px; line-height: 1.6; }
.f-submit { width: 100%; background: var(--blue-mid); color: #fff; border: none; border-radius: 8px; padding: 17px 24px; font-family: 'Inter', sans-serif; font-size: 18px; font-weight: 700; cursor: pointer; transition: all 0.2s; margin-top: 8px; }
.f-submit:hover { background: var(--blue-deep); transform: translateY(-2px); }
.f-submit:disabled { background: #0d7c4a; cursor: not-allowed; transform: none; }

/* ---- FOOTER ---- */
footer { background: var(--blue-deep); padding: 56px 5% 32px; }
.ft-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 48px; margin-bottom: 44px; }
.ft-brand-name { font-family: 'Sora', Georgia, serif; font-size: 19px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.ft-tag { font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 18px; line-height: 1.7; }
.ft-phone { font-size: 21px; font-weight: 700; color: var(--aqua-light); text-decoration: none; display: block; }
.ft-phone:hover { color: var(--aqua); }
.ft-col-title { font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.35); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 16px; }
.ft-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.ft-links a { font-size: 14px; color: rgba(255,255,255,0.65); text-decoration: none; cursor: pointer; transition: color 0.2s; }
.ft-links a:hover { color: var(--aqua-light); }
.ft-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.ft-copy { font-size: 13px; color: rgba(255,255,255,0.35); }
.ft-coral a { font-size: 13px; color: var(--aqua-light); text-decoration: none; }
.ft-coral a:hover { color: #fff; }

/* ---- SCROLL REVEAL ---- */
.fade-up { opacity: 0; transform: translateY(18px); transition: opacity 0.55s ease, transform 0.55s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ---- RESPONSIVE ---- */
/* ============================================================
   RESPONSIVE — Tablet  (≤ 1000px)
   ============================================================ */
@media (max-width: 1000px) {
  /* Hero */
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card  { max-width: 100%; }
  .hero-lockup { flex-direction: column; align-items: flex-start; gap: 20px; }
  .hero-logo  { width: 180px; }

  /* Two-col sections → single col */
  .google-inner  { grid-template-columns: 1fr; }
  .about-wrap    { grid-template-columns: 1fr; gap: 40px; }
  .about-vis     { display: none; }
  .cnt-split     { grid-template-columns: 1fr; gap: 36px; }
  .coral-bl      { grid-template-columns: 1fr; }
  .coral-fish    { display: none; }

  /* Footer */
  .ft-top { grid-template-columns: 1fr 1fr; gap: 32px; }

  /* Pricing — 2-up before going 1-up on small */
  .price-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   RESPONSIVE — Mobile  (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {

  /* --- Root overrides --- */
  :root { --nav-h: 62px; }

  /* --- Nav --- */
  nav { padding: 0 4%; height: var(--nav-h); }
  .nav-links    { display: none; }
  .nav-phone-num { display: none; }
  .nav-ham      { display: flex; }
  /* Tighten logo text on small screens */
  .nav-nm       { font-size: 13px; padding: 4px 6px; }
  .nav-nm small { display: none; }
  .Top, .PC     { font-size: 16px; }
  .nav-em       { width: 34px; height: 34px; }

  /* --- Global spacing --- */
  section             { padding: 48px 5%; }
  .container          { padding: 0; }
  body                { font-size: 16px; }

  /* --- Typography scale-down --- */
  h1  { font-size: clamp(26px, 7vw, 40px); }
  h2  { font-size: clamp(22px, 6vw, 34px); }
  h3  { font-size: clamp(17px, 4.5vw, 22px); }
  p   { font-size: 16px; }
  .lead { font-size: 17px; margin-bottom: 28px; }

  /* --- Buttons --- */
  .btn    { padding: 13px 24px; font-size: 16px; }
  .btn-lg { padding: 15px 28px; font-size: 17px; width: 100%; text-align: center; box-sizing: border-box; }
  .hero-actions { flex-direction: column; gap: 10px; align-items: stretch; }
  .cta-btns     { flex-direction: column; align-items: center; gap: 10px; }
  .cta-btns .btn, .cta-btns .btn-lg { width: 100%; max-width: 340px; }

  /* --- Hero --- */
  .hero-wrap    { padding: 72px 5% 56px; }
  .hero-inner   { gap: 32px; }
  .hero-logo    { width: 140px; border-radius: 20px; padding: 10px; }
  .hero-lockup  { gap: 14px; flex-direction: row; align-items: center; flex-wrap: wrap; }
  .hero-title   { font-size: clamp(26px, 7vw, 40px); }
  .hero-card    { padding: 24px 20px; }
  .hc-phone     { font-size: clamp(22px, 7vw, 30px); }
  .hc-btns a    { padding: 12px 16px; font-size: 15px; }
  .hero-trust   { gap: 16px; }
  .trust-item   { font-size: 13px; }

  /* --- Value strip → stacked --- */
  .value-strip  { flex-direction: column; }
  .value-item   {
    padding: 13px 5%;
    font-size: 14px;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    width: 100%;
    justify-content: center;
  }
  .value-item:last-child { border-bottom: none; }

  /* --- Service grid → single col --- */
  .svc-grid      { grid-template-columns: 1fr; gap: 14px; }
  .svc-card      { padding: 22px 20px; }
  .svc-full-grid { grid-template-columns: 1fr; gap: 14px; }

  /* --- Why grid → single col --- */
  .why-grid { grid-template-columns: 1fr; gap: 14px; }
  .why-card { padding: 22px 20px; }

  /* --- Area chips → tighter grid --- */
  .area-wrap  { padding: 56px 5%; }
  .area-grid  { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .area-chip  { font-size: 13px; padding: 10px 8px; }

  /* --- Pricing → single col --- */
  .pricing-wrap  { padding: 56px 5%; }
  .price-grid    { grid-template-columns: 1fr; gap: 16px; }
  .price-card    { padding: 28px 22px; }
  .price-num     { font-size: 32px; }
  .price-badge   { font-size: 10px; padding: 4px 12px; }

  /* --- Testimonials → single col --- */
  .testi-wrap { padding: 56px 5%; }
  .testi-grid { grid-template-columns: 1fr; gap: 14px; }
  .testi-card { padding: 24px 20px; }

  /* --- Google section --- */
  .google-section { padding: 56px 5%; }
  .google-map-wrap iframe { height: 260px; }
  .google-cta-box { padding: 28px 20px; }
  .g-rating-big   { font-size: 48px; }

  /* --- About section --- */
  .about-wrap { padding: 0 0; }
  .pillars    { gap: 16px; }
  .p-desc     { font-size: 14px; }

  /* --- Contact form --- */
  .cnt-form { padding: 24px 18px; }
  .f-row    { grid-template-columns: 1fr; }
  .f-input, .f-select, .f-textarea { font-size: 16px; } /* prevents iOS zoom */

  /* --- Boutique grid --- */
  .boutique-grid { grid-template-columns: 1fr; }

  /* --- Coral banner --- */
  .coral-bl { padding: 28px 22px; }

  /* --- Help page --- */
  .guides-grid { grid-template-columns: 1fr; }
  .ph-block    { padding: 28px 20px; }
  .ph-btns     { flex-direction: column; gap: 10px; }
  .ph-btns a   { width: 100%; text-align: center; }

  /* --- Page hero --- */
  .page-hero  { padding: 56px 5% 48px; }

  /* --- CTA band --- */
  .cta-band  { padding: 56px 5%; }
  .cta-ph    { font-size: clamp(24px, 7vw, 36px); }

  /* --- Footer --- */
  .ft-top    { grid-template-columns: 1fr; gap: 28px; }
  .ft-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
  footer     { padding: 44px 5% 28px; }

  /* --- Web page specific (web.html) --- */
  .build-grid      { grid-template-columns: 1fr; }
  .email-platforms { grid-template-columns: 1fr; }
  .web-price-grid  { grid-template-columns: 1fr; }
  .process-steps   { gap: 28px; }
  .process-steps::before { display: none; }
  .ps-num   { width: 46px; height: 46px; font-size: 17px; }
  .hosting-table th,
  .hosting-table td { padding: 10px 12px; font-size: 13px; }

  /* --- Vert grid (services page) --- */
  .vert-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   RESPONSIVE — Small mobile  (≤ 400px)
   ============================================================ */
@media (max-width: 400px) {
  .area-grid  { grid-template-columns: 1fr 1fr; gap: 6px; }
  .vert-grid  { grid-template-columns: 1fr; }
  .nav-nm     { display: none; } /* logo icon only on very small screens */
  .hero-logo  { width: 110px; }
  .btn-lg     { font-size: 16px; padding: 14px 20px; }
  .hc-phone   { font-size: clamp(20px, 8vw, 28px); }
}