:root {
  /* Color */
  --porcelain: #FBFAF7;
  --paper:     #F2EEE4;
  --sand:      #E7E1D4;
  --ink:       #16151A;
  --ink-soft:  #353138;
  --cobalt:    #2B36F0;
  --cobalt-dk: #1B22B8;
  --coral:     #FF5A3C;
  --lilac:     #C9C2F2;
  --muted:     #6E6A63;
  --line:      #D9D3C7;

  /* Type */
  --display: "Bricolage Grotesque", system-ui, sans-serif;
  --body: "Inter", system-ui, -apple-system, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;

  /* System */
  --maxw: 1200px;
  --radius: 18px;
  --radius-sm: 12px;
  --ease: cubic-bezier(.22,.61,.36,1);

  /* Bootstrap overrides */
  --bs-body-font-family: var(--body);
  --bs-body-color: var(--ink);
  --bs-body-bg: var(--porcelain);
  --bs-primary: var(--cobalt);
  --bs-border-color: var(--line);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--porcelain);
  -webkit-font-smoothing: antialiased;
  margin: 0;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

::selection { background: var(--coral); color: #fff; }

/* ---------- Typography ---------- */
.display {
  font-family: var(--display);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.02em;
}
h1,h2,h3,h4 { font-family: var(--display); letter-spacing: -0.02em; }

.eyebrow {
  font-family: var(--mono);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: .55rem;
}
.eyebrow::before {
  content: "";
  width: 8px; height: 8px;
  background: var(--coral);
  border-radius: 2px;
  display: inline-block;
  transform: rotate(45deg);
}
.index-tag {
  font-family: var(--mono);
  font-size: .75rem;
  color: var(--cobalt);
  letter-spacing: .1em;
}

.lead-quiet { color: var(--muted); font-size: 1.075rem; line-height: 1.6; }

.container-kern { max-width: var(--maxw); margin-inline: auto; padding-inline: 1.25rem; }

section { padding: clamp(3.5rem, 8vw, 7rem) 0; }

/* ---------- Buttons ---------- */
.btn-kern {
  font-family: var(--body);
  font-weight: 600;
  border-radius: 999px;
  padding: .8rem 1.6rem;
  border: 1.5px solid var(--ink);
  background: var(--ink);
  color: var(--porcelain);
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
  display: inline-flex; align-items: center; gap: .5rem;
  line-height: 1;
}
.btn-kern:hover { background: var(--cobalt); border-color: var(--cobalt); color: #fff; transform: translateY(-2px); }
.btn-kern:active { transform: translateY(0); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--porcelain); }

.btn-coral { background: var(--coral); border-color: var(--coral); color: #fff; }
.btn-coral:hover { background: var(--ink); border-color: var(--ink); color: var(--porcelain); }

.btn-sm-kern { padding: .55rem 1.1rem; font-size: .9rem; }

/* ---------- Navbar ---------- */
.nav-kern {
  position: sticky; top: 0; z-index: 1030;
  background: color-mix(in srgb, var(--porcelain) 86%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.nav-kern.scrolled { border-color: var(--line); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }

.brand { display: inline-flex; align-items: center; gap: .55rem; font-family: var(--display); font-weight: 700; font-size: 1.35rem; letter-spacing: -.03em; }
.brand .bracket { color: var(--cobalt); font-weight: 700; }
.brand .dot { color: var(--coral); }

.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; margin: 0; padding: 0; }
.nav-links a { font-size: .95rem; font-weight: 500; color: var(--ink-soft); position: relative; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
  background: var(--coral); transition: width .3s var(--ease);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; }

.nav-cta { display: flex; align-items: center; gap: .75rem; }

.burger {
  display: none;
  width: 46px; height: 46px;
  border: 1.5px solid var(--ink);
  border-radius: 12px;
  background: transparent;
  align-items: center; justify-content: center;
  flex-direction: column; gap: 5px;
  cursor: pointer;
}
.burger span { display: block; width: 20px; height: 2px; background: var(--ink); transition: .3s var(--ease); }

/* ---------- Offcanvas (mobile sidebar, slides LÃ¢â€ â€™R) ---------- */
.offcanvas-kern {
  background: var(--ink);
  color: var(--porcelain);
  width: min(82vw, 360px);
  border: none;
}
.offcanvas-kern .offcanvas-header { padding: 1.5rem 1.5rem 1rem; }
.offcanvas-kern .brand { color: var(--porcelain); }
.offcanvas-kern .brand .bracket { color: var(--lilac); }
.offcanvas-kern .btn-close { filter: invert(1) grayscale(1); opacity: .8; }
.oc-links { list-style: none; padding: 0 1.5rem; margin: 1rem 0; }
.oc-links li { border-bottom: 1px solid rgba(255,255,255,.08); }
.oc-links a {
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--display); font-size: 1.6rem; padding: .9rem 0;
  color: var(--porcelain); transition: color .25s var(--ease), padding-left .25s var(--ease);
}
.oc-links a .num { font-family: var(--mono); font-size: .8rem; color: var(--lilac); }
.oc-links a:hover { color: var(--coral); padding-left: .5rem; }
.oc-foot { padding: 1.25rem 1.5rem; margin-top: auto; }
.oc-foot .btn-kern { width: 100%; justify-content: center; background: var(--coral); border-color: var(--coral); }
.offcanvas-kern .offcanvas-body { display: flex; flex-direction: column; padding: 0; }

/* ---------- Hero ---------- */
.hero { padding-top: clamp(2.5rem, 6vw, 5rem); position: relative; }
.hero-grid { display: grid; grid-template-columns: 1.35fr .65fr; gap: 2.5rem; align-items: end; }
.hero h1 { font-size: clamp(2.8rem, 8vw, 6.5rem); line-height: .94; margin: 1.25rem 0 1.5rem; }
.hero h1 em { font-style: normal; color: var(--cobalt); }
.hero h1 .stroke {
  -webkit-text-stroke: 2px var(--ink); color: transparent;
}
.hero-aside { padding-bottom: .5rem; }
.hero-aside p { color: var(--muted); margin-bottom: 1.5rem; }
.hero-cta { display: flex; gap: .75rem; flex-wrap: wrap; }

.hero-stats { display: flex; gap: 2.5rem; margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--line); flex-wrap: wrap; }
.hero-stats .stat .n { font-family: var(--display); font-size: 2.2rem; font-weight: 700; }
.hero-stats .stat .l { font-family: var(--mono); font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); }

/* ---------- Marquee (signature) ---------- */
.marquee {
  background: var(--coral); color: #fff;
  overflow: hidden; white-space: nowrap;
  border-block: 2px solid var(--ink);
  padding: .9rem 0;
}
.marquee-track {display: inline-flex;gap: 2.5rem;align-items: center;animation: marquee 26s linear infinite;will-change: transform;}
.marquee span { font-family: var(--display); font-weight: 700; font-size: 1.35rem; letter-spacing: -.01em; display: inline-flex; align-items: center; gap: 2.5rem; }
.marquee span::after { content: "Ã¢Å“Â³"; color: var(--ink); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Section heads ---------- */
.sec-head {color: #ff5a3c;display: flex;align-items: end;justify-content: space-between;gap: 2rem;margin-bottom: 20px;flex-wrap: wrap;font-weight: 700;}
.sec-head h2 { font-size: clamp(2rem, 5vw, 3.4rem); margin: .5rem 0 0; max-width: 14ch; }
.sec-head .aside { max-width: 32ch; color: var(--muted); }

/* ---------- Services ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.svc-card {
  background: var(--porcelain);
  border: 1.5px solid var(--ink);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: transform .35s var(--ease), background .35s var(--ease), color .35s var(--ease);
}
.svc-card .index-tag { color: var(--coral); }
.svc-card h3 { font-size: 1.65rem; margin: 1.25rem 0 .65rem; }
.svc-card p { color: var(--muted); margin: 0 0 1.25rem; }
.svc-card .tags { display: flex; flex-wrap: wrap; gap: .4rem; }
.svc-card .tags span { font-family: var(--mono); font-size: .72rem; border: 1px solid var(--line); border-radius: 999px; padding: .25rem .7rem; color: var(--ink-soft); }
.svc-card:hover { transform: translateY(-6px) rotate(-.6deg); background: var(--ink); color: var(--porcelain); }
.svc-card:hover p, .svc-card:hover .tags span { color: rgba(251,250,247,.72); border-color: rgba(255,255,255,.2); }
.svc-card:hover .index-tag { color: var(--lilac); }

/* ---------- Why choose ---------- */
.why { background: var(--paper); }
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
.why-item { background: var(--porcelain); border-radius: var(--radius); padding: 2rem; border: 1px solid var(--line); }
.why-item .ic { width: 52px; height: 52px; border-radius: 14px; background: var(--lilac); display: grid; place-items: center; margin-bottom: 1.25rem; font-size: 1.4rem; }
.why-item:nth-child(2) .ic { background: var(--coral); }
.why-item:nth-child(3) .ic { background: var(--cobalt); }
.why-item:nth-child(5) .ic { background: var(--cobalt); }
.why-item:nth-child(6) .ic { background: var(--coral); }
.why-item h3 { font-size: 1.3rem; margin: 0 0 .5rem; }
.why-item p { color: var(--muted); margin: 0; font-size: .95rem; }

/* ---------- Pricing ---------- */
.price-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; align-items: stretch; }
.price-card {
  border: 1.5px solid var(--ink); border-radius: var(--radius); padding: 2.25rem;
  background: var(--porcelain); display: flex; flex-direction: column;
}
.price-card.feature { background: var(--ink); color: var(--porcelain); transform: translateY(-12px); }
.price-card.feature .lead-quiet, .price-card.feature .price-feats li { color: rgba(251,250,247,.75); }
.price-card.feature .badge-pop { background: var(--coral); }
.badge-pop { font-family: var(--mono); font-size: .68rem; text-transform: uppercase; letter-spacing: .14em; background: var(--lilac); color: var(--ink); padding: .3rem .7rem; border-radius: 999px; align-self: flex-start; }
.price-card h3 { font-size: 1.5rem; margin: 1.25rem 0 .25rem; }
.price-amt { font-family: var(--display); font-size: 3rem; font-weight: 700; line-height: 1; margin: 1rem 0 .25rem; }
.price-amt small { font-family: var(--body); font-size: .9rem; font-weight: 500; color: var(--muted); }
.price-card.feature .price-amt small { color: rgba(251,250,247,.6); }
.price-feats { list-style: none; padding: 0; margin: 1.5rem 0 2rem; flex: 1; }
.price-feats li { padding: .55rem 0; border-bottom: 1px dashed var(--line); font-size: .95rem; display: flex; gap: .6rem; }
.price-feats li::before { content: "Ã¢â€ â€™"; color: var(--coral); }
.price-card.feature .price-feats li { border-color: rgba(255,255,255,.14); }
.price-card .btn-kern { justify-content: center; }
.price-card.feature .btn-kern { background: var(--coral); border-color: var(--coral); }

/* ---------- FAQ ---------- */
.faq-wrap { max-width: 820px; margin-inline: auto; }
.accordion-kern .accordion-item { background: transparent; border: none; border-top: 1.5px solid var(--ink); }
.accordion-kern .accordion-item:last-child { border-bottom: 1.5px solid var(--ink); }
.accordion-kern .accordion-button {
  font-family: var(--display); font-size: 1.35rem; font-weight: 600; color: var(--ink);
  background: transparent; padding: 1.5rem 0; box-shadow: none;
}
.accordion-kern .accordion-button:not(.collapsed) { color: var(--cobalt); background: transparent; }
.accordion-kern .accordion-button::after { background-size: 1.1rem; }
.accordion-kern .accordion-body { padding: 0 0 1.5rem; color: var(--muted); max-width: 60ch; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--cobalt); color: #fff; border-radius: var(--radius); padding: clamp(2.5rem,6vw,4.5rem); text-align: center; }
.cta-band h2 { color: #fff; font-size: clamp(2rem,6vw,4rem); margin: 0 0 1.5rem; }
.cta-band .btn-kern { background: #fff; color: var(--ink); border-color: #fff; }
.cta-band .btn-kern:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: var(--porcelain); padding: clamp(3rem,7vw,5rem) 0 2rem; }
.footer .brand { color: var(--porcelain); }
.footer .brand .bracket { color: var(--lilac); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem; }
.footer h5 { font-family: var(--mono); font-size: .72rem; text-transform: uppercase; letter-spacing: .14em; color: var(--lilac); margin: 0 0 1.25rem; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { margin-bottom: .65rem; }
.footer ul a { color: rgba(251,250,247,.7); font-size: .95rem; }
.footer ul a:hover { color: var(--coral); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.1); color: rgba(251,250,247,.55); font-size: .85rem; flex-wrap: wrap; gap: 1rem; }

/* ---------- Forms / Auth ---------- */
.auth-wrap { min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr; }
.auth-art { background: var(--ink); color: var(--porcelain); padding: 3rem; display: flex; flex-direction: column; justify-content: space-between; position: relative; overflow: hidden; }
.auth-art .big-type { font-family: var(--display); font-size: clamp(3rem,7vw,5.5rem); line-height: .95; font-weight: 700; }
.auth-art .big-type em { font-style: normal; color: var(--coral); }
.auth-art .blob { position: absolute; right: -80px; top: 40%; width: 360px; height: 360px; background: var(--cobalt); border-radius: 50%; filter: blur(10px); opacity: .55; }
.auth-form { display: flex; flex-direction: column; justify-content: center; padding: 3rem clamp(1.5rem,5vw,5rem); }
.auth-form .form-box { width: 100%; max-width: 420px; margin-inline: auto; }

.field { margin-bottom: 1.25rem; }
.field label { font-family: var(--mono); font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); display: block; margin-bottom: .5rem; }
.input-kern, .form-select.input-kern, textarea.input-kern {
  width: 100%; padding: .95rem 1.1rem;
  border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  background: var(--porcelain); font-family: var(--body); font-size: 1rem; color: var(--ink);
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.input-kern:focus { outline: none; border-color: var(--cobalt); box-shadow: 0 0 0 4px color-mix(in srgb, var(--cobalt) 14%, transparent); }
.input-kern::placeholder { color: #b6b0a5; }
.pw-row { position: relative; }
.pw-toggle { position: absolute; right: .9rem; top: 50%; transform: translateY(-50%); background: none; border: none; cursor: pointer; font-family: var(--mono); font-size: .72rem; color: var(--cobalt); letter-spacing: .08em; }
.form-foot { text-align: center; margin-top: 1.5rem; color: var(--muted); font-size: .9rem; }
.form-foot a { color: var(--cobalt); font-weight: 600; }

/* ---------- Page header (inner pages) ---------- */
.page-head { padding: clamp(3rem,7vw,5rem) 0 2.5rem; }
.page-head h1 { font-size: clamp(2.4rem,7vw,5rem); margin: 1rem 0 0; }
.breadcrumb-kern { font-family: var(--mono); font-size: .75rem; color: var(--muted); letter-spacing: .08em; }
.breadcrumb-kern a:hover { color: var(--cobalt); }

/* ---------- Cart ---------- */
.cart-layout { display: grid; grid-template-columns: 1.6fr .9fr; gap: 2rem; align-items: start; }
.cart-item { display: grid; grid-template-columns: 84px 1fr auto; gap: 1.25rem; align-items: center; padding: 1.5rem 0; border-bottom: 1px solid var(--line); }
.cart-item .thumb { width: 84px; height: 84px; border-radius: var(--radius-sm); display: grid; place-items: center; font-family: var(--display); font-size: 1.5rem; color: #fff; }
.cart-item h4 { margin: 0 0 .25rem; font-size: 1.25rem; }
.cart-item .meta { color: var(--muted); font-size: .9rem; font-family: var(--mono); }
.qty { display: inline-flex; align-items: center; border: 1.5px solid var(--line); border-radius: 999px; overflow: hidden; }
.qty button { background: transparent; border: none; width: 36px; height: 36px; font-size: 1.1rem; cursor: pointer; color: var(--ink); }
.qty button:hover { background: var(--sand); }
.qty span { min-width: 34px; text-align: center; font-family: var(--mono); }
.line-price { font-family: var(--display); font-weight: 700; font-size: 1.3rem; }
.remove-btn { background: none; border: none; color: var(--muted); font-family: var(--mono); font-size: .72rem; letter-spacing: .08em; cursor: pointer; }
.remove-btn:hover { color: var(--coral); }
.summary { background: var(--ink); color: var(--porcelain); border-radius: var(--radius); padding: 2rem; position: sticky; top: 90px; }
.summary h3 { color: #fff; margin: 0 0 1.5rem; }
.summary .row-line { display: flex; justify-content: space-between; padding: .6rem 0; color: rgba(251,250,247,.78); }
.summary .row-total { display: flex; justify-content: space-between; padding: 1.2rem 0 1.5rem; margin-top: .5rem; border-top: 1px solid rgba(255,255,255,.14); font-family: var(--display); font-size: 1.6rem; font-weight: 700; }
.summary .btn-kern { width: 100%; justify-content: center; background: var(--coral); border-color: var(--coral); }
.promo { display: flex; gap: .5rem; margin: 1rem 0 1.5rem; }
.promo input { flex: 1; padding: .7rem 1rem; border-radius: 999px; border: 1px solid rgba(255,255,255,.2); background: transparent; color: #fff; font-family: var(--mono); font-size: .85rem; }
.promo button { border-radius: 999px; border: 1px solid var(--lilac); background: transparent; color: var(--lilac); padding: 0 1.1rem; font-family: var(--mono); font-size: .8rem; cursor: pointer; }
.empty-cart { text-align: center; padding: 4rem 1rem; }

/* ---------- Contact ---------- */
.contact-layout { display: grid; grid-template-columns: 1fr 1.15fr; gap: 3rem; align-items: start; }
.contact-info .info-row { display: flex; gap: 1rem; padding: 1.25rem 0; border-bottom: 1px solid var(--line); }
.contact-info .info-row .ic { font-size: 1.3rem; }
.contact-info .info-row .l { font-family: var(--mono); font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); }
.contact-info .info-row .v { font-size: 1.05rem; font-weight: 500; }
.contact-card { background: var(--porcelain); border: 1.5px solid var(--ink); border-radius: var(--radius); padding: clamp(1.75rem,4vw,2.5rem); }

/* ---------- Order ---------- */
.order-layout { display: grid; grid-template-columns: 1.4fr .9fr; gap: 2rem; align-items: start; }
.order-steps { display: flex; gap: .5rem; margin-bottom: 2.5rem; flex-wrap: wrap; }
.order-steps .step { font-family: var(--mono); font-size: .78rem; color: var(--muted); display: flex; align-items: center; gap: .5rem; }
.order-steps .step .n { width: 26px; height: 26px; border-radius: 50%; border: 1.5px solid var(--line); display: grid; place-items: center; }
.order-steps .step.active .n { background: var(--cobalt); color: #fff; border-color: var(--cobalt); }
.order-steps .sep { flex: 1; height: 1px; background: var(--line); min-width: 20px; max-width: 60px; }
.fieldset-kern { border: 1.5px solid var(--line); border-radius: var(--radius); padding: 1.75rem; margin-bottom: 1.5rem; }
.fieldset-kern legend { font-family: var(--mono); font-size: .75rem; text-transform: uppercase; letter-spacing: .12em; color: var(--cobalt); padding: 0 .5rem; width: auto; margin-bottom: .5rem; }
.pay-method { display: flex; gap: .75rem; flex-wrap: wrap; }
.pay-method label { flex: 1; min-width: 140px; border: 1.5px solid var(--line); border-radius: var(--radius-sm); padding: 1rem; cursor: pointer; font-family: var(--mono); font-size: .85rem; transition: border-color .2s, background .2s; }
.pay-method input { accent-color: var(--cobalt); margin-right: .5rem; }
.pay-method label:has(input:checked) { border-color: var(--cobalt); background: color-mix(in srgb, var(--cobalt) 6%, transparent); }
.order-confirm { text-align: center; padding: 3rem 1rem; }
.order-confirm .tick { width: 80px; height: 80px; border-radius: 50%; background: var(--cobalt); color: #fff; display: grid; place-items: center; font-size: 2.5rem; margin: 0 auto 1.5rem; }

/* ===========================================================
   DASHBOARD
   =========================================================== */
.dash { display: grid; grid-template-columns: 264px 1fr; min-height: 100vh; }
.dash-side { background: var(--ink); color: var(--porcelain); padding: 1.75rem 1.25rem; display: flex; flex-direction: column; position: sticky; top: 0; height: 100vh; }
.dash-side .brand { color: var(--porcelain); margin-bottom: 2.5rem; padding-left: .5rem; }
.dash-side .brand .bracket { color: var(--lilac); }
.dash-nav { list-style: none; padding: 0; margin: 0; flex: 1; }
.dash-nav .label { font-family: var(--mono); font-size: .66rem; text-transform: uppercase; letter-spacing: .14em; color: rgba(255,255,255,.4); margin: 1.5rem .75rem .5rem; }
.dash-nav a { display: flex; align-items: center; gap: .85rem; padding: .7rem .75rem; border-radius: 12px; color: rgba(251,250,247,.72); font-weight: 500; font-size: .95rem; transition: background .2s, color .2s; }
.dash-nav a .ic { font-size: 1.1rem; }
.dash-nav a:hover { background: rgba(255,255,255,.06); color: #fff; }
.dash-nav a.active { background: var(--cobalt); color: #fff; }
.dash-side .user-chip { display: flex; align-items: center; gap: .75rem; padding: .75rem; border-radius: 12px; background: rgba(255,255,255,.05); }
.dash-side .user-chip .av { width: 38px; height: 38px; border-radius: 50%; background: var(--coral); display: grid; place-items: center; font-family: var(--display); font-weight: 700; color: #fff; }
.dash-side .user-chip .nm { font-size: .9rem; font-weight: 600; }
.dash-side .user-chip .rl { font-family: var(--mono); font-size: .68rem; color: rgba(255,255,255,.5); }

.dash-main { padding: 0; background: var(--porcelain); overflow-x: hidden; }
.dash-top { display: flex; align-items: center; justify-content: space-between; padding: 1.5rem clamp(1.25rem,3vw,2.5rem); border-bottom: 1px solid var(--line); position: sticky; top: 0; background: color-mix(in srgb, var(--porcelain) 90%, transparent); backdrop-filter: blur(8px); z-index: 20; gap: 1rem; }
.dash-top .hello h2 { font-size: 1.5rem; margin: 0; }
.dash-top .hello p { margin: .15rem 0 0; color: var(--muted); font-size: .9rem; }
.dash-top-actions { display: flex; align-items: center; gap: .75rem; }
.dash-search { display: flex; align-items: center; gap: .5rem; border: 1.5px solid var(--line); border-radius: 999px; padding: .55rem 1rem; background: var(--porcelain); }
.dash-search input { border: none; background: transparent; outline: none; font-family: var(--body); font-size: .9rem; width: 160px; }
.dash-mobile-btn { display: none; width: 44px; height: 44px; border: 1.5px solid var(--ink); border-radius: 12px; background: transparent; cursor: pointer; font-size: 1.2rem; }

.dash-body { padding: clamp(1.25rem,3vw,2.5rem); }
.stat-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; margin-bottom: 2rem; }
.stat-box { background: var(--porcelain); border: 1.5px solid var(--line); border-radius: var(--radius); padding: 1.5rem; }
.stat-box.dark { background: var(--ink); color: var(--porcelain); border-color: var(--ink); }
.stat-box.cobalt { background: var(--cobalt); color: #fff; border-color: var(--cobalt); }
.stat-box .l { font-family: var(--mono); font-size: .7rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); }
.stat-box.dark .l, .stat-box.cobalt .l { color: rgba(255,255,255,.7); }
.stat-box .n { font-family: var(--display); font-size: 2.4rem; font-weight: 700; line-height: 1; margin-top: .5rem; }
.stat-box .d { font-size: .82rem; color: var(--muted); margin-top: .35rem; }
.stat-box.dark .d, .stat-box.cobalt .d { color: rgba(255,255,255,.7); }

.dash-cols { display: grid; grid-template-columns: 1.6fr 1fr; gap: 1.5rem; align-items: start; }
.panel { background: var(--porcelain); border: 1.5px solid var(--line); border-radius: var(--radius); padding: 1.5rem; }
.panel-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.25rem; }
.panel-head h3 { font-size: 1.2rem; margin: 0; }
.panel-head a { font-family: var(--mono); font-size: .75rem; color: var(--cobalt); }

.project { padding: 1.1rem 0; border-bottom: 1px solid var(--line); }
.project:last-child { border-bottom: none; }
.project-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: .6rem; }
.project h4 { font-size: 1.05rem; margin: 0; }
.project .pill { font-family: var(--mono); font-size: .68rem; padding: .25rem .65rem; border-radius: 999px; letter-spacing: .06em; }
.pill.progress { background: var(--lilac); color: var(--ink); }
.pill.review { background: #FFE9B8; color: #6b5200; }
.pill.done { background: #C7F0D2; color: #1d6b34; }
.bar { height: 7px; background: var(--sand); border-radius: 999px; overflow: hidden; }
.bar i { display: block; height: 100%; background: var(--cobalt); border-radius: 999px; }
.project .meta { display: flex; justify-content: space-between; font-family: var(--mono); font-size: .72rem; color: var(--muted); margin-top: .5rem; }

.req-item { display: flex; align-items: center; gap: .85rem; padding: .85rem 0; border-bottom: 1px solid var(--line); }
.req-item:last-child { border-bottom: none; }
.req-item .ic { width: 38px; height: 38px; border-radius: 10px; background: var(--sand); display: grid; place-items: center; font-size: 1.1rem; flex-shrink: 0; }
.req-item .t { font-weight: 600; font-size: .92rem; }
.req-item .s { font-family: var(--mono); font-size: .72rem; color: var(--muted); }

/* ---------- Dashboard chat ---------- */
.chat-panel { display: flex; flex-direction: column; height: 480px; padding: 0; overflow: hidden; }
.chat-head { display: flex; align-items: center; gap: .75rem; padding: 1.1rem 1.25rem; border-bottom: 1px solid var(--line); }
.chat-head .av { width: 40px; height: 40px; border-radius: 50%; background: var(--cobalt); display: grid; place-items: center; color: #fff; font-family: var(--display); font-weight: 700; position: relative; }
.chat-head .av .on { position: absolute; right: -1px; bottom: -1px; width: 12px; height: 12px; border-radius: 50%; background: #2ecc71; border: 2px solid var(--porcelain); }
.chat-head .nm { font-weight: 600; font-size: .95rem; }
.chat-head .st { font-family: var(--mono); font-size: .7rem; color: #2ecc71; }
.chat-log { flex: 1; overflow-y: auto; padding: 1.25rem; display: flex; flex-direction: column; gap: .85rem; background: var(--paper); }
.msg { max-width: 78%; padding: .7rem 1rem; border-radius: 16px; font-size: .92rem; line-height: 1.45; }
.msg.them { background: var(--porcelain); border: 1px solid var(--line); border-bottom-left-radius: 4px; align-self: flex-start; }
.msg.me { background: var(--cobalt); color: #fff; border-bottom-right-radius: 4px; align-self: flex-end; }
.msg .time { display: block; font-family: var(--mono); font-size: .62rem; opacity: .6; margin-top: .3rem; }
.chat-typing { font-family: var(--mono); font-size: .72rem; color: var(--muted); padding: 0 1.25rem; height: 1.2rem; }
.chat-input { display: flex; gap: .5rem; padding: 1rem 1.25rem; border-top: 1px solid var(--line); }
.chat-input input { flex: 1; border: 1.5px solid var(--line); border-radius: 999px; padding: .7rem 1.1rem; font-family: var(--body); outline: none; }
.chat-input input:focus { border-color: var(--cobalt); }
.chat-input button { width: 44px; height: 44px; border-radius: 50%; border: none; background: var(--coral); color: #fff; cursor: pointer; font-size: 1.1rem; flex-shrink: 0; transition: transform .2s; }
.chat-input button:hover { transform: scale(1.08); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ===========================================================
   RESPONSIVE
   =========================================================== */
@media (max-width: 991px) {
  .nav-links, .nav-cta .btn-kern { display: none; }
  .burger { display: flex; }
  .hero-grid, .about-grid, .contact-layout, .cart-layout, .order-layout { grid-template-columns: 1fr; }
  .svc-grid, .why-grid, .price-grid { grid-template-columns: 1fr 1fr; }
  .price-card.feature { transform: none; }
  .summary, .auth-form .form-box { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .auth-wrap { grid-template-columns: 1fr; }
  .auth-art { min-height: 240px; }
  .stat-row { grid-template-columns: 1fr 1fr; }
  .dash-cols { grid-template-columns: 1fr; }

  /* Dashboard collapses to single column with offcanvas side */
  .dash { grid-template-columns: 1fr; }
  .dash-side {
    position: fixed; left: 0; top: 0; z-index: 1050;
    transform: translateX(-100%); transition: transform .35s var(--ease);
    width: min(80vw, 300px); height: 100vh;
  }
  .dash-side.open { transform: translateX(0); }
  .dash-mobile-btn { display: inline-grid; place-items: center; }
  .dash-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.45); opacity: 0; pointer-events: none; transition: opacity .3s; z-index: 1040; }
  .dash-overlay.show { opacity: 1; pointer-events: auto; }
}

@media (max-width: 600px) {
  .svc-grid, .why-grid, .price-grid, .footer-grid { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: 1fr 1fr; }
  .hero-stats { gap: 1.5rem; }
  .sec-head { flex-direction: column; align-items: flex-start; }
  .dash-search { display: none; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Visible keyboard focus */
a:focus-visible, button:focus-visible, input:focus-visible, .accordion-button:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 3px solid var(--coral); outline-offset: 2px; border-radius: 4px;
}

/* ===========================================================
   v2 Ã¢â‚¬â€ ICONS, HERO REFINEMENT & NEW SECTIONS
   =========================================================== */
.bi { line-height: 1; vertical-align: -0.125em; }

/* ---------- Hero (refined) ---------- */
.hero { padding-top: clamp(2rem,5vw,3.5rem); padding-bottom: clamp(1.5rem,4vw,2.5rem); }
.hero-grid { grid-template-columns: 1.05fr .95fr; gap: clamp(2rem,5vw,4rem); align-items: center; }
.hero-copy h1 { font-size: clamp(2.6rem,6.4vw,5.2rem); margin: 1.1rem 0 1.1rem; }
.hero-lead { color: var(--muted); font-size: 1.1rem; line-height: 1.6; max-width: 46ch; margin: 0 0 1.6rem; }
.hero-cta { display: flex; gap: .75rem; flex-wrap: wrap; }
.hero-cta .btn-kern i { font-size: 1rem; }
.hero-rating { display: flex; align-items: center; gap: 1rem; margin-top: 1.75rem; flex-wrap: wrap; }
.hero-rating .avatars { display: inline-flex; }
.hero-rating .avatars span { width: 32px; height: 32px; border-radius: 50%; border: 2px solid var(--porcelain); display: grid; place-items: center; font-family: var(--display); font-weight: 700; font-size: .78rem; color: #fff; margin-left: -9px; }
.hero-rating .stars { display: inline-flex; gap: .12rem; color: var(--coral); font-size: .95rem; }
.hero-rating .rt { font-family: var(--mono); font-size: .78rem; color: var(--muted); }
.hero-rating .rt b { color: var(--ink); }

/* Artboard visual (hero signature) */
.hero-visual { position: relative; }
.artboard { background: var(--porcelain); border: 1.5px solid var(--ink); border-radius: var(--radius); box-shadow: 12px 12px 0 var(--ink); overflow: hidden; }
.ab-bar { display: flex; align-items: center; gap: .5rem; padding: .8rem 1rem; border-bottom: 1.5px solid var(--ink); background: var(--paper); }
.ab-bar .dots { display: inline-flex; gap: .35rem; }
.ab-bar .dots i { width: 11px; height: 11px; border-radius: 50%; display: inline-block; }
.ab-bar .fname { font-family: var(--mono); font-size: .72rem; color: var(--muted); margin-left: .35rem; }
.ab-body { padding: 1.6rem; display: grid; gap: 1.1rem; }
.ab-mark { display: flex; align-items: center; justify-content: space-between; }
.ab-mark .logo { font-family: var(--display); font-weight: 800; font-size: 2rem; letter-spacing: -.04em; }
.ab-mark .logo .br { color: var(--cobalt); }
.ab-mark .badge-ic { width: 46px; height: 46px; border-radius: 12px; background: var(--coral); color: #fff; display: grid; place-items: center; font-size: 1.4rem; }
.ab-specimen { font-family: var(--display); font-weight: 700; font-size: 3rem; line-height: 1; border-block: 1px dashed var(--line); padding: .8rem 0; color: var(--ink); }
.ab-specimen small { font-family: var(--mono); font-size: .68rem; color: var(--muted); display: block; font-weight: 400; margin-top: .35rem; letter-spacing: .1em; }
.ab-palette { display: flex; gap: .55rem; }
.ab-palette .sw { flex: 1; height: 44px; border-radius: 10px; border: 1px solid rgba(0,0,0,.08); display: flex; align-items: flex-end; padding: 4px 6px; }
.ab-palette .sw span { font-family: var(--mono); font-size: .54rem; color: rgba(255,255,255,.9); }
.ab-foot { display: flex; align-items: center; justify-content: space-between; font-family: var(--mono); font-size: .72rem; color: var(--muted); }
.ab-foot .ok { color: var(--cobalt); display: inline-flex; align-items: center; gap: .35rem; }
.hero-chip { position: absolute; background: var(--ink); color: var(--porcelain); font-family: var(--mono); font-size: .72rem; padding: .55rem .85rem; border-radius: 999px; display: inline-flex; align-items: center; gap: .45rem; box-shadow: 0 10px 24px rgba(0,0,0,.14); z-index: 3; }
.hero-chip i { color: var(--coral); }
.hero-chip.c1 { top: -14px; right: 26px; }
.hero-chip.c2 { bottom: -14px; left: -6px; background: var(--cobalt); }
.hero-chip.c2 i { color: #fff; }

/* Marquee icons replace text asterisk */
.marquee span::after { content: none; }
.marquee-track i { color: var(--ink); font-size: 1.05rem; }

/* ---------- Service card icons ---------- */
.svc-top { display: flex; align-items: center; justify-content: space-between; }
.svc-ic { width: 56px; height: 56px; border-radius: 14px; background: var(--cobalt); color: #fff; display: grid; place-items: center; font-size: 1.55rem; transition: background .35s var(--ease), color .35s var(--ease); }
.svc-card:nth-child(2) .svc-ic { background: var(--coral); }
.svc-card:nth-child(3) .svc-ic { background: var(--ink); }
.svc-card:nth-child(4) .svc-ic { background: var(--lilac); color: var(--ink); }
.svc-card:hover .svc-ic { background: var(--porcelain); color: var(--ink); }
.svc-card h3 { margin-top: 1.1rem; }

/* ---------- Pricing package icons ---------- */
.pkg-ic { width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center; font-size: 1.55rem; background: var(--paper); color: var(--ink); margin: 1.25rem 0 .5rem; }
.price-card.feature .pkg-ic { background: rgba(255,255,255,.12); color: #fff; }
.price-card h3 { display: flex; align-items: center; gap: .6rem; }

/* ---------- Trusted-by strip ---------- */
.trust { padding: 2.75rem 0; border-bottom: 1px solid var(--line); }
.trust .lbl { text-align: center; font-family: var(--mono); font-size: .72rem; text-transform: uppercase; letter-spacing: .14em; color: var(--muted); margin-bottom: 1.5rem; }
.trust-row { display: flex; align-items: center; justify-content: center; gap: clamp(1.5rem,5vw,3.5rem); flex-wrap: wrap; }
.trust-row .tlogo { display: inline-flex; align-items: center; gap: .5rem; font-family: var(--display); font-weight: 700; font-size: 1.25rem; color: var(--ink); opacity: .5; transition: opacity .25s var(--ease); }
.trust-row .tlogo:hover { opacity: 1; }
.trust-row .tlogo i { font-size: 1.4rem; color: var(--cobalt); }

/* ---------- Selected work ---------- */
.work { background: var(--paper); }
.work-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
.work-card { border-radius: var(--radius); overflow: hidden; border: 1.5px solid var(--ink); background: var(--porcelain); transition: transform .3s var(--ease); }
.work-card:hover { transform: translateY(-6px); }
.work-thumb { aspect-ratio: 4/3; display: grid; place-items: center; font-size: 3rem; color: #fff; position: relative; }
.work-thumb .cat { position: absolute; top: .85rem; left: .85rem; font-family: var(--mono); font-size: .64rem; text-transform: uppercase; letter-spacing: .1em; background: rgba(0,0,0,.4); color: #fff; padding: .25rem .65rem; border-radius: 999px; }
.work-meta { padding: 1.05rem 1.25rem; display: flex; align-items: center; justify-content: space-between; }
.work-meta h4 { margin: 0; font-size: 1.15rem; }
.work-meta i { color: var(--cobalt); transition: transform .25s var(--ease); }
.work-card:hover .work-meta i { transform: translate(3px,-3px); }

/* ---------- Process ---------- */
.proc-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.proc-step { padding-top: 1.5rem; border-top: 2px solid var(--ink); }
.proc-step .num { font-family: var(--mono); font-size: .75rem; color: var(--cobalt); letter-spacing: .1em; }
.proc-step .ic { width: 58px; height: 58px; border-radius: 16px; background: var(--ink); color: var(--porcelain); display: grid; place-items: center; font-size: 1.5rem; margin: 1rem 0 1.1rem; }
.proc-step:nth-child(2) .ic { background: var(--cobalt); }
.proc-step:nth-child(3) .ic { background: var(--coral); }
.proc-step:nth-child(4) .ic { background: var(--lilac); color: var(--ink); }
.proc-step h3 { font-size: 1.3rem; margin: 0 0 .5rem; }
.proc-step p { color: var(--muted); font-size: .95rem; margin: 0; }

/* ---------- Testimonials ---------- */
.testi { background: var(--ink); color: var(--porcelain); }
.testi .eyebrow { color: var(--lilac); }
.testi .eyebrow::before { background: var(--lilac); }
.testi h2 { color: var(--porcelain); }
.testi .aside { color: rgba(251,250,247,.65); }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
.testi-card { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); padding: 1.75rem; display: flex; flex-direction: column; }
.testi-card .qi { color: var(--coral); font-size: 1.7rem; }
.testi-card .stars { color: var(--coral); display: inline-flex; gap: .12rem; margin: .65rem 0 .85rem; }
.testi-card p { color: rgba(251,250,247,.85); font-size: 1rem; line-height: 1.55; flex: 1; margin: 0; }
.testi-card .who { display: flex; align-items: center; gap: .75rem; margin-top: 1.4rem; }
.testi-card .who .av { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; font-family: var(--display); font-weight: 700; color: #fff; }
.testi-card .who .nm { font-weight: 600; font-size: .92rem; }
.testi-card .who .rl { font-family: var(--mono); font-size: .7rem; color: rgba(255,255,255,.5); }

/* ---------- Cart / dashboard icon tiles ---------- */
.cart-item .thumb i, .req-item .ic i, .dash-nav a .ic, .why-item .ic i { line-height: 1; }
.contact-info .info-row .ic { color: var(--cobalt); }

/* ---------- v2 responsive overrides (must come last) ---------- */
@media (max-width: 991px) {
  .hero-grid { grid-template-columns: 1fr; }
  .work-grid, .proc-grid, .testi-grid { grid-template-columns: 1fr 1fr; }
  .artboard { box-shadow: 8px 8px 0 var(--ink); }
}
@media (max-width: 600px) {
  .work-grid, .proc-grid, .testi-grid, .trust-row { grid-template-columns: 1fr; }
  .ab-specimen { font-size: 2.4rem; }
  .hero-chip.c1 { right: 8px; }
}

/* Fix: pricing now uses real check icons, drop the ::before arrow */
.price-feats li::before { content: none; }
.price-feats li { align-items: center; gap: .65rem; }
.price-feats li i { color: var(--coral); font-size: 1rem; flex-shrink: 0; }
.price-card.feature .price-feats li i { color: var(--lilac); }

a.brand img {
    width: auto;
    height: 40px;
}

.prod-main-bx {
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    margin: 20px 0px;
}


.prod-main-bx-btm {
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    margin: 20px 0px;
}

.prod-main-bx-btm h5 {text-decoration: underline;color: #ff5a3c;font-weight: 600;}

.prod-main-bx-btm p {
    margin: 9px 0;
    font-size: 14px;
}

.payment-icons-strip img {
    width: auto;
    height: 30px;
}
.page-hero { padding: clamp(3rem,7vw,5rem) 0 2rem; text-align:center; background:var(--porcelain); }
.page-hero-title { font-family:var(--display); font-weight:700; letter-spacing:-.02em;
  font-size:clamp(2rem,5vw,3rem); margin:.75rem 0 .5rem; color:var(--ink); }
.breadcrumb-pill { display:inline-flex; align-items:center; gap:.5rem; font-family:var(--mono);
  font-size:.74rem; letter-spacing:.06em; background:var(--paper); border:1px solid var(--line);
  border-radius:999px; padding:.4rem 1rem; margin:0 auto 1rem; }
.breadcrumb-pill a { color:var(--cobalt); text-decoration:none; }
.breadcrumb-pill a:hover { text-decoration:underline; }
.breadcrumb-pill span { color:var(--muted); }
.text-muted-2 { color:var(--muted); }
.lead-muted { color:var(--muted); font-size:1.05rem; margin:0; }

/* Section wrapper */
.thankyou-section { padding: clamp(2rem,5vw,4rem) 0 clamp(3rem,7vw,5rem); }

/* Order confirmation */
.order-confirm { margin-bottom:2.5rem; }
.confirm-tick { width:84px; height:84px; border-radius:50%; background:var(--cobalt); color:#fff;
  display:inline-grid; place-items:center; font-size:2.6rem; margin-bottom:1.25rem; }
.confirm-title { font-family:var(--display); font-weight:700; font-size:1.75rem; margin:0 0 .35rem; color:var(--ink); }
.confirm-id { font-family:var(--mono); font-size:.95rem; color:var(--muted); margin:0 0 .75rem; }
.confirm-id strong { color:var(--cobalt); }
.description { color:var(--muted); max-width:46ch; margin:0 auto; line-height:1.6; }

/* Credentials card */
.login-box { background:var(--porcelain); border:1.5px solid var(--ink); border-radius:var(--radius);
  padding:clamp(1.75rem,4vw,2.5rem); max-width:480px; margin:0 auto; }
.login-head { margin-bottom:1.75rem; }
.login-head h2 { font-family:var(--display); font-weight:700; font-size:1.6rem; letter-spacing:-.02em;
  margin:0 0 .35rem; color:var(--ink); }
.login-head p { color:var(--muted); margin:0; font-size:.95rem; }

/* Fields */
.field { margin-bottom:1.25rem; }
.form-label { font-family:var(--mono); font-size:.72rem; text-transform:uppercase; letter-spacing:.12em;
  color:var(--muted); display:block; margin-bottom:.5rem; }
.input-icon { position:relative; display:flex; align-items:center; }
.input-icon > .bi:first-child { position:absolute; left:1rem; color:var(--muted); font-size:1rem; pointer-events:none; }
.input-icon .form-control { width:100%; padding:.9rem 1rem .9rem 2.6rem; border:1.5px solid var(--line);
  border-radius:var(--radius-sm); background:var(--porcelain); font-family:var(--body); font-size:1rem;
  color:var(--ink); transition:border-color .2s, box-shadow .2s; }
.input-icon .form-control:focus { outline:none; border-color:var(--cobalt);
  box-shadow:0 0 0 4px color-mix(in srgb, var(--cobalt) 14%, transparent); }
.input-icon .form-control::placeholder { color:#b6b0a5; }
.toggle-pw { position:absolute; right:1rem; color:var(--cobalt); cursor:pointer; font-size:1rem; }
.invalid-feedback { display:none; color:var(--coral); font-size:.8rem; margin-top:.35rem; }
.invalid-feedback.show { display:block; }

/* Gradient submit button */
.btn-grad { width:100%; border:none; border-radius:999px; padding:.95rem 1.5rem; font-family:var(--body);
  font-weight:600; font-size:1rem; color:#fff; cursor:pointer;
  background:linear-gradient(120deg, var(--cobalt), var(--coral)); background-size:140% 140%;
  transition:transform .2s, background-position .4s, box-shadow .2s; }
.btn-grad:hover { transform:translateY(-2px); background-position:100% 0; box-shadow:0 10px 24px rgba(43,54,240,.25); }
.btn-grad:active { transform:translateY(0); }

/* Success message â€” hidden until you add .show */
.success-msg { display:none; align-items:center; gap:.5rem; border-radius:var(--radius-sm);
  padding:.85rem 1rem; font-size:.9rem; margin-bottom:1.25rem;
  background:color-mix(in srgb, #2ecc71 14%, transparent); border:1px solid #2ecc71; color:#1d6b34; }
.success-msg.show { display:flex; }
.success-msg .bi { font-size:1.1rem; }

/* Keyboard focus */
.btn-grad:focus-visible, .toggle-pw:focus-visible, .input-icon .form-control:focus-visible {
  outline:3px solid var(--coral); outline-offset:2px; }

  #cookiePopup h4 {
        font-size: 25px;
        color: #fff;
        margin-bottom: 15px;
    }
    #cookiePopup p {
        font-size: 15px;
        color: #fff;
        margin-bottom: 15px;
        letter-spacing: 1px;
        line-height: 1.5;
        max-width: 850px;
    }
    #cookiePopup p a {
        color: #fff;
        text-decoration: underline;
    }
    .cookieBtns {
        display: inline-flex;
        gap: 10px;
    }
    .cookieBtns button {
        font-size: 15px;
        margin: 10px 0;
        color: #fff;
padding: 10px 20px;
border-radius: 5px;
background: #000;
cursor: pointer;
transition: all 0.5s ease;
border: 2px solid #fff;
}
.cookieBtns button:last-child {
background-color: #fff;
color: #666 !important;
}


.cancel-section {  font-family:var(--body); color:var(--ink);
  padding:clamp(2.5rem,6vw,4.5rem) 0; }
.container-kern { max-width:1200px; margin-inline:auto; padding-inline:1.25rem; }

/* Card — softer, no hard border */
.cancel-card { max-width:660px; margin-inline:auto; background:var(--porcelain);
  border-radius:24px; padding:clamp(1.75rem,4vw,3rem);
  box-shadow:0 1px 3px rgba(22,21,26,.05), 0 40px 80px -40px rgba(22,21,26,.3); }

/* Eyebrow */
.cancel-card .eyebrow { font-family:var(--mono); font-size:.72rem; text-transform:uppercase;
  letter-spacing:.16em; color:var(--muted); display:inline-flex; align-items:center; gap:.55rem; }
.cancel-card .eyebrow::before { content:""; width:8px; height:8px; background:var(--coral);
  border-radius:2px; transform:rotate(45deg); }

.cancel-title { font-family:var(--display); font-weight:700; letter-spacing:-.02em;
  font-size:clamp(1.8rem,4vw,2.5rem); margin:.65rem 0 .75rem; }
.cancel-intro { color:var(--muted); line-height:1.6; max-width:56ch; margin:0 0 1.5rem; font-size:.97rem; }

/* Notice banner */
.cancel-notice { display:flex; align-items:flex-start; gap:.65rem; font-size:.9rem; line-height:1.45;
  background:color-mix(in srgb, var(--coral) 9%, transparent); border:1px solid color-mix(in srgb, var(--coral) 35%, transparent);
  color:#9c3a23; border-radius:var(--radius-sm); padding:.85rem 1rem; margin-bottom:2rem; }
.cancel-notice i { color:var(--coral); font-size:1.05rem; margin-top:.05rem; flex-shrink:0; }

/* Two-column field grid */
.field-grid { display:grid; grid-template-columns:1fr 1fr; gap:1.1rem 1.25rem; }
.field--full { grid-column:1 / -1; }
.field { display:flex; flex-direction:column; }
.field label { font-size:.85rem; font-weight:600; color:var(--ink); margin-bottom:.45rem; }

.input-icon { position:relative; display:flex; align-items:center; }
.input-icon > .bi { position:absolute; left:1rem; color:var(--muted); font-size:1rem; pointer-events:none; }
.input-icon .form-control { width:100%; padding:.85rem 1rem .85rem 2.6rem; border:1.5px solid var(--line);
  border-radius:var(--radius-sm); background:var(--porcelain); font-family:var(--body); font-size:1rem;
  color:var(--ink); transition:border-color .2s, box-shadow .2s; }
.input-icon .form-control::placeholder { color:#b6b0a5; }
.input-icon .form-control:focus { outline:none; border-color:var(--cobalt);
  box-shadow:0 0 0 4px color-mix(in srgb, var(--cobalt) 14%, transparent); }

/* Submit */
.cancel-submit { width:100%; margin-top:1.75rem; border:none; cursor:pointer; border-radius:999px;
  padding:1rem 1.6rem; font-family:var(--body); font-weight:600; font-size:1rem; color:var(--porcelain);
  background:var(--ink); transition:transform .2s, background .2s, box-shadow .2s; }
.cancel-submit:hover { background:var(--cobalt); transform:translateY(-2px); box-shadow:0 12px 26px rgba(43,54,240,.22); }
.cancel-submit:active { transform:translateY(0); }

.cancel-foot { text-align:center; font-family:var(--mono); font-size:.74rem; color:var(--muted);
  margin:1rem 0 0; display:flex; align-items:center; justify-content:center; gap:.4rem; }

/* Focus visibility */
.cancel-submit:focus-visible, .input-icon .form-control:focus-visible {
  outline:3px solid var(--coral); outline-offset:2px; }

/* Responsive */
@media (max-width:520px) {
  .field-grid { grid-template-columns:1fr; }
}