/* ============================================
   MEZOKURU - STYLES
   Design Seed: MEZOKURU-2026-REBRAND
   Matrix: Editorial Brutalist + Neumorphic Micro
   ============================================ */

/* CSS Variables */
:root {
  /* Colors */
  --bg-dark: #0F0F0F;
  --bg-card: #171717;
  --bg-light: #1F1F1F;
  --text-primary: #FFFFFF;
  --text-secondary: #EEEEE3;
  --accent: #FF570A;
  --border: #2C2C2C;

  /* Typography */
  --text-xs: 0.75rem;
  --text-s: 0.875rem;
  --text-base: 1rem;
  --text-l: 1.25rem;
  --text-xl: 1.5rem;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-s: 1rem;
  --space-m: 2rem;
  --space-l: 4rem;
  --space-xl: 6rem;
  --space-xxl: 10rem;

  /* Border Radius */
  --radius: 12px;

  /* Neumorphic Shadows - Enhanced Depth */
  --neo-out:
    10px 10px 20px rgba(0, 0, 0, 0.8),
    -10px -10px 20px rgba(30, 30, 30, 0.3);
  --neo-in:
    inset 4px 4px 8px rgba(0, 0, 0, 0.9),
    inset -4px -4px 8px rgba(30, 30, 30, 0.5);
  
  /* Animation Timing - Precision */
  --timing-micro: cubic-bezier(0.4, 0, 0.2, 1);
  --timing-card: cubic-bezier(0.16, 1, 0.3, 1);
  --timing-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --timing-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);

  /* Fluid Typography */
  --display: clamp(3rem, 12vw, 10rem);
  --headline: clamp(2rem, 6vw, 4rem);
}

/* ============================================
   BASE STYLES
   ============================================ */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg-dark);
  color: var(--text-primary);
  font-family: 'Space Grotesk', system-ui, -apple-system, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

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

p {
  margin: 0;
}

img {
  max-width: 100%;
  display: block;
  transition: transform 0.3s var(--timing-card);
}

/* Image zoom on hover */
.overflow-hidden img:hover {
  transform: scale(1.05);
}

/* Accessibility */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    animation: none !important;
    transition: none !important;
  }
}

/* ============================================
   VISUAL EFFECTS
   ============================================ */

/* Paper grain overlay */
.grain {
  position: fixed;
  inset: 0;
  z-index: 9997;
  pointer-events: none;
  opacity: 0.08;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

/* Custom cursor - Enhanced */
.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: rgba(255, 87, 10, 0.9);
  z-index: 9999;
  pointer-events: none;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 0 rgba(255, 87, 10, 0.25);
  transition: width 0.15s var(--timing-micro), height 0.15s var(--timing-micro), background 0.2s var(--timing-smooth);
}

.cursor.hover {
  width: 20px;
  height: 20px;
  background: rgba(238, 238, 227, 0.9);
}

.cursorRing {
  position: fixed;
  top: 0;
  left: 0;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 87, 10, 0.35);
  z-index: 9998;
  pointer-events: none;
  transform: translate(-50%, -50%);
  backdrop-filter: blur(2px);
  transition: width 0.2s var(--timing-smooth), height 0.2s var(--timing-smooth), border-color 0.2s var(--timing-smooth);
}

.cursorRing.hover {
  width: 66px;
  height: 66px;
  border-color: rgba(238, 238, 227, 0.5);
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(15, 15, 15, 0.85);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s var(--timing-card), backdrop-filter 0.3s var(--timing-card);
}

header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(20px);
}

.headerInner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.brand .name {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.95rem;
  color: var(--accent);
}

.brand .tag {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

nav {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

nav a {
  position: relative;
  padding: 0.4rem 0.25rem;
  transition: color 0.2s var(--timing-micro);
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.1rem;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.2s var(--timing-micro);
}

nav a:hover {
  color: var(--text-primary);
}

nav a:hover::after {
  width: 100%;
  box-shadow: 0 0 8px rgba(255, 87, 10, 0.4);
}

/* ============================================
   LAYOUT HELPERS
   ============================================ */

main {
  padding-top: 86px;
}

.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: var(--space-xl) 0;
}

.grid {
  display: grid;
  gap: var(--space-l);
  align-items: start;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

/* Brutalist labels */
.vLabel {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: 'Space Grotesk', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.8rem;
  color: rgba(238, 238, 227, 0.65);
  user-select: none;
}

.sectionNo {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(238, 238, 227, 0.55);
  font-size: 0.9rem;
}

.display {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 0.9;
  font-size: var(--display);
  text-transform: uppercase;
  margin: 0;
}

.display .g {
  color: var(--accent);
}

.headline {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
  font-size: var(--headline);
  margin: 0;
  text-transform: uppercase;
}

.body {
  color: var(--text-secondary);
  font-size: 1rem;
  max-width: 60ch;
}

.rule {
  height: 2px;
  width: min(520px, 100%);
  background: var(--accent);
  border-radius: 999px;
  transform-origin: left;
}

/* ============================================
   CARDS & BUTTONS
   ============================================ */

/* Neo card - Premium Enhanced */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--neo-out);
  padding: 1.25rem 1.25rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--timing-card), box-shadow 0.3s var(--timing-card);
}

/* Subtle inner highlight on cards */
.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  pointer-events: none;
}

.card.inset {
  box-shadow: var(--neo-in);
}

.card > * {
  position: relative;
  z-index: 1;
}

.hoverLift {
  transition: transform 0.3s var(--timing-card), box-shadow 0.3s var(--timing-card);
  will-change: transform;
}

.hoverLift:hover {
  transform: translateY(-4px);
  box-shadow:
    14px 14px 28px rgba(0, 0, 0, 0.9),
    -14px -14px 28px rgba(30, 30, 30, 0.4);
}

/* Buttons - Premium Interactions */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.95rem 1.1rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  box-shadow: var(--neo-out);
  color: var(--text-primary);
  font-weight: 600;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: transform 0.15s var(--timing-micro), box-shadow 0.15s var(--timing-micro), background 0.15s var(--timing-micro);
  user-select: none;
  will-change: transform;
}

.btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    13px 13px 26px rgba(0, 0, 0, 0.9),
    -13px -13px 26px rgba(30, 30, 30, 0.4);
}

.btn:active {
  transform: scale(0.95);
  box-shadow: var(--neo-in);
  transition: transform 0.08s var(--timing-micro), box-shadow 0.08s var(--timing-micro);
}

/* Haptic-style bounce on button press */
@keyframes btnBounce {
  0% { transform: scale(0.95); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.btn.primary {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 
    var(--neo-out),
    0 0 20px rgba(255, 87, 10, 0.15);
}

.btn.primary:hover {
  box-shadow:
    13px 13px 26px rgba(0, 0, 0, 0.9),
    -13px -13px 26px rgba(30, 30, 30, 0.4),
    0 0 25px rgba(255, 87, 10, 0.2);
}

.btn .dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 8px rgba(255, 87, 10, 0.12);
  animation: glowPulse 3s ease-in-out infinite;
}

/* Glow pulse on orange accents */
@keyframes glowPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.95; box-shadow: 0 0 0 8px rgba(255, 87, 10, 0.17); }
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  position: relative;
  padding-top: var(--space-xl);
  padding-bottom: var(--space-xxl);
  overflow: hidden;
}

.heroGrid {
  grid-template-columns: 1fr 3fr;
}

.heroRight {
  display: grid;
  gap: var(--space-m);
}

.poem {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.35;
}

.poem em {
  color: var(--accent);
  font-style: normal;
}

.price {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.2rem;
  border: 1px solid rgba(255, 87, 10, 0.28);
  box-shadow: 0 0 20px rgba(255, 87, 10, 0.08);
  transition: box-shadow 0.3s var(--timing-card);
}

.price:hover {
  box-shadow: 0 0 30px rgba(255, 87, 10, 0.15);
}

.price .big {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.price .small {
  color: var(--text-secondary);
  font-size: 0.95rem;
  max-width: 36ch;
}

.spiral {
  display: none;
}

/* ============================================
   DELIVERABLES SECTION
   ============================================ */

.deliverGrid {
  grid-template-columns: 1fr 2fr;
}

.stickyTitle {
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
}

.deliverCard {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 1rem;
  align-items: start;
  transition: transform 0.3s var(--timing-card);
}

.deliverCard:hover {
  transform: translateY(-2px) rotateY(2deg);
}

.deliverNo {
  width: 72px;
  height: 72px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--bg-dark);
  border: 1px solid var(--border);
  box-shadow: var(--neo-in);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text-primary);
  transition: box-shadow 0.15s var(--timing-micro), transform 0.15s var(--timing-micro);
}

.deliverCard:hover .deliverNo {
  box-shadow: 
    inset 6px 6px 12px rgba(0, 0, 0, 0.95),
    inset -6px -6px 12px rgba(30, 30, 30, 0.6);
  transform: scale(0.98);
}

.deliverTitle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.35rem;
}

.deliverTitle h3 {
  margin: 0;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  font-size: 1.1rem;
  text-transform: uppercase;
}

.deliverTitle i {
  opacity: 0.9;
  color: var(--accent);
}

.deliverDesc {
  color: var(--text-secondary);
}

/* ============================================
   PROOF SECTION
   ============================================ */

.proofGrid {
  grid-template-columns: 2fr 1fr;
}

.metrics {
  display: grid;
  gap: 0.9rem;
}

.metric {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 1rem;
}

.metric strong {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
}

.metric span {
  color: var(--text-secondary);
}

.quote {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.05rem;
  line-height: 1.3;
  color: var(--text-secondary);
}

.quote::before {
  content: "\201C";
  font-size: 2.2rem;
  color: var(--accent);
  display: block;
  line-height: 1;
  margin-bottom: 0.3rem;
}

/* ============================================
   CONTACT SECTION
   ============================================ */

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

.scarcity {
  border: 1px solid rgba(255, 87, 10, 0.22);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  color: var(--text-primary);
}

.scarcity i {
  color: var(--accent);
}

.contactCards {
  display: grid;
  gap: 1rem;
}

.contactCard {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.15rem;
  transition: transform 0.3s var(--timing-card);
}

.contactCard:hover {
  transform: translateY(-2px) rotateY(2deg);
}

.contactCard:hover .arrow {
  transform: translateX(4px);
  opacity: 1;
}

.contactLeft {
  display: flex;
  gap: 0.9rem;
  align-items: center;
}

.contactIcon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--bg-dark);
  border: 1px solid var(--border);
  box-shadow: var(--neo-in);
  transition: box-shadow 0.15s var(--timing-micro), transform 0.15s var(--timing-micro);
}

.contactCard:hover .contactIcon {
  box-shadow: 
    inset 6px 6px 12px rgba(0, 0, 0, 0.95),
    inset -6px -6px 12px rgba(30, 30, 30, 0.6);
  transform: scale(0.95);
}

.contactMeta {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.contactMeta .k {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(238, 238, 227, 0.6);
}

.contactMeta .v {
  font-weight: 650;
  color: var(--text-primary);
}

.arrow {
  opacity: 0.7;
  transition: transform 0.2s var(--timing-micro), opacity 0.2s var(--timing-micro);
}

/* ============================================
   CONTACT MODAL
   ============================================ */

.contact-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s var(--timing-card);
}

.contact-modal.active {
  opacity: 1;
}

.contact-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  transition: backdrop-filter 0.3s var(--timing-card);
}

.contact-modal-container {
  position: relative;
  background: var(--bg-card);
  border-radius: var(--radius);
  max-width: 600px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--neo-out), 0 0 40px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--border);
  transform: scale(0.9) translateY(20px);
  transition: transform 0.3s var(--timing-spring);
}

.contact-modal.active .contact-modal-container {
  transform: scale(1) translateY(0);
}

.contact-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 3rem 1rem;
  border-bottom: 1px solid var(--border);
}

.contact-modal-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin: 0;
  color: var(--text-primary);
}

.contact-modal-close {
  background: transparent;
  border: none;
  font-size: 1.5rem;
  color: var(--text-secondary);
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s var(--timing-micro);
}

.contact-modal-close:hover {
  color: var(--text-primary);
  background: rgba(255, 87, 10, 0.1);
  transform: rotate(90deg);
}

.contact-modal-body {
  padding: 2rem 3rem 3rem;
}

.contact-modal-intro {
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.contact-options-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-option-card {
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--bg-dark);
  border-radius: 8px;
  border: 1px solid var(--border);
}

.contact-option-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  color: var(--accent);
}

.contact-option-title {
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--text-primary);
}

.contact-option-description {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-primary);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  box-shadow: var(--neo-in);
  transition: all 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: var(--neo-in), 0 0 0 3px rgba(255, 87, 10, 0.15);
  transition: border-color 0.15s var(--timing-micro), box-shadow 0.15s var(--timing-micro);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.package-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.package-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem;
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.15s var(--timing-micro);
}

.package-option:hover {
  border-color: var(--accent);
  background: rgba(255, 87, 10, 0.05);
  transform: translateY(-1px);
}

.package-option:has(input:checked) {
  border-color: var(--accent);
  background: rgba(255, 87, 10, 0.1);
  box-shadow: 0 0 0 2px rgba(255, 87, 10, 0.2);
}

.package-option input[type="radio"] {
  width: auto;
  margin: 0;
}

.package-option span {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.contact-modal-submit {
  width: 100%;
  background: var(--accent);
  color: var(--text-primary);
  border: none;
  border-radius: 8px;
  padding: 1rem 2rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  box-shadow: var(--neo-out), 0 0 20px rgba(255, 87, 10, 0.15);
  transition: all 0.15s var(--timing-micro);
  will-change: transform;
}

.contact-modal-submit:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 
    12px 12px 24px rgba(0, 0, 0, 0.9),
    -12px -12px 24px rgba(30, 30, 30, 0.4),
    0 0 25px rgba(255, 87, 10, 0.2);
}

.contact-modal-submit:active {
  transform: scale(0.98);
  transition: transform 0.08s var(--timing-micro);
}

.honeypot {
  display: none;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  border-top: 2px solid #2C2C2C;
  background: #0F0F0F;
  padding: 32px 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  color: rgba(238, 238, 227, 0.6);
}

.footer .tagline {
  font-style: italic;
}

/* ============================================
   WHATSAPP FLOAT - Breathing Animation
   ============================================ */

.wa {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 200;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--accent);
  border: 1px solid var(--border);
  box-shadow: var(--neo-out);
  transition: transform 0.15s var(--timing-micro), box-shadow 0.15s var(--timing-micro);
  will-change: transform;
}

.wa:hover {
  transform: scale(1.1);
  box-shadow:
    12px 12px 24px rgba(0, 0, 0, 0.9),
    -12px -12px 24px rgba(30, 30, 30, 0.4),
    0 0 20px rgba(255, 87, 10, 0.3);
}

.wa i {
  font-size: 1.35rem;
  color: var(--text-primary);
}

/* Breathing animation */
@keyframes breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

@media (prefers-reduced-motion: no-preference) {
  .wa {
    animation: breathe 2s ease-in-out infinite;
  }
  
  .wa:hover {
    animation: none;
  }
}

/* ============================================
   SIGNATURE BANNER CAROUSEL
   ============================================ */

.signature-banner {
  background: var(--accent);
  padding: 20px 0;
  overflow: hidden;
  position: relative;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.banner-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  will-change: transform;
}

.banner-track.ltr {
  animation: scrollLTR 40s linear infinite;
}

.banner-track.rtl {
  animation: scrollRTL 40s linear infinite;
}

.banner-item {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(20px, 3vw, 28px);
  color: #0F0F0F;
  display: flex;
  align-items: center;
  gap: 48px;
  letter-spacing: -0.01em;
}

.banner-separator {
  color: rgba(15, 15, 15, 0.4);
  font-weight: 400;
}

@keyframes scrollLTR {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes scrollRTL {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

/* Reduced motion fallback */
@media (prefers-reduced-motion: reduce) {
  .banner-track {
    animation: none !important;
  }
  
  .signature-banner {
    text-align: center;
  }
  
  .banner-track {
    justify-content: center;
  }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

/* Floating elements: continuous subtle movement */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

@media (prefers-reduced-motion: no-preference) {
  .display .line {
    animation: float 3.5s ease-in-out infinite;
  }
  
  .display .line:nth-child(2) {
    animation-delay: 0.2s;
  }
}

.margin-top-sm {
  margin-top: 0.55rem;
}

.text-primary {
  color: var(--text-primary);
}

.muted {
  color: var(--text-secondary);
  opacity: 0.75;
}

.text-center {
  text-align: center;
}

.max-w-44ch {
  max-width: 44ch;
}

.max-w-52ch {
  max-width: 52ch;
}

.gap-1 {
  gap: 1rem;
}

.gap-1-25 {
  gap: 1.25rem;
}

.flex {
  display: flex;
}

.flex-wrap {
  flex-wrap: wrap;
}

.align-center {
  align-items: center;
}

.opacity-75 {
  opacity: 0.75;
}

.uppercase {
  text-transform: uppercase;
}

.letter-spacing-wide {
  letter-spacing: 0.22em;
}

.font-size-small {
  font-size: 0.8rem;
}

.font-size-xs {
  font-size: 0.78rem;
}

.font-weight-700 {
  font-weight: 700;
}

.padding-1 {
  padding: 1rem;
}

.padding-1-1 {
  padding: 1.1rem 1.15rem;
}

.border-left-accent {
  border-left: 3px solid var(--accent);
}

.margin-0 {
  margin: 0;
}

.grid-gap-1-1 {
  display: grid;
  gap: 1.1rem;
}

.grid-gap-1-25 {
  display: grid;
  gap: 1.25rem;
}

.image-full {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.aspect-16-10 {
  aspect-ratio: 16/10;
}

.opacity-92 {
  opacity: 0.92;
}

.padding-0 {
  padding: 0;
}

.overflow-hidden {
  overflow: hidden;
}

.headline-responsive {
  font-size: clamp(1.6rem, 3.8vw, 2.6rem);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1023px) {
  .heroGrid,
  .deliverGrid,
  .proofGrid,
  .contactGrid {
    grid-template-columns: 1fr;
  }
  
  .vLabel {
    writing-mode: horizontal-tb;
    transform: none;
    letter-spacing: 0.18em;
  }
  
  .stickyTitle {
    position: relative;
    top: auto;
  }
  
  .spiral {
    inset: auto -35% -35% auto;
    opacity: 0.42;
  }
  
  nav {
    gap: 0.9rem;
  }
}

@media (max-width: 768px) {
  .contact-modal-header {
    padding: 1.5rem 1.5rem 1rem;
  }

  .contact-modal-body {
    padding: 1.5rem;
  }

  .contact-modal-title {
    font-size: 1.5rem;
  }

  .contact-options-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 767px) {
  .headerInner {
    padding: 0.9rem 1rem;
  }
  
  nav {
    display: none;
  }
  
  .section {
    padding: var(--space-l) 0;
  }
  
  .display {
    letter-spacing: -0.02em;
  }
  
  .deliverCard {
    grid-template-columns: 64px 1fr;
  }
  
  .deliverNo {
    width: 64px;
    height: 64px;
  }
  
  .cursor,
  .cursorRing {
    display: none;
  }
}

@media (max-width: 640px) {
  .footer-content {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}


/* ============================================
   FAQ SPECIFIC STYLES
   ============================================ */

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-category {
  margin-bottom: 3rem;
}

.faq-category h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--accent);
}

.faq-item {
  margin-bottom: 1rem;
}

.faq-question {
  background: var(--bg-card);
  padding: 1.5rem;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s var(--timing-card);
  border: 1px solid var(--border);
  box-shadow: var(--neo-out);
}

.faq-question:hover {
  border-color: rgba(255,255,255,0.1);
  transform: translateY(-2px);
  box-shadow:
    12px 12px 24px rgba(0, 0, 0, 0.9),
    -12px -12px 24px rgba(30, 30, 30, 0.4);
}

.faq-question h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  flex: 1;
  color: var(--text-primary);
}

.faq-icon {
  font-size: 1.2rem;
  color: var(--accent);
  transition: transform 0.3s var(--timing-spring);
  margin-left: 1rem;
}

.faq-question.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s var(--timing-card), padding 0.3s var(--timing-card);
  padding: 0 1.5rem;
}

.faq-answer.active {
  max-height: 1000px;
  padding: 1.5rem;
}

.faq-answer p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin: 0 0 1rem;
}

.faq-answer ul {
  color: var(--text-secondary);
  line-height: 1.8;
  margin: 0 0 1rem;
  padding-left: 1.5rem;
}

.faq-answer li {
  margin-bottom: 0.5rem;
}

.faq-link {
  color: var(--accent);
  text-decoration: underline;
  font-weight: 600;
}

.faq-link:hover {
  color: var(--text-primary);
}


/* ============================================
   ABOUT PAGE SPECIFIC STYLES
   ============================================ */

.urgency-banner {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: var(--bg-dark);
  text-align: center;
  padding: 0.75rem;
  font-weight: 700;
  font-size: 0.95rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.logo-main {
  font-size: 1.8rem;
  font-weight: 900;
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: -0.05em;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-tagline {
  font-size: 0.7rem;
  color: var(--text-secondary);
  letter-spacing: 0.1em;
  margin-top: -4px;
}

.section-label {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.9rem;
  color: rgba(238, 238, 227, 0.55);
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.accent-line {
  height: 3px;
  width: 80px;
  background: var(--accent);
  margin: 2rem auto;
}

.about-callout {
  max-width: 800px;
  margin: 2rem auto 0;
  padding: 2.5rem 3rem;
  background: linear-gradient(135deg, rgba(255,209,102,0.15), rgba(240,147,251,0.15));
  border: 2px solid rgba(255,209,102,0.3);
  text-align: center;
}

.about-callout h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.8rem;
  margin: 0 0 1rem 0;
  font-weight: 900;
  color: var(--accent);
}

.about-callout p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0 0 1.5rem 0;
  font-size: 1.1rem;
}

.info-badges {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.info-badge {
  background: rgba(255,255,255,0.1);
  padding: 1rem 1.5rem;
  border-radius: 12px;
}

.info-badge-text {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.guarantee-text {
  color: var(--accent);
  font-weight: 600;
  margin: 1.5rem 0 0 0;
  font-size: 0.95rem;
}

.name-origin {
  max-width: 800px;
  margin: 2rem auto 0;
  padding: 2rem 3rem;
  background: linear-gradient(135deg, rgba(255,209,102,0.05), rgba(240,147,251,0.05));
  border-left: 4px solid var(--accent);
}

.name-origin h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.3rem;
  margin: 0 0 1rem 0;
  font-weight: 700;
  color: var(--accent);
}

.name-origin p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin: 0 0 1rem 0;
}

.origin-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.origin-label {
  color: var(--accent);
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
}

.origin-text {
  color: var(--text-secondary);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 6rem;
}

.about-portrait {
  padding: 0;
  overflow: hidden;
  height: 600px;
  position: relative;
}

.about-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

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

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent-2);
  font-family: 'Space Grotesk', sans-serif;
}

.stat-label {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.value-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255,209,102,0.2), rgba(255,209,102,0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 3px 3px 6px var(--shadow-dark), inset -3px -3px 6px var(--shadow-light);
  flex-shrink: 0;
}

.value-icon i {
  color: var(--accent);
  font-size: 1.5rem;
}

.value-content h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.2rem;
  margin: 0 0 0.25rem 0;
  font-weight: 700;
}

.value-content p {
  color: var(--text-secondary);
  margin: 0;
  font-size: 0.95rem;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  padding: 2.5rem;
  text-align: center;
}

.testimonial-quote {
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.testimonial-text {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--accent-2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-dark);
  font-weight: 700;
  font-size: 1.4rem;
}

.author-info {
  text-align: left;
}

.author-name {
  font-weight: 700;
  color: var(--text-primary);
}

.author-project {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.author-detail {
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  padding: 2.5rem;
}

.service-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: 15px;
  background: linear-gradient(135deg, rgba(255,209,102,0.2), rgba(255,209,102,0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 3px 3px 6px var(--shadow-dark), inset -3px -3px 6px var(--shadow-light);
  flex-shrink: 0;
}

.service-icon i {
  color: var(--accent);
  font-size: 1.8rem;
}

.service-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.4rem;
  margin: 0;
  font-weight: 700;
}

.service-desc {
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

.guarantee-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem;
  background: linear-gradient(135deg, rgba(102,126,234,0.1), rgba(240,147,251,0.1));
  border: 2px solid rgba(102,126,234,0.3);
  text-align: center;
}

.guarantee-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(102,126,234,0.2), rgba(102,126,234,0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  box-shadow: inset 6px 6px 12px var(--shadow-dark), inset -6px -6px 12px var(--shadow-light);
}

.guarantee-icon i {
  font-size: 3rem;
  color: var(--accent-3);
}

.guarantee-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  font-weight: 900;
}

.guarantee-desc {
  color: var(--text-secondary);
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.guarantee-desc strong {
  color: var(--text-primary);
}

.guarantee-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.guarantee-feature {
  text-align: center;
}

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 15px;
  background: linear-gradient(135deg, rgba(255,209,102,0.2), rgba(255,209,102,0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: inset 3px 3px 6px var(--shadow-dark), inset -3px -3px 6px var(--shadow-light);
}

.feature-icon i {
  color: var(--accent);
  font-size: 1.8rem;
}

.feature-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  margin: 0 0 0.5rem 0;
  font-weight: 700;
}

.feature-desc {
  color: var(--text-secondary);
  margin: 0;
  font-size: 0.9rem;
}

.partnership-box {
  background: rgba(255,255,255,0.1);
  border-radius: 15px;
  padding: 1.5rem;
  margin-top: 2rem;
}

.partnership-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.2rem;
  margin: 0 0 1rem 0;
  font-weight: 700;
  color: var(--accent);
}

.partnership-desc {
  color: var(--text-secondary);
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
}

.partnership-desc strong {
  color: var(--text-primary);
}

.cta-section {
  background: linear-gradient(135deg, rgba(102,126,234,0.15), rgba(240,147,251,0.15));
  padding: 4rem 3rem;
  text-align: center;
  border: 2px solid rgba(255,209,102,0.2);
}

.cta-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 900;
}

.cta-desc {
  color: var(--text-secondary);
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-compare {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.price-item {
  text-align: center;
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--accent);
  font-family: 'Space Grotesk', sans-serif;
}

.price-label {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.price-arrow {
  color: var(--accent);
  font-size: 2rem;
}

.price-old {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--text-secondary);
  font-family: 'Space Grotesk', sans-serif;
  text-decoration: line-through;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-note {
  color: var(--accent);
  font-weight: 600;
  margin: 2rem 0 0 0;
  font-size: 0.95rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand {
  font-size: 1.8rem;
  font-weight: 900;
  font-family: 'Space Grotesk', sans-serif;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-desc {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 45px;
  height: 45px;
  border-radius: 12px;
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 1.3rem;
  transition: all 0.3s ease;
  box-shadow: 4px 4px 8px var(--shadow-dark), -4px -4px 8px var(--shadow-light);
}

.social-link:hover {
  transform: translateY(-2px);
  color: var(--accent);
}

.footer-section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--accent);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.contact-item i {
  color: var(--accent);
  font-size: 1.1rem;
}

.contact-item a,
.contact-item span {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
}

.contact-item a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 2rem;
  text-align: center;
}

.footer-copyright {
  color: var(--text-secondary);
  margin: 0;
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .about-portrait {
    height: 400px;
  }
  
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  
  .service-grid {
    grid-template-columns: 1fr;
  }
  
  .guarantee-features {
    grid-template-columns: 1fr;
  }
  
  .pricing-compare {
    flex-direction: column;
    gap: 1rem;
  }
  
  .price-arrow {
    transform: rotate(90deg);
  }
}
