/** Shopify CDN: Minification failed

Line 928:58 Unexpected "}"
Line 930:46 Unexpected "}"
Line 932:52 Unexpected "}"

**/
/* --- Desktop-only header (no mobile code) --- */
:root{
  --brand-dark:#00415a; --brand-accent:#00b3c9; --text:#0b0b0b;
}
html{scroll-behavior:smooth}

.site-header{
  position: sticky; top:0; z-index:50;
  background:#fff; border-bottom:1px solid rgba(0,0,0,.06);
}
.header__inner{
  max-width:1200px; margin:0 auto; padding:2px 20px;
  display:grid; grid-template-columns:auto 1fr auto; gap:16px; align-items:center;
}

/* Logo */
.site-header__logo .logo-img{ height:90px; width:auto; display:block; margin:0; }

/* Nav (always visible) */
.header__nav{ justify-self:center; display:block; }
.nav__list{ display:flex; gap:75px; list-style:none; margin:0; padding:0; }
.nav__link{
  color:var(--text); text-decoration:none; font-weight:600; font-size:15px; padding:6px 0;
}
.nav__link:hover{ color:var(--brand-dark); }

/* Actions */
.header__actions{ display:flex; gap:8px; }
.btn{ font-size:14px; font-weight:600; text-decoration:none; padding:8px 14px; border-radius:999px; border:1px solid transparent; display:inline-flex; align-items:center; }
.btn--ghost{ color:#ffffff; background:#ffffff; border-color:#000000; }
.btn--ghost:hover{ background:#000000; color:#ffffff; }
.btn--solid{ background:#000000; color: #ffffff !important; }
.btn--solid:hover{ background:#242424; }

/* Safety: neutralize any old global link colors in header */
.site-header a{ color:inherit; }

/* Debug helper (optional): uncomment to see boxes */
/* .header__nav, .nav__list, .nav__item, .nav__link { outline:1px dashed #0bf; } */

/* ===== Global Font ===== */
body {
font-family: "SF Pro", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif;
margin: 0;
padding: 0;
color: #0b0b0b;
}

.hero {
display: flex;
align-items: center;
justify-content: space-between;
max-width: 1200px;
margin: 0 auto;
padding: 4rem 2rem;
font-family: "SF Pro", -apple-system, BlinkMacSystemFont, sans-serif;
}

.hero__text {
flex: 1;
max-width: 500px;
}

.hero__heading {
font-size: 3rem;
font-weight: 700;
margin-bottom: 1rem;
line-height: 1.2;
}

.hero__sub {
font-size: 1.125rem;
color: #333;
}

.hero__visual {
flex: 1;
display: flex;
justify-content: center;
}

.hero__phone {
position: relative;
z-index: 1;
max-width: none;
height: auto;

/* === Easy adjustments === */
width: 1000px;                /* resize phone */
transform: translateX(10); /* move left/right */
margin-top: -450px;           /* move up/down */
}

/* === Easy knobs to control the phone === */
:root{
--hero-phone-width: 1000px;   /* make bigger/smaller */
--hero-phone-top:   650px;   /* move up/down (negative = up) */
--hero-phone-right: -200px;   /* move left/right (negative = push off screen edge to the right; positive = pull inward) */
}

/* Make the hero a positioning context and allow overlap into next sections */
.hero{
position: relative;
overflow: visible; /* so the phone can overflow to the right/bottom if needed */
}

/* We don't need special positioning on the wrapper */
.hero__visual{
position: static;
}

/* Absolutely position the phone for precise control */
.hero__phone{
position: absolute;
top: var(--hero-phone-top);
right: var(--hero-phone-right);
width: var(--hero-phone-width);
height: auto;
max-width: none;
z-index: 1;
/* optional shadow */
filter: drop-shadow(0 28px 80px rgba(0,0,0,0.25));
}

/* Keep text above if needed */
.hero__text{ position: relative; z-index: 2; }

/* Mobile: stack and center the phone so it doesn’t break the layout */
@media (max-width: 780px){
.hero__phone{
  position: static;
  width: min(88vw, 560px);
  transform: none;
  margin: 16px auto 0;
  display: block;
}
}
.hero{ overflow: visible; position: relative; }
.hero__phone{ z-index: 1; }          /* hero phone below the glass */
.features{ position: relative; z-index: 2; }  /* glass sits above phone */


/* Features section spacing */
#features, .features {
margin-top: clamp(280px, 30vw, 400px);
}

/* ===== Features — Frosted Glass Card (no spine) ===== */
#features, .features{
/* keep your own margin-top clamp; this won't override it */
font-family: "SF Pro", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
}

.features__frame, .features__inner{ max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* The glass card wrapper (match any of your older wrappers) */
.features__glass,
.features .features-card,
.features .feat-accordion-wrap{
background: rgba(255,255,255,0.55);                 /* semi-transparent white */
backdrop-filter: blur(18px) saturate(140%);
-webkit-backdrop-filter: blur(18px) saturate(140%);  /* Safari */
border: 1px solid rgba(255,255,255,0.36);
border-radius: 24px;
box-shadow: 0 30px 90px rgba(0,0,0,0.15);
padding: clamp(28px, 5vw, 44px);
overflow: hidden;

display: grid;
grid-template-columns: 1.05fr .95fr;  /* left text | right phone */
gap: clamp(24px, 6vw, 72px);
align-items: start;
}

/* Left column */
.features__left{ align-self: start; }

.features__title{
font-weight: 800; font-size: clamp(36px, 4vw, 56px); line-height: 1.05;
color:#0b0b0b; margin: 0 0 6px;
}

/* Tabs/rows list (support your older classnames) */
.feat-accordion, .features__tabs, .features__list{
display: block; margin-top: 12px;
}

/* Each clickable row (Appar/Web/Enheter/Nätverk) */
.feat-tab, .features__tab{
width: 100%;
display: flex; justify-content: space-between; align-items: center;
padding: 16px 0;
background: transparent; border: 0; cursor: pointer;
font-weight: 800; font-size: 22px; color:#0b0b0b;
position: relative;
}
.feat-tab + .feat-tab, .features__tab + .features__tab{ border-top: 1px solid rgba(0,0,0,0.14); }
.feat-tab .chev{ transition: transform .2s ease; opacity:.7; }
.feat-tab.is-active .chev, .features__tab.is-active .chev{ transform: rotate(180deg); }

/* Panel text */
.feat-panel, .feature__panel, .features__item{ display: none; padding: 10px 0 18px; }
.feat-panel.is-open, .feature__panel.is-open, .features__item.is-visible{ display: block; }
.feat-panel p, .feature__panel p, .features__item p{
font-size: 16px; line-height: 1.7; color:#1f2a32; margin: .4rem 0;
}

/* Right column phone */
.features__right, .features__phone-holder{
display: flex; justify-content: flex-end; align-items: flex-start; min-height: 420px;
}
.features__phone-img, .phone-img, .features__right img{
display:block; width: min(46vw, 560px); height:auto;
filter: drop-shadow(0 24px 70px rgba(0,0,0,.18));
}

/* Rounded outer silhouette like Figma */
.features__glass::after{
content:""; position:absolute; inset:0;
border-radius: 24px;
box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
pointer-events:none;
}

/* Responsive stack */
@media (max-width: 980px){
.features__glass{ grid-template-columns: 1fr; }
.features__right, .features__phone-holder{ justify-content:center; }
.features__phone-img, .phone-img, .features__right img{ width: min(82vw, 520px); }
}

/* Frosted glass is already styled — just ensure it's a two-column grid */
.features__glass{
  display: grid;
  grid-template-columns: 1.05fr .95fr; /* left | right */
  gap: clamp(24px, 6vw, 72px);
  align-items: start;
}

/* Right column layout */
.features__right{
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  min-height: 420px; /* space for the phone */
}

/* Phone mockups (swap by class) */
.phone-img{
  display: none;
  width: min(46vw, 560px);   /* scale nicely in the card */
  height: auto;
  filter: drop-shadow(0 24px 70px rgba(0,0,0,.18));
}
.phone-img.is-active{ display: block; }

/* Mobile: stack nicely */
@media (max-width: 980px){
  .features__glass{ grid-template-columns: 1fr; }
  .features__right{ justify-content: center; }
  .phone-img{ width: min(82vw, 520px); }
}

/* Frosted glass container (keep your earlier look, ensure grid) */
.features__glass{
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid rgba(255,255,255,0.36);
  border-radius: 24px;
  box-shadow: 0 30px 90px rgba(0,0,0,0.15);
  padding: clamp(28px, 5vw, 44px);

  display: grid;
  grid-template-columns: 1.05fr .95fr;   /* left | right */
  gap: clamp(24px, 6vw, 72px);
  align-items: start;
  overflow: hidden;                      /* glass keeps everything inside */
}

/* Right column holds one phone */
.features__right{
  position: relative;
  display: flex;
  justify-content: center;   /* or flex-end if you want it hugging the right edge */
  align-items: flex-start;
  min-height: 520px;         /* gives room so the phone doesn't overflow */
}

/* Only the active phone shows; size is easy to tweak */
.phone-img{
  display: none;
  width: min(28vw, 320px);    /* <-- phone size inside glass (adjust if needed) */
  height: auto;
  filter: drop-shadow(0 18px 60px rgba(0,0,0,.18));
}
.phone-img.is-active{ display: block; }

/* Mobile stack */
@media (max-width: 980px){
  .features__glass{ grid-template-columns: 1fr; }
  .features__right{ justify-content: center; min-height: auto; }
  .phone-img{ width: min(82vw, 520px); }
}

/* Phones inside the frosted glass (right column) */
.features__right{
  position: relative;
  display: flex;
  justify-content: center;   /* or flex-end if you want it snug to the right */
  align-items: flex-start;
  min-height: 520px;         /* gives room so the phone doesn’t overflow */
}

.features__right .phone-img{
  display: none;             /* only the active one shows */
  width: clamp(200px, 22vw, 280px);  /* <<< phone size – tweak this */
  height: auto;
  filter: drop-shadow(0 18px 60px rgba(0,0,0,.18));
}

.features__right .phone-img.is-active{
  display: block;
}

/* === Reusable frosted glass === */
.glass-card{
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid rgba(255,255,255,0.36);
  border-radius: 24px;
  box-shadow: 0 30px 90px rgba(0,0,0,0.15);
  padding: clamp(28px, 5vw, 44px);
  overflow: hidden;
  min-height: 500px;
}

/* === Buy section === */
.buy{ margin-top: clamp(100px, 12vw, 220px); }
.buy__frame{ max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.buy__card{ position: relative; }

.buy__grid{
  display: grid;
  grid-template-columns: 1.05fr .95fr;  /* left | right like your Figma */
  gap: clamp(24px, 6vw, 72px);
  align-items: center;
}

.buy__title{
  font-family: "SF Pro", -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 800;
  font-size: clamp(20px, 2.6vw, 28px);
  text-align: center;
  margin: 4px 0 20px;
}

/* Pills */
.pill-group{
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 14px;
}

.pill{
  appearance: none;
  background: #fff;              /* white background by default */
  border: 1px solid #000;        /* black border */
  color: #000;                   /* black text */
  font-weight: 700;
  font-size: 14px;
  padding: 10px 18px;
  border-radius: 999px;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.pill.is-active{
  background: #000;              /* solid black background */
  color: #fff;                   /* white text */
  border-color: #000;            /* black border */
  box-shadow: 0 6px 20px rgba(0,0,0,.12);
}


/* Price line */
.price-line{
  display: flex; align-items: center; justify-content: center;
  gap: 14px; border: 1px solid #e3e7ea; border-radius: 14px;
  padding: 12px 16px; margin: 10px auto 18px; width: min(460px, 92%);
}
.price-line .dot{
  width: 10px; height: 10px; border: 2px solid #0b465b; border-radius: 999px; display:inline-block;
}
.price-label{ color:#0b0b0b; font-weight: 600; }
.price-amount{ color:#0b0b0b; font-weight: 800; }

/* CTA pill button (uses your existing .btn.btn--solid) */
.buy__cta{
  display: inline-block;
  margin: 10px auto 14px;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 16px; font-weight: 700;
}

/* Buy CTA button (default state) */
.buy__cta {
  background: #fff !important;   /* white background */
  color: #000 !important;        /* black text */
  border: 2px solid #000 !important;
  transition: all 0.25s ease;
}

/* Hover state */
.buy__cta:hover {
  background: #000 !important;   /* black background */
  color: #fff !important;        /* white text */
}


/* Payments row */
.buy__payments img{ display:block; margin: 10px auto 0; height: 18px; width: auto; opacity: .9 }

/* Right phone inside glass */
.buy__right{ display:flex; justify-content:center; }
.buy__phone{
  width: min(36vw, 420px);
  height: auto;
  filter: drop-shadow(0 18px 60px rgba(0,0,0,.18));
}

/* Responsive stack */
@media (max-width: 980px){
  .buy__grid{ grid-template-columns: 1fr; }
  .buy__title{ text-align:center; }
  .price-line{ width: 100%; }
}

/* Make the Buy glass sit ABOVE the hero phone */
.hero__phone { z-index: 1; }
.buy, .buy__card { position: relative; z-index: 3; }  /* higher than Features (2) */

/* Pill selected state (if not already present) */
.pill { cursor: pointer; user-select: none; }
.pill.is-active{
  background: #0b465b; color:#fff; border-color:#0b465b;
  box-shadow: 0 6px 20px rgba(0,0,0,.12);
}

/* Price line + old price */
.price-line{ position: relative; }
.price-amount{ font-weight: 800; }
.price-old{
  display: none;
  margin-left: 10px;
  color: #8b8b8b;
  text-decoration: line-through;
  font-weight: 600;
}
.price-old.is-visible{ display: inline; }

.buy__card.glass-card {
  min-height: 500px;       /* ensures it's tall enough */
  display: flex;           /* enable flexbox */
  flex-direction: column;  /* stack items vertically */
  justify-content: center; /* center vertically */
  align-items: center;     /* center horizontally */
  text-align: center;      /* optional: center text */
}

/* Move Buy section content more left */
.buy__grid {
  justify-content: flex-start; /* push everything to the left */
  gap: 20rem; /* adjust spacing between left column and phone */
}

.buy__left {
  flex: 0 0 55%; /* adjust how wide the left column is */
}

.buy__right {
  flex: 0 0 40%; /* phone takes less/more space depending on this */
}

/* Right column phone */
.buy__right {
  position: relative;
  display: flex;
  justify-content: center;   /* center the phone */
  align-items: flex-start;
  min-height: 480px;         /* space for phone */
}

.buy__phone-holder {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
}

.buy__phone {
  display: block;
  width: clamp(160px, 18vw, 240px);  /* responsive size */
  height: auto;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,.18));
}


/* Section spacing */
.why {
  margin-top: clamp(120px, 12vw, 200px);
  font-family: "SF Pro", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
}

.why__frame {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.why__title {
  font-weight: 800;
  font-size: clamp(36px, 4vw, 56px);
  margin-bottom: clamp(36px, 5vw, 64px);
  color: #0b0b0b;
}

/* Grid of cards */
.why__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(20px, 4vw, 40px);
}

/* Each card */
.why__card {
  background: #fff;
  border-radius: 20px;
  padding: clamp(20px, 3vw, 28px);
  text-align: left;
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

.why__icon {
  width: 48px;
  height: auto;
  margin-bottom: 12px;
}

.why__card-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #0b0b0b;
}

.why__card-text {
  font-size: 16px;
  line-height: 1.6;
  color: #1f2a32;
}
/* Make sure Why section appears in front of hero phone */
#why, .why {
  position: relative;
  z-index: 10;   /* higher than the hero phone */
}
/* Why section container */
#why {
  margin-top: clamp(180px, 20vw, 280px);
  position: relative;
  z-index: 10; /* sit in front of hero phone */
  font-family: "SF Pro", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
}

/* Frosted glass wrapper */
.why__glass {
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid rgba(255,255,255,0.36);
  border-radius: 24px;
  box-shadow: 0 30px 90px rgba(0,0,0,0.15);
  padding: clamp(28px, 5vw, 44px);
  overflow: hidden;
}

/* Headline inside glass */
.why__title {
  font-weight: 800;
  font-size: clamp(36px, 4vw, 56px);
  margin-bottom: 32px;
  text-align: left;
}

/* Cards layout */
.why__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 40px);
}

.why__card {
  background: white;
  border-radius: 18px;
  padding: 24px;
  text-align: left;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.why__card h3 {
  font-weight: 700;
  font-size: 20px;
  margin-top: 12px;
  margin-bottom: 8px;
}

.why__card p {
  font-size: 16px;
  line-height: 1.6;
  color: #1f2a32;
}

/* Icon */
.why__icon {
  width: 40px;
  height: 40px;
}


/* Ensure FAQ sits above the hero phone */
.faq { position: relative; z-index: 12; margin-top: clamp(140px, 14vw, 220px); }
.faq__frame { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

.faq__title{
  font-family: "SF Pro", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 4vw, 56px);
  margin-bottom: clamp(18px, 3vw, 28px);
  color: #0b0b0b;
}

/* Two-column: left accordion, right phone */
.faq__layout{
  display: grid;
  grid-template-columns: minmax(520px, 1fr) minmax(360px, 0.9fr);
  gap: clamp(20px, 5vw, 60px);
  align-items: start;
}

/* Accordion list */
.faq__q{
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  background: transparent; border: none; cursor: pointer;
  padding: 16px 0;
  font-weight: 700; font-size: 16px; color: #0b0b0b;
  border-bottom: 1px solid rgba(0,0,0,0.2);
  text-align: left;
}
.faq__q[aria-expanded="true"] .faq__chev{ transform: rotate(180deg); }
.faq__chev{ transition: transform .2s ease; opacity: .85; }

/* Answer box */
.faq__a-wrap[hidden]{ display: none; }
.faq__a-wrap{ padding-top: 10px; }
.faq__a{
  background: #ffffff;
  border-radius: 12px;
  padding: 16px 18px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.08);
  color: #1f2a32;
  line-height: 1.6;
  font-size: 15px;
}

/* ===== FAQ phone controls (easy knobs) ===== */
.faq {
  /* tweak these three to adjust the phone globally for the FAQ section */
  --faq-phone-width: clamp(500px,20vw, 900px);  /* size */
  --faq-phone-tx: -150px;                           /* horizontal shift */
  --faq-phone-ty: -200px;                           /* vertical shift */
  --faq-phone-rotate: 0deg;                      /* optional rotation */
  --faq-phone-z: 1;                              /* z-index relative to FAQ content */
}

.faq__phone {
  position: relative;
  z-index: var(--faq-phone-z);
  display: flex;
  justify-content: center;  /* center in the right column; change to flex-end if you want it hugging the edge */
  align-items: flex-start;
  overflow: visible;
}

.faq__phone-img {
  display: block;
  width: var(--faq-phone-width);
  height: auto;
  transform: translate(var(--faq-phone-tx), var(--faq-phone-ty)) rotate(var(--faq-phone-rotate));
  filter: drop-shadow(0 24px 70px rgba(0,0,0,.18));
  user-select: none;
  pointer-events: none;
}

/* Mobile: keep it a bit smaller and centered */
@media (max-width: 980px){
  .faq {
    --faq-phone-width: clamp(220px, 58vw, 420px);
    --faq-phone-tx: 0px;
    --faq-phone-ty: 0px;
  }
}

/* Global arrow icon styling */
.icon-arrow {
  width: 28px;   /* adjust size */
  height: auto;
  display: inline-block;
  transition: transform .25s ease;
  opacity: 0.75;
}

/* Rotate arrow when active/open */
.is-active .icon-arrow,
button[aria-expanded="true"] .icon-arrow {
  transform: rotate(180deg);
  opacity: 1;
}


/* Contact section */
/* Reset Contact spacing to normal, then fine-tune */
.contact {
  position: relative;
  margin-top: 20px;      /* small gap; adjust as needed */
  margin-bottom: 0;
  z-index: 15;           /* above the phone so it overlaps visually */
}

/* If you added earlier negative margins or transforms, remove them */


.contact__frame {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Reuse frosted glass from features */
.contact__glass {
  position: relative;
  z-index: 16; /* keep on top */
  padding: clamp(28px, 5vw, 44px);
  display: block;
  margin-top: 100px;
}

.contact__title {
  font-family: "SF Pro", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 3.4vw, 42px);
  margin: 0 0 20px;
  color: #0b0b0b;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 16px;
}
.contact__field--full { grid-column: 1 / -1; }

.contact__field input,
.contact__field textarea {
  width: 100%;
  border: 1px solid #e3e7ea;
  background: #ffffff;
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 16px;
}

.contact__submit {
  display: inline-block;
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 700;
  margin-top: 8px;
}

/* Contact grid: two clean columns, no overlap */
.contact__grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)); /* <-- minmax(0) prevents overflow */
  column-gap: 20px;  /* space between Name and Phone */
  row-gap: 14px;
}

/* Ensure inputs obey the grid width and don't spill */
.contact__field{ min-width: 0; }              /* important with CSS Grid */
.contact__field input,
.contact__field textarea{
  width: 100%;
  box-sizing: border-box;
}

/* Full‑width rows (Email + Comment) stay across both columns */
.contact__field--full{ grid-column: 1 / -1; }

/* Stack on mobile */
@media (max-width: 900px){
  .contact__grid{ grid-template-columns: 1fr; }
}

/* Button color just for the Contact section */
.contact .contact__submit{
  background:rgb(255, 255, 255);      /* normal */
  color: #000000;
  border-color:rgb(0, 0, 0);
}
.contact .contact__submit:hover{
  background:rgb(0, 0, 0);      /* hover */
  border-color:rgb(0, 0, 0);
  color:#fff
}

/* Force SF Pro on all form fields inside contact */
.contact input,
.contact textarea,
.contact select,
.contact button {
  font-family: "SF Pro", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;   /* match body text */
  line-height: 1.5;
  color: #0b0b0b;    /* keep it consistent with the rest */
}

.site-footer-note {
  text-align: center;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.55);  /* subtle grey */
  margin: 40px 0 20px;         /* space above and below */
  font-family: "SF Pro", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
}

#contact, .contact {
  margin-bottom: -400px !important;
  padding-bottom: 0 !important;
}

.site-footer-note {
  margin-top: 20px;   /* smaller gap above */
  margin-bottom: 10px;
}

/* Let FAQ be a positioning context and allow overlap */
.faq {
  position: relative;
  overflow: visible;         /* phone can hang outside */
  z-index: 10;
}

.faq{
  position: relative;
  z-index: 5;
}

.faq__phone{
  position: absolute;
  right: 0px;
  top: -1100px;  /* anchor to FAQ bottom */
  z-index: 1; /* behind glass */
  pointer-events: none;
}

.faq__phone img{
  width: 520px;
  height: auto;
  transform-origin: right bottom;
  transform: translate(0px, 1700px) scale(1.4); /* your working values */
  filter: drop-shadow(0 24px 70px rgba(0,0,0,.18));
}

/* Buy pills — scoped and strong */
section.buy .pill{
  background:#fff;
  color:#000;
  border:1px solid #000;
  font-weight:700;
  transition: background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
}

section.buy .pill.is-active,
section.buy .pill[aria-pressed="true"]{
  background:#000;
  color:#fff;
  border-color:#000;
  box-shadow:0 6px 20px rgba(0,0,0,.12);
}

.site-footer-note {
  text-align: center;
  font-size: 14px;
  color: #777;          /* soft gray */
  margin: 24px 0;       /* space above/below */
  font-family: "SF Pro", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
}


/* ==================== */
/* MOBILE ADAPTATIONS   */
/* ==================== */

@media (max-width: 1024px) { /* tablet and smaller */ … }

@media (max-width: 768px) {  /* phones */ … }

@media (max-width: 480px) {  /* small phones */ … }

/* ========================== */
/* MOBILE HEADER / BURGER NAV */
/* ========================== */

/* Base: desktop = nav visible, burger hidden */
.header__hamburger { display: none; }

/* Mobile */
@media (max-width: 768px) {
  .header__nav {
    display: none; /* hide full nav */
    position: absolute;
    top: 64px;      /* height of header */
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  }

  .header__nav.is-open {
    display: block;
  }

  .header__nav .nav__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .header__hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 36px;
    background: #f2f5f7;
    border: 1px solid #ccc;
    border-radius: 6px;
    cursor: pointer;
  }

  .hamburger-bar {
    width: 18px;
    height: 2px;
    background: #000;
    margin: 3px 0;
  }
}
/* Hide the mobile clone on desktop */
.nav__actions-mobile {
  display: none;
}

/* Mobile only */
@media (max-width: 768px) {
  /* Hide the original desktop buttons */
  .header__actions {
    display: none;
  }

  /* Show the cloned buttons inside the nav */
  .nav__actions-mobile {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 16px;
  }

  .nav__actions-mobile .btn {
    width: 100%;
    text-align: center;
  }
}

/* Default = burger hidden (desktop) */
.header__hamburger {
  display: none;
}

/* Mobile = burger visible, nav hidden */
@media (max-width: 768px) {
  .header__hamburger {
    display: flex;              /* make it show */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 36px;
    background: #f2f5f7;
    border: 1px solid #ccc;
    border-radius: 6px;
    cursor: pointer;
    margin-left: auto;          /* pushes burger to the far right */
  }

  .hamburger-bar {
    width: 18px;
    height: 2px;
    background: #000;
    margin: 3px 0;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  /* Hide the nav until burger is clicked */
  .header__nav {
    display: none;
    position: absolute;
    top: 64px; /* adjust to header height */
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    z-index: 999;
  }

  .header__nav.is-open {
    display: block;
  }
}

/* Desktop default: show nav, hide burger */
.header__hamburger{ display:none; }

/* ========= Mobile (≤768px) ========= */
@media (max-width: 768px){
  /* Ensure header row layout works on small screens */
  .header__inner{
    display:flex;                      /* IMPORTANT: avoid grid quirks */
    align-items:center;
    justify-content:space-between;
    gap:12px;
    position:relative;                 /* anchor for the dropdown menu */
    min-height:56px;                   /* header height */
  }

  /* Show burger */
  .header__hamburger{
    display:flex !important;           /* force visible */
    flex-direction:column;
    justify-content:center;
    align-items:center;
    width:40px; height:36px;
    background:#f2f5f7;
    border:1px solid #d9d9d9;
    border-radius:8px;
    cursor:pointer;
    margin-left:auto;                  /* push to far right */
    z-index:1002;                      /* above glass/nav */
  }
  .hamburger-bar{
    width:18px; height:2px;
    background:#000; margin:3px 0;
  }

  /* Hide desktop actions + nav on mobile */
  .header__actions{ display:none; }
  .header__nav{
    display:none;                      /* hidden until toggled */
    position:absolute;
    top:calc(100% + 10px);             /* just under header */
    right:0;
    background:rgba(255,255,255,.95);
    backdrop-filter:blur(12px);
    border:1px solid rgba(0,0,0,.08);
    border-radius:12px;
    padding:14px;
    box-shadow:0 16px 40px rgba(0,0,0,.18);
    z-index:1001;
    min-width:220px;
  }
  .header__nav.is-open{ display:block; }

  .nav__list{
    display:flex; flex-direction:column; gap:10px; margin:0; padding:0; list-style:none;
  }
  .nav__link{ display:block; padding:10px 8px; }
}

.header__hamburger{ outline:2px solid red !important; }