/* =========================================================================
   Projeksiyon Perdesi — Design System
   Cinematic / Pro-AV storefront. Vanilla CSS, no framework.
   ========================================================================= */

/* ----- Tokens ----------------------------------------------------------- */
:root {
  /* brand */
  --ink: #0e1217;
  --ink-2: #161c24;
  --ink-3: #1f2731;
  --accent: #ff6b2c;        /* projector orange — CTAs, price */
  --accent-dark: #e2551a;
  --accent-soft: #fff1ea;
  --info: #1f6feb;
  --success: #15a34a;
  --success-soft: #e8f7ee;
  --warning: #b7791f;

  /* neutrals */
  --bg: #ffffff;
  --bg-soft: #f5f7fa;
  --bg-soft-2: #eef1f6;
  --line: #e4e8ee;
  --line-2: #d4dae3;
  --text: #1a2230;
  --text-2: #54606f;
  --text-3: #8a95a3;
  --on-dark: #e9edf3;
  --on-dark-2: #a9b4c2;

  /* type */
  --font-head: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

  /* scale */
  --step--1: clamp(0.8rem, 0.77rem + 0.15vw, 0.875rem);
  --step-0: clamp(0.95rem, 0.92rem + 0.15vw, 1.0rem);
  --step-1: clamp(1.1rem, 1.04rem + 0.3vw, 1.27rem);
  --step-2: clamp(1.33rem, 1.22rem + 0.55vw, 1.74rem);
  --step-3: clamp(1.6rem, 1.42rem + 0.9vw, 2.4rem);
  --step-4: clamp(1.95rem, 1.6rem + 1.7vw, 3.3rem);
  --step-5: clamp(2.3rem, 1.7rem + 2.9vw, 4.2rem);

  /* spacing */
  --sp-1: 0.25rem; --sp-2: 0.5rem; --sp-3: 0.75rem; --sp-4: 1rem;
  --sp-5: 1.5rem; --sp-6: 2rem; --sp-7: 3rem; --sp-8: 4rem; --sp-9: 6rem;

  --radius: 14px;
  --radius-sm: 9px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(16,22,30,.06), 0 1px 3px rgba(16,22,30,.05);
  --shadow: 0 6px 16px rgba(16,22,30,.08), 0 2px 6px rgba(16,22,30,.05);
  --shadow-lg: 0 24px 60px -18px rgba(16,22,30,.32);
  --container: 1200px;
  --ring: 0 0 0 3px rgba(255,107,44,.28);
}

/* ----- Reset ------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, picture, svg, video { display: block; max-width: 100%; height: auto; }
/* Default size for inline (classless) icons — specific context rules override this. */
svg:not([class]) { width: 1.15em; height: 1.15em; flex: none; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: none; }
ul, ol { list-style: none; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 700; line-height: 1.15; letter-spacing: -0.02em; color: var(--ink); }
:focus-visible { outline: none; box-shadow: var(--ring); border-radius: 6px; }

/* ----- Layout ----------------------------------------------------------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(1rem, 4vw, 2rem); }
.section { padding-block: clamp(2.5rem, 6vw, 5rem); }
.section--soft { background: var(--bg-soft); }
.stack > * + * { margin-top: var(--sp-4); }
.muted { color: var(--text-2); }
.center { text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-head); font-weight: 700; font-size: var(--step--1);
  letter-spacing: .08em; text-transform: uppercase; color: var(--accent);
}
.section-head { max-width: 720px; margin-bottom: clamp(1.5rem, 4vw, 2.75rem); }
.section-head.center { margin-inline: auto; }
.section-head h1, .section-head h2 { font-size: var(--step-3); margin-top: .5rem; }
.section-head p { color: var(--text-2); font-size: var(--step-1); margin-top: .75rem; }

/* ----- Buttons ---------------------------------------------------------- */
.btn {
  --b: var(--accent);
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--font-head); font-weight: 700; font-size: var(--step-0);
  padding: .8rem 1.4rem; border-radius: 999px; border: 1.5px solid transparent;
  transition: transform .12s ease, box-shadow .2s ease, background .2s ease, color .2s;
  white-space: nowrap; line-height: 1;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--accent); color: #fff; box-shadow: 0 8px 20px -6px rgba(255,107,44,.5); }
.btn--primary:hover { background: var(--accent-dark); box-shadow: 0 12px 26px -6px rgba(255,107,44,.6); }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: var(--ink-3); }
.btn--ghost { background: #fff; color: var(--ink); border-color: var(--line-2); }
.btn--ghost:hover { border-color: var(--ink); background: var(--bg-soft); }
.btn--wa { background: #25d366; color: #07321a; }
.btn--wa:hover { background: #1fbe5a; }
.btn--lg { padding: 1rem 1.8rem; font-size: var(--step-1); }
.btn--block { display: flex; width: 100%; }
.btn--sm { padding: .55rem 1rem; font-size: var(--step--1); }

/* ----- Badges / pills --------------------------------------------------- */
.badge { display: inline-flex; align-items: center; gap: .4rem; font-size: var(--step--1); font-weight: 600;
  padding: .3rem .7rem; border-radius: 999px; background: var(--bg-soft-2); color: var(--text-2); }
.badge--accent { background: var(--accent-soft); color: var(--accent-dark); }
.badge--success { background: var(--success-soft); color: var(--success); }
.badge--ink { background: var(--ink); color: #fff; }

/* ----- Header ----------------------------------------------------------- */
.announce { background: var(--ink); color: var(--on-dark); font-size: var(--step--1); }
.announce .container { display: flex; align-items: center; justify-content: center; gap: 1.5rem; padding-block: .55rem; flex-wrap: wrap; }
.announce strong { color: #fff; }
.announce a { color: var(--accent); font-weight: 700; }

.site-header { position: sticky; top: 0; z-index: 60; background: rgba(255,255,255,.92); backdrop-filter: saturate(180%) blur(12px); border-bottom: 1px solid var(--line); }
.header-bar { display: flex; align-items: center; gap: 1.25rem; padding-block: .85rem; }
.logo { display: flex; align-items: center; gap: .6rem; font-family: var(--font-head); font-weight: 800; font-size: 1.2rem; color: var(--ink); letter-spacing: -.03em; flex-shrink: 0; }
.logo .logo-mark { width: 34px; height: 34px; flex: none; }
.logo small { display: block; font-size: .6rem; font-weight: 700; letter-spacing: .3em; text-transform: uppercase; color: var(--accent); margin-top: 1px; }
.logo-text { line-height: 1.05; }

.nav { display: flex; align-items: center; gap: .35rem; }
.nav a { font-family: var(--font-head); font-weight: 600; font-size: .95rem; color: var(--text); padding: .55rem .75rem; border-radius: 8px; transition: color .15s, background .15s; }
.nav a:hover, .nav a[aria-current="page"] { color: var(--accent-dark); background: var(--accent-soft); }

.header-actions { margin-left: auto; display: flex; align-items: center; gap: .5rem; }
.icon-btn { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 10px; color: var(--ink); position: relative; transition: background .15s; }
.icon-btn:hover { background: var(--bg-soft); }
.icon-btn svg { width: 22px; height: 22px; }
.cart-count { position: absolute; top: 4px; right: 4px; min-width: 18px; height: 18px; padding: 0 4px; background: var(--accent); color: #fff; font-size: 11px; font-weight: 700; border-radius: 999px; display: grid; place-items: center; line-height: 1; }
.cart-count:empty, .cart-count[data-count="0"] { display: none; }
.menu-toggle { display: none; }

@media (max-width: 940px) {
  .nav { position: fixed; inset: 0 0 0 auto; width: min(320px, 86vw); flex-direction: column; align-items: stretch; gap: .25rem;
    background: #fff; padding: 5rem 1.25rem 2rem; box-shadow: var(--shadow-lg); transform: translateX(100%); transition: transform .28s ease; z-index: 70; }
  .nav.open { transform: translateX(0); }
  .nav a { padding: .85rem 1rem; font-size: 1.05rem; border-bottom: 1px solid var(--line); border-radius: 0; }
  .menu-toggle { display: inline-flex; }
  .nav-backdrop { position: fixed; inset: 0; background: rgba(14,18,23,.5); opacity: 0; pointer-events: none; transition: opacity .28s; z-index: 65; }
  .nav-backdrop.open { opacity: 1; pointer-events: auto; }
}

/* ----- Hero ------------------------------------------------------------- */
.hero { position: relative; background: radial-gradient(120% 120% at 75% 0%, #1d2733 0%, var(--ink) 55%); color: var(--on-dark); overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: 0; background:
  radial-gradient(60% 80% at 78% 18%, rgba(255,107,44,.22), transparent 60%),
  radial-gradient(50% 60% at 10% 90%, rgba(31,111,235,.16), transparent 60%); pointer-events: none; }
.hero .container { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem,5vw,4rem); align-items: center; padding-block: clamp(3rem, 7vw, 5.5rem); }
.hero h1 { color: #fff; font-size: var(--step-5); letter-spacing: -.035em; }
.hero h1 .hl { color: var(--accent); }
.hero p.lead { color: var(--on-dark-2); font-size: var(--step-1); margin-top: 1.25rem; max-width: 46ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.9rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 1.25rem 1.75rem; margin-top: 2.25rem; }
.hero-trust li { display: flex; align-items: center; gap: .55rem; font-size: var(--step--1); color: var(--on-dark-2); font-weight: 500; }
.hero-trust svg { width: 20px; height: 20px; color: var(--accent); flex: none; }
.hero-media { position: relative; }
.hero-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.hero-media .float-card { position: absolute; bottom: -18px; left: -18px; background: #fff; color: var(--text); border-radius: var(--radius); padding: .85rem 1.1rem; box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: .7rem; }
.hero-media .float-card b { color: var(--ink); font-family: var(--font-head); }
@media (max-width: 860px) { .hero .container { grid-template-columns: 1fr; } .hero-media { order: -1; max-width: 480px; } }

/* ----- Category strip --------------------------------------------------- */
.cat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: clamp(.75rem, 2vw, 1.25rem); }
.cat-card { position: relative; display: flex; flex-direction: column; justify-content: flex-end; min-height: 200px; padding: 1.1rem; border-radius: var(--radius); overflow: hidden; color: #fff; background: var(--ink-2); isolation: isolate; }
.cat-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform .5s ease; }
.cat-card::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(14,18,23,.1) 0%, rgba(14,18,23,.82) 100%); }
.cat-card:hover img { transform: scale(1.06); }
.cat-card h3 { color: #fff; font-size: var(--step-1); }
.cat-card span { font-size: var(--step--1); color: var(--on-dark-2); margin-top: .15rem; }
.cat-card .arrow { position: absolute; top: 1rem; right: 1rem; width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.16); display: grid; place-items: center; backdrop-filter: blur(4px); transition: background .2s; }
.cat-card:hover .arrow { background: var(--accent); }

/* ----- Product cards ---------------------------------------------------- */
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: clamp(1rem, 2.5vw, 1.6rem); }
.product-card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform .18s ease, box-shadow .18s ease, border-color .18s; }
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--line-2); }
.product-card__media { position: relative; aspect-ratio: 1/1; background: var(--bg-soft); padding: 1rem; }
.product-card__media img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; }
.product-card__tags { position: absolute; top: .7rem; left: .7rem; display: flex; flex-direction: column; gap: .35rem; align-items: flex-start; }
.product-card__body { display: flex; flex-direction: column; flex: 1; padding: 1rem 1.1rem 1.2rem; gap: .55rem; }
.product-card__cat { font-size: var(--step--1); font-weight: 600; color: var(--accent-dark); letter-spacing: .02em; }
.product-card__title { font-family: var(--font-head); font-weight: 700; font-size: 1.02rem; line-height: 1.3; color: var(--ink); }
.product-card__title a::after { content: ""; position: absolute; inset: 0; }
.product-card__media { position: relative; }
.product-card__specs { display: flex; flex-wrap: wrap; gap: .35rem; margin-top: auto; min-height: 26px; align-content: flex-end; }
.product-card__specs .chip { font-size: 11px; font-weight: 600; color: var(--text-2); background: var(--bg-soft); padding: .2rem .5rem; border-radius: 6px; }
.price { display: flex; align-items: baseline; gap: .5rem; flex-wrap: wrap; }
.price__main { font-family: var(--font-head); font-weight: 800; font-size: 1.35rem; color: var(--ink); }
.price__vat { font-size: 11px; color: var(--text-3); font-weight: 600; }
.price__bank { font-size: var(--step--1); color: var(--success); font-weight: 600; }
.price__request { font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; color: var(--info); }
.product-card__cta { margin-top: .25rem; position: relative; z-index: 2; }

/* ----- Trust band ------------------------------------------------------- */
.trust-band { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 1.25rem; }
.trust-item { display: flex; gap: .9rem; align-items: flex-start; }
.trust-item .ti-icon { width: 46px; height: 46px; flex: none; border-radius: 12px; display: grid; place-items: center; background: var(--accent-soft); color: var(--accent-dark); }
.trust-item .ti-icon svg { width: 24px; height: 24px; }
.trust-item h4 { font-size: 1rem; }
.trust-item p { font-size: var(--step--1); color: var(--text-2); margin-top: .15rem; }

/* ----- Breadcrumb ------------------------------------------------------- */
.breadcrumb { font-size: var(--step--1); color: var(--text-2); padding-block: 1rem; }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: .4rem; align-items: center; }
.breadcrumb a:hover { color: var(--accent-dark); }
.breadcrumb li:not(:last-child)::after { content: "/"; margin-left: .4rem; color: var(--line-2); }
.breadcrumb [aria-current] { color: var(--text); font-weight: 600; }

/* ----- Product detail --------------------------------------------------- */
.pdp { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: start; }
@media (max-width: 900px) { .pdp { grid-template-columns: 1fr; } }
.gallery__main { background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius-lg); aspect-ratio: 1/1; padding: 1.5rem; position: sticky; top: 90px; }
.gallery__main img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; }
.gallery__thumbs { display: flex; gap: .6rem; flex-wrap: wrap; margin-top: .9rem; }
.gallery__thumbs button { width: 70px; height: 70px; border-radius: 10px; border: 2px solid var(--line); background: var(--bg-soft); padding: 6px; overflow: hidden; }
.gallery__thumbs button.active { border-color: var(--accent); }
.gallery__thumbs img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; }
@media (max-width: 900px){ .gallery__main { position: static; } }

.pdp-info h1 { font-size: var(--step-3); }
.pdp-meta { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: .9rem; }
.pdp-price { margin: 1.4rem 0; padding: 1.25rem 1.4rem; background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius); }
.pdp-price .price__main { font-size: 2rem; }
.pdp-price .row { display: flex; align-items: center; gap: .75rem; flex-wrap: wrap; }
.pdp-price .havale { margin-top: .6rem; font-size: var(--step-0); color: var(--success); font-weight: 600; display: flex; align-items: center; gap: .4rem; }
.pdp-price .havale b { font-family: var(--font-head); }
.pdp-buy { display: flex; gap: .75rem; flex-wrap: wrap; margin: 1.4rem 0; }
.qty { display: inline-flex; align-items: center; border: 1.5px solid var(--line-2); border-radius: 999px; overflow: hidden; }
.qty button { width: 44px; height: 48px; font-size: 1.3rem; color: var(--ink); }
.qty input { width: 48px; height: 48px; text-align: center; border: none; font-weight: 700; font-family: var(--font-head); -moz-appearance: textfield; }
.qty input::-webkit-outer-spin-button, .qty input::-webkit-inner-spin-button { -webkit-appearance: none; }
.pdp-assurances { display: grid; gap: .75rem; margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--line); }
.pdp-assurances li { display: flex; gap: .6rem; align-items: center; font-size: var(--step-0); color: var(--text); }
.pdp-assurances svg { width: 20px; height: 20px; color: var(--success); flex: none; }

.features-list { display: grid; gap: .7rem; }
.features-list li { display: flex; gap: .65rem; align-items: flex-start; }
.features-list svg { width: 20px; height: 20px; color: var(--accent); flex: none; margin-top: 2px; }

.specs-table { width: 100%; border-collapse: collapse; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.specs-table th, .specs-table td { text-align: start; padding: .8rem 1.1rem; font-size: var(--step-0); }
.specs-table tr:nth-child(odd) { background: var(--bg-soft); }
.specs-table th { font-family: var(--font-head); color: var(--text-2); font-weight: 600; width: 45%; }
.specs-table td { font-weight: 600; color: var(--ink); }

/* ----- Tabs / content sections on PDP ----------------------------------- */
.prose { max-width: 75ch; }
.prose h2 { font-size: var(--step-2); margin-top: 2rem; }
.prose h3 { font-size: var(--step-1); margin-top: 1.5rem; }
.prose p { margin-top: .9rem; color: var(--text); }
.prose ul { margin-top: .9rem; display: grid; gap: .5rem; }
.prose ul li { position: relative; padding-left: 1.5rem; }
.prose ul li::before { content: ""; position: absolute; left: 0; top: .55em; width: 8px; height: 8px; border-radius: 2px; background: var(--accent); }
.prose a { color: var(--info); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.prose img { border-radius: var(--radius); margin-top: 1.25rem; }

/* ----- FAQ -------------------------------------------------------------- */
.faq { display: grid; gap: .75rem; max-width: 820px; margin-inline: auto; }
.faq details { border: 1px solid var(--line); border-radius: var(--radius); background: #fff; overflow: hidden; }
.faq summary { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.1rem 1.3rem; font-family: var(--font-head); font-weight: 700; color: var(--ink); cursor: pointer; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.5rem; color: var(--accent); transition: transform .2s; line-height: 1; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details > div { padding: 0 1.3rem 1.2rem; color: var(--text-2); }

/* ----- Blog ------------------------------------------------------------- */
.post-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: clamp(1.25rem, 3vw, 2rem); }
.post-card { display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #fff; transition: transform .18s, box-shadow .18s; }
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.post-card__media { aspect-ratio: 16/9; background: var(--bg-soft); }
.post-card__media img { width: 100%; height: 100%; object-fit: cover; }
.post-card__body { padding: 1.2rem 1.3rem 1.4rem; display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.post-card__body time { font-size: var(--step--1); color: var(--text-3); font-weight: 600; }
.post-card__body h3 { font-size: 1.15rem; position: relative; }
.post-card__body h3 a::after { content: ""; position: absolute; inset: 0; }
.post-card__body p { font-size: var(--step--1); color: var(--text-2); }
.post-card__more { margin-top: auto; color: var(--accent-dark); font-weight: 700; font-size: var(--step--1); display: flex; align-items: center; gap: .3rem; }

.article-hero { background: var(--ink); color: var(--on-dark); }
.article-hero .container { padding-block: clamp(2.5rem, 6vw, 4rem); max-width: 820px; }
.article-hero h1 { color: #fff; font-size: var(--step-4); }
.article-hero .meta { color: var(--on-dark-2); margin-top: 1rem; font-size: var(--step-0); }
.article-body { max-width: 760px; margin-inline: auto; }
.article-body img.cover { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: var(--radius-lg); margin-bottom: 2rem; }

/* ----- Cart / checkout -------------------------------------------------- */
.cart-layout { display: grid; grid-template-columns: 1.5fr 1fr; gap: 2rem; align-items: start; }
@media (max-width: 880px){ .cart-layout { grid-template-columns: 1fr; } }
.cart-line { display: grid; grid-template-columns: 88px 1fr auto; gap: 1rem; padding: 1.1rem 0; border-bottom: 1px solid var(--line); align-items: center; }
.cart-line__img { width: 88px; height: 88px; background: var(--bg-soft); border-radius: 10px; padding: 8px; }
.cart-line__img img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; }
.cart-line__title { font-family: var(--font-head); font-weight: 700; font-size: .98rem; color: var(--ink); }
.cart-line__remove { color: var(--text-3); font-size: var(--step--1); margin-top: .35rem; }
.cart-line__remove:hover { color: var(--accent-dark); }
.summary { background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.5rem; position: sticky; top: 90px; }
.summary h3 { font-size: var(--step-1); margin-bottom: 1rem; }
.summary .row { display: flex; justify-content: space-between; padding: .5rem 0; color: var(--text-2); }
.summary .row.total { border-top: 1px solid var(--line-2); margin-top: .5rem; padding-top: 1rem; font-size: var(--step-1); color: var(--ink); font-weight: 800; font-family: var(--font-head); }
.empty-state { text-align: center; padding: 4rem 1rem; }
.empty-state svg { width: 72px; height: 72px; color: var(--line-2); margin: 0 auto 1rem; }

/* ----- Forms ------------------------------------------------------------ */
.field { display: grid; gap: .4rem; margin-bottom: 1rem; }
.field label { font-family: var(--font-head); font-weight: 600; font-size: var(--step--1); color: var(--text); }
.field input, .field select, .field textarea {
  padding: .8rem 1rem; border: 1.5px solid var(--line-2); border-radius: 10px; background: #fff; font-size: var(--step-0); transition: border .15s, box-shadow .15s; width: 100%; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--accent); box-shadow: var(--ring); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 560px){ .field-row { grid-template-columns: 1fr; } }

/* ----- Footer ----------------------------------------------------------- */
.site-footer { background: var(--ink); color: var(--on-dark-2); margin-top: 3rem; }
.site-footer .container { padding-block: clamp(2.5rem, 5vw, 4rem) 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 2rem; }
@media (max-width: 760px){ .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 460px){ .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 { color: #fff; font-size: .95rem; margin-bottom: 1rem; letter-spacing: .02em; }
.site-footer a { color: var(--on-dark-2); font-size: var(--step--1); display: inline-block; padding: .22rem 0; transition: color .15s; }
.site-footer a:hover { color: var(--accent); }
.footer-about p { font-size: var(--step--1); margin-top: 1rem; line-height: 1.7; }
.footer-contact li { display: flex; gap: .6rem; align-items: flex-start; font-size: var(--step--1); margin-bottom: .6rem; }
.footer-contact svg { width: 18px; height: 18px; color: var(--accent); flex: none; margin-top: 2px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 2.5rem; padding-top: 1.5rem; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: var(--step--1); }

/* ----- Floating WhatsApp ------------------------------------------------ */
.wa-float { position: fixed; bottom: 20px; right: 20px; z-index: 50; width: 58px; height: 58px; border-radius: 50%; background: #25d366; color: #fff; display: grid; place-items: center; box-shadow: 0 10px 24px -6px rgba(37,211,102,.6); transition: transform .2s; }
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; }

/* ----- Toast ------------------------------------------------------------ */
.toast { position: fixed; bottom: 24px; left: 50%; transform: translate(-50%, 120%); background: var(--ink); color: #fff; padding: .9rem 1.4rem; border-radius: 999px; font-weight: 600; font-size: var(--step-0); box-shadow: var(--shadow-lg); z-index: 90; display: flex; align-items: center; gap: .6rem; transition: transform .35s cubic-bezier(.2,.9,.3,1.2); }
.toast.show { transform: translate(-50%, 0); }
.toast svg { width: 20px; height: 20px; color: var(--success); }

/* ----- Utilities -------------------------------------------------------- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
@media (max-width: 760px){ .grid-2 { grid-template-columns: 1fr; } }
.hide-mobile { }
@media (max-width: 640px){ .hide-mobile { display: none !important; } }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.divider { height: 1px; background: var(--line); border: 0; margin-block: var(--sp-6); }
.tag-row { display: flex; flex-wrap: wrap; gap: .5rem; }
