/* ============================================
   Accessible Garage Door — Dark Premium Theme
   ============================================ */
:root {
  --bg: #0B0D10;
  --bg-2: #111418;
  --card: #15191E;
  --card-2: #1A1F26;
  --border: #242A32;
  --border-glow: #2E3640;
  --text: #EDEFF2;
  --text-dim: #9BA3AE;
  --text-faint: #6B7280;
  --accent: #FF6A1A;
  --accent-2: #FF8A3D;
  --accent-glow: rgba(255,106,26,0.45);
  --cyan: #4DD0E1;
  --radius: 14px;
  --radius-lg: 22px;
  --maxw: 1180px;
  --transition: all .3s cubic-bezier(.4,0,.2,1);
}

* , *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1,h2,h3,h4 { font-family: 'Sora', sans-serif; line-height: 1.1; font-weight: 800; letter-spacing: -.5px; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; display: block; }
ul { list-style: none; }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.grad, .grad-text {
  background: linear-gradient(100deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* ===== GARAGE DOOR PRELOADER ===== */
body.loading { overflow: hidden; }
#garage-loader {
  position: fixed; inset: 0; z-index: 100000; overflow: hidden;
  background: #07090b;
  perspective: 1400px;
}
#garage-loader { animation: glLift 1.2s cubic-bezier(.66,0,.2,1) 1.5s forwards; }
@keyframes glLift {
  0% { transform: translateY(0); }
  100% { transform: translateY(-100%); visibility: hidden; }
}
@media (prefers-reduced-motion: reduce) {
  #garage-loader { display: none !important; }
  body.loading { overflow: auto; }
}

/* side rails */
.gl-rails span { position: absolute; top: 0; bottom: 0; width: 10px; background: linear-gradient(90deg, #1a1f26, #0c0f12); z-index: 3; }
.gl-rails span:first-child { left: 6%; box-shadow: 2px 0 12px rgba(0,0,0,.6); }
.gl-rails span:last-child { right: 6%; box-shadow: -2px 0 12px rgba(0,0,0,.6); }

/* the door = 5 panels filling the screen (the shutter texture) */
.gl-door {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column;
}
.gl-panel {
  flex: 1; position: relative;
  background:
    linear-gradient(180deg, rgba(255,255,255,.05), transparent 18%),
    linear-gradient(180deg, #20262e, #161b21);
  border-top: 2px solid rgba(0,0,0,.55);
  border-bottom: 1px solid rgba(255,255,255,.04);
  box-shadow: inset 0 0 40px rgba(0,0,0,.4);
}
.gl-panel::before {
  content: ''; position: absolute; inset: 14px 10%;
  border: 1px solid rgba(255,255,255,.05); border-radius: 4px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
}
.gl-panel:nth-child(3)::after {
  content: ''; position: absolute; right: 14%; top: 50%; transform: translateY(-50%);
  width: 16px; height: 16px; border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #ff8a3d, #c2410c);
  box-shadow: 0 0 14px rgba(255,106,26,.7);
}

/* brand sits in front, fades out just before the door lifts */
.gl-brand {
  position: absolute; inset: 0; z-index: 4;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px;
  animation: brandIn .6s ease-out both, brandOut .45s ease-in 1.45s forwards;
}
.gl-mark {
  width: 76px; height: 76px; border-radius: 20px; display: grid; place-items: center;
  font-family: 'Sora', sans-serif; font-weight: 800; font-size: 42px; color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 12px 40px -8px var(--accent-glow);
  animation: markPulse 1.4s ease-in-out infinite;
}
.gl-logo {
  width: 150px; height: auto; display: block;
  filter: drop-shadow(0 12px 36px rgba(0,0,0,.55));
  animation: markPulse 1.6s ease-in-out infinite;
}
.gl-name { font-family: 'Sora', sans-serif; font-weight: 800; font-size: 20px; letter-spacing: 2px; color: #fff; text-align: center; display: flex; flex-direction: column; gap: 4px; }
.gl-name small { font-family: 'Inter', sans-serif; font-weight: 500; font-size: 11px; letter-spacing: 3px; color: var(--text-faint); text-transform: uppercase; }
.gl-bar { width: 180px; height: 4px; border-radius: 4px; background: rgba(255,255,255,.1); overflow: hidden; margin-top: 6px; }
.gl-bar span { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--accent), var(--accent-2)); animation: barFill 1.5s ease-out forwards; }
.gl-text { font-size: 12px; letter-spacing: 1px; color: var(--text-faint); }
@keyframes barFill { to { width: 100%; } }
@keyframes markPulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.07); } }
@keyframes brandIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@keyframes brandOut { to { opacity: 0; transform: translateY(-20px); } }

.skip-link { position: absolute; top: -100%; left: 16px; background: var(--accent); color: #fff; padding: 12px 24px; border-radius: 8px; font-weight: 700; z-index: 9999; transition: top .2s; }
.skip-link:focus { top: 8px; }
*:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 6px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 15px 30px; border-radius: 10px; font-weight: 700; font-size: 15px;
  font-family: 'Sora', sans-serif; cursor: pointer; border: none; min-height: 48px;
  transition: var(--transition); touch-action: manipulation;
}
.btn-glow {
  background: linear-gradient(100deg, var(--accent), var(--accent-2));
  color: #fff; box-shadow: 0 0 0 1px rgba(255,106,26,.3), 0 8px 30px -6px var(--accent-glow);
}
.btn-glow:hover { transform: translateY(-2px); box-shadow: 0 0 0 1px rgba(255,106,26,.5), 0 14px 40px -6px var(--accent-glow); }
.btn-ghost { background: rgba(255,255,255,.04); color: var(--text); border: 1px solid var(--border-glow); }
.btn-ghost:hover { background: rgba(255,255,255,.08); border-color: var(--accent); color: #fff; }
.btn.full { width: 100%; }

/* ===== TOP BAR ===== */
.top-bar { background: #060708; border-bottom: 1px solid var(--border); font-size: 13px; color: var(--text-dim); }
.top-bar .container { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding-top: 9px; padding-bottom: 9px; flex-wrap: wrap; }
.tb-item { display: inline-flex; align-items: center; gap: 7px; }
.tb-item svg { width: 14px; height: 14px; stroke: var(--accent); fill: none; stroke-width: 2; }

/* ===== HEADER ===== */
#header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(11,13,16,.82); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.header-main { display: flex; align-items: center; justify-content: space-between; padding: 14px 24px; gap: 20px; }
.logo { display: flex; align-items: center; gap: 12px; }
.logo-img { height: 60px; width: auto; display: block; filter: drop-shadow(0 4px 12px rgba(0,0,0,.45)); }
.logo-mark {
  width: 42px; height: 42px; border-radius: 11px; display: grid; place-items: center;
  font-family: 'Sora', sans-serif; font-weight: 800; font-size: 22px; color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 6px 18px -4px var(--accent-glow);
}
.logo-text { font-family: 'Sora', sans-serif; font-weight: 800; font-size: 15px; letter-spacing: .5px; line-height: 1.05; display: flex; flex-direction: column; }
.logo-text small { font-family: 'Inter', sans-serif; font-weight: 500; font-size: 10.5px; letter-spacing: 1.5px; color: var(--text-faint); text-transform: uppercase; }
#nav { display: flex; align-items: center; gap: 6px; }
#nav a { padding: 9px 16px; font-size: 14px; font-weight: 600; color: var(--text-dim); border-radius: 8px; }
#nav a:hover, #nav a.active { color: #fff; background: rgba(255,255,255,.05); }
.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: ' ▾'; font-size: 10px; color: var(--text-faint); }
.nav-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu {
  position: absolute; top: 100%; left: 0; margin-top: 6px;
  background: var(--card-2); border: 1px solid var(--border);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,.8); border-radius: 12px;
  padding: 8px; min-width: 230px; max-height: 70vh; overflow-y: auto;
  display: grid; grid-template-columns: 1fr; gap: 2px;
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: var(--transition); z-index: 200;
}
.nav-dropdown:nth-child(3) .dropdown-menu { grid-template-columns: 1fr 1fr; min-width: 380px; }
.dropdown-menu a { padding: 9px 14px; font-size: 13.5px; font-weight: 500; color: var(--text-dim); border-radius: 7px; background: none; }
.dropdown-menu a:hover { background: rgba(255,106,26,.12); color: var(--accent-2); }
.header-cta { padding: 11px 22px; min-height: 44px; }
.mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.mobile-toggle span { display: block; width: 24px; height: 2px; background: var(--text); margin: 5px 0; border-radius: 2px; transition: var(--transition); }

/* ===== HERO ===== */
.hero { position: relative; padding: 60px 0 80px; overflow: hidden; }
.hero-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 26px 26px; mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 40%, transparent 75%);
  pointer-events: none;
}
.hero-frame {
  position: relative; border-radius: var(--radius-lg);
  padding: 70px 24px; text-align: center;
  background:
    radial-gradient(ellipse 60% 70% at 50% 0%, rgba(255,106,26,.14), transparent 60%),
    linear-gradient(180deg, #0E1115, #0A0C0F);
  border: 1px solid var(--border);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04), 0 40px 100px -40px rgba(0,0,0,.8);
  overflow: hidden;
}
.hero-frame::before {
  content: ''; position: absolute; inset: 14px; border-radius: 16px;
  border: 1.5px solid transparent;
  background: linear-gradient(180deg, rgba(77,208,225,.5), rgba(255,106,26,.3), transparent) border-box;
  -webkit-mask: linear-gradient(#000 0 0) padding-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: .7; pointer-events: none;
}
.hero-frame-inner { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; }
.hero-particles { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase; color: var(--accent-2);
  background: rgba(255,106,26,.08); border: 1px solid rgba(255,106,26,.22);
  padding: 8px 16px; border-radius: 999px; margin-bottom: 26px;
}
.live-dot { width: 8px; height: 8px; background: #22C55E; border-radius: 50%; position: relative; }
.live-dot::after { content: ''; position: absolute; inset: 0; border-radius: 50%; background: #22C55E; animation: ping 1.6s cubic-bezier(0,0,.2,1) infinite; }
@keyframes ping { 0% { transform: scale(1); opacity: .7; } 100% { transform: scale(3); opacity: 0; } }
.hero h1 { font-size: clamp(2.6rem, 6.5vw, 4.6rem); margin-bottom: 22px; }
.hero-sub { color: var(--text-dim); font-size: clamp(1rem, 2vw, 1.18rem); max-width: 560px; margin: 0 auto 34px; }
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===== MARQUEE ===== */
.marquee { background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 16px 0; overflow: hidden; white-space: nowrap; }
.marquee-track { display: inline-flex; align-items: center; gap: 28px; animation: marquee 28s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 15px; color: var(--text-dim); letter-spacing: .5px; }
.marquee .dot { color: var(--accent); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===== SECTIONS ===== */
.section { padding: 90px 0; }
.section-head { margin-bottom: 50px; }
.section-head.center { text-align: center; max-width: 640px; margin-left: auto; margin-right: auto; }
.section-head.row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; gap: 16px; flex-wrap: wrap; }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
.section-head p { color: var(--text-dim); margin-top: 12px; }
.eyebrow { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
.all-link { color: var(--accent); font-weight: 700; font-size: 14px; }
.all-link:hover { color: var(--accent-2); }
.grad-text { font-size: clamp(1.9rem, 4vw, 2.7rem); }

/* ===== FEATURES ===== */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feat-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 34px 30px; transition: var(--transition); position: relative; overflow: hidden;
}
.feat-card:hover { border-color: var(--border-glow); transform: translateY(-5px); box-shadow: 0 30px 60px -30px rgba(0,0,0,.7); }
.feat-icon {
  width: 54px; height: 54px; border-radius: 13px; display: grid; place-items: center; margin-bottom: 20px;
  background: rgba(255,106,26,.1); border: 1px solid rgba(255,106,26,.2);
}
.feat-icon svg { width: 26px; height: 26px; stroke: var(--accent); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.feat-card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.feat-card p { color: var(--text-dim); font-size: 15px; }

/* ===== COLLECTION ===== */
.collection-sub { color: var(--text-faint); margin-bottom: 36px; }
.collection-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.collection-grid.two { grid-template-columns: 1fr 1fr; }
.model-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; min-height: 320px;
  border: 1px solid var(--border); background: var(--card); display: block;
}
.model-card.wide { min-height: 220px; }
.model-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .55; transition: transform .6s cubic-bezier(.22,1,.36,1), opacity .4s; }
.model-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 30%, rgba(8,10,12,.92)); }
.model-card:hover img { transform: scale(1.08); opacity: .7; }
.model-card:hover { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent), 0 30px 60px -30px var(--accent-glow); }
.model-info { position: absolute; left: 0; bottom: 0; padding: 26px; z-index: 2; }
.model-tag { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 1.5px; color: var(--cyan); margin-bottom: 8px; }
.model-info h3 { font-size: 1.55rem; margin-bottom: 4px; }
.model-info p { color: var(--text-dim); font-size: 14px; }

.emergency-strip {
  margin-top: 28px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  background: linear-gradient(100deg, rgba(255,106,26,.12), rgba(255,106,26,.03));
  border: 1px solid rgba(255,106,26,.25); border-radius: var(--radius-lg); padding: 28px 32px;
}
.emergency-strip h3 { font-size: 1.4rem; margin-bottom: 4px; }
.emergency-strip p { color: var(--text-dim); font-size: 15px; }

/* ===== STATS ===== */
.stats { background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 56px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat h3 { font-size: 3rem; background: linear-gradient(180deg, #fff, var(--accent-2)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat p { color: var(--text-dim); font-size: 13px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-top: 6px; }

/* ===== REVIEWS ===== */
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; transition: var(--transition); }
.review-card:hover { border-color: var(--border-glow); transform: translateY(-4px); }
.stars { color: #FFB020; letter-spacing: 3px; margin-bottom: 14px; }
.review-card blockquote { color: var(--text); font-size: 15px; line-height: 1.7; margin-bottom: 18px; }
.rev-author { font-family: 'Sora', sans-serif; font-weight: 700; }
.rev-author span { display: block; color: var(--text-faint); font-weight: 400; font-size: 13px; font-family: 'Inter', sans-serif; margin-top: 2px; }

/* ===== AREAS ===== */
.areas-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 10px; }
.areas-grid a { padding: 13px 18px; background: var(--card); border: 1px solid var(--border); border-radius: 10px; font-size: 14px; font-weight: 600; color: var(--text-dim); }
.areas-grid a:hover { border-color: var(--accent); color: #fff; background: var(--card-2); }

/* ===== CONTACT ===== */
.contact-wrap { display: grid; grid-template-columns: 1fr 1.1fr; gap: 50px; align-items: center; background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 48px; }
.contact-left h2 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 14px; }
.contact-left p { color: var(--text-dim); margin-bottom: 22px; }
.contact-phone { display: inline-block; font-family: 'Sora', sans-serif; font-weight: 800; font-size: 2rem; color: var(--accent); margin-bottom: 22px; }
.contact-phone:hover { color: var(--accent-2); }
.contact-info li { display: flex; gap: 10px; align-items: flex-start; color: var(--text-dim); font-size: 14px; margin-bottom: 10px; }
.contact-info svg { width: 18px; height: 18px; stroke: var(--accent); fill: none; stroke-width: 2; flex-shrink: 0; margin-top: 2px; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fg { display: flex; flex-direction: column; gap: 7px; }
.fg label { font-size: 13px; font-weight: 600; color: var(--text-dim); }
.fg input, .fg select, .fg textarea {
  background: var(--bg); border: 1px solid var(--border); border-radius: 10px; padding: 13px 16px;
  color: var(--text); font-size: 15px; font-family: 'Inter', sans-serif; transition: var(--transition); min-height: 48px;
}
.fg input:focus, .fg select:focus, .fg textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(255,106,26,.12); }
.fg textarea { resize: vertical; }

/* ===== FOOTER ===== */
footer { background: #060708; border-top: 1px solid var(--border); padding-top: 60px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 44px; }
.footer-about { color: var(--text-faint); font-size: 14px; margin-top: 16px; line-height: 1.7; }
footer h4 { font-size: 14px; letter-spacing: 1px; text-transform: uppercase; color: var(--text); margin-bottom: 16px; }
footer ul li { margin-bottom: 10px; }
footer ul a, .footer-contact li { color: var(--text-dim); font-size: 14px; }
footer ul a:hover { color: var(--accent); }
.footer-contact li { margin-bottom: 12px; }
.footer-bottom { border-top: 1px solid var(--border); padding: 22px 0; }
.footer-bottom p { text-align: center; color: var(--text-faint); font-size: 13px; }

/* ===== SCROLL TOP & MOBILE CTA ===== */
.scroll-top { position: fixed; bottom: 24px; right: 22px; width: 48px; height: 48px; border-radius: 50%; background: var(--card-2); border: 1px solid var(--border-glow); color: #fff; cursor: pointer; display: grid; place-items: center; opacity: 0; visibility: hidden; transition: var(--transition); z-index: 998; }
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { background: var(--accent); border-color: var(--accent); }
.scroll-top svg { width: 20px; height: 20px; }
/* Floating phone — follows the whole page */
.floating-phone {
  position: fixed; left: 22px; bottom: 24px; z-index: 998;
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(100deg, var(--accent), var(--accent-2));
  color: #fff; padding: 12px 20px 12px 14px; border-radius: 999px;
  font-family: 'Sora', sans-serif; font-weight: 700; font-size: 15px;
  box-shadow: 0 10px 30px -6px var(--accent-glow), 0 0 0 4px rgba(255,106,26,.15);
  animation: fpPulse 2.2s ease-in-out infinite;
}
.floating-phone:hover { transform: translateY(-2px) scale(1.03); color: #fff; }
.floating-phone svg { width: 22px; height: 22px; }
.fp-label { white-space: nowrap; }
@keyframes fpPulse {
  0%,100% { box-shadow: 0 10px 30px -6px var(--accent-glow), 0 0 0 0 rgba(255,106,26,.4); }
  50% { box-shadow: 0 10px 30px -6px var(--accent-glow), 0 0 0 12px rgba(255,106,26,0); }
}

.mobile-cta-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; padding: 12px 16px; background: rgba(6,7,8,.95); backdrop-filter: blur(10px); border-top: 1px solid var(--border); z-index: 999; }
.mobile-cta-bar a { display: block; text-align: center; background: linear-gradient(100deg, var(--accent), var(--accent-2)); color: #fff; padding: 14px; border-radius: 10px; font-weight: 700; font-family: 'Sora', sans-serif; min-height: 48px; }

/* ===== REVEAL ANIMATIONS ===== */
.fade-in { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s cubic-bezier(.22,1,.36,1); }
.fade-in.visible { opacity: 1; transform: none; }
.hero-badge, .hero h1, .hero-sub, .hero-cta { opacity: 0; animation: heroUp .9s cubic-bezier(.22,1,.36,1) forwards; }
.hero h1 { animation-delay: .12s; } .hero-sub { animation-delay: .26s; } .hero-cta { animation-delay: .4s; }
@keyframes heroUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: none; } }
.word-rotator span { display: inline-block; animation: wordSpin .5s cubic-bezier(.22,1,.36,1); }
@keyframes wordSpin { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .feature-grid, .review-grid { grid-template-columns: 1fr 1fr; }
  .collection-grid { grid-template-columns: 1fr 1fr; }
  .contact-wrap { grid-template-columns: 1fr; gap: 32px; padding: 36px; }
}
@media (max-width: 768px) {
  .top-bar .container { justify-content: center; }
  .tb-item:nth-child(2) { display: none; }
  #nav { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; background: var(--bg-2); border-bottom: 1px solid var(--border); padding: 14px; gap: 4px; }
  #nav.open { display: flex; }
  #nav a { width: 100%; }
  .mobile-toggle { display: block; }
  .header-cta { display: none; }
  .feature-grid, .review-grid, .collection-grid, .collection-grid.two, .stats-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 60px 0; }
  .hero-frame { padding: 48px 18px; }
  .form-row { grid-template-columns: 1fr; }
  .mobile-cta-bar { display: block; }
  footer { padding-bottom: 80px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .scroll-top { bottom: 84px; }
  .floating-phone { display: none; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .stat h3 { font-size: 2.2rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .fade-in { opacity: 1; transform: none; }
  .hero-badge, .hero h1, .hero-sub, .hero-cta { opacity: 1; animation: none; }
  .hero-particles { display: none; }
}
