.nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(250, 246, 238, 0.85);
    backdrop-filter: saturate(150%) blur(10px);
    -webkit-backdrop-filter: saturate(150%) blur(10px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.nav.is-scrolled {
    border-bottom-color: var(--border-soft);
    background: rgba(250, 246, 238, 0.95);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.brand {
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    letter-spacing: -0.04em;
}

.brand-name {
    font-size: 26px;
    font-weight: 800;
    color: var(--accent);
}

.brand-name span {
    color: var(--green);
}

.brand-tag {
    font-size: 13px;
    color: var(--text-mute);
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: lowercase;
}

.nav-links {
    display: flex;
    gap: 28px;
    font-size: 15px;
    color: var(--text-soft);
}

.nav-links a:hover {
    color: var(--text);
    text-decoration: none;
}

.nav-cta {
    display: flex;
    gap: 10px;
    align-items: center;
}

@media (max-width: 880px) {
    .nav-links {
        display: none;
    }
}

.hero {
    padding: 64px 0 96px;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .hero {
        padding: 32px 0 64px;
    }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 56px;
}

@media (max-width: 960px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

.hero-title {
    margin: 18px 0 20px;
}

.hero-title em {
    color: var(--green);
    font-style: normal;
    font-weight: 800;
}

.hero-actions {
    display: flex;
    gap: 12px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.hero-bullets {
    display: flex;
    gap: 28px;
    margin-top: 36px;
    flex-wrap: wrap;
}

.hero-bullet {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-soft);
}

.hero-bullet svg {
    width: 18px;
    height: 18px;
    color: var(--green);
    flex-shrink: 0;
}

.hero-card-wrap {
    position: relative;
    aspect-ratio: 1 / 1;
    max-width: 520px;
    margin-left: auto;
    width: 100%;
    -webkit-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
}

@media (max-width: 960px) {
    .hero-card-wrap {
        margin-inline: auto;
        max-width: 420px;
    }
}

.hero-card-stage {
    position: absolute;
    inset: 0;
    background: #ffffff;
    border-radius: 38px;
    border: 1px solid var(--border-soft);
    box-shadow: 0 24px 48px -28px rgba(20, 25, 40, 0.18);
    overflow: hidden;
    touch-action: none;
    user-select: none;
    -webkit-user-select: none;
}

.card3d-scene {
    --scene-w: 92%;
    position: absolute;
    left: 50%;
    top: 50%;
    width: var(--scene-w);
    aspect-ratio: 1.78 / 1;
    transform: translate(-50%, -50%);
    transform-origin: center center;
    perspective: 2000px;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
    container-type: inline-size;
    will-change: transform;
}

.card3d-scene.is-dragging {
    cursor: grabbing;
}

.card3d {
    --rx: -4deg;
    --ry: 0deg;
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transform: rotateX(var(--rx)) rotateY(var(--ry));
    transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.card3d.is-dragging {
    transition: none;
}

.card3d-face {
    position: absolute;
    inset: 0;
    border-radius: 22px;
    color: #ffffff;
    background: linear-gradient(135deg, #1c2740 0%, #161e2e 60%, #111726 100%);
    overflow: hidden;
    isolation: isolate;
    user-select: none;
    -webkit-user-select: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: transform;
    -webkit-font-smoothing: antialiased;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.06) inset,
        0 -1px 0 rgba(0, 0, 0, 0.4) inset,
        0 18px 36px -18px rgba(8, 12, 22, 0.55);
}

.card3d-shadow {
    position: absolute;
    left: 8%;
    right: 8%;
    bottom: -8%;
    height: 22%;
    background: radial-gradient(50% 50% at 50% 50%, rgba(10, 14, 24, 0.55) 0%, rgba(10, 14, 24, 0) 70%);
    filter: blur(18px);
    pointer-events: none;
    opacity: 0.65;
    transition: opacity 320ms ease;
}

.card3d.is-dragging .card3d-shadow {
    opacity: 0.4;
}

.card3d-front,
.card3d-back {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.card3d-front {
    transform: translateZ(0);
}

.card3d-back {
    transform: rotateY(180deg) translateZ(0);
}

.card3d-face::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(80% 60% at 10% 0%, rgba(255, 255, 255, 0.14) 0%, transparent 70%),
        radial-gradient(60% 60% at 100% 100%, rgba(0, 0, 0, 0.3) 0%, transparent 60%);
    pointer-events: none;
}

.card3d-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.5;
    pointer-events: none;
}

.card3d-front {
    padding: 9% 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.card3d-front-logo {
    position: relative;
    font-size: 14cqw;
    font-weight: 800;
    letter-spacing: -0.05em;
    line-height: 0.9;
    color: #ffffff;
}

.card3d-front-logo i {
    font-style: normal;
    color: var(--green);
}

.card3d-front-url {
    position: relative;
    margin-top: 14px;
    font-size: 2.4cqw;
    font-weight: 600;
    letter-spacing: 0.14em;
    color: rgba(255, 255, 255, 0.92);
}

.card3d-back {
    padding: 6% 7% 7%;
    display: flex;
    flex-direction: column;
    gap: 2%;
}

.card3d-back-top {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
}

.card3d-back-brand {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.card3d-logo {
    font-size: 7cqw;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: #ffffff;
}

.card3d-logo i {
    font-style: normal;
    color: var(--green);
}

.card3d-slogan {
    margin-top: 4%;
    font-size: 3cqw;
    font-weight: 700;
    color: #ffffff;
}

.card3d-slogan-accent {
    font-size: 3cqw;
    font-weight: 700;
    color: var(--green);
    margin-top: 2px;
}

.card3d-back-qr-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.card3d-back-qr-label {
    font-size: 2cqw;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #ffffff;
}

.card3d-back-qr {
    width: 14cqw;
    height: 14cqw;
    background: #ffffff;
    border-radius: 8px;
    padding: 5px;
}

.card3d-back-qr svg {
    width: 100%;
    height: 100%;
    display: block;
}

.card3d-back-address {
    position: relative;
    display: flex;
    flex-direction: column;
    font-size: 2.4cqw;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.4;
    margin-top: auto;
}

.card3d-back-site {
    position: relative;
    margin-top: 4px;
    font-size: 2.6cqw;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #ffffff;
}

.card3d-back-number {
    position: relative;
    margin-top: 3%;
    font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, 'SF Mono', Menlo, monospace;
    font-size: 5.2cqw;
    letter-spacing: 0.12em;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
}

.card-float {
    --float-x: 0px;
    --float-y: 0px;
    position: absolute;
    background: var(--surface);
    border-radius: 18px;
    padding: 14px 18px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-soft);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    z-index: 3;
    transform: translate3d(var(--float-x), var(--float-y), 0);
    transition: transform 400ms cubic-bezier(0.22, 1, 0.36, 1), opacity 280ms ease;
    will-change: transform;
}

.card-float-icon {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: var(--green-soft);
    color: var(--green-dark);
    flex-shrink: 0;
}

.card-float-icon svg {
    width: 18px;
    height: 18px;
}

.card-float strong {
    font-weight: 700;
    color: var(--text);
}

.card-float small {
    display: block;
    color: var(--text-mute);
    font-size: 12px;
    margin-top: 1px;
}

.card-float-1 {
    left: 4%;
    top: 4%;
}

.card-float-2 {
    right: 0;
    bottom: 4%;
}

@media (max-width: 600px) {
    .card-float-1 { left: 0; }
    .card-float-2 { right: -6px; }
    .card-float { padding: 10px 14px; font-size: 13px; }
    .card-float-icon { width: 30px; height: 30px; }
}

.card-rotate {
    position: absolute;
    left: 50%;
    bottom: -8px;
    transform: translate(-50%, 100%);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 5;
    pointer-events: auto;
}

.card-rotate-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--border-soft);
    background: #ffffff;
    color: var(--text);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    box-shadow: 0 8px 20px -14px rgba(20, 25, 40, 0.35);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.card-rotate-btn svg {
    width: 18px;
    height: 18px;
}

.card-rotate-btn:hover {
    transform: translateY(-1px);
    border-color: var(--green);
    color: var(--green);
    box-shadow: 0 12px 24px -14px rgba(20, 25, 40, 0.4);
}

.card-rotate-btn:active {
    transform: translateY(0);
}

.card-rotate-btn:focus-visible {
    outline: 2px solid var(--green);
    outline-offset: 2px;
}

.card-rotate-hint {
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-soft);
    user-select: none;
}

@media (max-width: 600px) {
    .card-rotate {
        bottom: -4px;
        gap: 8px;
    }
    .card-rotate-btn {
        width: 34px;
        height: 34px;
    }
    .card-rotate-btn svg {
        width: 16px;
        height: 16px;
    }
    .card-rotate-hint {
        font-size: 11px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .card3d {
        transition: none;
    }
    .card-float {
        transition: none;
    }
}

.section-head {
    max-width: 720px;
    margin: 0 auto 56px;
    text-align: center;
}

.section-head h2 {
    margin: 16px 0 14px;
}

.section-head p {
    color: var(--text-soft);
}

.about {
    padding: var(--section) 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

@media (max-width: 960px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

.about-visual {
    background: linear-gradient(165deg, var(--accent) 0%, #2a2723 60%, #1a1815 100%);
    border-radius: 32px;
    padding: 48px 40px;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 18px;
}

.about-visual .eyebrow {
    align-self: flex-start;
    margin-bottom: auto;
}

.about-visual::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -30%;
    width: 90%;
    height: 90%;
    background: radial-gradient(circle at center,
        rgba(76, 177, 64, 0.38) 0%,
        rgba(76, 177, 64, 0.26) 24%,
        rgba(76, 177, 64, 0.14) 44%,
        rgba(76, 177, 64, 0.05) 62%,
        rgba(76, 177, 64, 0) 78%);
    filter: blur(28px);
    pointer-events: none;
}

.about-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
    opacity: 0.025;
    mix-blend-mode: overlay;
    pointer-events: none;
}

.about-visual h3 {
    font-size: 28px;
    line-height: 1.15;
    margin-bottom: 14px;
    position: relative;
}

.about-visual p {
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    font-size: 15px;
}

.about-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-row {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-soft);
}

.about-row:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.about-bullet {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: var(--green-soft);
    color: var(--green-dark);
    display: grid;
    place-items: center;
    flex-shrink: 0;
    font-weight: 700;
    font-size: 14px;
}

.about-row h4 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 4px;
}

.about-row p {
    color: var(--text-soft);
    font-size: 15px;
}

.steps {
    background: var(--accent);
    color: #ffffff;
    padding: var(--section) 0;
    border-radius: 48px;
    margin: 0 24px;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .steps {
        border-radius: 28px;
        margin: 0 16px;
    }
}

.steps::before {
    content: '';
    position: absolute;
    top: -60%;
    left: 50%;
    width: 140%;
    height: 140%;
    background: radial-gradient(ellipse 60% 50% at 50% 30%, rgba(76, 177, 64, 0.22) 0%, rgba(76, 177, 64, 0.12) 35%, rgba(76, 177, 64, 0.04) 65%, rgba(76, 177, 64, 0) 100%);
    transform: translateX(-50%);
    filter: blur(40px);
    pointer-events: none;
}

.steps .section-head h2 {
    color: #ffffff;
}

.steps .section-head p {
    color: rgba(255, 255, 255, 0.65);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
}

@media (max-width: 960px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 540px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }
}

.step {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    padding: 28px 24px;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    -webkit-user-select: none;
    user-select: none;
}

.step:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: var(--green);
    transform: translateY(-3px);
    box-shadow: 0 0 0 1px var(--green), 0 12px 32px rgba(76, 177, 64, 0.18);
}

.step-num {
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 13px;
    color: var(--green);
    font-weight: 600;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
}

.step h3 {
    color: #ffffff;
    margin-bottom: 8px;
    font-size: 19px;
}

.step p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.55;
}

.perks {
    padding: var(--section) 0;
}

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

@media (max-width: 960px) {
    .perks-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 540px) {
    .perks-grid {
        grid-template-columns: 1fr;
    }
}

.perk {
    background: var(--surface);
    border: 1px solid var(--border-soft);
    border-radius: 22px;
    padding: 28px 24px;
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    -webkit-user-select: none;
    user-select: none;
}

.perk:hover {
    border-color: var(--green);
    transform: translateY(-3px);
    box-shadow: 0 0 0 1px var(--green), var(--shadow-md);
}

.perk-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--green-soft);
    color: var(--green-dark);
    display: grid;
    place-items: center;
    margin-bottom: 20px;
}

.perk-icon svg {
    width: 24px;
    height: 24px;
}

.perk h3 {
    font-size: 18px;
    margin-bottom: 6px;
}

.perk p {
    color: var(--text-soft);
    font-size: 14px;
}

.faq {
    padding: var(--section) 0;
}

.faq-list {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--surface);
    border: 1px solid var(--border-soft);
    border-radius: 18px;
    overflow: hidden;
    transition: border-color 0.2s ease;
}

.faq-item.is-open {
    border-color: var(--green);
}

.faq-q {
    width: 100%;
    text-align: left;
    padding: 22px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
}

.faq-q-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--bg-soft);
    color: var(--text-soft);
    display: grid;
    place-items: center;
    flex-shrink: 0;
    transition: background 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.faq-item.is-open .faq-q-icon {
    background: var(--green);
    color: #ffffff;
    transform: rotate(45deg);
}

.faq-q-icon svg {
    width: 14px;
    height: 14px;
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.is-open .faq-a {
    max-height: 320px;
}

.faq-a-inner {
    padding: 0 24px 22px;
    color: var(--text-soft);
    font-size: 15px;
    line-height: 1.6;
}

.cta {
    padding: 0 0 var(--section);
}

.cta-inner {
    background: linear-gradient(135deg, #4cb140 0%, #3d9433 100%);
    color: #ffffff;
    border-radius: 36px;
    padding: 64px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

@media (max-width: 640px) {
    .cta-inner {
        padding: 48px 24px;
        border-radius: 24px;
    }
}

.cta-inner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
}

.cta-inner h2 {
    color: #ffffff;
    position: relative;
    margin-bottom: 14px;
}

.cta-inner p {
    color: rgba(255, 255, 255, 0.82);
    position: relative;
    max-width: 540px;
    margin: 0 auto 32px;
    font-size: 17px;
}

.cta-inner .btn {
    position: relative;
    background: #ffffff;
    color: var(--accent);
}

.cta-inner .btn:hover {
    background: var(--accent);
    color: #ffffff;
}

.footer {
    background: var(--accent);
    color: rgba(255, 255, 255, 0.7);
    padding: 64px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}

@media (max-width: 800px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.footer-brand .brand-name {
    color: #ffffff;
}

.footer-tag {
    color: rgba(255, 255, 255, 0.55);
    font-size: 14px;
    margin-top: 14px;
    max-width: 280px;
}

.footer h5 {
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.footer ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 14px;
}

.footer a:hover {
    color: #ffffff;
    text-decoration: none;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
}



/* get-card */

.get-card {
    padding: var(--section) 0;
}

.get-card-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: stretch;
}

@media (max-width: 960px) {
    .get-card-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

.get-card-info h2 {
    margin: 16px 0 18px;
}

.get-card-info .lead {
    margin-bottom: 32px;
}

.get-card-steps {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 32px;
}

.get-card-steps li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 14px 16px;
    border-radius: var(--radius-md);
    border: 1px solid transparent;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    -webkit-user-select: none;
    user-select: none;
}

.get-card-steps li:hover {
    background: var(--surface);
    border-color: var(--green);
    box-shadow: 0 0 0 1px var(--green), var(--shadow-sm);
}

.get-card-step-num {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    background: var(--accent);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 15px;
}

.get-card-steps strong {
    display: block;
    font-size: 17px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
}

.get-card-steps p {
    color: var(--text-soft);
    line-height: 1.55;
    font-size: 15px;
}

.get-card-address {
    display: flex;
    gap: 14px;
    align-items: center;
    background: var(--surface);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-md);
    padding: 18px 22px;
    margin-bottom: 24px;
    color: var(--text);
}

.get-card-address svg {
    color: var(--green-dark);
    flex-shrink: 0;
}

.get-card-address strong {
    display: block;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 2px;
}

.get-card-address span {
    color: var(--text-soft);
    font-size: 14px;
}

.get-card-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-soft);
    border: 1px solid var(--border-soft);
    min-height: 480px;
    box-shadow: var(--shadow-sm);
}

.get-card-map iframe {
    width: 100%;
    height: 100%;
    min-height: 480px;
    border: 0;
    display: block;
}

@media (max-width: 960px) {
    .get-card-map,
    .get-card-map iframe {
        min-height: 360px;
    }
}



/* partners */

.partners {
    padding: var(--section) 0;
}

.partners-head {
    text-align: center;
    margin-bottom: 40px;
}

.partners-eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-mute);
    margin-bottom: 10px;
}

.partners-lead {
    font-size: 17px;
    color: var(--text-soft);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

@media (max-width: 1080px) {
    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 720px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 460px) {
    .partners-grid {
        grid-template-columns: 1fr;
    }
}

.partner-card {
    background: var(--bg-soft);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-md);
    padding: 22px;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    -webkit-user-select: none;
    user-select: none;
}

.partner-card:hover {
    background: var(--surface);
    border-color: var(--green);
    transform: translateY(-3px);
    box-shadow: 0 0 0 1px var(--green), var(--shadow-md);
}

.partner-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: transform 0.2s ease;
}

.partner-card:hover .partner-icon {
    transform: scale(1.08);
}

.partner-icon svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
}

.partner-icon-wheat {
    background: #fef3c7;
    color: #b45309;
}

.partner-icon-droplet {
    background: #fef9c3;
    color: #a16207;
}

.partner-icon-package {
    background: #fee2e2;
    color: #b91c1c;
}

.partner-icon-globe {
    background: #d1fae5;
    color: #047857;
}

.partner-icon-beef {
    background: #ffe4e6;
    color: #be123c;
}

.partner-name {
    font-size: 17px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 6px;
}

.partner-desc {
    font-size: 12px;
    line-height: 1.5;
    color: var(--text-soft);
    margin-bottom: 14px;
}

.partner-city {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-mute);
}

.partner-city svg {
    width: 12px;
    height: 12px;
}
