/* =============================================
   DevStudioX — style.css
   Design: Dark navy base, electric accent (#3B82F6 blue + #F59E0B amber),
   Syne display / Inter body — clean studio feel with craft warmth
   ============================================= */

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

:root {
  --navy:     #0A0F1E;
  --navy-2:   #111827;
  --navy-3:   #1F2A40;
  --blue:     #3B82F6;
  --blue-d:   #2563EB;
  --amber:    #F59E0B;
  --amber-d:  #D97706;
  --white:    #FFFFFF;
  --gray-1:   #F8F9FC;
  --gray-2:   #E5E7EB;
  --gray-3:   #9CA3AF;
  --gray-4:   #6B7280;
  --text:     #1F2937;
  --text-m:   #4B5563;
  --radius:   12px;
  --radius-lg: 20px;
  --shadow:   0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.14);
  --font-display: 'Syne', sans-serif;
  --font-body:    'Inter', sans-serif;
  --transition: 0.22s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

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

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

/* ── BUTTONS ────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn--primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn--primary:hover {
  background: var(--blue-d);
  border-color: var(--blue-d);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(59,130,246,0.35);
}
.btn--ghost {
  background: transparent;
  color: rgba(255,255,255,0.85);
  border-color: rgba(255,255,255,0.35);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn--full { width: 100%; }

/* ── SECTION LABELS / TITLES ────────────────── */
.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}
.section-label--light { color: rgba(255,255,255,0.6); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 48px;
}

/* ── NAV ────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  background: rgba(10, 15, 30, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav__logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.nav__logo span { color: var(--amber); }

.nav__menu {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__menu a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color var(--transition);
}
.nav__menu a:hover { color: var(--white); }

.nav__cta {
  background: var(--blue) !important;
  color: var(--white) !important;
  padding: 9px 20px;
  border-radius: 8px;
  font-weight: 600 !important;
  font-size: 14px !important;
}
.nav__cta:hover {
  background: var(--blue-d) !important;
  transform: translateY(-1px);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ───────────────────────────────────── */
.hero {
  position: relative;
  background: var(--navy);
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 100px 0 80px;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 40%, rgba(59,130,246,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(245,158,11,0.10) 0%, transparent 60%);
  pointer-events: none;
}
/* subtle grid overlay */
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,158,11,0.12);
  border: 1px solid rgba(245,158,11,0.3);
  color: var(--amber);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 76px);
  font-weight: 800;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero__headline em {
  font-style: normal;
  color: var(--amber);
}
.hero__sub {
  font-size: 18px;
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero__trust {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.hero__stat {
  display: flex;
  flex-direction: column;
}
.hero__stat strong {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.hero__stat span {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}
.hero__scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.3);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bob 2s ease-in-out infinite;
}
@keyframes bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ── SERVICES ───────────────────────────────── */
.services {
  padding: 96px 0;
  background: var(--gray-1);
}
.services .section-title { margin-bottom: 56px; }

.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid var(--gray-2);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.service-card--digital::before  { background: var(--blue); }
.service-card--apparel::before  { background: #10B981; }
.service-card--digitizing::before { background: var(--amber); }
.service-card--laser::before    { background: #EF4444; }

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-card--digital .service-card__icon   { background: rgba(59,130,246,0.1); color: var(--blue); }
.service-card--apparel .service-card__icon   { background: rgba(16,185,129,0.1); color: #10B981; }
.service-card--digitizing .service-card__icon { background: rgba(245,158,11,0.1); color: var(--amber-d); }
.service-card--laser .service-card__icon     { background: rgba(239,68,68,0.1); color: #EF4444; }

.service-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}
.service-card p {
  font-size: 15px;
  color: var(--text-m);
  margin-bottom: 20px;
  line-height: 1.65;
}
.service-card__list {
  list-style: none;
  margin-bottom: 24px;
}
.service-card__list li {
  font-size: 14px;
  color: var(--text-m);
  padding: 5px 0;
  padding-left: 18px;
  position: relative;
}
.service-card__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 700;
}
.service-card--apparel .service-card__list li::before   { color: #10B981; }
.service-card--digitizing .service-card__list li::before { color: var(--amber-d); }
.service-card--laser .service-card__list li::before     { color: #EF4444; }

.service-card__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--transition);
}
.service-card--apparel .service-card__link   { color: #10B981; }
.service-card--digitizing .service-card__link { color: var(--amber-d); }
.service-card--laser .service-card__link     { color: #EF4444; }
.service-card__link:hover { gap: 8px; }

/* ── PROOF STRIP ─────────────────────────────── */
.proof-strip {
  background: var(--navy-2);
  padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.proof-strip__label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.35);
  text-align: center;
  margin-bottom: 16px;
}
.proof-strip__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.proof-logo {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-family: var(--font-display);
  transition: color var(--transition);
}
.proof-logo:hover { color: rgba(255,255,255,0.5); }

/* ── BUNDLE ─────────────────────────────────── */
.bundle {
  background: var(--navy);
  padding: 96px 0;
}
.bundle__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.bundle__text h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
}
.bundle__text p {
  color: rgba(255,255,255,0.6);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 28px;
}
.bundle__features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}
.bundle__feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255,255,255,0.8);
  font-size: 15px;
}
.bundle__check {
  color: var(--amber);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
/* visual: 4 cards with connector lines indicating hub */
.bundle__visual {
  position: relative;
  height: 280px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
}
.bundle__card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  text-align: center;
  padding: 12px;
  transition: all var(--transition);
}
.bundle__card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  color: var(--white);
}
.bundle__card-icon { font-size: 24px; }
.bundle__center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: var(--amber);
  color: var(--navy);
  border-radius: 50%;
  width: 68px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  text-align: center;
  z-index: 2;
  line-height: 1.2;
  padding: 4px;
}

/* ── HOW IT WORKS ───────────────────────────── */
.how {
  padding: 96px 0;
  background: var(--gray-1);
}
.how .section-title { margin-bottom: 56px; }
.how__steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
}
.how__step {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--gray-2);
}
.how__num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--blue);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 16px;
}
.how__step h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.how__step p {
  font-size: 14px;
  color: var(--text-m);
  line-height: 1.65;
}
.how__connector {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--gray-3);
  padding: 0 8px;
  padding-top: 40px;
}

/* ── PORTFOLIO ──────────────────────────────── */
.portfolio {
  padding: 96px 0;
  background: var(--white);
}
.portfolio .section-title { margin-bottom: 40px; }
.portfolio__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.portfolio__item { border-radius: var(--radius-lg); overflow: hidden; }
.portfolio__item--wide { grid-column: span 2; }

.portfolio__img {
  position: relative;
  width: 100%;
  height: 260px;
  overflow: hidden;
  cursor: pointer;
}
.portfolio__img--web      { background: linear-gradient(135deg, #1e3a5f 0%, #2563EB 100%); }
.portfolio__img--apparel  { background: linear-gradient(135deg, #064e3b 0%, #10B981 100%); }
.portfolio__img--laser    { background: linear-gradient(135deg, #3b1515 0%, #EF4444 100%); }
.portfolio__img--digitize { background: linear-gradient(135deg, #451a03 0%, #F59E0B 100%); }
.portfolio__img--brand    { background: linear-gradient(135deg, #1e1b4b 0%, #7C3AED 100%); }

/* icon pattern overlay */
.portfolio__img::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: radial-gradient(circle, #fff 1px, transparent 1px);
  background-size: 20px 20px;
}
.portfolio__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 0;
  transition: opacity var(--transition);
}
.portfolio__img:hover .portfolio__overlay { opacity: 1; }
.portfolio__tag {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 10px;
  width: fit-content;
}
.portfolio__overlay h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.portfolio__overlay p {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}

.portfolio__img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}

/* labels shown when not hovering */
.portfolio__img::after {
  content: attr(data-label);
  position: absolute;
  bottom: 16px;
  left: 16px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  transition: opacity var(--transition);
}

/* ── TESTIMONIALS ───────────────────────────── */
.testimonials {
  padding: 96px 0;
  background: var(--gray-1);
}
.testimonials .section-title { margin-bottom: 48px; }
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--gray-2);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.testimonial__stars { color: var(--amber); font-size: 16px; letter-spacing: 2px; }
.testimonial blockquote {
  font-size: 15px;
  color: var(--text-m);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}
.testimonial__author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--gray-2);
  padding-top: 16px;
}
.testimonial__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testimonial__author strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}
.testimonial__author span {
  font-size: 13px;
  color: var(--gray-4);
}

/* ── QUOTE FORM ─────────────────────────────── */
.quote {
  background: var(--navy);
  padding: 96px 0;
}
.quote__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}
.quote__text h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}
.quote__text p {
  color: rgba(255,255,255,0.6);
  font-size: 16px;
  margin-bottom: 32px;
  line-height: 1.7;
}
.quote__contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.quote__contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.65);
  font-size: 14px;
}
.quote__contact-item svg { color: var(--blue); flex-shrink: 0; }
.quote__contact-item a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color var(--transition);
}
.quote__contact-item a:hover { color: var(--white); }

/* Form */
.quote__form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  background: var(--gray-1);
  border: 1.5px solid var(--gray-2);
  border-radius: 8px;
  padding: 11px 14px;
  width: 100%;
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(59,130,246,0.12);
  background: var(--white);
}
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #EF4444;
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-note {
  text-align: center;
  font-size: 12px;
  color: var(--gray-4);
  margin-top: 10px;
}
.form-success {
  display: none;
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.3);
  color: #065f46;
  border-radius: 8px;
  padding: 14px 16px;
  font-size: 14px;
  margin-top: 12px;
  text-align: center;
}
.form-success.show { display: block; }

/* ── FAQ ────────────────────────────────────── */
.faq {
  padding: 96px 0;
  background: var(--white);
}
.faq .section-title { margin-bottom: 48px; }
.faq__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 48px;
}
.faq__item {
  border-bottom: 1px solid var(--gray-2);
}
.faq__q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: color var(--transition);
}
.faq__q::after {
  content: '+';
  font-size: 20px;
  color: var(--blue);
  flex-shrink: 0;
  font-weight: 300;
  transition: transform var(--transition);
}
.faq__q[aria-expanded="true"] { color: var(--blue); }
.faq__q[aria-expanded="true"]::after { transform: rotate(45deg); }
.faq__a {
  display: none;
  padding-bottom: 20px;
}
.faq__a.open { display: block; }
.faq__a p {
  font-size: 14px;
  color: var(--text-m);
  line-height: 1.7;
}

/* ── FOOTER ─────────────────────────────────── */
.footer {
  background: var(--navy-2);
  padding: 64px 0 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer__brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  margin-top: 12px;
  line-height: 1.65;
  max-width: 240px;
}
.footer__social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.footer__social a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: all var(--transition);
  text-decoration: none;
}
.footer__social a:hover {
  background: rgba(255,255,255,0.13);
  color: var(--white);
}
.footer__col h4 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 16px;
}
.footer__col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__col li, .footer__col a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color var(--transition);
  line-height: 1.4;
}
.footer__col a:hover { color: var(--white); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.25);
}
.footer__links {
  display: flex;
  gap: 20px;
}
.footer__links a {
  font-size: 13px;
  color: rgba(255,255,255,0.25);
  text-decoration: none;
  transition: color var(--transition);
}
.footer__links a:hover { color: rgba(255,255,255,0.6); }

/* ── FLOATING CTA (mobile) ──────────────────── */
.float-cta {
  display: none;
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: var(--white);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: 100px;
  text-decoration: none;
  z-index: 900;
  box-shadow: 0 8px 24px rgba(59,130,246,0.45);
  white-space: nowrap;
  transition: all var(--transition);
}
.float-cta:hover {
  background: var(--blue-d);
  transform: translateX(-50%) translateY(-2px);
}

/* ── SCROLL ANIMATIONS ──────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── RESPONSIVE ─────────────────────────────── */
@media (max-width: 1024px) {
  .how__steps {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .how__connector { display: none; }
  .how__step { break-inside: avoid; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav__menu {
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: rgba(10, 15, 30, 0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px 0 24px;
    transform: translateY(-110%);
    transition: transform 0.3s ease;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .nav__menu.open { transform: translateY(0); }
  .nav__menu a {
    padding: 13px 24px;
    font-size: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  .nav__menu a:last-child { border-bottom: none; }
  .nav__cta {
    margin: 12px 24px 0;
    text-align: center;
    border-radius: 8px !important;
  }
  .nav__toggle { display: flex; }

  .hero { padding: 90px 0 72px; min-height: auto; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; text-align: center; }
  .hero__trust { gap: 24px; }
  .hero__scroll-hint { display: none; }

  .services__grid { grid-template-columns: 1fr; }

  .bundle__inner { grid-template-columns: 1fr; gap: 40px; }
  .bundle__visual { height: 220px; }

  .how__steps { grid-template-columns: 1fr; }
  .how__connector { display: none; }

  .portfolio__grid { grid-template-columns: 1fr; }
  .portfolio__item--wide { grid-column: span 1; }
  .portfolio__overlay { opacity: 1; background: rgba(0,0,0,0.45); }

  .testimonials__grid { grid-template-columns: 1fr; }

  .quote__inner { grid-template-columns: 1fr; gap: 40px; }
  .quote__form { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }

  .faq__grid { grid-template-columns: 1fr; gap: 0; }

  .footer__inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer__brand { grid-column: span 2; }

  .float-cta { display: flex; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section-title { font-size: 26px; }
  .hero__headline { font-size: 36px; }
  .hero__sub { font-size: 15px; }
  .hero__stat strong { font-size: 24px; }
  .service-card { padding: 24px 20px; }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__brand { grid-column: span 1; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .proof-strip__logos { gap: 20px; }
  .testimonials__grid { grid-template-columns: 1fr; }
}

/* ── REDUCED MOTION ─────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}
