@font-face { font-family: 'Poppins'; font-style: normal; font-weight: 400; font-display: swap; src: url('poppins-400.ttf') format('truetype'); }
@font-face { font-family: 'Poppins'; font-style: normal; font-weight: 500; font-display: swap; src: url('poppins-500.ttf') format('truetype'); }
@font-face { font-family: 'Poppins'; font-style: normal; font-weight: 600; font-display: swap; src: url('poppins-600.ttf') format('truetype'); }
@font-face { font-family: 'Poppins'; font-style: normal; font-weight: 700; font-display: swap; src: url('poppins-700.ttf') format('truetype'); }
@font-face { font-family: 'Poppins'; font-style: normal; font-weight: 800; font-display: swap; src: url('poppins-800.ttf') format('truetype'); }
@font-face { font-family: 'Poppins'; font-style: normal; font-weight: 900; font-display: swap; src: url('poppins-900.ttf') format('truetype'); }

:root {
  --purple: #6633cc;
  --purple-dark: #4d22a5;
  --purple-soft: #eee8ff;
  --ink: #17131f;
  --muted: #696371;
  --line: #e9e4ef;
  --white: #ffffff;
  --cream: #fbf9ff;
  --yellow: #ffd45a;
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --shadow: 0 18px 55px rgba(62, 35, 105, 0.12);
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Poppins", "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 92px 0; }
.section-soft { background: var(--cream); }
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: var(--purple);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.section-kicker::before { content: ""; width: 24px; height: 3px; border-radius: 3px; background: var(--purple); }
.section-title { margin: 0; max-width: 760px; font-size: clamp(2rem, 5vw, 4rem); line-height: 1.03; letter-spacing: -.045em; }
.section-copy { max-width: 680px; margin: 20px 0 0; color: var(--muted); font-size: 1.08rem; }

.skip-link { position: fixed; left: 16px; top: -60px; z-index: 1000; padding: 12px 18px; background: var(--ink); color: #fff; border-radius: 10px; text-decoration: none; }
.skip-link:focus { top: 16px; }

.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.94); border-bottom: 1px solid rgba(102,51,204,.1); backdrop-filter: blur(14px); }
.nav-wrap { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.brand img { width: 188px; height: auto; }
.desktop-nav { display: flex; align-items: center; gap: 25px; }
.nav-link { position: relative; color: #3f3948; font-size: .92rem; font-weight: 700; text-decoration: none; }
.nav-link::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 2px; background: var(--purple); transition: right .22s ease; }
.nav-link:hover, .nav-link:focus-visible, .nav-link.active { color: var(--purple); }
.nav-link:hover::after, .nav-link:focus-visible::after, .nav-link.active::after { right: 0; }
.nav-cta { padding: 11px 17px; border-radius: 999px; background: var(--purple); color: #fff; box-shadow: 0 8px 22px rgba(102,51,204,.22); }
.nav-cta::after { display: none; }
.menu-toggle { display: none; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 50%; background: #fff; color: var(--ink); cursor: pointer; }
.menu-toggle svg { width: 22px; height: 22px; }

.hero { position: relative; overflow: hidden; background: var(--purple); }
.hero-media { width: 100%; min-height: 400px; }
.hero-media img { width: 100%; height: auto; min-height: 400px; object-fit: cover; object-position: center; }
.hero-actions { position: static; display: grid; grid-template-columns: repeat(2, minmax(0, 260px)); justify-content: center; gap: 12px; width: min(calc(100% - 40px), 760px); margin-inline: auto; padding: 22px 0 28px; }
.hero-actions .btn { width: 100%; }
.btn { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: 12px 21px; border: 1px solid transparent; border-radius: 999px; font-weight: 800; text-decoration: none; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible, .nav-link:focus-visible, .menu-toggle:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible { outline: 3px solid rgba(255,212,90,.85); outline-offset: 3px; }
.btn-primary { background: var(--yellow); color: #231847; box-shadow: 0 13px 30px rgba(0,0,0,.2); }
.btn-light { background: #fff; color: var(--purple); box-shadow: 0 13px 30px rgba(0,0,0,.15); }
.btn-purple { background: var(--purple); color: #fff; box-shadow: 0 13px 30px rgba(102,51,204,.2); }
.btn-outline { border-color: var(--purple); color: var(--purple); background: transparent; }
.btn svg { width: 18px; height: 18px; }

.services-head { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 44px; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card { position: relative; min-height: 310px; padding: 34px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-md); background: #fff; box-shadow: 0 8px 30px rgba(43,28,72,.06); }
.service-card:nth-child(2) { background: var(--purple); color: #fff; border-color: var(--purple); }
.service-card:nth-child(3) { background: var(--purple-soft); border-color: transparent; }
.icon-box { width: 58px; height: 58px; display: grid; place-items: center; margin-bottom: 56px; border-radius: 18px; background: var(--purple); color: #fff; }
.service-card:nth-child(2) .icon-box { background: #fff; color: var(--purple); }
.service-card:nth-child(3) .icon-box { background: var(--yellow); color: var(--ink); }
.icon-box svg { width: 28px; height: 28px; }
.service-card h3 { margin: 0 0 12px; font-size: 1.5rem; letter-spacing: -.025em; }
.service-card p { margin: 0; color: var(--muted); }
.service-card:nth-child(2) p { color: rgba(255,255,255,.8); }
.card-number { position: absolute; top: 28px; right: 30px; font-size: .78rem; font-weight: 800; opacity: .55; }

.split-feature { display: grid; grid-template-columns: 1.03fr .97fr; min-height: 620px; }
.feature-image { min-height: 540px; background-size: cover; background-position: center; }
.feature-content { display: flex; flex-direction: column; justify-content: center; padding: clamp(48px, 8vw, 110px); background: var(--purple); color: #fff; }
.feature-content .section-kicker { color: var(--yellow); }
.feature-content .section-kicker::before { background: var(--yellow); }
.feature-content .section-copy { color: rgba(255,255,255,.82); }
.feature-content strong { color: #fff; }
.feature-content .btn { margin-top: 28px; align-self: flex-start; }

.promise { position: relative; min-height: 590px; display: grid; align-items: center; overflow: hidden; background-size: cover; background-position: center 42%; color: #fff; }
.promise::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(18,11,28,.87) 0%, rgba(18,11,28,.65) 45%, rgba(18,11,28,.13) 100%); }
.promise .container { position: relative; z-index: 1; }
.promise-list { display: grid; gap: 13px; margin: 34px 0 0; padding: 0; list-style: none; }
.promise-list li { display: flex; align-items: center; gap: 14px; font-size: clamp(1.25rem, 2vw, 1.7rem); font-weight: 800; }
.check-icon { width: 34px; height: 34px; display: grid; flex: 0 0 auto; place-items: center; border-radius: 50%; background: var(--yellow); color: var(--ink); }
.check-icon svg { width: 18px; height: 18px; }

.stores { overflow: hidden; }
.stores-head { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 38px; }
.carousel-controls { display: flex; gap: 9px; }
.carousel-btn { width: 48px; height: 48px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: #fff; color: var(--purple); cursor: pointer; }
.carousel-btn:hover { background: var(--purple-soft); }
.carousel-btn svg { width: 20px; height: 20px; }
.store-track { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(220px, 1fr); gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; padding: 4px 2px 18px; }
.store-track::-webkit-scrollbar { display: none; }
.store-logo { min-height: 150px; display: grid; place-items: center; scroll-snap-align: start; border: 1px solid var(--line); border-radius: 22px; background: #fff; color: var(--ink); text-decoration: none; transition: border-color .2s, transform .2s; }
.store-logo:hover { border-color: var(--purple); transform: translateY(-3px); }
.store-logo span { font-size: 1.65rem; font-weight: 900; letter-spacing: -.05em; }
.store-logo[data-store="sephora"] span { letter-spacing: .18em; font-weight: 500; }
.store-logo[data-store="temu"] span { color: #f4511e; font-weight: 900; }
.store-logo[data-store="shein"] span { letter-spacing: .12em; }
.store-logo[data-store="shopsimon"] span { color: #e35a8d; }
.store-logo[data-store="target"] span { color: #cc0000; }
.store-logo[data-store="walmart"] span { color: #0053a0; }
.store-logo[data-store="cider"] span { font-style: italic; }

.instagram-panel { display: grid; grid-template-columns: 1fr .9fr; align-items: center; overflow: hidden; border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow); }
.instagram-copy { padding: clamp(42px, 7vw, 90px); }
.instagram-copy .section-copy { margin-bottom: 28px; }
.instagram-image { align-self: end; min-height: 540px; display: flex; align-items: end; justify-content: center; background: radial-gradient(circle at 50% 55%, #efe9ff 0 32%, transparent 33%), linear-gradient(135deg,#fff 0%,#f8f5ff 100%); }
.instagram-image img { max-height: 560px; object-fit: contain; object-position: bottom; }

.cta-band { padding: 54px 0; background: var(--purple); color: #fff; }
.cta-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.cta-band h2 { margin: 0; font-size: clamp(1.8rem, 4vw, 3rem); letter-spacing: -.04em; }
.cta-band p { margin: 7px 0 0; color: rgba(255,255,255,.76); }

.site-footer { padding: 66px 0 26px; background: #17131f; color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.35fr .8fr .8fr 1fr; gap: 44px; }
.footer-brand img { width: 210px; filter: brightness(0) invert(1); }
.footer-brand p { max-width: 330px; color: #aaa4b1; }
.footer-col h3 { margin: 4px 0 18px; font-size: .83rem; text-transform: uppercase; letter-spacing: .12em; color: #d7c9ff; }
.footer-links { display: grid; gap: 10px; }
.footer-links a { color: #bdb7c3; text-decoration: none; }
.footer-links a:hover { color: #fff; }
.social-links { display: flex; gap: 10px; margin-top: 20px; }
.social-links a { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; color: #fff; }
.social-links a:hover { background: var(--purple); border-color: var(--purple); }
.social-links svg { width: 19px; height: 19px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 52px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); color: #8f8996; font-size: .86rem; }

/* Internal pages */
.page-hero { position: relative; overflow: hidden; padding: 94px 0 88px; background: var(--purple); color: #fff; }
.page-hero::before { content: ""; position: absolute; width: 430px; height: 430px; right: -130px; top: -210px; border: 72px solid rgba(255,255,255,.1); border-radius: 50%; }
.page-hero::after { content: ""; position: absolute; width: 170px; height: 170px; left: -90px; bottom: -110px; border-radius: 50%; background: var(--yellow); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero .section-kicker { color: var(--yellow); }
.page-hero .section-kicker::before { background: var(--yellow); }
.page-hero h1 { margin: 0; max-width: 850px; font-size: clamp(2.7rem, 7vw, 5.8rem); line-height: .95; letter-spacing: -.055em; }
.page-hero p:not(.section-kicker) { max-width: 650px; margin: 24px 0 0; color: rgba(255,255,255,.8); font-size: 1.12rem; }
.page-content { padding: 84px 0 100px; }
.content-card { border: 1px solid var(--line); border-radius: var(--radius-md); background: #fff; box-shadow: var(--shadow); }

.tracking-shell { max-width: 920px; margin: 0 auto; padding: clamp(28px, 6vw, 64px); }
.tracking-form { display: grid; grid-template-columns: 1fr auto; gap: 12px; margin-top: 28px; }
.field-input, .field-select, .field-textarea { width: 100%; border: 1px solid #dcd6e5; border-radius: 14px; background: #fff; color: var(--ink); transition: border-color .2s, box-shadow .2s; }
.field-input, .field-select { min-height: 56px; padding: 0 17px; }
.field-textarea { min-height: 150px; padding: 16px 17px; resize: vertical; }
.field-input:focus, .field-select:focus, .field-textarea:focus { border-color: var(--purple); box-shadow: 0 0 0 4px rgba(102,51,204,.1); outline: none; }
.field-label { display: block; margin-bottom: 8px; font-size: .9rem; font-weight: 800; }
.field-help { display: block; margin-top: 7px; color: var(--muted); font-size: .82rem; }
.tracking-result { margin-top: 28px; overflow: auto; border-radius: 16px; }
.tracking-note { display: flex; align-items: flex-start; gap: 12px; margin-top: 24px; padding: 16px; border-radius: 14px; background: var(--purple-soft); color: #4e4361; font-size: .9rem; }
.tracking-note svg { flex: 0 0 auto; width: 19px; margin-top: 2px; color: var(--purple); }

.calculator-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 24px; align-items: start; }
.rates-panel { padding: 34px; border-radius: var(--radius-md); background: var(--ink); color: #fff; }
.rates-panel h2, .calculator-card h2 { margin: 0 0 10px; font-size: 1.65rem; letter-spacing: -.03em; }
.rates-list { display: grid; gap: 10px; margin-top: 26px; }
.rate-row { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 17px 0; border-bottom: 1px solid rgba(255,255,255,.11); }
.rate-row:last-child { border-bottom: 0; }
.rate-row strong { color: var(--yellow); white-space: nowrap; }
.calculator-card { padding: clamp(28px, 5vw, 48px); }
.calculator-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 28px; }
.calculator-grid .full { grid-column: 1 / -1; }
.total-box { margin-top: 28px; padding: 26px; border-radius: 18px; background: var(--purple-soft); }
.total-row { display: flex; justify-content: space-between; gap: 18px; padding: 6px 0; color: var(--muted); }
.total-final { margin-top: 10px; padding-top: 16px; border-top: 1px solid rgba(102,51,204,.18); color: var(--ink); font-size: 1.22rem; font-weight: 900; }
.total-final strong { color: var(--purple); font-size: 2rem; }
.calculator-disclaimer { margin: 18px 0 0; color: var(--muted); font-size: .86rem; }

.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 44px; align-items: start; }
.contact-details { position: sticky; top: 112px; }
.contact-details h2, .contact-form h2 { margin: 0 0 12px; font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1; letter-spacing: -.045em; }
.contact-details > p { color: var(--muted); }
.contact-list { display: grid; gap: 13px; margin-top: 32px; }
.contact-item { display: flex; align-items: flex-start; gap: 14px; padding: 18px; border: 1px solid var(--line); border-radius: 16px; text-decoration: none; background: #fff; }
.contact-item:hover { border-color: var(--purple); }
.contact-icon { width: 40px; height: 40px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 12px; background: var(--purple-soft); color: var(--purple); }
.contact-icon svg { width: 20px; height: 20px; }
.contact-item strong { display: block; line-height: 1.25; }
.contact-item span:last-child { color: var(--muted); font-size: .9rem; }
.contact-form { padding: clamp(28px, 5vw, 48px); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 26px; }
.form-grid .full { grid-column: 1 / -1; }
.form-status { min-height: 24px; margin: 14px 0 0; color: var(--purple); font-weight: 700; }
.form-status-error { color: #b42318; }
.contact-form .btn:disabled { cursor: wait; opacity: .65; transform: none; }
.map-wrap { width: min(calc(100% - 40px), var(--container)); height: 480px; margin: 0 auto 100px; overflow: hidden; border-radius: var(--radius-md); box-shadow: var(--shadow); }
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

.placeholder-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; overflow: hidden; }
.placeholder-copy { padding: clamp(38px, 7vw, 78px); }
.placeholder-copy h2 { margin: 0 0 16px; font-size: clamp(2rem, 4vw, 3.4rem); line-height: 1.05; letter-spacing: -.04em; }
.placeholder-copy p { color: var(--muted); }
.placeholder-media { min-height: 540px; background-size: cover; background-position: center; }
.blog-teasers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 38px; }
.blog-card { min-height: 280px; display: flex; flex-direction: column; justify-content: end; padding: 28px; border-radius: 20px; background: var(--purple-soft); }
.blog-card:nth-child(2) { background: var(--purple); color: #fff; }
.blog-card:nth-child(3) { background: var(--yellow); }
.blog-card span { font-size: .78rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; opacity: .7; }
.blog-card h2 { margin: 10px 0 0; font-size: 1.5rem; line-height: 1.2; }

/* About page */
.about-intro { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(34px, 7vw, 88px); align-items: center; }
.about-visual { position: relative; overflow: hidden; aspect-ratio: 1024 / 749; border-radius: var(--radius-lg); background: var(--purple-soft); box-shadow: var(--shadow); }
.about-visual img { width: 100%; height: 100%; object-fit: contain; }
.about-visual::after { content: "Desde EE. UU. y Asia"; position: absolute; right: 22px; bottom: 22px; padding: 11px 16px; border-radius: 999px; background: #fff; color: var(--purple); font-size: .82rem; font-weight: 900; box-shadow: 0 8px 24px rgba(30,17,48,.16); }
.about-copy h2 { margin: 0; font-size: clamp(2.2rem, 5vw, 4.25rem); line-height: 1; letter-spacing: -.05em; }
.about-copy .lead { margin: 24px 0 0; color: var(--muted); font-size: clamp(1.06rem, 2vw, 1.24rem); }
.about-copy .lead strong { color: var(--ink); }
.about-highlights { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.about-highlights span { padding: 9px 13px; border-radius: 999px; background: var(--purple-soft); color: var(--purple-dark); font-size: .84rem; font-weight: 800; }

.tariffs-head { display: flex; align-items: end; justify-content: space-between; gap: 34px; margin-bottom: 40px; }
.tariff-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.tariff-card { min-height: 250px; display: flex; flex-direction: column; justify-content: space-between; padding: 28px; border: 1px solid var(--line); border-radius: 22px; background: #fff; }
.tariff-card:nth-child(2) { background: var(--purple); color: #fff; border-color: var(--purple); }
.tariff-card:nth-child(3) { background: var(--purple-soft); border-color: transparent; }
.tariff-card:nth-child(4) { background: var(--ink); color: #fff; border-color: var(--ink); }
.tariff-card h3 { margin: 0; font-size: 1.08rem; line-height: 1.3; }
.tariff-price { display: flex; align-items: baseline; gap: 7px; margin-top: 38px; }
.tariff-price strong { color: var(--purple); font-size: clamp(2.15rem, 4vw, 3.2rem); line-height: 1; letter-spacing: -.055em; }
.tariff-card:nth-child(2) .tariff-price strong, .tariff-card:nth-child(4) .tariff-price strong { color: var(--yellow); }
.tariff-price span { color: var(--muted); font-size: .85rem; font-weight: 800; }
.tariff-card:nth-child(2) .tariff-price span, .tariff-card:nth-child(4) .tariff-price span { color: rgba(255,255,255,.7); }
.shipping-note { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-top: 22px; padding: 24px 28px; border-radius: 18px; background: #fff; border: 1px solid var(--line); }
.shipping-note p { margin: 0; color: var(--muted); }
.shipping-note strong { color: var(--ink); }

.faq-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(38px, 7vw, 90px); align-items: start; }
.faq-visual { position: sticky; top: 112px; padding: 36px; overflow: hidden; border-radius: var(--radius-lg); background: linear-gradient(145deg, #f6f3ff, #ebe5ff); }
.faq-visual img { width: 100%; min-height: 360px; object-fit: contain; }
.faq-list { display: grid; gap: 12px; margin-top: 32px; }
.faq-item { border: 1px solid var(--line); border-radius: 17px; background: #fff; overflow: hidden; }
.faq-item[open] { border-color: rgba(102,51,204,.35); box-shadow: 0 12px 30px rgba(64,38,104,.08); }
.faq-item summary { position: relative; padding: 22px 62px 22px 22px; cursor: pointer; list-style: none; font-weight: 850; line-height: 1.35; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; position: absolute; right: 20px; top: 50%; width: 30px; height: 30px; display: grid; place-items: center; transform: translateY(-50%); border-radius: 50%; background: var(--purple-soft); color: var(--purple); font-size: 1.25rem; }
.faq-item[open] summary::after { content: "−"; background: var(--purple); color: #fff; }
.faq-answer { padding: 0 22px 23px; color: var(--muted); }
.faq-answer p { margin: 0; }
.faq-answer a { color: var(--purple); font-weight: 800; }

@media (max-width: 980px) {
  .site-header { backdrop-filter: none; }
  .desktop-nav { position: absolute; top: 100%; left: 0; right: 0; z-index: 99; height: calc(100dvh - 82px); padding: 32px 28px; display: flex; align-items: stretch; flex-direction: column; gap: 6px; background: #fff; overflow-y: auto; opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(-12px); transition: opacity .22s ease, transform .22s ease, visibility .22s; }
  .desktop-nav.open { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0); }
  .nav-link { padding: 15px 4px; font-size: 1.08rem; border-bottom: 1px solid var(--line); }
  .nav-link::after { display: none; }
  .nav-cta { margin-top: 14px; text-align: center; border-bottom: 0; }
  .menu-toggle { display: grid; place-items: center; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 250px; }
  .icon-box { margin-bottom: 38px; }
  .split-feature { grid-template-columns: 1fr; }
  .feature-image { min-height: 470px; }
  .instagram-panel { grid-template-columns: 1fr; }
  .instagram-image { min-height: 410px; }
  .calculator-layout, .contact-grid, .placeholder-grid, .about-intro, .faq-layout { grid-template-columns: 1fr; }
  .contact-details { position: static; }
  .placeholder-media { min-height: 440px; }
  .blog-teasers { grid-template-columns: 1fr; }
  .tariff-grid { grid-template-columns: 1fr 1fr; }
  .faq-visual { position: static; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 700px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 68px 0; }
  .nav-wrap { min-height: 72px; }
  .brand img { width: 156px; }
  .desktop-nav { height: calc(100dvh - 72px); }
  .hero-media, .hero-media img { min-height: 0; }
  .hero-actions { grid-template-columns: minmax(0, 1fr); width: auto; padding: 18px 14px 24px; }
  .hero-actions .btn { width: 100%; }
  .services-head, .stores-head { align-items: start; flex-direction: column; }
  .service-card { padding: 28px; }
  .feature-image { min-height: 390px; }
  .feature-content { padding: 58px 24px; }
  .promise { min-height: 620px; background-position: 55% center; }
  .promise::before { background: linear-gradient(90deg, rgba(18,11,28,.9), rgba(18,11,28,.45)); }
  .store-track { grid-auto-columns: 78%; }
  .instagram-copy { padding: 48px 24px; }
  .instagram-image { min-height: 360px; }
  .page-hero { padding: 72px 0 68px; }
  .page-content { padding: 64px 0 78px; }
  .tracking-form { grid-template-columns: 1fr; }
  .tracking-form .btn { width: 100%; }
  .calculator-grid, .form-grid { grid-template-columns: 1fr; }
  .calculator-grid .full, .form-grid .full { grid-column: auto; }
  .map-wrap { width: min(calc(100% - 28px), var(--container)); height: 390px; margin-bottom: 70px; }
  .about-visual { min-height: 0; }
  .tariffs-head, .shipping-note { align-items: stretch; flex-direction: column; }
  .tariff-grid { grid-template-columns: 1fr; }
  .tariff-card { min-height: 210px; }
  .faq-visual { padding: 20px; }
  .faq-visual img { min-height: 260px; }
  .cta-band-inner { align-items: stretch; flex-direction: column; }
  .cta-band .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 440px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
}

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