/* ==========================================================================
   DESIGN TOKENS
   ========================================================================== */
:root {
  --bg:      #060710;
  --surface: #0b0d1c;
  --card:    #0f1222;
  --border:  rgba(99, 102, 241, 0.16);
  --accent:  #6366f1;
  --accent2: #818cf8;
  --cyan:    #22d3ee;
  --white:   #eef0ff;
  --muted:   #8b8fa8;
  --radius:  14px;
  --glow:    0 0 40px rgba(99, 102, 241, 0.3);
}

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

html {
  scroll-behavior: smooth;
  /* Prevent font inflation on iOS */
  -webkit-text-size-adjust: 100%;
  text-size-adjust:         100%;
  overflow-x:               hidden;
}

body {
  font-family: 'Space Grotesk', sans-serif;
  background:  var(--bg);
  color:       var(--white);
  overflow-x:  hidden;
  line-height: 1.6;
  /* Smoother font rendering on macOS/iOS */
  -webkit-font-smoothing:  antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* Custom scrollbar — Webkit only; Firefox uses scrollbar-color */
::-webkit-scrollbar       { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 99px; }

/* ==========================================================================
   STARFIELD CANVAS
   ========================================================================== */
#starfield {
  position:       fixed;
  inset:          0;
  pointer-events: none;
  z-index:        0;
}

/* ==========================================================================
   NAVIGATION
   ========================================================================== */
nav {
  position:        fixed;
  top:             0;
  left:            0;
  right:           0;
  z-index:         100;
  display:         flex;
  align-items:     center;
  justify-content: space-between;
  padding:         0 clamp(1rem, 5vw, 4rem);
  height:          70px;
  background:      rgba(6, 7, 16, 0.85);
  /* Fallback for browsers without backdrop-filter */
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom:   1px solid var(--border);
}

/* Logo area */
.nav-logo-area {
  display:     flex;
  align-items: center;
  gap:         0.75rem;
  flex-shrink: 0;
}

.logo-img-wrap {
  width:           65px;
  height:          65px;
  border-radius:   9px;
  display:         flex;
  align-items:     center;
  justify-content: center;
  flex-shrink:     0;
  overflow:        hidden;
}

.nav-wordmark {
  font-family:     'Rajdhani', sans-serif;
  font-weight:     700;
  font-size:       1.18rem;
  letter-spacing:  0.1em;
  color:           var(--white);
  text-transform:  uppercase;
  line-height:     1;
}
.nav-wordmark span { color: var(--accent); }

.nav-tagline {
  font-family:    'Space Mono', monospace;
  font-size:      0.54rem;
  letter-spacing: 0.12em;
  color:          var(--muted);
  text-transform: uppercase;
  margin-top:     2px;
}

/* Nav links — desktop */
.nav-links {
  position:  absolute;
  left:      50%;
  transform: translateX(-50%);
  display:   flex;
  gap:       2rem;
}

.nav-links a {
  font-size:      0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color:          var(--muted);
  font-weight:    500;
  transition:     color 0.25s;
  /* Larger tap target on touch devices */
  padding: 0.25rem 0;
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }

/* CTA button */
.nav-cta {
  font-family:    'Space Mono', monospace;
  font-size:      0.74rem;
  padding:        0.52rem 1.2rem;
  border:         1px solid var(--accent);
  border-radius:  7px;
  color:          var(--accent);
  background:     transparent;
  cursor:         pointer;
  letter-spacing: 0.05em;
  white-space:    nowrap;
  transition:     background 0.25s, color 0.25s, box-shadow 0.25s;
}
.nav-cta:hover {
  background: var(--accent);
  color:      #fff;
  box-shadow: var(--glow);
}

/* Hamburger */
.hamburger {
  display:         none;
  flex-direction:  column;
  gap:             5px;
  cursor:          pointer;
  background:      none;
  border:          none;
  padding:         0.5rem;       /* larger touch target */
  margin-right:    -0.5rem;
}

.hamburger span {
  display:       block;
  width:         24px;
  height:        2px;
  background:    var(--white);
  border-radius: 2px;
  transition:    transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display:         none;
  position:        fixed;
  top:             70px;
  left:            0;
  right:           0;
  z-index:         99;
  background:      rgba(6, 7, 16, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom:   1px solid var(--border);
  padding:         2rem;
  flex-direction:  column;
  gap:             1.4rem;
}

.mobile-menu a {
  font-size:      1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color:          var(--muted);
  transition:     color 0.2s;
  /* Generous tap target */
  padding: 0.4rem 0;
}
.mobile-menu a:hover  { color: var(--white); }
.mobile-menu.open     { display: flex; }

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
#hero {
  position:        relative;
  z-index:         1;
  /* 100svh with dvh fallback for mobile browsers with dynamic toolbars */
  min-height:      100vh;
  min-height:      100svh;
  display:         flex;
  align-items:     center;
  justify-content: center;
  padding:         clamp(5rem, 10vw, 8rem) clamp(1rem, 5vw, 4rem) 4rem;
  text-align:      center;
}

/* Background glow */
.hero-glow {
  position:       absolute;
  width:          min(800px, 100vw);
  height:         min(800px, 100vw);
  background:     radial-gradient(circle, rgba(99, 102, 241, 0.12) 0%, transparent 70%);
  top:            50%;
  left:           50%;
  transform:      translate(-50%, -50%);
  pointer-events: none;
}

.grid-bg {
  position: absolute;
  inset:    0;
  background-image:
    linear-gradient(rgba(99, 102, 241, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99, 102, 241, 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events:  none;
}

.hero-inner {
  display:        flex;
  flex-direction: column;
  align-items:    center;
}

/* Status badge */
.hero-tag {
  display:        inline-flex;
  align-items:    center;
  gap:            0.5rem;
  font-family:    'Space Mono', monospace;
  font-size:      0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color:          var(--accent);
  border:         1px solid rgba(99, 102, 241, 0.25);
  padding:        0.4rem 1rem;
  border-radius:  99px;
  margin-bottom:  2.4rem;
  background:     rgba(99, 102, 241, 0.06);
  opacity:        0;
  animation:      fadeUp 0.7s 0.2s forwards;
}

.hero-tag::before {
  content:       '';
  width:         7px;
  height:        7px;
  background:    var(--cyan);
  border-radius: 50%;
  box-shadow:    0 0 8px var(--cyan);
  animation:     pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

/* Hero logo */
.hero-logo-wrap {
  opacity:       0;
  animation:     fadeUp 0.8s 0.4s forwards;
  margin-bottom: 2rem;
}

.hero-logo-img {
  max-width: 450px;
  width:     100%;
  height:    auto;
  display:   block;
  filter:    drop-shadow(0 0 32px rgba(99, 102, 241, 0.4));
}

/* Placeholder kept for reference — hidden when real logo is in use */
.hero-logo-placeholder {
  width:           280px;
  height:          110px;
  border:          2px dashed rgba(99, 102, 241, 0.4);
  border-radius:   18px;
  background:      rgba(99, 102, 241, 0.05);
  display:         flex;
  flex-direction:  column;
  align-items:     center;
  justify-content: center;
  gap:             0.7rem;
  color:           var(--muted);
  font-family:     'Space Mono', monospace;
  font-size:       0.65rem;
  letter-spacing:  0.14em;
  text-transform:  uppercase;
  transition:      border-color 0.3s, background 0.3s;
}
.hero-logo-placeholder svg { opacity: 0.5; }

/* Sub-line & description */
.hero-sub {
  font-family:    'Space Mono', monospace;
  font-size:      clamp(0.7rem, 1.8vw, 0.86rem);
  letter-spacing: 0.1em;
  color:          var(--muted);
  opacity:        0;
  animation:      fadeUp 0.8s 0.6s forwards;
}
.hero-sub strong { color: var(--accent2); font-weight: 400; }

.hero-desc {
  max-width:    560px;
  margin:       1.4rem auto 0;
  font-size:    1rem;
  color:        var(--muted);
  line-height:  1.85;
  opacity:      0;
  animation:    fadeUp 0.8s 0.75s forwards;
}

.hero-actions {
  margin-top:      2.6rem;
  display:         flex;
  gap:             1rem;
  justify-content: center;
  flex-wrap:       wrap;
  opacity:         0;
  animation:       fadeUp 0.8s 0.9s forwards;
}

/* Buttons */
.btn-primary {
  display:     inline-flex;
  align-items: center;
  gap:         0.6rem;
  background:  var(--accent);
  color:       #fff;
  font-family: 'Space Mono', monospace;
  font-size:   0.8rem;
  padding:     0.88rem 1.8rem;
  border-radius: 8px;
  cursor:      pointer;
  border:      none;
  letter-spacing: 0.04em;
  box-shadow:  0 4px 28px rgba(99, 102, 241, 0.4);
  transition:  transform 0.2s, box-shadow 0.2s;
  /* Prevent tap callout on iOS */
  -webkit-tap-highlight-color: transparent;
}
.btn-primary:hover {
  transform:  translateY(-2px);
  box-shadow: 0 8px 36px rgba(99, 102, 241, 0.6);
}

.btn-secondary {
  display:     inline-flex;
  align-items: center;
  gap:         0.6rem;
  background:  transparent;
  color:       var(--white);
  font-family: 'Space Mono', monospace;
  font-size:   0.8rem;
  padding:     0.88rem 1.8rem;
  border-radius: 8px;
  border:      1px solid rgba(255, 255, 255, 0.12);
  cursor:      pointer;
  letter-spacing: 0.04em;
  transition:  border-color 0.2s, color 0.2s;
  -webkit-tap-highlight-color: transparent;
}
.btn-secondary:hover {
  border-color: var(--accent2);
  color:        var(--accent2);
}

/* Scroll indicator */
.hero-scroll {
  position:       absolute;
  bottom:         2.5rem;
  left:           50%;
  transform:      translateX(-50%);
  display:        flex;
  flex-direction: column;
  align-items:    center;
  gap:            0.5rem;
  font-family:    'Space Mono', monospace;
  font-size:      0.6rem;
  letter-spacing: 0.15em;
  color:          var(--muted);
  text-transform: uppercase;
  opacity:        0;
  animation:      fadeUp 0.8s 1.2s forwards;
}

.scroll-line {
  width:      1px;
  height:     40px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation:  scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

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

/* ==========================================================================
   SECTION COMMONS
   ========================================================================== */
section { position: relative; z-index: 1; }

.section-inner {
  max-width: 1120px;
  margin:    0 auto;
  padding:   clamp(4rem, 8vw, 7rem) clamp(1rem, 5vw, 2rem);
}

.section-label {
  font-family:    'Space Mono', monospace;
  font-size:      0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color:          var(--accent);
  margin-bottom:  0.8rem;
}

.section-title {
  font-family:    'Rajdhani', sans-serif;
  font-weight:    700;
  font-size:      clamp(2rem, 4vw, 3rem);
  line-height:    1.05;
  margin-bottom:  1.5rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.divider {
  width:         48px;
  height:        3px;
  background:    linear-gradient(90deg, var(--accent), var(--cyan));
  border-radius: 99px;
  margin-bottom: 2.5rem;
}

/* Scroll-reveal utility */
.reveal {
  opacity:    0;
  transform:  translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity:   1;
  transform: none;
}

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */
#about { background: var(--surface); }

.about-grid {
  display:               grid;
  grid-template-columns: 1fr 1fr;
  gap:                   5rem;
  align-items:           center;
}

.about-text p {
  color:         var(--muted);
  font-size:     0.97rem;
  line-height:   1.9;
  margin-bottom: 1.2rem;
}
.about-text p strong { color: var(--white); font-weight: 600; }

.about-stats {
  display:               grid;
  grid-template-columns: 1fr 1fr;
  gap:                   1.2rem;
}

.stat-card {
  background:    var(--card);
  border:        1px solid var(--border);
  border-radius: var(--radius);
  padding:       1.6rem;
  transition:    border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.stat-card:hover {
  border-color: var(--accent);
  transform:    translateY(-4px);
  box-shadow:   0 12px 32px rgba(99, 102, 241, 0.15);
}

.stat-num {
  font-family:   'Rajdhani', sans-serif;
  font-weight:   700;
  font-size:     2.6rem;
  color:         var(--accent2);
  line-height:   1;
  margin-bottom: 0.4rem;
}

.stat-desc { font-size: 0.78rem; color: var(--muted); }

/* ==========================================================================
   WHY SECTION
   ========================================================================== */
#why { background: var(--surface); }

.why-grid {
  display:               grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap:                   1.4rem;
  margin-top:            1rem;
}

.why-card {
  background:    var(--card);
  border:        1px solid var(--border);
  border-radius: var(--radius);
  padding:       2rem 1.6rem;
  position:      relative;
  overflow:      hidden;
  transition:    border-color 0.35s, transform 0.35s, box-shadow 0.35s;
}

.why-card::after {
  content:          '';
  position:         absolute;
  bottom:           0;
  left:             0;
  right:            0;
  height:           2px;
  background:       linear-gradient(90deg, var(--accent), var(--cyan));
  transform:        scaleX(0);
  transform-origin: left;
  transition:       transform 0.35s ease;
}
.why-card:hover {
  border-color: rgba(99, 102, 241, 0.4);
  transform:    translateY(-6px);
  box-shadow:   0 16px 44px rgba(99, 102, 241, 0.14);
}
.why-card:hover::after { transform: scaleX(1); }

.why-icon {
  width:           52px;
  height:          52px;
  background:      rgba(99, 102, 241, 0.1);
  border:          1px solid rgba(99, 102, 241, 0.18);
  border-radius:   13px;
  display:         flex;
  align-items:     center;
  justify-content: center;
  margin-bottom:   1.3rem;
  transition:      background 0.3s, box-shadow 0.3s;
}
.why-card:hover .why-icon {
  background: rgba(99, 102, 241, 0.18);
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.25);
}

.why-card h3 {
  font-family:    'Rajdhani', sans-serif;
  font-weight:    700;
  font-size:      1.1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom:  0.7rem;
}

.why-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.8; }

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */
#services { background: var(--surface); }

.services-grid {
  display:               grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap:                   1.1rem;
}

.service-card {
  background:     var(--card);
  border:         1px solid var(--border);
  border-radius:  var(--radius);
  padding:        2rem 1.2rem 1.8rem;
  display:        flex;
  flex-direction: column;
  align-items:    center;
  gap:            1rem;
  text-align:     center;
  cursor:         default;
  position:       relative;
  overflow:       hidden;
  transition:     border-color 0.35s, transform 0.35s, box-shadow 0.35s;
}

.service-card::before {
  content:    '';
  position:   absolute;
  inset:      0;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.07), transparent 60%);
  opacity:    0;
  transition: opacity 0.35s;
}

.service-card::after {
  content:          '';
  position:         absolute;
  bottom:           0;
  left:             0;
  right:            0;
  height:           2px;
  background:       linear-gradient(90deg, var(--accent), var(--cyan));
  transform:        scaleX(0);
  transform-origin: left;
  transition:       transform 0.35s ease;
}

.service-card:hover {
  border-color: rgba(99, 102, 241, 0.4);
  transform:    translateY(-7px);
  box-shadow:   0 18px 44px rgba(99, 102, 241, 0.18);
}
.service-card:hover::before { opacity: 1; }
.service-card:hover::after  { transform: scaleX(1); }

.service-icon {
  width:           56px;
  height:          56px;
  display:         flex;
  align-items:     center;
  justify-content: center;
  border-radius:   14px;
  background:      rgba(99, 102, 241, 0.1);
  border:          1px solid rgba(99, 102, 241, 0.12);
  position:        relative;
  z-index:         1;
  transition:      transform 0.35s, box-shadow 0.35s, background 0.35s;
}
.service-card:hover .service-icon {
  transform:  scale(1.1) translateY(-2px);
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.25);
  background: rgba(99, 102, 241, 0.15);
}

.service-name {
  font-size:      0.84rem;
  font-weight:    600;
  letter-spacing: 0.04em;
  position:       relative;
  z-index:        1;
}

.service-desc {
  font-size:  0.76rem;
  color:      var(--muted);
  position:   relative;
  z-index:    1;
  line-height: 1.6;
}

/* Logo service card — amber variant */
.service-card--logo {
  border-color: rgba(245, 158, 11, 0.22);
}
.service-card--logo:hover {
  border-color: rgba(245, 158, 11, 0.55);
  box-shadow:   0 18px 44px rgba(245, 158, 11, 0.12);
}
.service-card--logo::after {
  background: linear-gradient(90deg, #f59e0b, #fbbf24);
}
.service-card--logo .service-icon {
  background:   rgba(245, 158, 11, 0.1);
  border-color: rgba(245, 158, 11, 0.18);
}
.service-card--logo:hover .service-icon {
  background: rgba(245, 158, 11, 0.18);
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.2);
}

.service-price-tag {
  display:        inline-block;
  background:     rgba(245, 158, 11, 0.12);
  border:         1px solid rgba(245, 158, 11, 0.3);
  color:          #f59e0b;
  font-family:    'Space Mono', monospace;
  font-size:      0.78rem;
  font-weight:    700;
  letter-spacing: 0.06em;
  padding:        0.28rem 0.75rem;
  border-radius:  99px;
  position:       relative;
  z-index:        1;
  margin-top:     0.25rem;
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
#testimonials { background: var(--bg); }

.testi-grid {
  display:               grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap:                   1.4rem;
  margin-top:            1rem;
}

.testi-card {
  background:     var(--card);
  border:         1px solid var(--border);
  border-radius:  var(--radius);
  padding:        2rem;
  display:        flex;
  flex-direction: column;
  gap:            1.4rem;
  position:       relative;
  transition:     border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.testi-card::before {
  content:        '"';
  position:       absolute;
  top:            1rem;
  right:          1.5rem;
  font-family:    'Rajdhani', sans-serif;
  font-size:      5rem;
  line-height:    1;
  color:          rgba(99, 102, 241, 0.1);
  pointer-events: none;
}
.testi-card:hover {
  border-color: rgba(99, 102, 241, 0.38);
  transform:    translateY(-5px);
  box-shadow:   0 16px 40px rgba(99, 102, 241, 0.12);
}

.testi-stars { display: flex; gap: 4px; color: #f59e0b; }

.testi-text {
  font-size:   0.92rem;
  color:       var(--muted);
  line-height: 1.85;
  font-style:  italic;
}

.testi-author {
  display:     flex;
  align-items: center;
  gap:         0.9rem;
  margin-top:  auto;
}

.testi-avatar {
  width:           42px;
  height:          42px;
  border-radius:   50%;
  background:      rgba(99, 102, 241, 0.15);
  border:          1px solid rgba(99, 102, 241, 0.25);
  display:         flex;
  align-items:     center;
  justify-content: center;
  font-family:     'Rajdhani', sans-serif;
  font-weight:     700;
  font-size:       1rem;
  color:           var(--accent2);
  flex-shrink:     0;
}

.testi-name  { font-weight: 600; font-size: 0.9rem; margin-bottom: 0.1rem; }

.testi-role {
  font-family:    'Space Mono', monospace;
  font-size:      0.64rem;
  letter-spacing: 0.08em;
  color:          var(--muted);
  text-transform: uppercase;
}

/* Pagination */
.testi-page {
  display:    none;
  opacity:    0;
  transform:  translateY(12px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.testi-page.active {
  display:   grid;
  opacity:   1;
  transform: translateY(0);
}

.testi-pagination {
  display:         flex;
  align-items:     center;
  justify-content: center;
  gap:             1.25rem;
  margin-top:      2.5rem;
  flex-wrap:       wrap; /* prevents overflow on very small screens */
}

.testi-prev,
.testi-next {
  display:        inline-flex;
  align-items:    center;
  gap:            10px;
  padding:        0 20px;
  height:         44px;
  background:     rgba(99, 102, 241, 0.08);
  color:          #a5b4fc;
  border:         1px solid rgba(99, 102, 241, 0.22);
  border-radius:  999px;
  font-family:    'Space Grotesk', sans-serif;
  font-size:      0.875rem;
  font-weight:    500;
  letter-spacing: 0.03em;
  cursor:         pointer;
  position:       relative;
  overflow:       hidden;
  transition:
    background    0.25s,
    color         0.25s,
    border-color  0.25s,
    transform     0.2s,
    box-shadow    0.25s,
    opacity       0.2s;
  white-space:    nowrap;
  -webkit-tap-highlight-color: transparent;
  outline:        none;
}

/* Shimmer strip */
.testi-prev::before,
.testi-next::before {
  content:        '';
  position:       absolute;
  top:            0;
  left:           -80%;
  width:          60%;
  height:         100%;
  background:     linear-gradient(105deg, transparent 20%, rgba(165, 180, 252, 0.15) 50%, transparent 80%);
  transform:      skewX(-18deg);
  pointer-events: none;
}
.testi-prev:hover:not(:disabled)::before,
.testi-next:hover:not(:disabled)::before {
  left:       140%;
  transition: left 0.55s ease;
}

.testi-prev:hover:not(:disabled),
.testi-next:hover:not(:disabled) {
  background:   rgba(99, 102, 241, 0.16);
  color:        #c7d2fe;
  border-color: rgba(99, 102, 241, 0.5);
  transform:    translateY(-2px);
  box-shadow:
    0 6px 22px rgba(99, 102, 241, 0.28),
    0 0 0 1px rgba(99, 102, 241, 0.12);
}

.testi-prev:active:not(:disabled),
.testi-next:active:not(:disabled) {
  transform:  translateY(0) scale(0.97);
  box-shadow: 0 2px 8px rgba(99, 102, 241, 0.18);
}

.testi-prev:disabled,
.testi-next:disabled {
  opacity: 0.28;
  cursor:  not-allowed;
}

/* Ícone em círculo dentro dos botões */
.testi-arrow-box {
  width:           26px;
  height:          26px;
  background:      rgba(99, 102, 241, 0.18);
  border-radius:   50%;
  display:         flex;
  align-items:     center;
  justify-content: center;
  flex-shrink:     0;
  position:        relative;
  transition:      background 0.25s, box-shadow 0.25s, transform 0.2s;
}
.testi-prev:hover:not(:disabled) .testi-arrow-box,
.testi-next:hover:not(:disabled) .testi-arrow-box {
  background: rgba(99, 102, 241, 0.32);
  box-shadow: 0 0 10px rgba(99, 102, 241, 0.45);
  transform:  scale(1.1);
}

/* Pulso ao hover no círculo */
@keyframes testi-ring-pulse {
  0%   { opacity: 0.75; transform: scale(1); }
  100% { opacity: 0;    transform: scale(2); }
}
.testi-prev:hover:not(:disabled) .testi-arrow-box::after,
.testi-next:hover:not(:disabled) .testi-arrow-box::after {
  content:       '';
  position:      absolute;
  inset:         0;
  border-radius: 50%;
  border:        1.5px solid rgba(99, 102, 241, 0.55);
  animation:     testi-ring-pulse 0.65s ease-out forwards;
}

/* Dots */
.testi-dots { display: flex; gap: 7px; align-items: center; }

.testi-dot {
  width:         7px;
  height:        7px;
  border-radius: 50%;
  background:    rgba(129, 140, 248, 0.22);
  cursor:        pointer;
  transition:    background 0.2s, transform 0.2s, box-shadow 0.2s;
  /* Enlarged hit area without affecting layout */
  padding:  6px;
  margin:   -6px;
  -webkit-tap-highlight-color: transparent;
}
.testi-dot.active {
  background: #818cf8;
  transform:  scale(1.35);
  box-shadow: 0 0 8px rgba(129, 140, 248, 0.55);
}
.testi-dot:hover:not(.active) {
  background: rgba(129, 140, 248, 0.5);
  transform:  scale(1.2);
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
#contact { background: var(--bg); }

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

.contact-info {
  display:        flex;
  flex-direction: column;
  gap:            0.85rem;
}

.contact-item {
  display:       flex;
  align-items:   center;
  gap:           1rem;
  padding:       1.1rem 1.3rem;
  background:    var(--card);
  border:        1px solid var(--border);
  border-radius: var(--radius);
  transition:    border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.contact-item:hover {
  border-color: rgba(99, 102, 241, 0.4);
  transform:    translateX(7px);
  box-shadow:   0 8px 24px rgba(99, 102, 241, 0.12);
}

.contact-icon {
  width:           44px;
  height:          44px;
  background:      rgba(99, 102, 241, 0.1);
  border:          1px solid rgba(99, 102, 241, 0.15);
  border-radius:   11px;
  display:         flex;
  align-items:     center;
  justify-content: center;
  flex-shrink:     0;
  transition:      background 0.3s, box-shadow 0.3s;
}
.contact-item:hover .contact-icon {
  background: rgba(99, 102, 241, 0.18);
  box-shadow: 0 4px 16px rgba(99, 102, 241, 0.2);
}

.contact-label {
  font-size:      0.65rem;
  color:          var(--muted);
  margin-bottom:  0.2rem;
  font-family:    'Space Mono', monospace;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-value { font-size: 0.88rem; font-weight: 600; }

.whatsapp-block { margin-top: 1.5rem; }

.btn-whatsapp {
  display:         flex;
  align-items:     center;
  justify-content: center;
  gap:             0.8rem;
  width:           100%;
  background:      linear-gradient(135deg, #25d366, #128c7e);
  color:           #fff;
  font-family:     'Rajdhani', sans-serif;
  font-size:       1.05rem;
  font-weight:     700;
  padding:         1.05rem 2rem;
  border-radius:   10px;
  border:          none;
  cursor:          pointer;
  letter-spacing:  0.06em;
  text-transform:  uppercase;
  box-shadow:      0 6px 28px rgba(37, 211, 102, 0.28);
  transition:      transform 0.25s, box-shadow 0.25s;
  -webkit-tap-highlight-color: transparent;
}
.btn-whatsapp:hover {
  transform:  translateY(-3px);
  box-shadow: 0 14px 40px rgba(37, 211, 102, 0.42);
}

/* Contact form */
.contact-form-card {
  background:    var(--card);
  border:        1px solid var(--border);
  border-radius: var(--radius);
  padding:       2.4rem;
  box-shadow:    0 8px 40px rgba(0, 0, 0, 0.3);
}

.form-title {
  font-family:    'Rajdhani', sans-serif;
  font-size:      1.4rem;
  font-weight:    700;
  margin-bottom:  1.6rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.form-group { margin-bottom: 1.2rem; }

.form-group label {
  display:        block;
  font-family:    'Space Mono', monospace;
  font-size:      0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color:          var(--muted);
  margin-bottom:  0.5rem;
}

.form-group input,
.form-group textarea {
  width:       100%;
  background:  rgba(6, 7, 16, 0.8);
  border:      1px solid var(--border);
  border-radius: 8px;
  padding:     0.82rem 1rem;
  color:       var(--white);
  font-family: 'Space Grotesk', sans-serif;
  font-size:   0.9rem;
  /* Prevent iOS from zooming on focus (font-size must be ≥ 16px, or we keep it and add max below) */
  font-size:   max(16px, 0.9rem);
  outline:     none;
  resize:      none;
  transition:  border-color 0.25s, box-shadow 0.25s;
  /* Remove iOS default styling */
  -webkit-appearance: none;
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow:   0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-group textarea { height: 120px; }

.btn-send {
  width:          100%;
  background:     var(--accent);
  color:          #fff;
  font-family:    'Space Mono', monospace;
  font-size:      0.82rem;
  padding:        0.9rem;
  border-radius:  8px;
  border:         none;
  cursor:         pointer;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  /* Minimum touch target height */
  min-height:     44px;
  transition:     box-shadow 0.25s, transform 0.25s;
  -webkit-tap-highlight-color: transparent;
}
.btn-send:hover {
  box-shadow: 0 8px 32px rgba(99, 102, 241, 0.5);
  transform:  translateY(-2px);
}

/* Internal divider between services grid and promo cards */
.services-promo-divider {
  width:      100%;
  height:     1px;
  background: var(--border);
  margin:     4rem 0;
  position:   relative;
}
.services-promo-divider::before {
  content:        '// Promoções';
  position:       absolute;
  top:            50%;
  left:           50%;
  transform:      translate(-50%, -50%);
  background:     var(--surface);
  padding:        0 1.2rem;
  font-family:    'Space Mono', monospace;
  font-size:      0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color:          var(--accent);
  white-space:    nowrap;
}

/* ==========================================================================
   PROMO / OFERTA SECTION
   ========================================================================== */
#promo {
  background: var(--bg);
  position:   relative;
  overflow:   hidden;
}

#promo::before {
  content:        '';
  position:       absolute;
  top:            -120px;
  left:           50%;
  transform:      translateX(-50%);
  width:          min(900px, 100vw);
  height:         min(900px, 100vw);
  background:     radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 65%);
  pointer-events: none;
}

/* Full-width intro copy */
.promo-copy {
  max-width:     780px;
  margin-bottom: 3.5rem;
}

/* Opening badge */
.promo-intro-badge {
  display:        inline-flex;
  align-items:    center;
  gap:            0.55rem;
  font-family:    'Space Mono', monospace;
  font-size:      0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color:          #f59e0b;
  border:         1px solid rgba(245, 158, 11, 0.3);
  background:     rgba(245, 158, 11, 0.07);
  padding:        0.42rem 1.1rem;
  border-radius:  99px;
  margin-bottom:  1.4rem;
}

.promo-intro-badge__dot {
  width:         6px;
  height:        6px;
  border-radius: 50%;
  background:    #f59e0b;
  box-shadow:    0 0 8px #f59e0b;
  animation:     pulse 2s infinite;
  flex-shrink:   0;
}

/* Title */
.promo-intro-title {
  font-family:    'Rajdhani', sans-serif;
  font-weight:    700;
  font-size:      clamp(1.9rem, 3.5vw, 2.8rem);
  line-height:    1.1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color:          var(--white);
  margin-bottom:  1rem;
}
.promo-intro-title em {
  font-style: normal;
  color:      var(--accent2);
}

/* Description */
.promo-intro-desc {
  font-size:     0.98rem;
  color:         var(--muted);
  line-height:   1.85;
  margin-bottom: 1.4rem;
}
.promo-intro-desc strong { color: var(--white); font-weight: 600; }

/* Urgency banner */
.promo-intro-urgency {
  display:       inline-flex;
  align-items:   center;
  gap:           0.75rem;
  padding:       0.85rem 1.4rem;
  background:    rgba(245, 158, 11, 0.07);
  border:        1px solid rgba(245, 158, 11, 0.22);
  border-radius: 10px;
  font-size:     0.88rem;
  color:         rgba(245, 158, 11, 0.9);
  line-height:   1.5;
  /* Allow wrapping on narrow screens */
  flex-wrap:     wrap;
}
.promo-intro-urgency strong { color: #f59e0b; font-weight: 600; }

/* ================================================================
   PROMO CARDS — 3-column compact layout
   ================================================================ */
.promo-cards-row {
  display:               grid;
  grid-template-columns: repeat(3, 1fr);
  gap:                   1.5rem;
  align-items:           stretch;
}

/* Card base */
.promo-card {
  background:     var(--card);
  border:         1px solid var(--border);
  border-radius:  18px;
  padding:        2rem 1.8rem;
  display:        flex;
  flex-direction: column;
  position:       relative;
  overflow:       hidden;
  transition:     transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}
.promo-card:hover {
  transform:    translateY(-6px);
  border-color: rgba(99, 102, 241, 0.38);
  box-shadow:   0 20px 56px rgba(0, 0, 0, 0.28);
}

/* Glow orb — follows hover */
.promo-card::after {
  content:        '';
  position:       absolute;
  width:          220px;
  height:         220px;
  border-radius:  50%;
  top:            -60px;
  right:          -60px;
  opacity:        0;
  transition:     opacity 0.4s ease;
  pointer-events: none;
}
.promo-card:nth-child(1)::after { background: radial-gradient(circle, rgba(99, 102, 241, 0.18) 0%, transparent 70%); }
.promo-card:nth-child(2)::after { background: radial-gradient(circle, rgba(245, 158, 11, 0.18)  0%, transparent 70%); }
.promo-card:nth-child(3)::after { background: radial-gradient(circle, rgba(16, 185, 129, 0.18) 0%, transparent 70%); }
.promo-card:hover::after { opacity: 1; }

/* Coloured top stripe */
.promo-card::before {
  content:       '';
  position:      absolute;
  top:           0;
  left:          0;
  right:         0;
  height:        3px;
  border-radius: 18px 18px 0 0;
}
.promo-card:nth-child(1)::before { background: linear-gradient(90deg, #6366f1, #22d3ee); }
.promo-card:nth-child(2)::before { background: linear-gradient(90deg, #f59e0b, #fbbf24); }
.promo-card:nth-child(3)::before { background: linear-gradient(90deg, #10b981, #34d399); }

/* Category label — fixed height for vertical alignment across cards */
.pc-category {
  display:        block;
  font-family:    'Space Mono', monospace;
  font-size:      0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color:          var(--muted);
  margin-bottom:  0.55rem;
  min-height:     1.2em;
}

/* Title — fixed 2-line height for alignment */
.pc-title {
  font-family:    'Rajdhani', sans-serif;
  font-weight:    700;
  font-size:      1.22rem;
  line-height:    1.25;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color:          var(--white);
  min-height:     3.1rem; /* forces 2 lines */
}

.pc-header { margin-bottom: 1.4rem; }

/* Price block — fixed height for alignment */
.pc-price-block {
  margin-bottom:  1.4rem;
  display:        flex;
  flex-direction: column;
  gap:            0.35rem;
  min-height:     4.2rem;
}

/* Promotional + crossed-out prices side by side */
.pc-price-row {
  display:     flex;
  align-items: baseline;
  gap:         0.7rem;
}

.pc-old {
  font-family:        'Space Mono', monospace;
  font-size:          0.9rem;
  color:              var(--muted);
  text-decoration:    line-through;
  text-decoration-color: rgba(239, 68, 68, 0.65);
  white-space:        nowrap;
  flex-shrink:        0;
}

.pc-value {
  font-family:    'Rajdhani', sans-serif;
  font-weight:    700;
  font-size:      2.6rem;
  line-height:    1;
  color:          var(--white);
  letter-spacing: -0.01em;
}
.pc-value--amber   { color: #fbbf24; }
.pc-value--green   { color: #34d399; }
.pc-value--consult {
  font-size:   1.55rem;
  line-height: 1.15;
  padding-top: 0.35rem;
}

.pc-badge {
  display:        inline-block;
  font-family:    'Space Mono', monospace;
  font-size:      0.58rem;
  font-weight:    700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding:        0.25rem 0.7rem;
  border-radius:  99px;
  width:          fit-content;
}
.pc-badge--discount { background: rgba(245, 158, 11, 0.12); color: #fbbf24; border: 1px solid rgba(245, 158, 11, 0.3); }
.pc-badge--fixed    { background: rgba(245, 158, 11, 0.1);  color: #f59e0b; border: 1px solid rgba(245, 158, 11, 0.25); }
.pc-badge--custom   { background: rgba(16, 185, 129, 0.1);  color: #34d399; border: 1px solid rgba(16, 185, 129, 0.25); }

.pc-separator {
  width:         100%;
  height:        1px;
  background:    var(--border);
  margin-bottom: 1.2rem;
}

/* List — grows to fill space and push CTA to bottom */
.pc-list {
  list-style:     none;
  padding:        0;
  margin:         0 0 1.8rem;
  display:        flex;
  flex-direction: column;
  gap:            0.62rem;
  flex:           1;
}

.pc-list li {
  font-size:   0.87rem;
  color:       var(--muted);
  display:     flex;
  align-items: center;
  gap:         0.6rem;
  line-height: 1.3;
  position:    relative;
  z-index:     1;
}

.pc-list li::before {
  content:       '';
  width:         5px;
  height:        5px;
  border-radius: 50%;
  flex-shrink:   0;
  background:    var(--accent2);
}
.promo-card:nth-child(2) .pc-list li::before { background: #f59e0b; }
.promo-card:nth-child(3) .pc-list li::before { background: #10b981; }

/* CTA button — shimmer animation shared */
@keyframes pc-btn-shimmer {
  0%   { left: -120%; }
  60%  { left:  120%; }
  100% { left:  120%; }
}

.pc-btn {
  display:         flex;
  align-items:     center;
  justify-content: center;
  gap:             0.6rem;
  width:           100%;
  padding:         0.88rem 1.2rem;
  border-radius:   10px;
  font-family:     'Rajdhani', sans-serif;
  font-weight:     700;
  font-size:       0.95rem;
  letter-spacing:  0.06em;
  text-transform:  uppercase;
  text-decoration: none;
  border:          1px solid transparent;
  cursor:          pointer;
  transition:      transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease;
  position:        relative;
  z-index:         1;
  margin-top:      auto;
  overflow:        hidden;
  /* Accessible minimum touch target */
  min-height:      44px;
  -webkit-tap-highlight-color: transparent;
}

/* Shimmer strip on all buttons */
.pc-btn::after {
  content:    '';
  position:   absolute;
  top:        0;
  left:       -120%;
  width:      60%;
  height:     100%;
  background: linear-gradient(105deg, transparent 20%, rgba(255, 255, 255, 0.18) 50%, transparent 80%);
  transform:  skewX(-18deg);
  pointer-events: none;
}
.pc-btn:hover::after {
  animation: pc-btn-shimmer 0.7s ease forwards;
}
.pc-btn:hover  { transform: translateY(-3px); }
.pc-btn:active { transform: translateY(-1px); }

/* Site button — solid indigo */
.pc-btn--site {
  background: var(--accent);
  color:      #fff;
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.35);
}
.pc-btn--site:hover {
  background: #5254e0;
  box-shadow: 0 8px 30px rgba(99, 102, 241, 0.55), 0 0 0 1px rgba(99, 102, 241, 0.4);
}

/* Logo button — solid amber */
.pc-btn--logo {
  background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
  color:      #fff;
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.35);
}
.pc-btn--logo:hover {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  box-shadow: 0 8px 30px rgba(245, 158, 11, 0.55), 0 0 0 1px rgba(245, 158, 11, 0.4);
}

/* Sistemas button — solid green */
.pc-btn--sistemas {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  color:      #fff;
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.35);
}
.pc-btn--sistemas:hover {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  box-shadow: 0 8px 30px rgba(16, 185, 129, 0.55), 0 0 0 1px rgba(16, 185, 129, 0.4);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer {
  position:   relative;
  z-index:    1;
  border-top: 1px solid var(--border);
  background: var(--surface);
}

.footer-inner {
  max-width:       1120px;
  margin:          0 auto;
  padding:         clamp(2.5rem, 5vw, 3.5rem) clamp(1rem, 5vw, 2rem);
  display:         flex;
  align-items:     center;
  justify-content: space-between;
  gap:             2rem;
  flex-wrap:       wrap;
}

.footer-name {
  font-family:    'Rajdhani', sans-serif;
  font-weight:    700;
  font-size:      1.15rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.footer-name span { color: var(--accent); }

.footer-tagline {
  font-family:    'Space Mono', monospace;
  font-size:      0.64rem;
  letter-spacing: 0.1em;
  color:          var(--muted);
  text-transform: uppercase;
  margin-top:     0.3rem;
}

.footer-socials { display: flex; gap: 0.8rem; }

.social-btn {
  width:         38px;
  height:        38px;
  display:       flex;
  align-items:   center;
  justify-content: center;
  background:    var(--card);
  border:        1px solid var(--border);
  border-radius: 8px;
  transition:    border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  /* Accessible minimum touch target */
  min-width:  44px;
  min-height: 44px;
  -webkit-tap-highlight-color: transparent;
}
.social-btn:hover {
  border-color: rgba(99, 102, 241, 0.5);
  transform:    translateY(-3px);
  box-shadow:   0 6px 20px rgba(99, 102, 241, 0.18);
}

.footer-copy {
  font-size:   0.7rem;
  color:       var(--muted);
  font-family: 'Space Mono', monospace;
  text-align:  right;
}

/* ==========================================================================
   FLOATING WHATSAPP BUTTON
   ========================================================================== */
.whatsapp-float {
  position:        fixed;
  bottom:          28px;
  right:           28px;
  z-index:         9999;
  display:         flex;
  align-items:     center;
  gap:             0;
  cursor:          pointer;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

/* Hover label */
.whatsapp-float .wpp-label {
  background:     #fff;
  color:          #128c7e;
  font-family:    'Trebuchet MS', sans-serif;
  font-size:      0.85rem;
  font-weight:    700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding:        10px 18px 10px 20px;
  border-radius:  50px 0 0 50px;
  box-shadow:     -4px 4px 16px rgba(0, 0, 0, 0.12);
  white-space:    nowrap;
  max-width:      0;
  overflow:       hidden;
  opacity:        0;
  padding-left:   0;
  padding-right:  0;
  transition:
    max-width  0.4s cubic-bezier(0.4, 0, 0.2, 1),
    opacity    0.3s ease,
    padding    0.3s ease;
}
.whatsapp-float:hover .wpp-label {
  max-width:     220px;
  opacity:       1;
  padding:       10px 18px 10px 20px;
}

/* Icon circle */
.whatsapp-float .wpp-icon {
  width:         60px;
  height:        60px;
  border-radius: 50%;
  background:    #25d366;
  display:       flex;
  align-items:   center;
  justify-content: center;
  flex-shrink:   0;
  position:      relative;
  box-shadow:
    0 6px 24px rgba(37, 211, 102, 0.45),
    0 2px 8px rgba(0, 0, 0, 0.15);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.whatsapp-float:hover .wpp-icon {
  transform:     scale(1.08);
  border-radius: 0 50% 50% 0;
  box-shadow:
    0 10px 32px rgba(37, 211, 102, 0.55),
    0 4px 12px rgba(0, 0, 0, 0.18);
}

/* Pulse ring */
.whatsapp-float .wpp-icon::before {
  content:       '';
  position:      absolute;
  inset:         -4px;
  border-radius: 50%;
  border:        3px solid rgba(37, 211, 102, 0.5);
  animation:     pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
  0%   { transform: scale(1);    opacity: 0.7; }
  70%  { transform: scale(1.35); opacity: 0; }
  100% { transform: scale(1.35); opacity: 0; }
}

.whatsapp-float .wpp-icon svg {
  width:  32px;
  height: 32px;
  fill:   #fff;
}

/* Online badge */
.whatsapp-float .wpp-badge {
  position:      absolute;
  top:           4px;
  right:         4px;
  width:         13px;
  height:        13px;
  background:    #4caf50;
  border-radius: 50%;
  border:        2px solid #fff;
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */

/* ---- Tablet / large mobile ---- */
@media (max-width: 960px) {
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger    { display: flex; }

  .footer-inner {
    flex-direction: column;
    align-items:    flex-start;
  }

  .footer-copy { text-align: left; }
}

/* ---- Small mobile ---- */
@media (max-width: 600px) {
  .about-stats   { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid    { grid-template-columns: 1fr; }
  .why-grid      { grid-template-columns: 1fr; }

  .hero-logo-placeholder { width: 220px; height: 90px; }
  .hero-logo-img         { max-width: 220px; }

  /* WhatsApp float: bring in slightly on very narrow screens */
  .whatsapp-float {
    bottom: 20px;
    right:  16px;
  }
}

/* ---- Promo cards: single column on narrow screens ---- */
@media (max-width: 860px) {
  .promo-cards-row {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin:    0 auto;
  }

  .pc-price-block { min-height: unset; }
  .pc-title       { min-height: unset; }
}

/* ==========================================================================
   REDUCED MOTION — respects user OS preference
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration:   0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration:  0.01ms !important;
    scroll-behavior:      auto !important;
  }
}