:root {
    --yellow: #f6dc38;
    --yellow-deep: #e5c91d;
    --ink: #0b0c0f;
    --ink-soft: #17191f;
    --paper: #ffffff;
    --mist: #f4f4f0;
    --line: #deded8;
    --muted: #656872;
    --facebook: #1877f2;
    --radius-sm: 14px;
    --radius-md: 24px;
    --radius-lg: 36px;
    --shadow-sm: 0 14px 40px rgba(11, 12, 15, .08);
    --shadow-lg: 0 32px 90px rgba(0, 0, 0, .22);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 92px;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 17px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

img {
    max-width: 100%;
}

a {
    color: inherit;
}

.container {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
    padding: 0;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 9999;
    padding: 10px 18px;
    color: var(--ink);
    background: var(--yellow);
    border-radius: 8px;
    transform: translateY(-160%);
    transition: transform .2s ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    background: rgba(11, 12, 15, .94);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    backdrop-filter: blur(16px);
}

.header-inner {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
}

.brand img {
    display: block;
    width: 148px;
    max-height: 48px;
    object-fit: contain;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.main-nav a {
    color: rgba(255, 255, 255, .82);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .01em;
    text-decoration: none;
    transition: color .2s ease;
}

.main-nav a:hover,
.main-nav a:focus {
    color: var(--yellow);
}

.main-nav .nav-cta {
    padding: 11px 20px;
    color: var(--ink);
    background: var(--yellow);
    border-radius: 999px;
}

.main-nav .nav-cta:hover,
.main-nav .nav-cta:focus {
    color: var(--ink);
    background: #ffffff;
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    padding: 11px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 12px;
}

.menu-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: #ffffff;
    border-radius: 2px;
}

.hero {
    position: relative;
    min-height: 820px;
    padding: 160px 0 100px;
    overflow: hidden;
    color: #ffffff;
    background:
        linear-gradient(120deg, rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(30deg, rgba(255,255,255,.02) 1px, transparent 1px),
        var(--ink);
    background-size: 72px 72px, 72px 72px, auto;
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 120px;
    background: linear-gradient(to bottom, transparent, rgba(0,0,0,.32));
    pointer-events: none;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
    pointer-events: none;
}

.hero-orb-one {
    width: 560px;
    height: 560px;
    top: 84px;
    right: -180px;
    background: radial-gradient(circle, rgba(246, 220, 56, .26), rgba(246, 220, 56, 0) 68%);
}

.hero-orb-two {
    width: 360px;
    height: 360px;
    left: -190px;
    bottom: -80px;
    border: 1px solid rgba(246, 220, 56, .28);
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(470px, .98fr);
    align-items: center;
    gap: 80px;
}

.eyebrow,
.section-kicker {
    margin: 0 0 18px;
    color: var(--yellow-deep);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .17em;
    line-height: 1.4;
    text-transform: uppercase;
}

.hero h1 {
    max-width: 720px;
    margin: 0;
    color: #ffffff;
    font-size: clamp(46px, 5.2vw, 76px);
    font-weight: 800;
    letter-spacing: -.055em;
    line-height: 1.03;
}

.hero-lead {
    max-width: 650px;
    margin: 28px 0 0;
    color: rgba(255, 255, 255, .74);
    font-size: 20px;
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 36px;
}

.button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    padding: 13px 25px;
    border: 2px solid transparent;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    transition: transform .2s ease, background-color .2s ease, color .2s ease, border-color .2s ease;
}

.button:hover,
.button:focus {
    text-decoration: none;
    transform: translateY(-2px);
}

.button-primary {
    color: var(--ink);
    background: var(--yellow);
}

.button-primary:hover,
.button-primary:focus {
    color: var(--ink);
    background: #ffffff;
}

.button-ghost {
    color: #ffffff;
    border-color: rgba(255,255,255,.28);
    background: rgba(255,255,255,.04);
}

.button-ghost:hover,
.button-ghost:focus {
    color: var(--ink);
    border-color: #ffffff;
    background: #ffffff;
}

.button-dark {
    color: #ffffff;
    background: var(--ink);
}

.button-dark:hover,
.button-dark:focus {
    color: var(--ink);
    background: var(--yellow);
}

.hero-proof {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    margin-top: 48px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 18px;
    overflow: hidden;
    background: rgba(255,255,255,.1);
}

.hero-proof div {
    display: flex;
    min-width: 0;
    flex-direction: column;
    padding: 18px 16px;
    background: rgba(11,12,15,.88);
}

.hero-proof strong {
    color: var(--yellow);
    font-size: 15px;
}

.hero-proof span {
    margin-top: 3px;
    color: rgba(255,255,255,.58);
    font-size: 12px;
}

.hero-product {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-product::before {
    content: "";
    position: absolute;
    width: 430px;
    height: 430px;
    border: 1px solid rgba(246,220,56,.3);
    border-radius: 50%;
}

.price-float,
.measure-float {
    position: absolute;
    z-index: 8;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255,255,255,.14);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(16px);
}

.price-float {
    top: 30px;
    right: -18px;
    padding: 18px 22px;
    color: var(--ink);
    background: var(--yellow);
    border-radius: 20px 20px 4px 20px;
}

.price-float span,
.price-float small {
    font-size: 12px;
    font-weight: 700;
}

.price-float strong {
    font-size: 40px;
    letter-spacing: -.04em;
    line-height: 1;
}

.measure-float {
    left: -22px;
    bottom: 82px;
    padding: 15px 18px;
    color: #ffffff;
    background: rgba(23,25,31,.86);
    border-radius: 4px 18px 18px 18px;
}

.measure-float strong {
    color: var(--yellow);
    font-size: 14px;
}

.measure-float span {
    margin-top: 4px;
    color: rgba(255,255,255,.68);
    font-size: 12px;
}

.storage-bin {
    position: relative;
    z-index: 4;
    width: 420px;
    height: 330px;
    margin-top: 42px;
    transform: perspective(900px) rotateY(-7deg);
}

.bin-lid {
    position: absolute;
    z-index: 4;
    top: 12px;
    left: 0;
    width: 100%;
    height: 62px;
    background: linear-gradient(180deg, #ffe558 0%, var(--yellow) 62%, #cbae08 100%);
    border: 2px solid #ffe975;
    border-bottom-color: #9f8b0a;
    border-radius: 18px 18px 12px 12px;
    box-shadow: 0 14px 22px rgba(0,0,0,.32);
    transform: perspective(400px) rotateX(8deg);
}

.bin-lid::before,
.bin-lid::after {
    content: "";
    position: absolute;
    top: 16px;
    width: 52px;
    height: 18px;
    border-radius: 7px;
    background: rgba(0,0,0,.16);
}

.bin-lid::before { left: 38px; }
.bin-lid::after { right: 38px; }

.bin-lid span {
    position: absolute;
    inset: 12px 96px;
    border: 2px solid rgba(255,255,255,.22);
    border-radius: 8px;
}

.bin-rim {
    position: absolute;
    z-index: 3;
    top: 61px;
    left: 14px;
    width: calc(100% - 28px);
    height: 30px;
    background: #24262c;
    border: 1px solid #3b3d44;
    border-radius: 5px 5px 12px 12px;
}

.bin-body {
    position: absolute;
    z-index: 2;
    top: 74px;
    left: 30px;
    width: calc(100% - 60px);
    height: 230px;
    background:
        linear-gradient(90deg, rgba(255,255,255,.04), transparent 22%, transparent 78%, rgba(255,255,255,.035)),
        linear-gradient(180deg, #25272d, #101115 85%);
    border: 1px solid #3d3f46;
    border-radius: 10px 10px 28px 28px;
    box-shadow: inset 0 -28px 40px rgba(0,0,0,.32), 0 36px 60px rgba(0,0,0,.38);
}

.bin-body::before,
.bin-body::after {
    content: "";
    position: absolute;
    top: 34px;
    bottom: 34px;
    width: 3px;
    border-radius: 3px;
    background: rgba(255,255,255,.07);
}

.bin-body::before { left: 42px; }
.bin-body::after { right: 42px; }

.bin-brand {
    position: absolute;
    top: 82px;
    left: 50%;
    display: flex;
    align-items: center;
    gap: 9px;
    color: #ffffff;
    font-size: 25px;
    font-weight: 900;
    letter-spacing: .06em;
    transform: translateX(-50%);
}

.bin-brand i {
    color: var(--yellow);
}

.bin-lock {
    position: absolute;
    top: -13px;
    left: 50%;
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    color: var(--ink);
    background: var(--yellow);
    border-radius: 50%;
    box-shadow: 0 5px 12px rgba(0,0,0,.35);
    transform: translateX(-50%);
}

.bin-shadow {
    position: absolute;
    z-index: 1;
    right: 28px;
    bottom: 0;
    left: 28px;
    height: 35px;
    background: rgba(0,0,0,.6);
    border-radius: 50%;
    filter: blur(17px);
}

.product-caption {
    position: absolute;
    right: 0;
    bottom: 10px;
    left: 0;
    margin: 0;
    color: rgba(255,255,255,.68);
    font-size: 13px;
    text-align: center;
}

.product-caption i {
    margin-right: 7px;
    color: var(--yellow);
}

.trust-strip {
    position: relative;
    z-index: 5;
    color: var(--ink);
    background: var(--yellow);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.trust-grid div {
    display: flex;
    min-height: 104px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 22px;
    border-right: 1px solid rgba(11,12,15,.15);
    font-size: 14px;
    font-weight: 800;
    text-align: center;
}

.trust-grid div:last-child {
    border-right: 0;
}

.trust-grid i {
    font-size: 21px;
}

.section {
    padding: 110px 0;
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 55px;
    text-align: center;
}

.section-heading-left {
    max-width: 700px;
    margin-right: auto;
    margin-left: 0;
    text-align: left;
}

.section h2,
.security-section h2,
.contact-section h2 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(38px, 4.4vw, 62px);
    font-weight: 800;
    letter-spacing: -.045em;
    line-height: 1.08;
}

.section-heading > p:last-child,
.section-copy > p,
.coverage-copy > p,
.faq-intro > p:last-child {
    color: var(--muted);
}

.section-heading > p:last-child {
    max-width: 660px;
    margin: 20px auto 0;
    font-size: 19px;
}

.section-heading-left > p:last-child {
    margin-left: 0;
}

.box-section {
    background: var(--paper);
}

.box-grid {
    display: grid;
    grid-template-columns: minmax(420px, .92fr) minmax(0, 1.08fr);
    align-items: center;
    gap: 95px;
}

.box-visual {
    position: relative;
    min-height: 510px;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at 50% 42%, rgba(246,220,56,.24), transparent 55%),
        var(--mist);
    border: 1px solid #e6e6df;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.box-visual::before {
    content: "";
    position: absolute;
    width: 380px;
    height: 380px;
    border: 1px dashed rgba(11,12,15,.18);
    border-radius: 50%;
}

.storage-bin-small {
    margin-top: 72px;
    transform: perspective(900px) rotateY(-7deg) scale(.84);
}

.size-label {
    position: absolute;
    z-index: 9;
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.size-label::before,
.size-label::after {
    content: "";
    position: absolute;
    background: rgba(11,12,15,.35);
}

.size-label-top {
    top: 56px;
    left: 50%;
    width: 320px;
    text-align: center;
    transform: translateX(-50%);
}

.size-label-top::before {
    top: 22px;
    left: 0;
    width: 100%;
    height: 1px;
}

.size-label-top::after {
    top: 17px;
    left: 0;
    width: 1px;
    height: 11px;
    box-shadow: 319px 0 0 rgba(11,12,15,.35);
}

.size-label-side {
    top: 225px;
    right: 32px;
    height: 175px;
    writing-mode: vertical-rl;
}

.size-label-side::before {
    top: 0;
    right: 26px;
    width: 1px;
    height: 100%;
}

.capacity-badge {
    position: absolute;
    z-index: 10;
    right: 26px;
    bottom: 26px;
    display: flex;
    width: 106px;
    height: 106px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: var(--ink);
    background: var(--yellow);
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
}

.capacity-badge strong {
    font-size: 33px;
    line-height: 1;
}

.capacity-badge span {
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.section-copy h2 {
    margin-bottom: 25px;
}

.section-copy > p {
    margin: 0;
    font-size: 18px;
}

.object-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.object-chips span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    color: #3f424b;
    background: var(--mist);
    border: 1px solid #e2e2dc;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
}

.object-chips i {
    color: #9b8600;
}

.security-note {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 32px;
    padding: 22px;
    background: var(--ink);
    border-radius: 18px;
}

.security-note > i {
    display: grid;
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
    place-items: center;
    color: var(--ink);
    background: var(--yellow);
    border-radius: 50%;
}

.security-note div {
    display: flex;
    flex-direction: column;
}

.security-note strong {
    color: #ffffff;
    font-size: 15px;
}

.security-note span {
    margin-top: 3px;
    color: rgba(255,255,255,.62);
    font-size: 13px;
}

.process-section {
    background: var(--mist);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.step-card {
    position: relative;
    min-height: 315px;
    padding: 34px 28px 28px;
    background: #ffffff;
    border: 1px solid #e4e4de;
    border-radius: var(--radius-md);
    box-shadow: 0 12px 34px rgba(11,12,15,.04);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.step-card:hover {
    border-color: var(--yellow-deep);
    box-shadow: var(--shadow-sm);
    transform: translateY(-6px);
}

.step-number {
    position: absolute;
    top: 24px;
    right: 24px;
    color: #d8d8d2;
    font-size: 15px;
    font-weight: 900;
    letter-spacing: .12em;
}

.step-card > i {
    display: grid;
    width: 58px;
    height: 58px;
    place-items: center;
    color: var(--ink);
    background: var(--yellow);
    border-radius: 18px;
    font-size: 22px;
}

.step-card h3 {
    margin: 24px 0 12px;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -.02em;
}

.step-card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.use-section {
    background: #ffffff;
}

.use-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.use-card {
    display: flex;
    min-height: 230px;
    flex-direction: column;
    justify-content: space-between;
    gap: 32px;
    padding: 30px;
    color: #ffffff;
    background: var(--ink-soft);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: transform .25s ease, background-color .25s ease;
}

.use-card:hover {
    background: var(--ink);
    transform: translateY(-5px);
}

.use-card-wide {
    grid-column: span 2;
    background:
        radial-gradient(circle at 90% 15%, rgba(246,220,56,.28), transparent 40%),
        var(--ink);
}

.use-card > i {
    color: var(--yellow);
    font-size: 28px;
}

.use-card h3 {
    margin: 0 0 8px;
    color: #ffffff;
    font-size: 21px;
    font-weight: 800;
}

.use-card p {
    margin: 0;
    color: rgba(255,255,255,.6);
    font-size: 14px;
}

.pricing-section {
    background: var(--yellow);
}

.pricing-section .section-kicker {
    color: #6c5e00;
}

.pricing-section .section-heading > p:last-child {
    color: rgba(11,12,15,.68);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
    gap: 22px;
}

.plan-card {
    position: relative;
    display: flex;
    min-height: 510px;
    flex-direction: column;
    padding: 38px 34px 34px;
    background: #ffffff;
    border: 1px solid rgba(11,12,15,.16);
    border-radius: var(--radius-md);
    box-shadow: 0 18px 48px rgba(102, 88, 0, .12);
}

.plan-card-featured {
    color: #ffffff;
    background: var(--ink);
    border-color: var(--ink);
    transform: translateY(-14px);
}

.popular-label {
    position: absolute;
    top: 0;
    right: 28px;
    padding: 9px 15px;
    color: var(--ink);
    background: var(--yellow);
    border-radius: 0 0 12px 12px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.plan-name {
    margin: 0 0 20px;
    color: #666972;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.plan-card-featured .plan-name {
    color: var(--yellow);
}

.plan-price {
    display: flex;
    align-items: flex-start;
    color: var(--ink);
    line-height: 1;
}

.plan-card-featured .plan-price {
    color: #ffffff;
}

.plan-price span {
    margin-top: 8px;
    font-size: 26px;
    font-weight: 800;
}

.plan-price strong {
    font-size: 72px;
    font-weight: 900;
    letter-spacing: -.07em;
}

.plan-period {
    margin: 6px 0 0;
    color: var(--muted);
    font-size: 14px;
}

.plan-card-featured .plan-period {
    color: rgba(255,255,255,.58);
}

.plan-total {
    margin: 18px 0 0;
    padding: 10px 13px;
    color: #474a52;
    background: var(--mist);
    border-radius: 10px;
    font-size: 13px;
}

.plan-card-featured .plan-total {
    color: rgba(255,255,255,.7);
    background: rgba(255,255,255,.08);
}

.plan-card ul {
    display: grid;
    gap: 13px;
    margin: 28px 0 34px;
    padding: 0;
    list-style: none;
}

.plan-card li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #51545d;
    font-size: 14px;
}

.plan-card-featured li {
    color: rgba(255,255,255,.72);
}

.plan-card li i {
    display: grid;
    width: 24px;
    height: 24px;
    place-items: center;
    color: var(--ink);
    background: var(--yellow);
    border-radius: 50%;
    font-size: 10px;
}

.plan-card .button {
    width: 100%;
    margin-top: auto;
}

.pricing-note {
    max-width: 760px;
    margin: 35px auto 0;
    color: rgba(11,12,15,.72);
    font-size: 14px;
    text-align: center;
}

.pricing-note i {
    margin-right: 7px;
}

.security-section {
    padding: 110px 0;
    color: #ffffff;
    background:
        radial-gradient(circle at 18% 35%, rgba(246,220,56,.16), transparent 30%),
        var(--ink);
}

.security-grid {
    display: grid;
    grid-template-columns: .86fr 1.14fr;
    align-items: center;
    gap: 90px;
}

.security-section h2 {
    color: #ffffff;
}

.security-copy > p:last-child {
    margin: 24px 0 0;
    color: rgba(255,255,255,.63);
}

.security-points {
    display: grid;
    gap: 14px;
}

.security-points > div {
    display: grid;
    grid-template-columns: 54px 1fr;
    align-items: center;
    gap: 20px;
    padding: 22px;
    background: rgba(255,255,255,.055);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 18px;
}

.security-points span {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    color: var(--ink);
    background: var(--yellow);
    border-radius: 50%;
    font-size: 13px;
    font-weight: 900;
}

.security-points p {
    display: flex;
    margin: 0;
    flex-direction: column;
    color: rgba(255,255,255,.6);
    font-size: 13px;
}

.security-points strong {
    margin-bottom: 3px;
    color: #ffffff;
    font-size: 17px;
}

.coverage-section {
    background: var(--mist);
}

.coverage-grid {
    display: grid;
    grid-template-columns: .72fr 1.28fr;
    align-items: center;
    gap: 80px;
}

.coverage-copy h2 {
    margin-bottom: 24px;
}

.coverage-copy .button {
    margin-top: 18px;
}

.zone-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
    justify-content: center;
    padding: 42px;
    background: #ffffff;
    border: 1px solid #e3e3dc;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.zone-cloud span {
    padding: 12px 17px;
    color: #464951;
    background: var(--mist);
    border: 1px solid #e1e1da;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    transition: color .2s ease, background-color .2s ease, border-color .2s ease;
}

.zone-cloud span:nth-child(3n+1) {
    color: var(--ink);
    background: var(--yellow);
    border-color: var(--yellow);
}

.zone-cloud span:hover {
    color: #ffffff;
    background: var(--ink);
    border-color: var(--ink);
}

.faq-section {
    background: #ffffff;
}

.faq-grid {
    display: grid;
    grid-template-columns: .68fr 1.32fr;
    align-items: start;
    gap: 90px;
}

.faq-intro {
    position: sticky;
    top: 120px;
}

.faq-intro h2 {
    margin-bottom: 20px;
}

.faq-list {
    border-top: 1px solid var(--line);
}

.faq-list details {
    border-bottom: 1px solid var(--line);
}

.faq-list summary {
    position: relative;
    padding: 25px 52px 25px 0;
    cursor: pointer;
    font-size: 18px;
    font-weight: 800;
    list-style: none;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary::after {
    content: "+";
    position: absolute;
    top: 20px;
    right: 0;
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    color: var(--ink);
    background: var(--yellow);
    border-radius: 50%;
    font-size: 22px;
    font-weight: 500;
}

.faq-list details[open] summary::after {
    content: "−";
    background: var(--ink);
    color: #ffffff;
}

.faq-list details p {
    margin: -4px 52px 24px 0;
    color: var(--muted);
    font-size: 15px;
}

.contact-section {
    padding: 95px 0;
    background: var(--yellow);
}

.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
}

.contact-copy .section-kicker {
    color: #6c5e00;
}

.contact-copy p:last-child {
    max-width: 580px;
    margin: 22px 0 0;
    color: rgba(11,12,15,.67);
}

.social-actions {
    display: grid;
    gap: 14px;
}

.social-button {
    display: grid;
    grid-template-columns: 54px 1fr auto;
    align-items: center;
    gap: 16px;
    min-height: 88px;
    padding: 16px 20px;
    color: #ffffff;
    border-radius: 18px;
    box-shadow: 0 14px 34px rgba(0,0,0,.14);
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease;
}

.social-button:hover,
.social-button:focus {
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-3px);
    box-shadow: 0 20px 42px rgba(0,0,0,.2);
}

.social-button > i:first-child {
    display: grid;
    width: 54px;
    height: 54px;
    place-items: center;
    background: rgba(255,255,255,.16);
    border-radius: 50%;
    font-size: 23px;
}

.social-button span {
    display: flex;
    flex-direction: column;
    font-size: 20px;
    font-weight: 900;
    line-height: 1.15;
}

.social-button small {
    margin-bottom: 4px;
    color: rgba(255,255,255,.7);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.social-button > i:last-child {
    margin-right: 4px;
}

.social-facebook {
    background: var(--facebook);
}

.social-instagram {
    background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 57%, #fcb045 100%);
}

.site-footer {
    padding: 34px 0;
    color: #ffffff;
    background: var(--ink);
    border-top: 1px solid rgba(255,255,255,.08);
}

.footer-inner {
    display: grid;
    grid-template-columns: 160px 1fr auto;
    align-items: center;
    gap: 28px;
}

.footer-inner > img {
    width: 128px;
}

.footer-inner p {
    margin: 0;
    color: rgba(255,255,255,.54);
    font-size: 12px;
    text-align: center;
}

.footer-social {
    display: flex;
    gap: 8px;
}

.footer-social a {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    color: var(--ink);
    background: var(--yellow);
    border-radius: 50%;
    text-decoration: none;
    transition: color .2s ease, background-color .2s ease, transform .2s ease;
}

.footer-social a:hover,
.footer-social a:focus {
    color: var(--ink);
    background: #ffffff;
    transform: translateY(-2px);
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .65s ease, transform .65s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1100px) {
    .main-nav {
        gap: 18px;
    }

    .hero-grid {
        grid-template-columns: 1fr 430px;
        gap: 40px;
    }

    .storage-bin {
        transform: perspective(900px) rotateY(-7deg) scale(.88);
    }

    .box-grid,
    .security-grid,
    .coverage-grid,
    .faq-grid {
        gap: 54px;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .step-card {
        min-height: 280px;
    }
}

@media (max-width: 900px) {
    .menu-toggle {
        display: block;
    }

    .main-nav {
        position: fixed;
        inset: 78px 0 auto;
        display: grid;
        max-height: 0;
        gap: 0;
        padding: 0 24px;
        overflow: hidden;
        background: rgba(11,12,15,.98);
        border-bottom: 1px solid rgba(255,255,255,.08);
        opacity: 0;
        transition: max-height .35s ease, opacity .25s ease, padding .35s ease;
    }

    .main-nav.is-open {
        max-height: 520px;
        padding-top: 18px;
        padding-bottom: 24px;
        opacity: 1;
    }

    .main-nav a {
        padding: 13px 4px;
        border-bottom: 1px solid rgba(255,255,255,.08);
        font-size: 16px;
    }

    .main-nav .nav-cta {
        margin-top: 14px;
        padding: 13px 20px;
        border-bottom: 0;
        text-align: center;
    }

    .hero {
        min-height: auto;
        padding: 135px 0 80px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero-copy {
        text-align: center;
    }

    .hero h1,
    .hero-lead {
        margin-right: auto;
        margin-left: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-proof {
        max-width: 680px;
        margin-right: auto;
        margin-left: auto;
    }

    .hero-product {
        width: min(560px, 100%);
        min-height: 500px;
        margin: 0 auto;
    }

    .box-grid,
    .security-grid,
    .coverage-grid,
    .faq-grid,
    .contact-inner {
        grid-template-columns: 1fr;
    }

    .box-grid,
    .security-grid,
    .coverage-grid,
    .faq-grid,
    .contact-inner {
        gap: 48px;
    }

    .box-visual {
        width: min(620px, 100%);
        margin: 0 auto;
    }

    .use-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .use-card-wide {
        grid-column: span 2;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 620px;
        margin: 0 auto;
    }

    .plan-card-featured {
        transform: none;
    }

    .plan-card {
        min-height: auto;
    }

    .faq-intro {
        position: static;
    }
}

@media (max-width: 720px) {
    .container {
        width: min(100% - 32px, 1180px);
    }

    .brand img {
        width: 132px;
    }

    .hero {
        padding-top: 125px;
    }

    .hero h1 {
        font-size: clamp(42px, 12vw, 58px);
    }

    .hero-lead {
        font-size: 18px;
    }

    .hero-actions {
        display: grid;
    }

    .hero-actions .button {
        width: 100%;
    }

    .hero-proof {
        grid-template-columns: 1fr;
    }

    .hero-proof div {
        align-items: center;
        text-align: center;
    }

    .hero-product {
        min-height: 430px;
    }

    .hero-product::before {
        width: 330px;
        height: 330px;
    }

    .storage-bin {
        margin-top: 56px;
        transform: perspective(900px) rotateY(-7deg) scale(.7);
    }

    .price-float {
        top: 8px;
        right: 0;
    }

    .measure-float {
        left: 0;
        bottom: 57px;
    }

    .product-caption {
        display: none;
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-grid div {
        min-height: 90px;
        border-bottom: 1px solid rgba(11,12,15,.15);
    }

    .section,
    .security-section {
        padding: 82px 0;
    }

    .section-heading {
        margin-bottom: 40px;
    }

    .section h2,
    .security-section h2,
    .contact-section h2 {
        font-size: clamp(36px, 10vw, 50px);
    }

    .box-visual {
        min-height: 430px;
    }

    .storage-bin-small {
        margin-top: 78px;
        transform: perspective(900px) rotateY(-7deg) scale(.68);
    }

    .size-label-top {
        width: 260px;
    }

    .size-label-top::after {
        box-shadow: 259px 0 0 rgba(11,12,15,.35);
    }

    .size-label-side {
        right: 18px;
    }

    .capacity-badge {
        width: 88px;
        height: 88px;
    }

    .capacity-badge strong {
        font-size: 27px;
    }

    .process-grid,
    .use-grid {
        grid-template-columns: 1fr;
    }

    .use-card-wide {
        grid-column: auto;
    }

    .use-card {
        min-height: 210px;
    }

    .zone-cloud {
        padding: 28px 18px;
    }

    .contact-section {
        padding: 80px 0;
    }

    .social-button {
        grid-template-columns: 48px 1fr auto;
        min-height: 80px;
        padding: 14px 16px;
    }

    .social-button > i:first-child {
        width: 48px;
        height: 48px;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }
}

@media (max-width: 430px) {
    .hero-product {
        min-height: 400px;
    }

    .storage-bin {
        transform: perspective(900px) rotateY(-7deg) scale(.58);
    }

    .price-float {
        padding: 14px 16px;
    }

    .price-float strong {
        font-size: 32px;
    }

    .measure-float {
        padding: 12px 14px;
    }

    .measure-float strong {
        font-size: 12px;
    }

    .box-visual {
        min-height: 390px;
    }

    .storage-bin-small {
        transform: perspective(900px) rotateY(-7deg) scale(.56);
    }

    .capacity-badge {
        right: 18px;
        bottom: 18px;
    }

    .security-note {
        align-items: flex-start;
    }

    .plan-card {
        padding: 32px 24px 28px;
    }

    .plan-price strong {
        font-size: 62px;
    }

    .social-button span {
        font-size: 17px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}
