:root {
    --snow: #FAFBFC;
    --ice: #E8F4F8;
    --frost: #C5DBE3;
    --slate: #2D3A4A;
    --midnight: #1A242F;
    --accent: #3B82F6;
    --accent-glow: #60A5FA;
    --gold: #F59E0B;
}

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

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--snow);
    color: var(--slate);
    min-height: 100vh;
    overflow-x: hidden;
}

.page {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    min-height: 100vh;
    position: relative;
    box-shadow: 0 0 60px rgba(0,0,0,0.08);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--midnight) 0%, #2A4365 50%, var(--slate) 100%);
    padding: 48px 48px 40px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59,130,246,0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--gold), var(--accent));
}

/* Mountain silhouette */
.mountains {
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    height: 80px;
    opacity: 0.1;
}

.mountains svg {
    width: 100%;
    height: 100%;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-glow) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(59,130,246,0.4);
}

.logo-icon svg {
    width: 26px;
    height: 26px;
    fill: white;
}

.brand-text {
    color: white;
}

.brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.brand-tagline {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.7;
    margin-top: 2px;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: white;
    line-height: 1.1;
    margin-bottom: 16px;
}

.hero h1 span {
    color: var(--accent-glow);
}

.hero-subtitle {
    font-size: 17px;
    color: rgba(255,255,255,0.85);
    max-width: 520px;
    line-height: 1.6;
}

.launch-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245,158,11,0.15);
    border: 1px solid rgba(245,158,11,0.3);
    color: var(--gold);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 20px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.launch-badge:hover {
    background: rgba(245,158,11,0.25);
    border-color: rgba(245,158,11,0.5);
    transform: translateY(-1px);
}

.launch-badge::before {
    content: '\2B50';
    font-size: 14px;
}

/* Value Props Section */
.value-section {
    background: linear-gradient(180deg, var(--ice) 0%, white 100%);
    padding: 36px 48px;
    border-bottom: 1px solid var(--frost);
}

.value-header {
    text-align: center;
    margin-bottom: 28px;
}

.value-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: var(--midnight);
    margin-bottom: 8px;
}

.value-header p {
    color: var(--slate);
    font-size: 14px;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.value-card {
    background: white;
    border-radius: 16px;
    padding: 24px 20px;
    border: 1px solid var(--frost);
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

.value-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--ice) 0%, var(--frost) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 26px;
}

.value-card h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--midnight);
    margin-bottom: 10px;
}

.value-card p {
    font-size: 13px;
    color: var(--slate);
    line-height: 1.6;
    opacity: 0.85;
}

.value-stat {
    display: inline-block;
    background: var(--accent);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 12px;
    margin-top: 12px;
}

/* How It Works */
.how-section {
    padding: 36px 48px;
    border-bottom: 1px solid var(--frost);
}

.section-header {
    text-align: center;
    margin-bottom: 28px;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: var(--midnight);
    margin-bottom: 6px;
}

.section-header p {
    color: var(--slate);
    opacity: 0.7;
    font-size: 14px;
}

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

.step {
    position: relative;
    text-align: center;
    padding: 20px 12px;
    background: linear-gradient(180deg, var(--snow) 0%, white 100%);
    border-radius: 12px;
    border: 1px solid var(--frost);
}

.step-number {
    width: 32px;
    height: 32px;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    margin: 0 auto 12px;
}

.step-icon {
    font-size: 28px;
    margin-bottom: 10px;
}

.step h3 {
    font-size: 13px;
    font-weight: 600;
    color: var(--midnight);
    margin-bottom: 6px;
}

.step p {
    font-size: 11px;
    color: var(--slate);
    opacity: 0.75;
    line-height: 1.5;
}

/* Possibilities Section */
.possibilities-section {
    padding: 36px 48px;
    background: linear-gradient(180deg, white 0%, var(--ice) 100%);
    border-bottom: 1px solid var(--frost);
}

.possibilities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.possibility-card {
    background: white;
    border-radius: 16px;
    padding: 24px 20px;
    border: 1px solid var(--frost);
    text-align: center;
    transition: all 0.3s ease;
}

.possibility-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

.possibility-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.possibility-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--midnight);
    margin-bottom: 12px;
}

.possibility-card p {
    font-size: 13px;
    color: var(--slate);
    line-height: 1.6;
    opacity: 0.85;
}

/* Services & Pricing */
.pricing-section {
    padding: 36px 48px;
    background: linear-gradient(180deg, white 0%, var(--ice) 100%);
}

.pricing-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.price-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid var(--frost);
    position: relative;
}

.price-card.basic::before {
    content: 'STORAGE ONLY';
    position: absolute;
    top: -10px;
    left: 24px;
    background: var(--slate);
    color: white;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 10px;
}

.price-card.featured {
    border: 2px solid var(--accent);
    box-shadow: 0 8px 30px rgba(59,130,246,0.15);
}

.price-card.featured::before {
    content: 'MOST POPULAR';
    position: absolute;
    top: -10px;
    left: 24px;
    background: var(--accent);
    color: white;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 10px;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--ice);
}

.card-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: var(--midnight);
}

.card-subtitle {
    font-size: 12px;
    color: var(--slate);
    opacity: 0.7;
    margin-top: 4px;
}

.card-price {
    text-align: right;
}

.price-amount {
    font-size: 36px;
    font-weight: 700;
    color: var(--midnight);
}

.price-amount span {
    font-size: 16px;
    font-weight: 500;
    opacity: 0.6;
}

.price-convert {
    font-size: 11px;
    color: var(--slate);
    opacity: 0.7;
    margin-top: 2px;
}

.card-features {
    list-style: none;
}

.card-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: var(--slate);
    padding: 10px 0;
    border-bottom: 1px solid var(--ice);
}

.card-features li:last-child {
    border-bottom: none;
}

.card-features li::before {
    content: '\2713';
    color: var(--accent);
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.card-features li strong {
    color: var(--midnight);
}

/* Add-ons */
.addons-section {
    background: white;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid var(--frost);
}

.addons-section .addons-title {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: var(--midnight);
    margin-bottom: 16px;
    text-align: center;
}

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

.addon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 16px 8px;
    background: var(--snow);
    border-radius: 12px;
    border: 1px solid var(--ice);
}

.addon-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.addon-icon {
    font-size: 24px;
}

.addon-name {
    font-size: 12px;
    font-weight: 600;
    color: var(--midnight);
}

.addon-desc {
    font-size: 10px;
    color: var(--slate);
    opacity: 0.7;
}

.addon-price {
    font-size: 13px;
    color: var(--accent);
    font-weight: 700;
    white-space: nowrap;
    margin-top: 8px;
}

/* Multi-currency note */
.currency-note {
    margin-top: 20px;
    padding: 16px;
    background: var(--snow);
    border-radius: 10px;
    border: 1px dashed var(--frost);
}

.currency-note-title {
    font-size: 11px;
    font-weight: 700;
    color: var(--midnight);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.currency-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.currency-item {
    text-align: center;
    font-size: 12px;
}

.currency-flag {
    font-size: 14px;
}

.currency-price {
    font-weight: 600;
    color: var(--midnight);
}

/* Comparison Section */
.comparison {
    padding: 32px 48px;
    background: var(--midnight);
    color: white;
}

.comparison h2 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    text-align: center;
    margin-bottom: 24px;
}

.comparison-table {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 1px;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    overflow: hidden;
}

.comparison-table.four-col {
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
}

.comp-cell {
    padding: 14px 16px;
    background: var(--midnight);
    font-size: 13px;
}

.comp-header {
    background: rgba(255,255,255,0.05);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 10px;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.6);
    text-align: center;
}

.comp-label {
    color: rgba(255,255,255,0.8);
}

.comp-old {
    text-align: center;
    color: rgba(255,255,255,0.5);
}

.comp-new {
    text-align: center;
    color: var(--accent-glow);
    font-weight: 600;
}

.savings-row {
    background: rgba(255,255,255,0.1) !important;
}

.savings-row.comp-label {
    background: rgba(255,255,255,0.1);
}

.savings-row .comp-new,
.comp-cell.savings-row.comp-new {
    color: var(--gold);
    font-size: 15px;
    background: rgba(255,255,255,0.1);
}

.comp-cell.savings-row.comp-old {
    background: rgba(255,255,255,0.1);
}

.comp-priceless {
    color: var(--gold) !important;
    font-style: italic;
    font-weight: 600;
}

.comp-best {
    color: var(--gold) !important;
}

/* CTA Section */
.cta-section {
    padding: 36px 48px;
    text-align: center;
    background: linear-gradient(180deg, var(--ice) 0%, white 100%);
}

.cta-box {
    background: linear-gradient(135deg, var(--accent) 0%, #2563EB 100%);
    border-radius: 20px;
    padding: 32px 40px;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
}

.cta-box h2 {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    margin-bottom: 10px;
    position: relative;
}

.cta-box p {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 24px;
    position: relative;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.cta-qr {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    position: relative;
}

.qr-placeholder {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--slate);
    font-size: 10px;
    font-weight: 600;
}

.cta-contact {
    text-align: left;
}

.cta-contact .label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
    margin-bottom: 4px;
}

.cta-contact .email {
    font-size: 16px;
    font-weight: 600;
}

.cta-contact-centered {
    text-align: center;
    position: relative;
}

.cta-contact-centered .label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
    margin-bottom: 4px;
}

.cta-contact-centered .email {
    font-size: 18px;
    font-weight: 600;
}

.cta-contact .line {
    font-size: 13px;
    opacity: 0.9;
    margin-top: 4px;
}

/* Contact Form */
.cta-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 400px;
    margin: 0 auto;
    position: relative;
}

.cta-form input,
.cta-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: none;
    border-radius: 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--slate);
    transition: all 0.2s ease;
}

.cta-form input::placeholder,
.cta-form textarea::placeholder {
    color: var(--slate);
    opacity: 0.6;
}

.cta-form input:focus,
.cta-form textarea:focus {
    outline: none;
    background: white;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.cta-form textarea {
    resize: vertical;
    min-height: 80px;
}

.cta-form button[type="submit"] {
    padding: 14px 24px;
    border: none;
    border-radius: 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    background: var(--gold);
    color: white;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-form button[type="submit"]:hover {
    background: #d97706;
    transform: translateY(-1px);
}

.cta-form button[type="submit"]:active {
    transform: translateY(0);
}

.cta-form button[type="submit"]:disabled {
    background: rgba(255, 255, 255, 0.3);
    cursor: not-allowed;
    transform: none;
}

.cta-form button[type="submit"].loading {
    position: relative;
}

.form-status {
    text-align: center;
    font-size: 13px;
    padding: 8px 12px;
    border-radius: 8px;
    min-height: 0;
    transition: all 0.2s ease;
}

.form-status:empty {
    display: none;
}

.form-status.success {
    background: rgba(34, 197, 94, 0.2);
    color: #86efac;
}

.form-status.error {
    background: rgba(239, 68, 68, 0.2);
    color: #fca5a5;
}

/* Footer */
.footer {
    padding: 20px 48px;
    background: var(--snow);
    border-top: 1px solid var(--frost);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-left {
    font-size: 11px;
    color: var(--slate);
    opacity: 0.6;
}

.footer-right {
    display: flex;
    gap: 16px;
}

.footer-right span {
    font-size: 11px;
    color: var(--slate);
    opacity: 0.6;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* ===========================
   RESPONSIVE STYLES
   =========================== */

/* Large Tablets and Small Desktops */
@media screen and (max-width: 1024px) {
    .page {
        max-width: 100%;
    }
}

/* Tablets */
@media screen and (max-width: 768px) {
    /* Hero Section */
    .hero {
        padding: 32px 24px 28px;
    }

    .hero::before {
        width: 400px;
        height: 400px;
        right: -30%;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .brand-name {
        font-size: 22px;
    }

    .brand-tagline {
        font-size: 10px;
    }

    .launch-badge {
        font-size: 11px;
        padding: 6px 12px;
    }

    /* Value Section */
    .value-section {
        padding: 28px 24px;
    }

    .value-header h2 {
        font-size: 22px;
    }

    .value-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .value-card {
        padding: 20px 16px;
    }

    /* How It Works */
    .how-section {
        padding: 28px 24px;
    }

    .section-header h2 {
        font-size: 22px;
    }

    .steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .step {
        padding: 16px 12px;
    }

    /* Possibilities Section */
    .possibilities-section {
        padding: 28px 24px;
    }

    .possibilities-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .possibility-card {
        padding: 20px 16px;
    }

    /* Pricing Section */
    .pricing-section {
        padding: 28px 24px;
    }

    .pricing-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .price-card {
        padding: 20px;
    }

    .card-header {
        flex-direction: column;
        gap: 12px;
    }

    .card-price {
        text-align: left;
    }

    .price-amount {
        font-size: 30px;
    }

    /* Add-ons */
    .addons-section {
        padding: 20px;
    }

    .addons-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .addon-item {
        padding: 12px 6px;
    }

    .addon-icon {
        font-size: 20px;
    }

    .addon-name {
        font-size: 11px;
    }

    .addon-desc {
        font-size: 9px;
    }

    .addon-price {
        font-size: 11px;
    }

    /* Comparison Section */
    .comparison {
        padding: 24px 16px;
    }

    .comparison h2 {
        font-size: 20px;
    }

    .comparison-table {
        font-size: 12px;
    }

    .comp-cell {
        padding: 10px 8px;
        font-size: 12px;
    }

    .comp-header {
        font-size: 9px;
    }

    /* CTA Section */
    .cta-section {
        padding: 28px 24px;
    }

    .cta-box {
        padding: 24px 20px;
    }

    .cta-box h2 {
        font-size: 22px;
    }

    .cta-box p {
        font-size: 13px;
    }

    .cta-qr {
        flex-direction: column;
        gap: 16px;
    }

    .cta-contact {
        text-align: center;
    }

    /* Contact Form - Tablet */
    .cta-form {
        max-width: 100%;
    }

    .cta-form input,
    .cta-form textarea {
        padding: 12px 14px;
        font-size: 14px;
    }

    .cta-form button[type="submit"] {
        padding: 12px 20px;
        font-size: 14px;
    }

    /* Footer */
    .footer {
        padding: 16px 24px;
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .footer-right {
        justify-content: center;
    }
}

/* Mobile Phones */
@media screen and (max-width: 480px) {
    /* Hero Section */
    .hero {
        padding: 24px 16px 20px;
    }

    .hero::before {
        width: 250px;
        height: 250px;
        top: -30%;
        right: -40%;
    }

    .hero h1 {
        font-size: 26px;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 14px;
        line-height: 1.5;
    }

    .brand {
        gap: 10px;
        margin-bottom: 20px;
    }

    .logo-icon {
        width: 38px;
        height: 38px;
    }

    .logo-icon svg {
        width: 22px;
        height: 22px;
    }

    .brand-name {
        font-size: 20px;
    }

    .brand-tagline {
        font-size: 9px;
        letter-spacing: 1.5px;
    }

    .launch-badge {
        font-size: 10px;
        padding: 6px 10px;
        letter-spacing: 0.5px;
    }

    .mountains {
        height: 50px;
    }

    /* Value Section */
    .value-section {
        padding: 24px 16px;
    }

    .value-header {
        margin-bottom: 20px;
    }

    .value-header h2 {
        font-size: 20px;
    }

    .value-header p {
        font-size: 13px;
    }

    .value-card {
        padding: 16px 14px;
    }

    .value-icon {
        width: 48px;
        height: 48px;
        font-size: 22px;
        margin-bottom: 12px;
    }

    .value-card h3 {
        font-size: 14px;
    }

    .value-card p {
        font-size: 13px;
    }

    /* How It Works */
    .how-section {
        padding: 24px 16px;
    }

    .section-header {
        margin-bottom: 20px;
    }

    .section-header h2 {
        font-size: 20px;
    }

    .section-header p {
        font-size: 14px;
    }

    .steps {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .step {
        display: flex;
        align-items: center;
        text-align: left;
        padding: 14px 16px;
        gap: 12px;
    }

    .step-number {
        margin: 0;
        flex-shrink: 0;
        width: 32px;
        height: 32px;
    }

    .step-icon {
        font-size: 24px;
        margin: 0;
        flex-shrink: 0;
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .step-content {
        flex: 1;
        min-width: 0;
    }

    .step h3 {
        margin-bottom: 4px;
        font-size: 15px;
    }

    .step p {
        font-size: 13px;
    }

    /* Possibilities Section */
    .possibilities-section {
        padding: 24px 16px;
    }

    .possibility-card {
        padding: 16px 14px;
    }

    .possibility-icon {
        font-size: 40px;
        margin-bottom: 12px;
    }

    .possibility-card h3 {
        font-size: 15px;
    }

    .possibility-card p {
        font-size: 13px;
    }

    /* Pricing Section */
    .pricing-section {
        padding: 24px 16px;
    }

    .price-card {
        padding: 16px;
    }

    .price-card.basic::before,
    .price-card.featured::before {
        font-size: 8px;
        padding: 3px 10px;
        left: 16px;
    }

    .card-title {
        font-size: 20px;
    }

    .card-subtitle {
        font-size: 11px;
    }

    .price-amount {
        font-size: 26px;
    }

    .price-amount span {
        font-size: 14px;
    }

    .card-features li {
        font-size: 13px;
        padding: 8px 0;
    }

    /* Add-ons */
    .addons-section {
        padding: 16px;
    }

    .addons-title {
        font-size: 16px;
    }

    .addons-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .addon-item {
        flex-direction: row;
        justify-content: space-between;
        padding: 12px;
    }

    .addon-info {
        flex-direction: row;
        text-align: left;
    }

    .addon-price {
        margin-top: 0;
    }

    .addon-icon {
        font-size: 18px;
    }

    .addon-name {
        font-size: 12px;
    }

    .addon-desc {
        font-size: 11px;
    }

    .addon-price {
        font-size: 12px;
        margin-top: 6px;
    }

    /* Currency Note */
    .currency-note {
        padding: 12px;
    }

    .currency-grid {
        gap: 6px;
    }

    .currency-item {
        font-size: 11px;
    }

    /* Comparison Section - Horizontal scroll */
    .comparison {
        padding: 20px 12px;
    }

    .comparison h2 {
        font-size: 18px;
        margin-bottom: 16px;
    }

    .comparison-table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .comparison-table {
        display: grid;
        grid-template-columns: 1.5fr 1fr 1fr;
        min-width: 320px;
    }

    .comp-cell {
        padding: 8px 6px;
        font-size: 12px;
    }

    .comp-header {
        font-size: 9px;
        letter-spacing: 0.5px;
    }

    .savings-row .comp-new,
    .comp-cell.savings-row.comp-new {
        font-size: 13px;
    }

    /* CTA Section */
    .cta-section {
        padding: 24px 16px;
    }

    .cta-box {
        padding: 20px 16px;
        border-radius: 16px;
    }

    .cta-box::before {
        width: 200px;
        height: 200px;
    }

    .cta-box h2 {
        font-size: 20px;
        margin-bottom: 8px;
    }

    .cta-box p {
        font-size: 13px;
        margin-bottom: 20px;
        line-height: 1.5;
    }

    .qr-placeholder {
        width: 70px;
        height: 70px;
        font-size: 9px;
    }

    .cta-contact-centered .email {
        font-size: 16px;
    }

    .cta-contact .email {
        font-size: 14px;
    }

    .cta-contact .line {
        font-size: 13px;
    }

    /* Contact Form - Mobile */
    .cta-form {
        gap: 10px;
    }

    .cta-form input,
    .cta-form textarea {
        padding: 12px 14px;
        font-size: 14px;
        border-radius: 8px;
    }

    .cta-form textarea {
        min-height: 70px;
    }

    .cta-form button[type="submit"] {
        padding: 12px 18px;
        font-size: 13px;
        border-radius: 8px;
    }

    .form-status {
        font-size: 12px;
        padding: 6px 10px;
    }

    /* Footer */
    .footer {
        padding: 14px 16px;
        gap: 10px;
    }

    .footer-left {
        font-size: 10px;
    }

    .footer-right span {
        font-size: 10px;
    }
}

/* Extra small devices */
@media screen and (max-width: 360px) {
    .hero h1 {
        font-size: 22px;
    }

    .hero-subtitle {
        font-size: 13px;
    }

    .brand-name {
        font-size: 18px;
    }

    .value-header h2,
    .section-header h2 {
        font-size: 18px;
    }

    .addons-grid {
        grid-template-columns: 1fr;
    }

    .addon-item {
        flex-direction: row;
        justify-content: space-between;
        padding: 12px;
    }

    .addon-info {
        flex-direction: row;
        text-align: left;
    }

    .addon-price {
        margin-top: 0;
    }
}

/* Print optimization */
@media print {
    body {
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }
    .page {
        box-shadow: none;
        max-width: none;
    }
}

@page {
    size: A4;
    margin: 0;
}
