@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Mono:ital,wght@0,300;0,400;0,500;1,300&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,500;0,9..40,700;1,9..40,300&display=swap');

:root {
    --ink: #0d0f14;
    --paper: #f5f0e8;
    --cream: #ede8dc;
    --accent: #e8400c;
    --gold: #c9a84c;
    --muted: #7a7060;
    --border: 2px solid var(--ink);
    --display: 'Bebas Neue', sans-serif;
    --mono: 'DM Mono', monospace;
    --body: 'DM Sans', sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth
}

body {
    background: var(--paper);
    color: var(--ink);
    font-family: var(--body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999
}

nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--paper);
    border-bottom: var(--border)
}

.nav-container {
    max-width: 1400px;
    margin: auto;
    padding: 0 48px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.logo a {
    font-family: var(--display);
    font-size: 22px;
    letter-spacing: 3px;
    color: var(--ink);
    text-decoration: none
}

.logo a span {
    color: var(--accent)
}

nav ul {
    list-style: none;
    display: flex;
    gap: 4px;
    margin: 0;
    padding: 0
}

nav ul li a {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--muted);
    text-decoration: none;
    padding: 7px 14px;
    transition: color .2s, background .2s
}

nav ul li a:hover {
    color: var(--ink);
    background: var(--cream)
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: color .2s
}

a:hover {
    color: var(--ink)
}

/* HERO */
.hero {
    border-bottom: var(--border);
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 92vh;
    overflow: hidden
}

.hero-left {
    padding: 80px 64px 80px 80px;
    border-right: var(--border);
    display: flex;
    flex-direction: column;
    justify-content: center
}

.hero-eyebrow {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px
}

.hero-eyebrow::before {
    content: '';
    width: 28px;
    height: 1px;
    background: var(--accent)
}

.hero-logo {
    width: 88px;
    margin-bottom: 20px;
    filter: grayscale(1) contrast(1.2);
    mix-blend-mode: multiply
}

.hero h1 {
    font-family: var(--display);
    font-size: clamp(64px, 8vw, 108px);
    line-height: .9;
    letter-spacing: 1px;
    margin-bottom: 24px
}

.hero h1 em {
    font-style: normal;
    color: var(--accent);
    display: block
}

.hero-sub {
    font-size: 18px;
    font-weight: 300;
    color: #3a3530;
    max-width: 460px;
    margin-bottom: 40px;
    line-height: 1.55
}

.hero-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap
}

.hero-right {
    background: var(--ink);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 64px 56px;
    position: relative;
    overflow: hidden
}

.hero-right::before {
    content: 'ZW';
    position: absolute;
    font-family: var(--display);
    font-size: 420px;
    color: rgba(255, 255, 255, .025);
    bottom: -80px;
    right: -40px;
    line-height: 1;
    pointer-events: none
}

.hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: rgba(255, 255, 255, .08);
    border-radius: 4px;
    overflow: hidden;
    margin-top: 28px
}

.hero-stat {
    background: rgba(0, 0, 0, .3);
    padding: 18px 20px
}

.hero-stat-num {
    font-family: var(--display);
    font-size: 36px;
    color: var(--gold);
    display: block;
    line-height: 1;
    letter-spacing: 1px
}

.hero-stat-label {
    font-family: var(--mono);
    font-size: 10px;
    color: rgba(255, 255, 255, .3);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 4px;
    display: block
}

/* TERMINAL */
.terminal {
    font-family: var(--mono);
    font-size: 13px;
    line-height: 1.8;
    position: relative;
    z-index: 1
}

.terminal-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, .06);
    border-radius: 6px 6px 0 0
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%
}

.dot-r {
    background: #ff5f57
}

.dot-y {
    background: #febc2e
}

.dot-g {
    background: #28c840
}

.terminal-title {
    color: rgba(255, 255, 255, .25);
    font-size: 11px;
    margin-left: auto
}

.terminal-body {
    background: rgba(0, 0, 0, .45);
    border-radius: 0 0 6px 6px;
    padding: 20px 24px
}

.t-line {
    display: block
}

.t-prompt {
    color: #00e5a0
}

.t-cmd {
    color: #e2e8f0
}

.t-out {
    color: rgba(255, 255, 255, .4);
    margin-left: 16px;
    display: block
}

.t-key {
    color: var(--gold)
}

.t-ok {
    color: #00e5a0
}

.t-dim {
    color: rgba(255, 255, 255, .2)
}

/* BUTTONS */
.btn {
    display: inline-block;
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    padding: 14px 32px;
    border: var(--border);
    text-decoration: none;
    cursor: pointer;
    transition: all .2s;
    background: transparent;
    color: var(--ink)
}

.btn-primary {
    background: var(--ink);
    color: var(--paper);
    border-color: var(--ink)
}

.btn-primary:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--paper);
    transform: translate(-2px, -2px);
    box-shadow: 4px 4px 0 var(--ink)
}

.btn-outline {
    background: transparent;
    color: var(--ink);
    border-color: var(--ink)
}

.btn-outline:hover {
    background: var(--ink);
    color: var(--paper);
    transform: translate(-2px, -2px);
    box-shadow: 4px 4px 0 var(--muted)
}

.btn-accent {
    background: var(--accent);
    color: var(--paper);
    border-color: var(--accent)
}

.btn-accent:hover {
    background: var(--ink);
    border-color: var(--ink);
    transform: translate(-2px, -2px);
    box-shadow: 4px 4px 0 var(--accent)
}

/* TICKER */
.ticker {
    background: var(--accent);
    color: var(--paper);
    padding: 11px 0;
    overflow: hidden;
    white-space: nowrap;
    border-bottom: var(--border)
}

.ticker-inner {
    display: inline-block;
    animation: ticker 28s linear infinite
}

.ticker-item {
    display: inline-block;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 0 40px
}

.ticker-item::before {
    content: '✦ ';
    margin-right: 6px
}

@keyframes ticker {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

/* SECTION */
.section-header {
    padding: 64px 80px 48px;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px
}

.section-num {
    font-family: var(--display);
    font-size: 100px;
    color: var(--cream);
    line-height: 1;
    flex-shrink: 0
}

.section-title {
    font-family: var(--display);
    font-size: clamp(42px, 5vw, 68px);
    line-height: .95;
    letter-spacing: .5px;
    flex: 1
}

.section-title em {
    font-style: normal;
    color: var(--accent)
}

.section-intro {
    font-size: 15px;
    color: var(--muted);
    max-width: 300px;
    line-height: 1.55;
    font-weight: 300
}

/* CARDS */
.grid {
    display: grid
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr)
}

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

.card {
    padding: 48px 52px;
    border-right: var(--border);
    position: relative;
    overflow: hidden;
    transition: background .3s
}

.card:last-child {
    border-right: none
}

.card:hover {
    background: var(--cream)
}

.card-icon {
    font-size: 30px;
    margin-bottom: 18px;
    display: block
}

.card h3 {
    font-family: var(--display);
    font-size: 28px;
    letter-spacing: .5px;
    margin-bottom: 10px
}

.card p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.65;
    font-weight: 300
}

.card-tag {
    display: inline-block;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 3px 8px;
    background: var(--ink);
    color: var(--paper);
    margin-top: 14px
}

/* PRODUCT */
.product-wrap {
    max-width: 1400px;
    margin: 0 auto
}

.breadcrumb {
    padding: 20px 80px;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 1px;
    color: var(--muted);
    border-bottom: 1px solid rgba(0, 0, 0, .08);
    display: flex;
    align-items: center;
    gap: 8px
}

.breadcrumb a {
    color: var(--muted)
}

.breadcrumb a:hover {
    color: var(--ink)
}

.breadcrumb .sep {
    color: var(--accent);
    opacity: .4
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: var(--border)
}

.product-left {
    padding: 64px 72px;
    border-right: var(--border)
}

.product-left h1 {
    font-family: var(--display);
    font-size: clamp(56px, 6vw, 88px);
    line-height: .9;
    letter-spacing: 1px;
    margin-bottom: 20px
}

.product-left h1 em {
    font-style: normal;
    color: var(--accent)
}

.product-sub {
    font-size: 16px;
    font-weight: 300;
    color: var(--muted);
    border-left: 3px solid var(--accent);
    padding-left: 16px;
    margin-bottom: 48px;
    line-height: 1.6;
    max-width: 480px
}

/* FEATURES */
.feature-list {
    margin-bottom: 40px
}

.feature-item {
    display: flex;
    gap: 18px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 0, 0, .08)
}

.feature-item:last-child {
    border-bottom: none
}

.feature-icon-box {
    width: 38px;
    height: 38px;
    border: var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
    background: var(--cream)
}

.feature-text h3 {
    font-family: var(--display);
    font-size: 20px;
    letter-spacing: .3px;
    margin-bottom: 4px
}

.feature-text p {
    font-size: 14px;
    color: var(--muted);
    font-weight: 300;
    line-height: 1.55;
    margin: 0
}

/* PRICING BOX */
.pricing-box {
    border: var(--border);
    margin-bottom: 32px
}

.pricing-box-header {
    padding: 12px 20px;
    background: var(--ink);
    color: var(--paper);
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase
}

.pricing-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, .08)
}

.pricing-row:last-child {
    border-bottom: none
}

.plan-label {
    font-family: var(--display);
    font-size: 22px;
    letter-spacing: .3px
}

.plan-detail {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--muted);
    margin-top: 1px
}

.plan-price {
    font-family: var(--mono);
    font-size: 20px;
    color: var(--accent);
    font-weight: 500
}

.cta-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap
}

/* GALLERY */
.product-right {
    padding: 48px 56px;
    background: var(--cream)
}

.gallery-panel-title {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px
}

.gallery-panel-title::before {
    content: '';
    width: 20px;
    height: 1px;
    background: var(--muted)
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px
}

.gallery-item {
    background: var(--paper);
    border: var(--border);
    padding: 28px 12px;
    text-align: center;
    cursor: pointer;
    transition: all .2s
}

.gallery-item:hover {
    background: var(--ink);
    transform: translate(-2px, -2px);
    box-shadow: 4px 4px 0 var(--muted)
}

.gallery-item:hover .gallery-label {
    color: rgba(255, 255, 255, .5)
}

.gallery-emoji {
    font-size: 28px;
    display: block;
    margin-bottom: 8px
}

.gallery-label {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 1px
}

.gallery-hint {
    font-family: var(--mono);
    font-size: 10px;
    color: rgba(122, 112, 96, .4);
    text-align: center;
    letter-spacing: 1px
}

/* MODALS */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(13, 15, 20, .85);
    backdrop-filter: blur(6px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all
}

.modal-content {
    background: var(--paper);
    border: var(--border);
    max-width: 840px;
    width: 100%;
    transform: scale(.94) translateY(12px);
    transition: transform .25s;
    box-shadow: 8px 8px 0 var(--ink)
}

.modal-overlay.active .modal-content {
    transform: scale(1) translateY(0)
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    border-bottom: var(--border);
    background: var(--cream)
}

.modal-header h3 {
    font-family: var(--display);
    font-size: 22px;
    letter-spacing: .5px
}

.modal-close {
    background: none;
    border: 1px solid var(--muted);
    font-size: 18px;
    color: var(--muted);
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s
}

.modal-close:hover {
    background: var(--ink);
    color: var(--paper);
    border-color: var(--ink)
}

.modal-body {
    padding: 28px 24px
}

.modal-image-container {
    background: var(--cream);
    border: 1px solid rgba(0, 0, 0, .1);
    min-height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    overflow: hidden
}

.modal-image-container img {
    max-width: 100%;
    max-height: 55vh;
    object-fit: contain;
    display: block
}

.modal-preview-caption {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--muted);
    text-align: center;
    letter-spacing: 1px
}

.modal-footer {
    padding: 16px 24px;
    border-top: var(--border);
    background: var(--cream);
    display: flex;
    justify-content: flex-end;
    gap: 12px
}

.modal-btn {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 9px 20px;
    border: var(--border);
    background: transparent;
    cursor: pointer;
    transition: all .2s;
    color: var(--ink)
}

.modal-btn:hover {
    background: var(--ink);
    color: var(--paper)
}

/* BUY MODAL */
.buy-modal {
    max-width: 700px
}

.pricing-grid-modal {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-top: var(--border)
}

.pricing-card {
    padding: 36px 32px;
    border-right: var(--border);
    position: relative;
    transition: background .2s
}

.pricing-card:last-child {
    border-right: none
}

.pricing-card:hover {
    background: var(--cream)
}

.pricing-card.featured {
    background: var(--ink);
    color: var(--paper)
}

.pricing-card.featured:hover {
    background: #1a2030
}

.pricing-card.featured .plan-price-big {
    color: var(--gold)
}

.pricing-card.featured .plan-feat-list li {
    border-color: rgba(255, 255, 255, .1);
    color: rgba(255, 255, 255, .7)
}

.pricing-card.featured .plan-feat-list li::before {
    color: var(--gold)
}

.pricing-card.featured .plan-name-big,
.pricing-card.featured .plan-tagline {
    color: rgba(255, 255, 255, .85)
}

.plan-badge {
    display: inline-block;
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 3px 8px;
    background: var(--gold);
    color: var(--ink);
    margin-bottom: 12px
}

.plan-name-big {
    font-family: var(--display);
    font-size: 32px;
    letter-spacing: 1px;
    margin-bottom: 4px
}

.plan-price-big {
    font-family: var(--mono);
    font-size: 40px;
    font-weight: 500;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 6px
}

.plan-price-big span {
    font-size: 14px;
    color: var(--muted);
    font-weight: 300
}

.plan-tagline {
    font-size: 13px;
    color: var(--muted);
    font-weight: 300;
    margin-bottom: 20px
}

.plan-feat-list {
    list-style: none;
    margin-bottom: 24px
}

.plan-feat-list li {
    font-size: 13px;
    color: var(--ink);
    padding: 7px 0;
    border-bottom: 1px solid rgba(0, 0, 0, .06);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 300
}

.plan-feat-list li::before {
    content: '✓';
    color: var(--accent);
    font-size: 11px;
    font-weight: 700;
    flex-shrink: 0
}

.plan-feat-list li:last-child {
    border-bottom: none
}

/* CONTACT */
.contact-section {
    border-bottom: var(--border)
}

.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr
}

.contact-left {
    padding: 72px 80px;
    border-right: var(--border)
}

.contact-right {
    padding: 72px 72px;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.contact-email-big {
    display: block;
    font-family: var(--display);
    font-size: clamp(28px, 3.5vw, 44px);
    letter-spacing: 1px;
    color: var(--ink);
    margin-bottom: 24px;
    transition: color .2s
}

.contact-email-big:hover {
    color: var(--accent)
}

/* THANK YOU */
.ty-section {
    min-height: calc(100vh - 62px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 24px
}

.ty-card {
    border: var(--border);
    max-width: 600px;
    width: 100%;
    box-shadow: 6px 6px 0 var(--ink)
}

.ty-card-header {
    background: var(--ink);
    padding: 40px 48px 32px;
    text-align: center
}

.ty-check {
    width: 64px;
    height: 64px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--gold);
    margin: 0 auto 20px;
    animation: successPop .5s cubic-bezier(.34, 1.56, .64, 1)
}

@keyframes successPop {
    from {
        transform: scale(0);
        opacity: 0
    }

    to {
        transform: scale(1);
        opacity: 1
    }
}

.ty-badge {
    display: inline-block;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 5px 14px;
    border: 1px solid rgba(201, 168, 76, .4);
    color: var(--gold);
    margin-bottom: 16px
}

.ty-card-header h1 {
    font-family: var(--display);
    font-size: clamp(28px, 4vw, 42px);
    letter-spacing: .5px;
    color: var(--paper);
    line-height: 1.05;
    margin-bottom: 12px
}

.ty-card-header p {
    font-size: 14px;
    color: rgba(255, 255, 255, .45);
    font-weight: 300;
    line-height: 1.6
}

.ty-card-body {
    padding: 36px 48px
}

.next-steps-title {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px
}

.next-steps-title::before {
    content: '';
    width: 20px;
    height: 1px;
    background: var(--muted)
}

.step-item {
    display: flex;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(0, 0, 0, .08);
    align-items: flex-start
}

.step-item:last-child {
    border-bottom: none
}

.step-num {
    width: 28px;
    height: 28px;
    border: var(--border);
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--mono);
    font-size: 12px;
    font-weight: 500;
    flex-shrink: 0
}

.step-text strong {
    display: block;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 3px
}

.step-text p {
    font-size: 13px;
    color: var(--muted);
    margin: 0;
    line-height: 1.5;
    font-weight: 300
}

.ty-note {
    font-size: 13px;
    color: var(--muted);
    font-weight: 300
}

.ty-note a {
    color: var(--accent)
}

.ty-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    padding: 24px 48px;
    border-top: var(--border);
    background: var(--cream)
}

/* FADE IN */
.fade-in {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .65s ease, transform .65s ease
}

.fade-in.visible {
    opacity: 1;
    transform: none
}

/* FOOTER */
footer {
    background: var(--ink);
    padding: 22px 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* color: rgba(197, 164, 164, 0.2); */
    color: #cfcfcf;
    /* light gray */
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 1px
}

.footer-logo {
    font-family: var(--display);
    font-size: 18px;
    letter-spacing: 3px;
    /* color: rgba(255, 255, 255, 0.445) */
    color: #e5e5e5;
    /* brighter so logo is visible */
}

footer a {
    /*color: rgba(255, 255, 255, .6); */
    color: #d0d0d0;
}

footer a:hover {
    color: rgba(255, 255, 255, .16)
}

/* RESPONSIVE */
@media(max-width:960px) {
    .hero {
        grid-template-columns: 1fr
    }

    .hero-right {
        display: none
    }

    .hero-left {
        border-right: none;
        padding: 60px 32px
    }

    .product-grid {
        grid-template-columns: 1fr
    }

    .product-left {
        border-right: none;
        padding: 48px 32px
    }

    .product-right {
        padding: 40px 32px
    }

    .grid-3,
    .grid-2 {
        grid-template-columns: 1fr
    }

    .card {
        border-right: none;
        border-bottom: var(--border)
    }

    .card:last-child {
        border-bottom: none
    }

    .contact-inner {
        grid-template-columns: 1fr
    }

    .contact-left {
        border-right: none;
        border-bottom: var(--border);
        padding: 48px 32px
    }

    .contact-right {
        padding: 48px 32px
    }

    .section-header {
        padding: 48px 32px 32px;
        flex-direction: column;
        align-items: flex-start
    }

    .section-num {
        font-size: 64px
    }

    .pricing-grid-modal {
        grid-template-columns: 1fr
    }

    footer {
        padding: 20px 32px;
        flex-direction: column;
        gap: 8px;
        text-align: center
    }

    .breadcrumb {
        padding: 16px 32px
    }
}

@media(max-width:640px) {
    .nav-container {
        padding: 0 20px
    }

    nav ul li a {
        padding: 6px 10px;
        font-size: 10px
    }

    .ty-card-header {
        padding: 32px 28px 24px
    }

    .ty-card-body {
        padding: 28px
    }

    .ty-actions {
        padding: 20px 28px
    }
}