/* ==========================================================================
   AutoIQ Theme — main.css
   Mobile-first, single-column, gradient albastru → bleumarin (Autovit.ro)
   ========================================================================== */

/* ============================================================
   0. Fonturi self-hosted (Montserrat — variable font v31)
   Google Fonts servește Montserrat ca variable font: un fișier per stil
   acoperă toate greutățile (100–900). Includem latin-ext pentru diacritice RO.
   ============================================================ */

/* latin-ext — ă â î ș ț și alte caractere extinse (obligatoriu pentru română) */
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/montserrat-normal-latin-ext.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF,
                 U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/montserrat-italic-latin-ext.woff2') format('woff2');
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF,
                 U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* latin */
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/montserrat-normal-latin.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
                 U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
                 U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/montserrat-italic-latin.woff2') format('woff2');
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
                 U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
                 U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ============================================================
   1. Variabile CSS
   ============================================================ */

:root {
  --aiq-blue:       #3A63F3;
  --aiq-navy:       #07155E;
  --aiq-shadow:     rgba(0, 0, 0, 0.2);
  --aiq-bg:         linear-gradient(180deg, var(--aiq-blue) 0%, var(--aiq-navy) 100%);

  --aiq-white:      #ffffff;
  --aiq-white-80:   rgba(255, 255, 255, 0.8);
  --aiq-white-60:   rgba(255, 255, 255, 0.6);
  --aiq-white-15:   rgba(255, 255, 255, 0.15);
  --aiq-white-10:   rgba(255, 255, 255, 0.10);

  --aiq-accent:     #7B61FF;   /* violet pentru sparkles / accente */
  --aiq-gold:       #FFD166;   /* cadou / highlight */

  --aiq-text-dark:  #0A1240;
  --aiq-radius:     12px;
  --aiq-radius-lg:  20px;

  --aiq-max-width:  900px;
  --aiq-px:         20px;

  --aiq-font:       'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ============================================================
   2. Reset / Base
   ============================================================ */

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

html {
  scroll-behavior: smooth;
}

body.aiq-body {
  font-family: var(--aiq-font);
  background: var(--aiq-bg);
  background-attachment: fixed;
  color: var(--aiq-white);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

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

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

/* ============================================================
   3. Layout: container
   ============================================================ */

.aiq-container {
  width: 100%;
  max-width: var(--aiq-max-width);
  margin-inline: auto;
}

/* ============================================================
   4. Header
   ============================================================ */

.aiq-header {
  top: 0;
  z-index: 100;
  padding-block: 16px;
  background: #FFFFFF;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--aiq-white-15);
}

.aiq-header__inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  max-width: none;
  padding: 0 16px;
}

.aiq-header__logo img {
  height: 20px;
  width: auto;
}

/* ============================================================
   5. Main
   ============================================================ */

.aiq-main {
  overflow-x: hidden;
}

/* ============================================================
   6. Hero (S2)
   ============================================================ */

.aiq-hero {
  position: relative;
  padding-block: 56px 40px;
  text-align: center;
  overflow: hidden;
}

.aiq-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.aiq-hero__title {
  font-size: clamp(3rem, 12vw, 6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--aiq-white);
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.aiq-sparkle-inline {
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
}

.aiq-sparkle-inline svg,
.aiq-sparkle-inline img {
  width: clamp(28px, 6vw, 48px);
  height: auto;
}

.aiq-hero__subtitle {
  font-size: clamp(2.6rem, 3.5vw, 1.35rem);
  font-weight: 600;
  color: var(--aiq-white);
  margin-top: 14px;
  letter-spacing: 0.01em;
}

/* ---- Mockup orizontal: sparkles | mașină | search bar ---- */

.aiq-hero__mockup {
  display: flex;
  align-items: center;
  margin-top: 120px;
  margin-bottom: 70px;
  width: 100%;
  max-width: 780px;
  background: linear-gradient(135deg, rgba(8, 16, 72, 0.3) 0%, rgba(255, 255, 255, 0.1) 100%);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 24px;
  box-shadow:
    5px 5px 15px 5px rgba(269, 155,255, 0.2);
  overflow: visible;
  pointer-events: none;
  user-select: none;
  height: 60px;
}

/* Sparkles stânga */
.aiq-hero__mockup-sparkles {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 20px 4px 20px 16px;
  flex-shrink: 0;
}

.aiq-hero__sparkle {
  display: flex;
  align-items: center;
  justify-content: center;
}

.aiq-hero__sparkle--lg svg,
.aiq-hero__sparkle--lg img { width: 32px; height: 32px; }

.aiq-hero__sparkle--sm svg,
.aiq-hero__sparkle--sm img { width: 20px; height: 20px; opacity: 0.7; }

/* Mașină — depășește containerul în sus */
.aiq-hero__car {
  flex-shrink: 0;
  width: clamp(220px, 42%, 380px);
  margin-top: -32px;
  margin-bottom: -8px;
  filter:
    drop-shadow(0 0 24px rgba(58, 99, 243, 0.55))
    drop-shadow(0 16px 32px rgba(0, 0, 0, 0.4));
}

.aiq-hero__car img {
  width: 100%;
  height: auto;
  display: block;
}

/* Search bar fictiv (dreapta) */
.aiq-hero__search-bar {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 16px 20px 16px 12px;
  padding: 14px 20px;
  border-radius: 50px;
  color: var(--aiq-white-80);
  font-size: clamp(0.85rem, 2.2vw, 1rem);
  font-style: italic;
}

.aiq-hero__search-icon {
  color: var(--aiq-white-60);
  flex-shrink: 0;
  display: flex;
}

.aiq-hero__search-text {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Sparkles decorative (poziționat absolut) */
.aiq-sparkle {
  position: absolute;
  top: 40px;
  opacity: 0.5;
  pointer-events: none;
}

.aiq-sparkle--left  { left: 0; }
.aiq-sparkle--right { right: 0; transform: scaleX(-1); }
.aiq-sparkle svg, .aiq-sparkle img { width: clamp(60px, 12vw, 120px); height: auto; }

/* CTA hero */
.aiq-hero__cta {
  margin-top: 32px;
}

/* ============================================================
   7. Buton global
   ============================================================ */

.aiq-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 36px;
  border-radius: 50px;
  font-family: var(--aiq-font);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
  border: none;
  text-decoration: none;
}

.aiq-btn--primary {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.3) 100%);
  color: var(--aiq-white);
  box-shadow: 0 4px 24px rgba(0,0,0,0.25) !important;
  border: 1px solid rgba(255,255,255,.3);
  text-transform: uppercase;
  border-radius: 20px;
}

.aiq-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
}

.aiq-btn--primary:active {
  transform: translateY(0);
}

.aiq-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* ============================================================
   8. Beneficii (S3)
   ============================================================ */

.aiq-benefits {
  padding-block: 48px;
  text-align: center;
}

.aiq-event-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border: 1.5px solid var(--aiq-white-60);
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--aiq-white-80);
  margin-bottom: 28px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.aiq-benefits__title {
  font-size: clamp(1.5rem, 5vw, 2.4rem);
  font-weight: 800;
  font-style: italic;
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--aiq-white);
  text-align: center;
}

.aiq-benefits__text {
  font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  line-height: 1.7;
  color: var(--aiq-white-80);
  max-width: 680px;
  margin-inline: auto;
}

/* ============================================================
   9. Countdown (S4)
   ============================================================ */

.aiq-countdown-section {
  padding-block: 48px;
  text-align: center;
}

.aiq-countdown-section .aiq-container{
  padding: var(--aiq-px);
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 40px;
  background: linear-gradient(51deg,rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.16) 40%, rgba(255, 255, 255, 0.1) 60%, rgba(255, 255, 255, .04) 100%);
  -webkit-box-shadow: 5px 5px 15px 5px rgba(269, 155,255, 0.2); 
  box-shadow: 5px 5px 15px 5px rgba(269, 155,255, 0.2); 
}

.aiq-countdown__label {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--aiq-white-60);
  margin-bottom: 20px;
}

.aiq-countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.aiq-countdown__unit {
    display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 72px;
  padding: 16px 12px 12px;
  border-radius: 26px;
  background: linear-gradient(-20deg, rgba(249, 105, 255, 0.2) 0%, rgba(46, 99, 242, 0.2) 100%) padding-box, linear-gradient(-20deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,.2) 50%, rgba(255,255,255,0.1) 100%) border-box;
  border-top: 2px solid rgba(255,255,255,0.6);
  border-left: 2px solid rgba(255,255,255,0.3);
  border-bottom: 2px solid rgba(255,255,255,0.5);
  border-right: 2px solid rgba(255,255,255,0.3);
}

.aiq-countdown__num {
  font-size: clamp(2rem, 8vw, 3.5rem);
  font-weight: 700;
  line-height: 1;
  color: var(--aiq-white);
  font-variant-numeric: tabular-nums;
}

.aiq-countdown__lbl {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--aiq-white-60);
  margin-top: 6px;
}

.aiq-countdown__sep {
  font-size: 2rem;
  font-weight: 900;
  color: var(--aiq-white-60);
  margin-bottom: 20px;
  line-height: 1;
}

.aiq-countdown__subline {
  margin-top: 24px;
  font-size: 0.92rem;
  color: var(--aiq-white-80);
  line-height: 1.5;
}

/* Box cadou */
.aiq-gift-box {
  margin-top: 28px;
  display: inline-flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--aiq-white-10);
  border: 1px solid var(--aiq-white-15);
  border-radius: var(--aiq-radius);
  padding: 20px 24px;
  max-width: 560px;
  text-align: left;
}

.aiq-gift-box__icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.aiq-gift-box__text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--aiq-white-80);
}

/* ============================================================
   10. Titlu secțiune generic
   ============================================================ */

.aiq-section-title {
  font-size: clamp(1.4rem, 4.5vw, 2rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 32px;
  color: var(--aiq-white);
  line-height: 1.2;
}

/* ============================================================
   11. Agenda (S5)
   ============================================================ */

.aiq-agenda {
  padding-block: 48px;
}

.aiq-agenda__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 680px;
  margin-inline: auto;
}

.aiq-agenda__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--aiq-white-10);
  border: 1px solid var(--aiq-white-15);
  border-radius: var(--aiq-radius);
  padding: 18px 20px;
  transition: background 0.2s;
}

.aiq-agenda__item:hover {
  background: var(--aiq-white-15);
}

.aiq-agenda__num {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--aiq-white-60);
  flex-shrink: 0;
  min-width: 36px;
  line-height: 1;
}

.aiq-agenda__text {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--aiq-white);
}

/* ============================================================
   12. Funcții AutoIQ (S6)
   ============================================================ */

/* ============================================================
   12. Funcții AutoIQ S6 — layout 2 coloane: cerc 60 min | lista
   ============================================================ */

.aiq-features {
  padding-block: 56px;
}

.aiq-features__layout {
  display: flex;
  align-items: center;
  gap: 48px;
}

/* ---- Stânga: cercul grafic "60 minute" ---- */

.aiq-features__circle-wrap {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(180px, 35%, 260px);
}

.aiq-features__circle {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 1;
}

.aiq-features__ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.aiq-features__circle-text {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  line-height: 1;
  gap: 4px;
}

.aiq-features__circle-num {
  font-size: clamp(3.5rem, 9vw, 5.5rem);
  font-weight: 900;
  color: var(--aiq-white);
  line-height: 1;
  letter-spacing: -0.03em;
}

.aiq-features__circle-unit {
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  font-weight: 700;
  color: var(--aiq-white);
  letter-spacing: 0.01em;
}

.aiq-features__circle-sub {
  font-size: clamp(0.65rem, 1.5vw, 0.82rem);
  font-weight: 500;
  color: var(--aiq-white-60);
  margin-top: 4px;
  letter-spacing: 0.03em;
}

/* ---- Dreapta: titlu + lista cu bullets și linie verticală ---- */

.aiq-features__right {
  flex: 1;
  min-width: 0;
}

.aiq-features__title {
  font-size: clamp(1.3rem, 3.5vw, 1.8rem);
  font-weight: 800;
  color: var(--aiq-white);
  margin-bottom: 24px;
  line-height: 1.2;
}

.aiq-features__list {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.aiq-features__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  position: relative;
  padding-bottom: 14px;
}

/* Linia verticală dintre bullets (pe toate itemele mai puțin ultimul) */
.aiq-features__item:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 5px;          /* centrul bulletului (12px / 2 - 1px border) */
  top: 18px;          /* sub bullet */
  bottom: 0;
  width: 1px;
  background: rgba(255, 255, 255, 0.18);
}

/* Bullet — cerc cu punct interior */
.aiq-features__bullet {
  flex-shrink: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.55);
  background: transparent;
  position: relative;
  z-index: 1;
  margin-top: 5px;
}

.aiq-features__bullet::after {
  content: '';
  position: absolute;
  inset: 2px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
}

.aiq-features__item-text {
  font-size: clamp(0.88rem, 2vw, 0.98rem);
  line-height: 1.55;
  color: var(--aiq-white-80);
  text-align: left;
}

/* ---- Responsive: coloană pe mobile ---- */
@media (max-width: 639px) {
  .aiq-features__layout {
    flex-direction: column;
    gap: 32px;
  }

  .aiq-features__circle-wrap {
    width: clamp(160px, 55%, 220px);
  }
}

/* ============================================================
   13. CTA Secundar (S7)
   ============================================================ */

.aiq-cta2 {
  padding-block: 50px;
  text-align: center;
}

.aiq-cta2__title {
  font-size: clamp(1.5rem, 5vw, 2.2rem);
  font-weight: 800;
  color: var(--aiq-white);
  margin-bottom: 16px;
}

.aiq-cta2__text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--aiq-white-80);
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: 32px;
}

/* ============================================================
   14. Formular (S8)
   ============================================================ */

.aiq-form-section {
  padding-block: 56px;
}

.aiq-form-title {
  font-size: clamp(1.5rem, 5vw, 2rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 32px;
  color: var(--aiq-white);
}

.aiq-form-wrapper {
  max-width: 560px;
  margin-inline: auto;
}

.aiq-form {
  background: var(--aiq-white);
  border-radius: var(--aiq-radius-lg);
  padding: 36px 32px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
}

/* Honeypot — ascuns vizual și din screen reader */
.aiq-honeypot {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.aiq-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.aiq-field label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--aiq-text-dark);
  letter-spacing: 0.02em;
}

.aiq-field label span[aria-hidden] {
  color: #e53e3e;
  margin-left: 2px;
}

.aiq-field input[type="text"],
.aiq-field input[type="email"],
.aiq-field input[type="tel"] {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid #D1D8EE;
  border-radius: 8px;
  font-family: var(--aiq-font);
  font-size: 1rem;
  color: var(--aiq-text-dark);
  background: #F7F9FF;
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
}

.aiq-field input:focus {
  border-color: var(--aiq-blue);
  box-shadow: 0 0 0 3px rgba(58, 99, 243, 0.15);
  background: #fff;
}

.aiq-field input.aiq-error {
  border-color: #e53e3e;
}

/* Checkboxes */
.aiq-field--checkbox { gap: 0; }

.aiq-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}

.aiq-checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--aiq-blue);
  cursor: pointer;
}

.aiq-checkbox-text {
  font-size: 0.88rem;
  line-height: 1.5;
  color: #4A5568;
}

.aiq-checkbox-text a {
  color: var(--aiq-blue);
  text-decoration: underline;
}

/* Canal contact */
.aiq-field--channels .aiq-channel-label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--aiq-text-dark);
  margin-bottom: 10px;
}

.aiq-channels {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Submit button */
.aiq-submit-btn {
  width: 100%;
  padding: 16px;
  font-size: 1.05rem;
  background: var(--aiq-blue);
  color: var(--aiq-white);
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(58, 99, 243, 0.35);
  position: relative;
}

.aiq-submit-btn:hover {
  background: var(--aiq-navy);
  transform: translateY(-1px);
}

.aiq-btn-spinner {
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: aiq-spin 0.7s linear infinite;
  position: absolute;
  right: 20px;
}

.aiq-submit-btn.is-loading .aiq-btn-spinner { display: block; }
.aiq-submit-btn.is-loading .aiq-btn-text   { opacity: 0.7; }

@keyframes aiq-spin {
  to { transform: rotate(360deg); }
}

/* Mesaje */
.aiq-form-messages {
  font-size: 0.92rem;
  border-radius: 8px;
  padding: 12px 16px;
  display: none;
}

.aiq-form-messages.is-error {
  display: block;
  background: #FFF5F5;
  color: #C53030;
  border: 1px solid #FEB2B2;
}

.aiq-form-messages.is-success {
  display: block;
  background: #F0FFF4;
  color: #276749;
  border: 1px solid #9AE6B4;
}

.aiq-form-success {
  background: var(--aiq-white);
  border-radius: var(--aiq-radius-lg);
  padding: 40px 32px;
  text-align: center;
  color: var(--aiq-text-dark);
  font-size: 1.05rem;
  line-height: 1.7;
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}

.aiq-form-success[hidden] { display: none; }

/* ============================================================
   15. Post-cutoff
   ============================================================ */

.aiq-post-cutoff {
  padding-block: 80px;
  text-align: center;
  color: var(--aiq-white);
  font-size: 1.1rem;
  line-height: 1.7;
}

.aiq-post-cutoff h2 {
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 20px;
}

/* ============================================================
   16. Footer
   ============================================================ */

.aiq-footer {
  padding-block: 32px;
  border-top: 1px solid var(--aiq-white-15);
  background: #FFF;
  color: var(--aiq-text-dark);
  display: none;
}

.aiq-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}

.aiq-footer__logo img {
  height: 28px;
  width: auto;
}

.aiq-footer__text {
  font-size: 0.82rem;
  color: var(--aiq-white-60);
  line-height: 1.6;
}

.aiq-footer__text a {
  color: var(--aiq-white-80);
  text-decoration: underline;
}

/* ============================================================
   17. Responsive — tablet & desktop
   ============================================================ */

@media (min-width: 600px) {
  .aiq-countdown__unit {
    min-width: 90px;
    padding: 20px 40px 14px;
  }

  .aiq-channels {
    flex-direction: row;
    gap: 24px;
  }

  .aiq-footer__inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

/* Pe mobile: mockup trece în coloană, mașina deasupra search bar-ului */
@media (max-width: 599px) {
  .aiq-main{
    padding: 0 15px;
  }

  .aiq-hero__mockup-sparkles {
    flex-direction: row;
    justify-content: flex-start;
  }

  .aiq-hero__mockup{
    margin-top: 40px;
    margin-bottom: 60px;
  }
  

  .aiq-hero__car {
    width: 25%;
    max-width: 100%;
    margin-bottom: 0;
    margin-top: 0;
  }

  .aiq-hero__search-bar {
    margin: 0;
    font-size: 0.85rem;
  }
  .aiq-hero__search-text{
    white-space: normal;
    text-align: left;
  }
  .aiq-countdown-section .aiq-container{
    padding: 16px;
    border-radius: 30px;
  }
  .aiq-countdown__unit{
    padding: 10px;
  }
}

@media (min-width: 768px) {
  :root {
    --aiq-px: 40px;
  }

  .aiq-hero {
    padding-block: 80px 60px;
  }

  .aiq-form {
    padding: 48px 44px;
  }

  .aiq-agenda__list{
    gap: 14px;
  }
  .aiq-features__list {
    gap: 0px;
  }
}

@media (min-width: 1024px) {
  :root {
    --aiq-px: 60px;
  }

  .aiq-hero {
    padding-block: 100px 80px;
  }

  .aiq-hero__search-bar {
    max-width: 560px;
  }
}

/* ============================================================
   18. Accesibilitate
   ============================================================ */

:focus-visible {
  outline: 3px solid var(--aiq-white);
  outline-offset: 3px;
  border-radius: 4px;
}

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