/* Altmis — feedback page-specific styles */

/* ─── Altmis design tokens (Global Design System v1) ─────────────── */
:root {
      --bg:      #FAF9F7;
      --surface: #FFFFFF;
      --fg:      #221B1E;
      --muted:   #7A7276;
      --border:  #F0E1E8;
      --accent:  #E0167C;
      --accent-dark:  #B7115F;
      --accent-2:     #FF5FA2;
      --blush:        #FDF1F6;
      --rose:         #FFF6FA;
      --offwhite:     #FAF9F7;
      --ink:          #3A3238;
      --trust:        #2F7D5A;
      --grad:         linear-gradient(135deg, #E0167C, #FF5FA2);
      --accent-soft:  color-mix(in oklch, var(--accent) 14%, transparent);
      --shadow-soft:  0 8px 24px rgba(224, 22, 124, 0.08);
      --shadow-lift:  0 16px 40px rgba(224, 22, 124, 0.14);

      --font-display: 'Inter', -apple-system, 'Segoe UI', system-ui, sans-serif;
      --font-body:    'Inter', -apple-system, 'Segoe UI', system-ui, sans-serif;

      --fs-h1: clamp(36px, 4.6vw, 54px);
      --fs-h2: clamp(30px, 3.6vw, 44px);
      --fs-h3: 21px;
      --fs-lead: 17px;
      --fs-body: 15.5px;

      --gap-xs: 8px; --gap-sm: 12px; --gap-md: 20px;
      --gap-lg: 32px; --gap-xl: 56px; --gap-2xl: 96px;
      --container: 1180px;
      --gutter: 24px;

      --radius: 12px;
      --radius-card: 20px;
      --radius-pill: 999px;
      --header-h: 76px;
    }

/* ─── type ─────────────────────────────────────────────────────── */
h1, .h1 { font-family: var(--font-display); font-size: var(--fs-h1); line-height: 1.1; letter-spacing: -0.01em; margin: 0; font-weight: 400; }

.section-head.center .lead { margin-inline: auto; }

.section-head.wide { max-width: 640px; }

.brand .brand-logo { height: 48px; width: auto; display: block; }

/* ─── page hero ────────────────────────────────────────────────── */
.page-hero { position: relative; overflow: hidden; padding-block: clamp(48px, 6vw, 80px); text-align: center; }

.page-hero .hero-blob {
      position: absolute; top: -30%; left: 50%; transform: translateX(-50%);
      width: min(720px, 80vw); aspect-ratio: 1; border-radius: 50%;
      background: radial-gradient(circle, rgba(224, 22, 124, 0.14), rgba(255, 95, 162, 0.05) 62%, transparent 72%);
      filter: blur(10px); pointer-events: none;
    }

.page-hero .container { position: relative; max-width: 780px; }

.page-hero h1 { margin-bottom: 20px; }

.page-hero h1 em { font-style: normal; color: var(--accent); }

.page-hero .lead { margin: 0 auto 32px; }

.page-hero .hero-cta { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

.breadcrumb {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 12.5px; color: var(--muted); margin-bottom: 22px;
      letter-spacing: 0.02em;
    }

.breadcrumb a { color: var(--muted); transition: color 0.2s ease; }

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

.breadcrumb .sep { opacity: 0.5; }

.breadcrumb .current { color: var(--accent); font-weight: 500; }

/* ─── hero trust strip ─────────────────────────────────────────── */
.trust-strip {
      list-style: none; margin: 0 0 34px; padding: 0;
      display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
    }

.trust-strip li {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--rose); border: 1px solid var(--border);
      border-radius: var(--radius-pill); padding: 8px 16px;
      font-size: 13px; font-weight: 500; color: var(--ink);
      box-shadow: var(--shadow-soft);
    }

.trust-strip svg { width: 15px; height: 15px; flex: none; }

.trust-strip .ts-icon { color: var(--accent); display: grid; place-items: center; }

.trust-strip .ts-icon.trust-green { color: var(--trust); }

/* ─── google source note (pill under reviews heading) ──────────── */
.google-note {
      display: inline-flex; align-items: center; gap: 8px; margin-top: 24px;
      font-size: 13px; font-weight: 500; color: var(--trust);
      background: color-mix(in oklch, var(--trust) 8%, var(--surface));
      border: 1px solid color-mix(in oklch, var(--trust) 22%, var(--surface));
      border-radius: var(--radius-pill); padding: 8px 18px;
    }

.google-note svg { width: 15px; height: 15px; }

/* ─── google reviews shell ─────────────────────────────────────── */
.reviews-shell {
      position: relative;
      background: var(--rose);
      border: 1px solid var(--border);
      border-radius: var(--radius-card);
      box-shadow: var(--shadow-soft);
      padding: clamp(14px, 2.6vw, 30px);
      overflow: hidden;
    }

.reviews-shell .sk-ww-google-reviews,
    .reviews-shell .sk-ww-google-reviews * { max-width: 100%; }

.reviews-loading {
      position: absolute; inset: 0; z-index: 1;
      display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px;
      background: var(--rose);
      transition: opacity 0.4s ease, visibility 0.4s ease;
    }

.reviews-loading.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.reviews-loading .loader-ring {
      width: 42px; height: 42px; border-radius: 50%;
      border: 3px solid var(--border); border-top-color: var(--accent);
      animation: loader-spin 0.9s linear infinite;
    }

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

.reviews-loading p { font-size: 13.5px; color: var(--muted); }

.reviews-shell.is-loading { min-height: 320px; }

.reviews-footnote {
      text-align: center; margin-top: 22px;
      font-size: 12.5px; color: var(--muted);
    }

.reviews-footnote a { color: var(--accent); font-weight: 500; }

.reviews-footnote a:hover { text-decoration: underline; }

/* ─── mid-page conversion card ─────────────────────────────────── */
.mid-cta-card {
      max-width: 860px; margin-inline: auto; text-align: center;
      background: linear-gradient(160deg, var(--rose), var(--blush));
      border: 1px solid var(--border);
      border-radius: 28px;
      box-shadow: var(--shadow-lift);
      padding: clamp(36px, 5vw, 60px) clamp(24px, 5vw, 64px);
    }

.mid-cta-card h2 { margin-bottom: 14px; }

.mid-cta-card .lead { margin: 0 auto 30px; }

.mid-cta-card .mid-cta-actions { display: flex; flex-direction: column; align-items: center; gap: 16px; }

.text-link {
      display: inline-flex; align-items: center; gap: 6px;
      color: var(--accent); font-weight: 500; font-size: 14.5px;
    }

.text-link::after { content: '→'; transition: transform 0.18s ease; }

.text-link:hover::after { transform: translateX(3px); }

/* ─── experience / trust cards ─────────────────────────────────── */
.exp-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap-md); }

.exp-card {
      background: var(--surface); border: 1px solid var(--border);
      border-radius: var(--radius-card); padding: 28px 24px;
      box-shadow: var(--shadow-soft);
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

.exp-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); }

.exp-icon {
      width: 46px; height: 46px; border-radius: 14px; margin-bottom: 18px;
      background: var(--accent-soft); color: var(--accent);
      display: grid; place-items: center;
    }

.exp-icon svg { width: 21px; height: 21px; }

.exp-card h3 { font-size: 16.5px; font-weight: 600; margin-bottom: 8px; }

.exp-card p { font-size: 13.5px; color: var(--muted); line-height: 1.65; }

/* ─── final conversion section ─────────────────────────────────── */
.final-cta { position: relative; overflow: hidden; }

.final-cta .final-panel {
      position: relative; max-width: 860px; margin-inline: auto; text-align: center;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 32px;
      box-shadow: var(--shadow-lift);
      padding: clamp(40px, 6vw, 72px) clamp(24px, 5vw, 64px);
      overflow: hidden;
    }

.final-cta .final-panel::before {
      content: ''; position: absolute; top: -40%; left: 50%; transform: translateX(-50%);
      width: 560px; aspect-ratio: 1; border-radius: 50%;
      background: radial-gradient(circle, rgba(224, 22, 124, 0.1), transparent 68%);
      pointer-events: none;
    }

.final-cta .final-panel > * { position: relative; }

.final-cta h2 { margin-bottom: 16px; }

.final-cta .lead { margin: 0 auto 32px; }

.final-cta .final-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin-bottom: 26px; }

.final-cta .contact-line { font-size: 14.5px; color: var(--muted); }

.final-cta .contact-line a { color: var(--fg); font-weight: 600; transition: color 0.2s ease; }

.final-cta .contact-line a:hover { color: var(--accent); }

/* ─── responsive: 1024px ───────────────────────────────────────── */
@media (max-width: 1024px) {
      .main-nav, .header-ctas { display: none; }
      .hamburger { display: flex; }
      .exp-grid { grid-template-columns: repeat(2, 1fr); }
    }

/* ─── responsive: 768px ────────────────────────────────────────── */
@media (max-width: 768px) {
      :root { --header-h: 68px; }
      body { padding-bottom: 54px; }
      .section { padding-block: 48px; }
      .page-hero { padding-block: 36px 48px; }
      .page-hero .hero-cta .btn { width: 100%; }
      .trust-strip { gap: 8px; }
      .trust-strip li { font-size: 12.5px; padding: 7px 13px; }
      .reviews-shell { padding: 10px; border-radius: 16px; }
      .exp-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
      .exp-card { padding: 22px 18px; }
      .final-cta .final-actions .btn { width: 100%; }
      .wa-float { bottom: 76px; right: 16px; width: 52px; height: 52px; }
      .mobile-cta-bar { display: flex; }
      /* footer accordion */
      .footer-grid { grid-template-columns: 1fr; gap: 8px; padding-block: 48px 32px; }
      .f-col { border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
      .f-acc {
        display: flex; width: 100%; align-items: center; justify-content: space-between;
        background: none; border: 0; padding: 16px 0;
        color: var(--surface); font-size: 13px; font-weight: 600;
        letter-spacing: 0.1em; text-transform: uppercase;
      }
      .f-acc::after { content: '+'; font-size: 18px; color: var(--accent-2); transition: transform 0.25s ease; }
      .f-col.open .f-acc::after { transform: rotate(45deg); }
      .f-col h4 { display: none; }
      .f-col .f-list { display: none; padding-bottom: 18px; }
      .f-col.open .f-list { display: flex; }
      .footer-bottom { justify-content: center; text-align: center; }
    }

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