/* ============================================================
   Stack 3 Digital — Global Stylesheet
   Brand: Midnight Navy · Electric Blue · Cyan
   ============================================================ */

/* ===== DESIGN TOKENS ===== */
:root {
  --bg: #0D1B2A;           /* midnight navy */
  --surface: #112233;      /* card / section background */
  --accent: #2563EB;       /* electric blue — CTAs, borders, highlights */
  --accent-cyan: #06B6D4;  /* cyan — logo "3", secondary accent */
  --text-primary: #F1F5F9; /* cloud white */
  --text-body: #94A3B8;    /* readable body copy — ~6.5:1 contrast on --bg */
  --text-muted: #64748B;   /* slate — captions, footnotes, UI chrome */
  --border: #1C3754;       /* navy border */
  --accent-dim: rgba(37, 99, 235, 0.07);
  --transition: 0.2s ease;
  --radius-card: 8px;
  --radius-btn: 6px;
  --section-pad: 80px;
}

/* ===== SKIP LINK ===== */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 200;
  background: var(--accent);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 0 0 var(--radius-btn) var(--radius-btn);
  transition: top 0.15s;
}
.skip-link:focus { top: 0; }

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: 'Poppins', sans-serif;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
}

p { color: var(--text-body); }
p + p { margin-top: 1rem; }

.label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ===== LAYOUT ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: var(--section-pad) 0; }

/* ===== NAVIGATION ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition);
}

.nav.scrolled { border-bottom-color: var(--border); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

/* Logo: icon SVG + "Stack" white + "3" cyan */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.logo-icon {
  height: 26px;
  width: 26px;
  flex-shrink: 0;
}

.logo-three { color: var(--accent-cyan); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

.nav-links a:hover,
.nav-links a.active { color: var(--text-primary); }

.btn-nav {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent) !important;
  border: 1.5px solid var(--accent);
  border-radius: var(--radius-btn);
  padding: 7px 18px;
  transition: background var(--transition), color var(--transition) !important;
}

.btn-nav:hover {
  background: var(--accent);
  color: #fff !important;
}

/* Hamburger button (mobile only) */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

/* Full-screen mobile nav overlay */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
}

.nav-mobile.open { display: flex; }

.nav-mobile a {
  font-family: 'Poppins', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-primary);
  transition: color var(--transition);
}

.nav-mobile a:hover { color: var(--accent-cyan); }
.nav-mobile .btn-primary { font-size: 1rem; }

.nav-mobile-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  font-size: 1.5rem;
  line-height: 1;
  padding: 8px;
  transition: color var(--transition);
}
.nav-mobile-close:hover { color: var(--text-primary); }

/* ===== TESTIMONIALS ===== */
.section-testimonials {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.section-testimonials h2 { margin-bottom: 40px; }

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  text-align: left;
}

.testimonial-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial-quote {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-primary);
  font-style: italic;
}

.testimonial-quote::before {
  content: '\201C';
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  color: var(--accent-cyan);
  line-height: 0;
  vertical-align: -0.4rem;
  margin-right: 2px;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial-name {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
}

.testimonial-biz {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--radius-btn);
  padding: 13px 28px;
  cursor: pointer;
  transition: opacity var(--transition), transform var(--transition);
}

.btn-primary:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

.btn-outline {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
  border-radius: var(--radius-btn);
  padding: 12px 28px;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.btn-outline:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-1px);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 48px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  padding-bottom: 40px;
  align-items: start;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
}

.footer-tagline {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--text-primary); }

.footer-bar {
  border-top: 1px solid var(--border);
  padding: 16px 0;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-bar a { color: var(--text-muted); }
.footer-bar a:hover { color: var(--text-primary); }

/* ===== HERO ===== */
.hero {
  min-height: 78vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Blue-tinted geometric grid background */
.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--accent-dim) 1px, transparent 1px),
    linear-gradient(90deg, var(--accent-dim) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(ellipse 80% 70% at 40% 50%, black 20%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 40% 50%, black 20%, transparent 100%);
  animation: grid-pulse 10s ease-in-out infinite;
}

@keyframes grid-pulse {
  0%, 100% { opacity: 0.5; }
  50%       { opacity: 1; }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.hero h1 { margin-bottom: 20px; }

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 540px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-cta-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.hero-cta-row .btn-primary {
  font-size: 1.05rem;
  padding: 15px 36px;
}

.hero-footnote {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ===== PROBLEM SECTION ===== */
.section-problem {
  text-align: center;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-problem .text-block {
  max-width: 680px;
  margin: 0 auto;
}

.section-problem h2 { margin-bottom: 20px; }

/* ===== HOW IT WORKS ===== */
.section-how h2 { margin-bottom: 48px; }

.steps {
  display: grid;
  grid-template-columns: 1fr 32px 1fr 32px 1fr;
  gap: 0;
  align-items: start;
}

.step-connector {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 44px;
  color: var(--text-muted);
  font-size: 1.2rem;
}

.step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 32px;
}

.step-number {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-cyan);
  margin-bottom: 14px;
  line-height: 1;
}

.step h3 { margin-bottom: 8px; }

/* ===== PRICING PREVIEW ===== */
.section-pricing { text-align: center; }
.section-pricing h2 { margin-bottom: 8px; }
.section-pricing .section-sub { margin-bottom: 40px; }

.pricing-card {
  display: inline-block;
  text-align: left;
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent);
  border-radius: var(--radius-card);
  padding: 40px 48px;
  max-width: 480px;
  width: 100%;
}

.badge {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-cyan);
  border: 1px solid var(--accent-cyan);
  border-radius: 4px;
  padding: 3px 10px;
  margin-bottom: 20px;
}

.price-display {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 4px;
}

.price-display .mo { font-size: 1.1rem; font-weight: 500; }

.price-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.feature-list {
  margin-bottom: 28px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-primary);
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
}

.feature-list li:last-child { border-bottom: none; }

.feature-list li::before {
  content: '✓';
  color: var(--accent-cyan);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.pricing-card .btn-primary {
  width: 100%;
  text-align: center;
}

.card-footnote {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 14px;
  text-align: center;
}

.below-card {
  margin-top: 20px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.below-card a { color: var(--accent-cyan); }

/* ===== PORTFOLIO PREVIEW ===== */
.section-work h2 { margin-bottom: 8px; }

.portfolio-grid-preview {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 40px 0 36px;
}

.portfolio-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
}

.portfolio-card:hover {
  border-color: var(--accent-cyan);
  transform: translateY(-2px);
}

.card-img {
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent-cyan);
  border-bottom: 1px solid var(--border);
}

.card-img.lem { background: linear-gradient(135deg, #071422 0%, #0a1e35 100%); }
.card-img.s3d { background: linear-gradient(135deg, #0a0e1a 0%, #0d1528 100%); }

.card-body { padding: 20px 24px; }

.card-type {
  font-size: 0.7rem;
  font-family: 'Poppins', sans-serif;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.card-body h3 { margin-bottom: 6px; font-size: 0.95rem; }

.card-url {
  font-size: 0.78rem;
  color: var(--accent-cyan);
  opacity: 0.8;
  transition: opacity var(--transition);
}

.card-url:hover { opacity: 1; }

/* ===== FINAL CTA ===== */
.section-final-cta {
  background: var(--surface);
  border-top: 3px solid var(--accent);
  text-align: center;
}

.section-final-cta h2 { margin-bottom: 12px; }

.section-final-cta .cta-sub {
  color: var(--text-muted);
  margin-bottom: 32px;
  font-size: 1rem;
}

/* ===== PAGE HEADER (inner pages) ===== */
.page-header {
  padding: 80px 0 56px;
  max-width: 700px;
}

.page-header h1 { margin-bottom: 16px; }

.page-header p {
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ===== SERVICES PAGE ===== */
.services-featured {
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent);
  border-radius: var(--radius-card);
  padding: 48px;
  max-width: 560px;
  margin: 0 auto 80px;
  text-align: center;
}

.services-featured .price-display {
  font-size: 3.5rem;
  margin: 16px 0 4px;
}

.services-featured .price-sub {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.services-featured .feature-list {
  text-align: left;
}

.services-featured .btn-primary {
  width: 100%;
  text-align: center;
  font-size: 1rem;
  padding: 14px;
}

.services-featured .card-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 12px;
  font-style: italic;
}

.section-tiers { padding-top: 0; }

.tier-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 24px;
}

/* Comparison table */
.table-wrapper {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  min-width: 520px;
}

.comparison-table th {
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-primary);
  background: var(--surface);
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.comparison-table td {
  padding: 12px 20px;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}

.comparison-table td:first-child {
  color: var(--text-primary);
  font-weight: 500;
}

.comparison-table tr:last-child td { border-bottom: none; }

.comparison-table tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.02);
}

/* Hosting policy box */
.hosting-policy {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--text-muted);
  border-radius: 0 var(--radius-card) var(--radius-card) 0;
  padding: 28px 32px;
  margin-top: 48px;
  max-width: 700px;
}

.hosting-policy .policy-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.policy-icon {
  font-size: 1.1rem;
  color: var(--text-muted);
  flex-shrink: 0;
}

.hosting-policy h3 {
  font-size: 0.95rem;
  color: var(--text-primary);
}

.hosting-policy p { font-size: 0.9rem; line-height: 1.7; }
.hosting-policy p + p { margin-top: 8px; }

/* ===== PORTFOLIO PAGE ===== */
.portfolio-full-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.portfolio-card-full {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
}

.portfolio-card-full:hover {
  border-color: var(--accent-cyan);
  transform: translateY(-2px);
}

.portfolio-card-full .card-img {
  height: 200px;
  border-radius: 0;
  border-bottom: 1px solid var(--border);
}

.portfolio-card-full .card-img.placeholder {
  background: var(--bg);
  border: 2px dashed var(--border);
  border-bottom-style: dashed;
  flex-direction: column;
  gap: 6px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.portfolio-card-full .card-body { padding: 24px; }

.portfolio-card-full .card-type {
  font-size: 0.7rem;
  font-family: 'Poppins', sans-serif;
  color: var(--accent-cyan);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.portfolio-card-full h3 { margin-bottom: 10px; font-size: 1rem; }

.portfolio-card-full p {
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.site-link {
  font-size: 0.8rem;
  color: var(--accent-cyan);
  font-weight: 500;
  transition: opacity var(--transition);
}

.site-link:hover { opacity: 0.75; }

/* ===== ABOUT PAGE ===== */
.about-body {
  max-width: 660px;
  margin: 0 auto;
}

.about-body .page-header { max-width: 100%; }

.about-body > p {
  font-size: 1.05rem;
  line-height: 1.8;
}

.pull-quote {
  border-left: 3px solid var(--accent-cyan);
  border-radius: 0 var(--radius-card) var(--radius-card) 0;
  background: var(--surface);
  padding: 24px 28px;
  margin: 48px 0;
}

.pull-quote blockquote {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.4;
}

.pull-quote blockquote::before {
  content: '\201C';
  font-size: 2.8rem;
  color: var(--accent-cyan);
  line-height: 0;
  vertical-align: -0.45rem;
  margin-right: 4px;
}

.about-cta { margin-top: 40px; }

/* ===== CONTACT PAGE ===== */
.contact-layout { max-width: 580px; }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-group label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-primary);
}

.form-group label .optional {
  font-weight: 400;
  color: var(--text-muted);
  font-size: 0.78rem;
  margin-left: 4px;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 12px 14px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--text-primary);
  outline: none;
  width: 100%;
  transition: border-color var(--transition);
}

.form-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2364748B' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.form-group select option { background: var(--surface); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--accent); }

.form-group textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.6;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }

.contact-form .btn-primary {
  width: 100%;
  text-align: center;
  padding: 15px;
  font-size: 1rem;
}

.form-alt {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 10px;
}

.form-alt a { color: var(--accent-cyan); }

/* Inline success message */
.form-success {
  display: none;
  background: var(--surface);
  border: 1px solid var(--accent-cyan);
  border-radius: var(--radius-card);
  padding: 36px;
  text-align: center;
  margin-top: 40px;
}

.form-success h3 {
  color: var(--accent-cyan);
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.form-success p { font-size: 0.95rem; }

/* ===== UTILITY ===== */
.text-center { text-align: center; }
.text-accent  { color: var(--accent); }
.text-muted   { color: var(--text-muted); }

.mt-8  { margin-top: 8px;  }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }
.mt-48 { margin-top: 48px; }
.mb-20 { margin-bottom: 20px; }

.divider {
  height: 1px;
  background: var(--border);
}

.section-no-top-pad { padding-top: 0; }

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ===== SPOTS INDICATOR ===== */
.spots-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.spots-pips {
  display: flex;
  gap: 6px;
}

.spots-pips span {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-cyan);
}

.spots-pips span.taken {
  background: var(--border);
}

.spots-label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent-cyan);
  letter-spacing: 0.04em;
}

/* ===== SOCIAL LINKS ===== */
.footer-social {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 10px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text-muted);
  transition: border-color var(--transition), color var(--transition);
}

.footer-social a:hover {
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
}

.footer-social svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  :root { --section-pad: 56px; }

  .nav-links    { display: none; }
  .nav-hamburger { display: flex; }

  .steps                 { grid-template-columns: 1fr; }
  .step-connector        { display: none; }
  .portfolio-grid-preview,
  .portfolio-full-grid   { grid-template-columns: 1fr; }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-links { flex-wrap: wrap; gap: 16px; }

  .pricing-card  { padding: 28px 24px; }

  .services-featured { padding: 32px 24px; }

  .page-header { padding: 56px 0 40px; }

  .hero { min-height: 85svh; }
}

@media (max-width: 480px) {
  .price-display       { font-size: 2.5rem; }
  .services-featured .price-display { font-size: 3rem; }
}
