/* ============================================
   BASE — DESIGN TOKENS & CSS VARIABLES
   ============================================ */

:root {
  /* Brand Colors */
  --color-cyan:        #00D4FF;
  --color-cyan-dark:   #00A8CC;
  --color-cyan-glow:   rgba(0, 212, 255, 0.15);
  --color-blue:        #0066FF;

  /* Surface Colors */
  --color-bg:          #0D0F14;
  --color-bg-mid:      #141820;
  --color-bg-card:     #1A1E2A;
  --color-border:      #252B3B;

  /* Text Colors */
  --color-white:       #FFFFFF;
  --color-white-90:    rgba(255, 255, 255, 0.9);
  --color-white-70:    rgba(255, 255, 255, 0.7);
  --color-white-40:    rgba(255, 255, 255, 0.4);
  --color-white-10:    rgba(255, 255, 255, 0.07);

  /* Gradients */
  --gradient-brand:    linear-gradient(135deg, #00D4FF 0%, #0066FF 100%);
  --gradient-glow:     linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(0, 102, 255, 0.2));

  /* Typography — system stack as fallback while web fonts load */
  --font-heading:      'Montserrat', system-ui, -apple-system, sans-serif;
  --font-body:         'Inter', system-ui, -apple-system, sans-serif;

  /* Border Radius */
  --radius-sm:         8px;
  --radius-md:         14px;
  --radius-lg:         20px;
  --radius-xl:         28px;
  --radius-full:       9999px;

  /* Shadows */
  --shadow-card:       0 4px 24px rgba(0, 0, 0, 0.3);
  --shadow-glow:       0 0 40px rgba(0, 212, 255, 0.15);

  /* Transitions */
  --transition-base:   all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow:   all 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  /* Layout */
  --max-width:         1200px;
  --section-padding:   6rem;
  --container-padding: 1.5rem;
  --section-header-mb: 3.5rem;

  /* Z-index scale */
  --z-navbar:          1000;
  --z-mobile-menu:     999;
  --z-overlay:         100;
}
/* ============================================
   BASE — RESET & GLOBAL DEFAULTS
   ============================================ */

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

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

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-white);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

ul,
ol {
  list-style: none;
}

input,
select,
textarea {
  font-family: inherit;
}

/* Custom scrollbar */
::-webkit-scrollbar         { width: 6px; }
::-webkit-scrollbar-track   { background: var(--color-bg); }
::-webkit-scrollbar-thumb   { background: var(--color-border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--color-cyan-dark); }
/* ============================================
   BASE — TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.15;
}

h1 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: 1.25rem; font-weight: 700; }

/* Gradient text utility */
.text-gradient {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Section label pill */
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-cyan);
  background: var(--color-cyan-glow);
  border: 1px solid rgba(0, 212, 255, 0.25);
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

/* Section header block */
.section-header {
  text-align: center;
  margin-bottom: var(--section-header-mb, 3.5rem);
}

.section-title {
  margin-bottom: 1rem;
}

.section-sub {
  color: var(--color-white-70);
  max-width: 560px;
  margin: 0 auto;
  font-size: 1.05rem;
}
/* ============================================
   BASE — LAYOUT UTILITIES
   ============================================ */

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

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

/* ── Responsive spacing overrides ─────────────────────────────────────────── */
@media (max-width: 768px) {
  :root {
    --section-padding:   4rem;
    --section-header-mb: 2.5rem;
    --container-padding: 1.25rem;
  }
}

@media (max-width: 480px) {
  :root {
    --section-padding:   3rem;
    --section-header-mb: 2rem;
    --container-padding: 1rem;
  }
}

/* Scroll reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Section-level reveal */
section.reveal {
  transform: translateY(70px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* ── Hero entrance animations ─────────────────────────────────────────────── */
.hero__headline     { animation: heroFadeUp 0.9s 0.2s both; }
.hero__subheadline  { animation: heroFadeUp 0.9s 0.5s both; }
.hero__ctas         { animation: heroFadeUp 0.9s 0.7s both; }
.hero__trust        { animation: heroFadeUp 0.9s 0.9s both; }

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Floating / hover micro-animations ────────────────────────────────────── */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

.stats__icon {
  animation: float 3s ease-in-out infinite;
}

/* Navbar logo subtle hover */
.navbar__logo {
  transition: transform 0.3s ease;
}
.navbar__logo:hover {
  transform: scale(1.03);
}

/* Button press effect */
.btn:active {
  transform: scale(0.96) !important;
  transition-duration: 0.1s;
}

/* Card tilt on hover */
.sector-card {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.3s ease,
              box-shadow 0.3s ease;
}

.sector-card:hover {
  transform: translateY(-8px) rotate(-0.5deg);
}

/* Process step slide-in from left */
.process__step-card {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.3s ease,
              box-shadow 0.3s ease,
              opacity 0.6s ease;
}

.process__step-card:hover {
  transform: translateX(8px);
}

/* Pricing tier pop on hover */
.pricing__tier {
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
              border-color 0.3s ease,
              box-shadow 0.3s ease;
}

.pricing__tier:hover {
  transform: scale(1.04);
}

/* FAQ question arrow rotation */
.faq__icon {
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
              color 0.2s ease;
}

/* Projects grid items scale */
.projects__item-inner {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.3s ease,
              box-shadow 0.4s ease;
}

.projects__item-inner:hover {
  transform: translateY(-6px) scale(1.02);
}

/* Contact form inputs glow on focus */
.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  border-color: var(--color-cyan);
  box-shadow: 0 0 0 4px rgba(0, 212, 255, 0.12),
              0 0 20px rgba(0, 212, 255, 0.08);
  transform: translateY(-1px);
}

/* Section header slide */
.section-header {
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Gradient text shimmer on hover */
.text-gradient {
  background-size: 200% auto;
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%   { background-position: 0% center; }
  50%  { background-position: 100% center; }
  100% { background-position: 0% center; }
}

/* Fade-in-up keyframe (used by JS filter) */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Pulse animation (hero badge dot) */
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.3); }
}

/* Scroll bounce animation (hero indicator) */
@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50%       { transform: rotate(45deg) translateY(5px); }
}
/* ============================================
   COMPONENT — BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: var(--transition-base);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

/* Primary — filled gradient */
.btn--primary {
  background: var(--gradient-brand);
  color: var(--color-bg);
  box-shadow: 0 4px 20px rgba(0, 212, 255, 0.3);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 212, 255, 0.45);
}

/* Secondary — ghost */
.btn--secondary {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.btn--secondary:hover {
  border-color: var(--color-cyan);
  color: var(--color-cyan);
  background: var(--color-cyan-glow);
}

/* Size modifiers */
.btn--large {
  padding: 1.1rem 2.2rem;
  font-size: 1rem;
}

.btn--full {
  width: 100%;
  justify-content: center;
}

/* ── Responsive ────────────────────────────────────────────────────────────── */
@media (max-width: 480px) {
  .btn {
    white-space: normal;   /* allow text to wrap instead of overflowing */
    text-align: center;
  }

  .btn--large {
    padding: 0.9rem 1.5rem;
    font-size: 0.95rem;
  }
}
/* ============================================
   COMPONENT — NAVBAR
   ============================================ */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-navbar);
  padding: 1.2rem 0;
  transition: var(--transition-base);
}

.navbar.is-scrolled {
  background: rgba(13, 15, 20, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-border);
  padding: 0.8rem 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.navbar__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.navbar__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.3rem;
}

/* Logo image — sized automatically, max height keeps it navbar-friendly */
.navbar__logo-img {
  height: 36px;
  width: auto;
  display: block;
  object-fit: contain;
}

@media (max-width: 768px) {
  .navbar__logo-img { height: 30px; }
}

.navbar__logo-icon {
  font-size: 1.5rem;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.navbar__logo-accent {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Nav links */
.navbar__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.navbar__links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-white-70);
  transition: var(--transition-base);
  position: relative;
  padding-bottom: 2px;
}

.navbar__links a:hover {
  color: var(--color-white);
}

/* Animated underline on hover */
.navbar__links a:not(.navbar__cta)::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-brand);
  border-radius: 2px;
  transition: width 0.25s ease;
}

.navbar__links a:not(.navbar__cta):hover::after {
  width: 100%;
}

/* Active section state — set by JS initActiveNav() */
.navbar__links a.is-active:not(.navbar__cta) {
  color: var(--color-white);
}

.navbar__links a.is-active:not(.navbar__cta)::after {
  width: 100%;
}

/* CTA link in nav */
.navbar__cta {
  background: var(--gradient-brand) !important;
  color: var(--color-bg) !important;
  padding: 0.55rem 1.3rem;
  border-radius: var(--radius-sm);
  font-weight: 700 !important;
  font-size: 0.85rem !important;
  transition: var(--transition-base) !important;
}

.navbar__cta:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

/* Hamburger */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.navbar__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: var(--transition-base);
}

.navbar__hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__hamburger.is-open span:nth-child(2) { opacity: 0; }
.navbar__hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
@media (max-width: 768px) {
  .navbar__hamburger {
    display: flex;
  }

  .navbar__links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--color-bg-mid);
    border-left: 1px solid var(--color-border);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
    transition: right 0.3s ease;
    z-index: var(--z-mobile-menu);
  }

  .navbar__links.is-open {
    right: 0;
  }

  .navbar__links a {
    font-size: 1.1rem;
  }
}
/* ============================================
   COMPONENT — FORMS
   ============================================ */

.form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form__group--full {
  grid-column: 1 / -1;
}

.form__label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-white-70);
}

.form__input,
.form__select,
.form__textarea {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  color: var(--color-white);
  padding: 0.8rem 1rem;
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition-base);
  width: 100%;
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: var(--color-white-40);
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  border-color: var(--color-cyan);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.form__input.is-error,
.form__select.is-error {
  border-color: #ff4444;
}

.form__select option {
  background: var(--color-bg-card);
}

.form__textarea {
  resize: vertical;
  min-height: 100px;
}

/* File upload area */
.form__upload-label {
  cursor: pointer;
}

.form__upload-area {
  border: 2px dashed var(--color-border);
  border-radius: var(--radius-md);
  padding: 2rem;
  text-align: center;
  transition: var(--transition-base);
  color: var(--color-white-70);
}

.form__upload-area:hover,
.form__upload-area.is-drag-over {
  border-color: var(--color-cyan);
  background: var(--color-cyan-glow);
  color: var(--color-white);
}

.form__upload-area svg {
  color: var(--color-cyan);
  margin: 0 auto 0.75rem;
}

.form__upload-title {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.form__upload-hint {
  font-size: 0.82rem;
  color: var(--color-white-40);
}

.form__upload-formats {
  font-size: 0.75rem;
  color: var(--color-white-40);
  margin-top: 0.5rem;
}

.form__file-input {
  display: none;
}

/* File list */
.form__file-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: 0.5rem;
}

.form__file-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.75rem;
  font-size: 0.82rem;
  color: var(--color-white-70);
}

.form__file-name {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.form__file-ext {
  color: var(--color-cyan);
  font-size: 0.75rem;
  font-weight: 700;
}

.form__file-size {
  color: var(--color-white-40);
  font-size: 0.75rem;
}

.form__file-remove {
  color: var(--color-white-40);
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
  transition: var(--transition-base);
}

.form__file-remove:hover {
  color: #ff4444;
}

/* Privacy note */
.form__privacy {
  font-size: 0.78rem;
  color: var(--color-white-40);
  text-align: center;
}

/* Success state */
.form__success {
  text-align: center;
  padding: 3rem 2rem;
}

.form__success-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.form__success h3 {
  margin-bottom: 0.5rem;
  color: var(--color-cyan);
}

.form__success p {
  color: var(--color-white-70);
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
  .form__row {
    grid-template-columns: 1fr;
  }
}
/* ============================================
   COMPONENT — FOOTER
   ============================================ */

.footer {
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);
  padding: 4rem 0 0;
}

.footer__grid {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding) 3rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}

/* Brand column */
.footer__brand-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.footer__brand-desc {
  font-size: 0.88rem;
  color: var(--color-white-40);
  line-height: 1.7;
  max-width: 260px;
}

/* Link columns */
.footer__col-title {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-white-70);
  margin-bottom: 1rem;
}

.footer__col-links li {
  margin-bottom: 0.6rem;
}

.footer__col-links a {
  font-size: 0.88rem;
  color: var(--color-white-40);
  transition: var(--transition-base);
}

.footer__col-links a:hover {
  color: var(--color-cyan);
}

/* Bottom bar */
.footer__bottom {
  border-top: 1px solid var(--color-border);
  padding: 1.5rem var(--container-padding);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer__bottom p,
.footer__bottom a {
  font-size: 0.82rem;
  color: var(--color-white-40);
  transition: var(--transition-base);
}

.footer__bottom a:hover {
  color: var(--color-cyan);
}

/* Responsive */
@media (max-width: 1024px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .footer {
    padding-top: 3rem;
  }
}
/* ============================================
   SECTION — HERO
   ============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0;
}

/* Background layer */
.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0D0F14 0%, #141820 40%, #0a1628 100%);
}

.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 60% 50%, rgba(0, 102, 255, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(0, 212, 255, 0.08) 0%, transparent 50%);
}

/* ── Flying ink particles on page load ────────────────────────────────────── */
.hero__particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero__particle {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  animation: particleFly 1.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero__particle--1 {
  width: 12px; height: 12px;
  background: var(--color-cyan);
  top: 30%; left: -5%;
  animation-delay: 0.2s;
  box-shadow: 0 0 20px var(--color-cyan);
}
.hero__particle--2 {
  width: 8px; height: 8px;
  background: var(--color-blue);
  top: 50%; left: -5%;
  animation-delay: 0.4s;
  box-shadow: 0 0 15px var(--color-blue);
}
.hero__particle--3 {
  width: 16px; height: 16px;
  background: var(--color-cyan);
  top: 40%; left: -5%;
  animation-delay: 0.1s;
  box-shadow: 0 0 25px var(--color-cyan);
}
.hero__particle--4 {
  width: 6px; height: 6px;
  background: #fff;
  top: 60%; left: -5%;
  animation-delay: 0.5s;
  box-shadow: 0 0 10px rgba(255,255,255,0.5);
}
.hero__particle--5 {
  width: 10px; height: 10px;
  background: var(--color-cyan);
  top: 25%; left: -5%;
  animation-delay: 0.3s;
  box-shadow: 0 0 18px var(--color-cyan);
}
.hero__particle--6 {
  width: 14px; height: 14px;
  background: var(--color-blue);
  top: 70%; left: -5%;
  animation-delay: 0.15s;
  box-shadow: 0 0 22px var(--color-blue);
}
.hero__particle--7 {
  width: 5px; height: 5px;
  background: #fff;
  top: 45%; left: -5%;
  animation-delay: 0.6s;
  box-shadow: 0 0 8px rgba(255,255,255,0.6);
}
.hero__particle--8 {
  width: 18px; height: 18px;
  background: var(--color-cyan);
  top: 55%; left: -5%;
  animation-delay: 0.05s;
  box-shadow: 0 0 30px var(--color-cyan);
}

@keyframes particleFly {
  0% {
    opacity: 0;
    transform: translateX(0) translateY(0) scale(0.3);
  }
  15% {
    opacity: 1;
    transform: translateX(20vw) translateY(-10px) scale(1);
  }
  70% {
    opacity: 0.7;
    transform: translateX(85vw) translateY(20px) scale(0.8);
  }
  100% {
    opacity: 0;
    transform: translateX(110vw) translateY(10px) scale(0.2);
  }
}

/* Background video */
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

/* Subtle grid pattern — disabled for clean look */
/*
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 212, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
*/

/* Content */
.hero__content {
  position: relative;
  z-index: var(--z-overlay);
  text-align: center;
  max-width: 900px;
  padding: 10rem 1.5rem 5rem;
}

/* Brand name above headline */
.hero__brand-name {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  animation: heroFadeUp 0.9s 0.1s both;
}

/* Rotating word in headline — Shopify-style */
.hero__rotating-wrapper {
  display: inline-block;
  position: relative;
  overflow: hidden;
  vertical-align: bottom;
  height: 1.2em;
  min-width: 200px;
}

.hero__rotating-word {
  display: inline-block;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--color-cyan);
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid rgba(0, 212, 255, 0.2);
  padding: 0.4rem 1.1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
}

.hero__badge-dot {
  width: 7px;
  height: 7px;
  background: var(--color-cyan);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero__headline {
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero__subheadline {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--color-white-70);
  max-width: 620px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.hero__subheadline strong {
  color: var(--color-white);
}

.hero__ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.hero__trust {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--color-white-40);
  font-weight: 500;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--color-white-40);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: var(--z-overlay);
}

.hero__scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--color-white-40);
  border-bottom: 2px solid var(--color-white-40);
  transform: rotate(45deg);
  animation: scrollBounce 1.5s infinite;
}

/* Responsive */
@media (max-width: 768px) {
  .hero__content {
    padding-top: 6rem;
    padding-bottom: 3rem;
  }
}

@media (max-width: 480px) {
  .hero__ctas  { flex-direction: column; align-items: center; }
  .hero__trust { flex-direction: column; gap: 0.5rem; }
  .hero__content {
    padding-top: 5rem;
  }
}
/* ============================================
   SECTION — STATS BANNER
   ============================================ */

.stats {
  background: var(--color-bg-mid);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 3rem 0;
}

.stats__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2rem;
}

.stats__item {
  text-align: center;
  flex: 1;
  min-width: 180px;
}

.stats__icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.stats__value {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  margin-bottom: 0.4rem;
}

.stats__label {
  font-size: 0.85rem;
  color: var(--color-white-70);
  max-width: 160px;
  margin: 0 auto;
}

.stats__divider {
  width: 1px;
  height: 60px;
  background: var(--color-border);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .stats__divider { display: none; }
  .stats__inner   { gap: 1.5rem; }
}

@media (max-width: 480px) {
  .stats__inner {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .stats__item {
    width: 100%;
    max-width: 280px;
  }
}
/* ============================================
   SECTION — WHY WALLERY STUDIO
   ============================================ */

.why {
  background: var(--color-bg);
}

.why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.why__card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.3s ease,
              box-shadow 0.3s ease;
}

.why__card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 212, 255, 0.3);
  box-shadow: var(--shadow-glow);
}

.why__card-value {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 900;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.75rem;
  line-height: 1.1;
}

.why__card-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--color-white);
}

.why__card-desc {
  font-size: 0.85rem;
  color: var(--color-white-70);
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 1024px) {
  .why__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .why__grid {
    grid-template-columns: 1fr;
  }

  .why__card {
    padding: 1.5rem 1.25rem;
  }
}
/* ============================================
   SECTION — SERVICES (CLEAN ICON CARDS)
   ============================================ */

.services {
  background: var(--color-bg-mid);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

/* Card — entire card is a link */
.services__card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  text-decoration: none;
  color: inherit;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.3s ease,
              box-shadow 0.3s ease;
}

.services__card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 212, 255, 0.35);
  box-shadow: var(--shadow-glow);
}

/* Icon */
.services__card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-cyan-glow);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: var(--radius-md);
  color: var(--color-cyan);
  flex-shrink: 0;
  transition: background 0.3s ease, transform 0.3s ease;
}

.services__card:hover .services__card-icon {
  background: rgba(0, 212, 255, 0.12);
  transform: scale(1.08);
}

/* Title */
.services__card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-white);
}

/* Description */
.services__card-desc {
  font-size: 0.88rem;
  color: var(--color-white-70);
  line-height: 1.6;
  flex: 1;
}

/* Link arrow */
.services__card-link {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-cyan);
  transition: color 0.2s ease;
  margin-top: auto;
}

.services__card:hover .services__card-link {
  color: var(--color-white);
}

/* Responsive */
@media (max-width: 1024px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .services__grid {
    grid-template-columns: 1fr;
  }

  .services__card {
    padding: 1.5rem 1.25rem;
  }
}
/* ============================================
   SECTION — PROJECTS / PORTFOLIO
   ============================================ */

.projects {
  background: var(--color-bg-mid);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

/* ── Header row (title left, CTA right) ─────────────────────────────────── */
.projects__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.projects__header .section-tag  { margin-bottom: 0.75rem; }
.projects__header .section-title { margin-bottom: 0.5rem; }
.projects__header .section-sub   { margin: 0; text-align: left; }

.projects__gallery-link {
  flex-shrink: 0;
  align-self: flex-end;
  white-space: nowrap;
}

/* ── Masonry-style grid ──────────────────────────────────────────────────── */
.projects__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 240px 240px;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

/* Tall item spans 2 rows */
.projects__item--tall {
  grid-row: span 2;
}

/* Wide item spans 2 columns */
.projects__item--wide {
  grid-column: span 2;
}

/* ── Individual item ─────────────────────────────────────────────────────── */
.projects__item-inner {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  cursor: pointer;
  transition: var(--transition-base);
}

.projects__item-inner:hover {
  border-color: rgba(0, 212, 255, 0.35);
  box-shadow: var(--shadow-glow);
  transform: translateY(-3px);
}

/* Real photo — uncomment <img> in HTML to activate */
.projects__item-inner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.projects__item-inner:hover img {
  transform: scale(1.04);
}

/* Placeholder shown until real photos are added */
.projects__item-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white-40);
  /* Subtle diagonal stripe */
  background-image: repeating-linear-gradient(
    -45deg,
    rgba(255, 255, 255, 0.015) 0px,
    rgba(255, 255, 255, 0.015) 1px,
    transparent 1px,
    transparent 14px
  );
}

/* "Coming Soon" chip on each placeholder */
.projects__item-placeholder::after {
  content: 'Coming Soon';
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-cyan);
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid rgba(0, 212, 255, 0.2);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
}

/* Overlay — slides up on hover */
.projects__item-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem 1rem 1rem;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 100%);
  transform: translateY(6px);
  opacity: 0;
  transition: var(--transition-base);
}

.projects__item-inner:hover .projects__item-overlay {
  opacity: 1;
  transform: translateY(0);
}

.projects__item-category {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-bg);
  background: var(--gradient-brand);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.35rem;
}

.projects__item-title {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.3;
}

/* ── Footer row ──────────────────────────────────────────────────────────── */
.projects__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.75rem 2rem;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
}

.projects__coming-soon-note {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* Pulsing badge */
.projects__cs-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-cyan);
}

.projects__cs-dot {
  width: 7px;
  height: 7px;
  background: var(--color-cyan);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.projects__coming-soon-note > p {
  font-size: 0.88rem;
  color: var(--color-white-70);
}

.projects__social-row {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 0.25rem;
}

.projects__social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-white-70);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  transition: var(--transition-base);
}

.projects__social-btn:hover {
  color: var(--color-cyan);
  border-color: rgba(0, 212, 255, 0.35);
}

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .projects__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 220px 220px 220px;
  }

  .projects__item--tall  { grid-row: span 1; }
  .projects__item--wide  { grid-column: span 2; }
}

@media (max-width: 768px) {
  .projects__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }

  .projects__gallery-link {
    align-self: flex-start;
  }

  .projects__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .projects__item,
  .projects__item--tall,
  .projects__item--wide {
    grid-row: span 1;
    grid-column: span 1;
    height: 180px;
  }

  .projects__item--wide {
    grid-column: span 2;
  }

  .projects__footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
  }

  .projects__footer .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .projects__grid {
    grid-template-columns: 1fr;
  }

  .projects__item,
  .projects__item--tall,
  .projects__item--wide {
    grid-column: span 1;
    height: 200px;
  }

  .projects__item-overlay {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ============================================
   SECTION — HOW IT WORKS (HORIZONTAL GRID)
   ============================================ */

.process {
  background: var(--color-bg);
}

/* ── Process video (vertical/portrait format) ────────────────────────────── */
.process__video-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
  position: relative;
}

.process__video {
  width: auto;
  max-width: 360px;
  max-height: 640px;
  height: auto;
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  background: var(--color-bg-card);
  cursor: pointer;
}

/* Overlay play button — shows on top of muted autoplay */
.process__video-play-btn {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-base);
}

.process__video-play-btn:hover {
  background: rgba(0, 212, 255, 0.2);
  border-color: var(--color-cyan);
}

.process__video-play-btn.is-hidden {
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 480px) {
  .process__video {
    max-width: 100%;
    max-height: 75vh;
    border-radius: var(--radius-lg);
  }
}

/* ── Horizontal card grid ────────────────────────────────────────────────── */
.process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
}

/* ── Individual card ─────────────────────────────────────────────────────── */
.process__card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.3s ease,
              box-shadow 0.3s ease;
}

.process__card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 212, 255, 0.3);
  box-shadow: var(--shadow-glow);
}

/* Step number — large faded background */
.process__card-num {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 0.75rem;
}

/* Icon */
.process__card-icon {
  color: var(--color-cyan);
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
}

/* Title */
.process__card-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--color-white);
}

/* Description */
.process__card-desc {
  font-size: 0.85rem;
  color: var(--color-white-70);
  line-height: 1.65;
}

/* ── CTA ─────────────────────────────────────────────────────────────────── */
.process__cta {
  text-align: center;
}

/* ── Connector dots between cards (desktop only) ─────────────────────────── */
.process__card:not(:last-child)::after {
  content: '→';
  position: absolute;
  top: 50%;
  right: -0.9rem;
  transform: translateY(-50%);
  color: var(--color-cyan);
  font-size: 1rem;
  opacity: 0.5;
  z-index: 1;
}

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .process__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .process__card:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 768px) {
  .process__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .process__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .process__card {
    padding: 1.5rem 1.25rem;
  }
}
/* ============================================
   SECTION — PRICING CALCULATOR
   ============================================ */

.pricing {
  background: var(--color-bg-mid);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

/* Calculator card */
.calculator {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
  box-shadow: var(--shadow-card);
}

/* Input side */
.calculator__field {
  margin-bottom: 1.75rem;
}

.calculator__field-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-white-70);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.calculator__slider-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.calculator__slider {
  flex: 1;
  -webkit-appearance: none;
  height: 4px;
  background: var(--color-border);
  border-radius: 2px;
  outline: none;
}

.calculator__slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gradient-brand);
  cursor: pointer;
  box-shadow: 0 0 10px rgba(0, 212, 255, 0.4);
  transition: var(--transition-base);
}

.calculator__slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.calculator__num-wrap {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 0.4rem 0.75rem;
  min-width: 80px;
}

.calculator__num-input {
  width: 40px;
  background: none;
  border: none;
  color: var(--color-white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  outline: none;
  text-align: right;
}

.calculator__unit {
  font-size: 0.8rem;
  color: var(--color-white-40);
  font-weight: 600;
}

.calculator__range-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  color: var(--color-white-40);
  margin-top: 0.3rem;
}

.calculator__select {
  width: 100%;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  color: var(--color-white);
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  outline: none;
  cursor: pointer;
  transition: var(--transition-base);
}

.calculator__select:focus {
  border-color: var(--color-cyan);
}

/* Result side */
.calculator__result {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
}

.calculator__area,
.calculator__estimate {
  text-align: center;
}

.calculator__result-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-white-40);
  margin-bottom: 0.25rem;
}

.calculator__area-value {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--color-white-70);
}

.calculator__price-range {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 0.5rem 0 0.75rem;
}

.calculator__price-low,
.calculator__price-high {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.calculator__price-dash {
  font-size: 1.5rem;
  color: var(--color-white-40);
}

.calculator__price-note {
  font-size: 0.72rem;
  color: var(--color-white-40);
  line-height: 1.5;
}

/* Tier cards */
.pricing__tiers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.pricing__tier {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
  position: relative;
  transition: var(--transition-base);
}

.pricing__tier:hover {
  border-color: rgba(0, 212, 255, 0.3);
}

.pricing__tier--featured {
  border-color: rgba(0, 212, 255, 0.4);
  background: rgba(0, 212, 255, 0.04);
}

.pricing__tier-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-brand);
  color: var(--color-bg);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.2rem 0.8rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.pricing__tier-range {
  font-size: 0.8rem;
  color: var(--color-white-40);
  margin-bottom: 0.5rem;
}

.pricing__tier-price {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--color-cyan);
  margin-bottom: 0.25rem;
}

.pricing__tier-label {
  font-size: 0.8rem;
  color: var(--color-white-70);
  font-weight: 600;
}

/* Responsive */
@media (max-width: 1024px) {
  .calculator { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .pricing__tiers { grid-template-columns: repeat(2, 1fr); }
  .calculator     { padding: 1.75rem; }
}

@media (max-width: 480px) {
  .pricing__tiers { grid-template-columns: 1fr; }
  .calculator { padding: 1.25rem; }

  .calculator__price-low,
  .calculator__price-high {
    font-size: 1.6rem;
  }
}
/* ============================================
   SECTION — FAQ ACCORDION
   ============================================ */

.faq {
  background: var(--color-bg);
}

.faq__list {
  max-width: 780px;
  margin: 0 auto;
}

.faq__item {
  border-bottom: 1px solid var(--color-border);
}

.faq__item:first-child {
  border-top: 1px solid var(--color-border);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 0;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-white);
  text-align: left;
  gap: 1rem;
  transition: var(--transition-base);
}

.faq__question:hover {
  color: var(--color-cyan);
}

.faq__icon {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--color-cyan);
  flex-shrink: 0;
  transition: var(--transition-base);
  line-height: 1;
}

.faq__item.is-open .faq__icon {
  transform: rotate(45deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq__answer p {
  padding-bottom: 1.4rem;
  color: var(--color-white-70);
  font-size: 0.95rem;
  line-height: 1.75;
}

.faq__answer p strong {
  color: var(--color-white);
}

/* ── Responsive ────────────────────────────────────────────────────────────── */
@media (max-width: 480px) {
  .faq__question {
    font-size: 0.9rem;
    padding: 1.1rem 0;
  }

  .faq__answer p {
    font-size: 0.88rem;
  }
}
/* ============================================
   SECTION — CONTACT
   ============================================ */

.contact {
  background: var(--color-bg-mid);
  border-top: 1px solid var(--color-border);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: start;
}

/* Info column */
.contact__info .section-title,
.contact__info .section-sub {
  text-align: left;
  margin-left: 0;
}

.contact__info .section-sub {
  margin-bottom: 2rem;
}

.contact__info-block {
  margin-bottom: 1.5rem;
}

.contact__info-block h4 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--color-white);
}

.contact__info-block p {
  font-size: 0.9rem;
  color: var(--color-white-70);
  line-height: 1.7;
}

.contact__info-block a {
  color: var(--color-cyan);
  transition: var(--transition-base);
}

.contact__info-block a:hover {
  color: var(--color-white);
}

/* Social links */
.contact__social-title {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.contact__social-icons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}

.contact__social-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 600;
  border: 1px solid var(--color-border);
  background: var(--color-bg-card);
  transition: var(--transition-base);
}

.contact__social-link svg {
  width: 16px;
  height: 16px;
}

.contact__social-link:hover {
  transform: translateY(-2px);
}

.contact__social-link--instagram:hover { border-color: #E1306C; color: #E1306C; }
.contact__social-link--tiktok:hover    { border-color: #69C9D0; color: #69C9D0; }
.contact__social-link--facebook:hover  { border-color: #1877F2; color: #1877F2; }

.contact__social-note {
  font-size: 0.8rem;
  color: var(--color-white-40);
}

/* Form card */
.contact__form-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact__info .section-title,
  .contact__info .section-sub {
    text-align: center;
  }

  .contact__info {
    text-align: center;
  }

  .contact__info-block {
    text-align: left;
  }

  .contact__social-icons {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .contact__form-card {
    padding: 1.75rem;
  }
}

@media (max-width: 480px) {
  .contact__form-card { padding: 1.25rem; }

  .contact__social-icons {
    flex-direction: column;
    align-items: center;
  }
}
