:root {
    --amuri-dark: #0a1936;      /* Darkest blue */
    --amuri-primary: #153c7a;   /* Main blue */
    --amuri-mid: #689bd4;       /* Light mid-blue */
    --amuri-light: #eaf2fa;     /* Very pale blue */
    --amuri-accent: #ff7b00;    /* Vibrant Action Orange */
    
    --text-light: #ffffff;
    --text-dark: #111827;
    --text-grey: #4b5563;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --font-main: 'Poppins', sans-serif;

    /* Glassmorphism utility variables */
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-main);
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-light);
    color: var(--text-grey);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography elements */
h1, h2, h3, h4, h5, h6 {
    color: var(--text-dark);
}

/* Top Utility Bar */
.top-bar {
    background-color: var(--amuri-dark);
    padding: 10px 24px;
    display: flex;
    justify-content: flex-end;
    gap: 24px;
    font-size: 0.85rem;
    position: relative;
    z-index: 101;
}

.top-bar a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.top-bar a:hover,
.top-bar a.active {
    color: var(--text-light);
    opacity: 1;
}

.top-bar a.active {
    font-weight: 700;
    color: var(--amuri-mid);
}

.top-bar a.highlight-link {
    color: var(--amuri-accent);
    font-weight: 700;
}

.top-bar a.highlight-link:hover {
    color: #ff9d40;
}

.top-bar-divider {
    color: rgba(255,255,255,0.2);
}

/* Header & Nav */
header {
    position: absolute;
    top: 40px; /* Below top bar */
    width: 100%;
    z-index: 100;
    transition: all 0.4s ease;
}

header.scrolled {
    position: fixed;
    top: 0;
    background: rgba(10, 25, 54, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--glass-shadow);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-light);
    text-decoration: none;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
}

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

nav ul {
    list-style: none;
    display: flex;
    gap: 32px;
    align-items: center;
}

nav ul li {
    position: relative;
    padding: 10px 0;
}

nav ul li a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

nav ul li > a:hover {
    color: var(--amuri-mid);
}

.badge-new {
    background: linear-gradient(135deg, var(--amuri-accent), #ff5e00);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 4px 8px;
    border-radius: 12px;
    margin-left: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(255, 123, 0, 0.3);
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--bg-white);
    min-width: 260px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-radius: 16px;
    padding: 12px 0;
    z-index: 200;
    flex-direction: column;
    opacity: 0;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.dropdown:hover .dropdown-menu {
    display: flex;
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu li a {
    color: var(--text-dark);
    padding: 12px 24px;
    font-size: 0.95rem;
    display: block;
    font-weight: 500;
}

.dropdown-menu li a:hover {
    background: var(--amuri-light);
    color: var(--amuri-primary);
    padding-left: 28px;
}

.login-btn {
    background: var(--glass-bg);
    border: 1.5px solid var(--glass-border);
    padding: 10px 28px;
    border-radius: 30px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.login-btn:hover {
    background: var(--text-light);
    color: var(--amuri-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    height: 90vh;
    min-height: 650px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    overflow: hidden;
}

.hero video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    z-index: 1;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 25, 54, 0.85) 0%, rgba(21, 60, 122, 0.6) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--text-light);
    width: 100%;
    max-width: 900px;
    padding: 0 24px;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    text-shadow: 0 10px 30px rgba(0,0,0,0.3);
    font-weight: 800;
    line-height: 1.15;
    color: var(--text-light);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 50px;
    text-shadow: 0 4px 15px rgba(0,0,0,0.3);
    font-weight: 400;
    color: rgba(255,255,255,0.9);
}

/* Glassmorphic Address Checker */
.address-checker-box {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 8px;
    border-radius: 50px;
    display: flex;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    max-width: 750px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.address-checker-box:focus-within {
    box-shadow: 0 25px 50px rgba(0,0,0,0.3), 0 0 0 4px rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.address-checker-box input {
    flex: 1;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    padding: 16px 32px;
    font-size: 1.1rem;
    border-radius: 40px;
    outline: none;
    color: var(--text-dark);
    font-weight: 500;
}

.address-checker-box input::placeholder {
    color: #6b7280;
}

.address-checker-box button {
    background: linear-gradient(135deg, var(--amuri-accent), #e66e00);
    color: #fff;
    border: none;
    padding: 0 40px;
    margin-left: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(255, 123, 0, 0.3);
}

.address-checker-box button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(255, 123, 0, 0.4);
}

/* Sections Global */
.section-padding {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    color: var(--amuri-dark);
    margin-bottom: 24px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

/* Plans Section */
.plans-section {
    background: linear-gradient(to bottom, #ffffff, var(--bg-light));
    position: relative;
    z-index: 10;
}

.tech-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
}

.tech-intro h3 {
    color: var(--amuri-primary);
    font-size: 2rem;
    margin-bottom: 16px;
    font-weight: 700;
}

.tech-intro p {
    color: var(--text-grey);
    font-size: 1.1rem;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.plans-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
    max-width: 1050px;
    margin-left: auto;
    margin-right: auto;
}

.plan-divider {
    border: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(21, 60, 122, 0.2), transparent);
    margin: 70px auto;
    max-width: 1000px;
}

/* Cards */
.plan-card {
    background: #fff;
    border-radius: 24px;
    padding: 45px 30px 40px;
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(21, 60, 122, 0.1);
    border-color: var(--amuri-light);
}

.plan-ribbon {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--amuri-primary);
    color: #fff;
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 0.95rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 8px 15px rgba(21, 60, 122, 0.3);
}

.plan-price-wrapper {
    margin-bottom: 30px;
    text-align: center;
}

.plan-price {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1;
    letter-spacing: -1.5px;
}

.plan-price span {
    font-size: 1.1rem;
    color: var(--text-grey);
    font-weight: 500;
    letter-spacing: 0;
    margin-top: 8px;
    display: block;
}

.plan-features {
    list-style: none;
    margin: 0;
    padding: 0;
    flex-grow: 1;
}

.plan-features li {
    margin-bottom: 16px;
    font-size: 0.95rem;
    color: var(--text-grey);
    position: relative;
    padding-left: 36px;
    font-weight: 500;
    line-height: 1.5;
}

.plan-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    width: 22px;
    height: 22px;
    background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><circle cx="12" cy="12" r="12" fill="%23eaf2fa"/><path d="M9 12L11 14L15 10" stroke="%23153c7a" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
}

.plan-btn {
    display: inline-block;
    width: 100%;
    padding: 16px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    margin-top: 35px;
    background: var(--amuri-light);
    color: var(--amuri-primary);
    transition: all 0.3s ease;
}

.plan-card:hover .plan-btn {
    background: var(--amuri-primary);
    color: #fff;
    box-shadow: 0 10px 20px rgba(21, 60, 122, 0.2);
}

/* Popular Plan Highlights */
.popular-plan {
    border: 2px solid var(--amuri-accent);
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(255, 123, 0, 0.1);
    z-index: 2;
}

.popular-plan:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 30px 60px rgba(255, 123, 0, 0.2);
    border-color: var(--amuri-accent);
}

.popular-plan .plan-ribbon {
    background: linear-gradient(135deg, var(--amuri-accent), #e66e00);
    box-shadow: 0 8px 20px rgba(255, 123, 0, 0.3);
}

.popular-plan .plan-btn {
    background: linear-gradient(135deg, var(--amuri-accent), #e66e00);
    color: #fff;
    box-shadow: 0 10px 20px rgba(255, 123, 0, 0.2);
}

.popular-plan:hover .plan-btn {
    box-shadow: 0 15px 30px rgba(255, 123, 0, 0.3);
}

.most-popular-tag {
    color: var(--amuri-accent);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    display: inline-block;
    background: rgba(255, 123, 0, 0.1);
    padding: 6px 16px;
    border-radius: 20px;
}

/* Mobile Promo Banner */
.mobile-promo-banner {
    background: linear-gradient(135deg, var(--amuri-primary) 0%, var(--amuri-dark) 100%);
    border-radius: 24px;
    padding: 40px 50px;
    margin: 20px auto 10px auto;
    max-width: 1050px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    overflow: hidden;
    color: white;
    box-shadow: 0 20px 40px rgba(10, 25, 54, 0.2);
}

.promo-bg-decoration {
    position: absolute;
    right: -100px;
    top: -100px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.mobile-promo-text {
    position: relative;
    z-index: 2;
    flex: 1;
}

.mobile-promo-text h3 {
    font-size: 1.8rem;
    margin-bottom: 12px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 16px;
    color: white;
}

.mobile-promo-text p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.8);
    font-weight: 400;
    line-height: 1.6;
    max-width: 600px;
}

.mobile-promo-btn {
    position: relative;
    z-index: 2;
    background: #ffffff;
    color: var(--amuri-primary);
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    font-size: 1.05rem;
    white-space: nowrap;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.mobile-promo-btn:hover {
    background: var(--amuri-accent);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 123, 0, 0.3);
}

/* All Plans Dock */
.all-plans-box {
    background: #ffffff;
    border-radius: 24px;
    margin-top: 80px;
    padding: 35px 50px;
    position: relative;
    max-width: 1050px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 15px 35px rgba(0,0,0,0.04);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    border: 1px solid rgba(0,0,0,0.03);
}

.all-plans-title {
    color: var(--amuri-primary);
    font-size: 1.25rem;
    font-weight: 700;
    padding-right: 30px;
    border-right: 2px solid var(--amuri-light);
}

.all-plans-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 25px;
    flex: 1;
}

.all-plans-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    color: var(--text-dark);
    font-size: 1rem;
}

.all-plans-item::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 24px;
    background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><circle cx="12" cy="12" r="12" fill="%23eaf2fa"/><path d="M9 12L11 14L15 10" stroke="%23153c7a" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    background-size: contain;
}

.terms-text {
    text-align: center;
    font-size: 0.85rem;
    color: #9ca3af;
    margin-top: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Why Choose Us */
.why-us {
    background-color: var(--bg-white);
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    position: relative;
    padding: 60px 40px;
    border-radius: 24px;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background-color: var(--amuri-primary);
    background-size: cover;
    background-position: center;
    color: var(--text-light);
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10, 25, 54, 0.7), rgba(21, 60, 122, 0.9));
    z-index: -1;
    transition: background 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(21, 60, 122, 0.2);
}

.feature-card:hover::before {
    background: rgba(10, 25, 54, 0.6);
}

.bg-freedom { background-image: url('https://images.unsplash.com/photo-1499696010180-025ef6e1a8f9?q=80&w=1470&auto=format&fit=crop'); }
.bg-flexible { background-image: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?q=80&w=1472&auto=format&fit=crop'); }
.bg-fast { background-image: url('https://images.unsplash.com/photo-1544197150-b99a580bb7a8?q=80&w=1470&auto=format&fit=crop'); }

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--glass-bg);
    color: #fff;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 30px auto;
    transition: all 0.4s ease;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.feature-card:hover .feature-icon {
    background: var(--amuri-accent);
    border-color: var(--amuri-accent);
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 15px 30px rgba(255, 123, 0, 0.3);
}

.feature-card h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
    color: var(--text-light);
    font-weight: 700;
}

.feature-card p {
    color: rgba(255,255,255,0.85);
    font-size: 1.05rem;
    font-weight: 400;
    line-height: 1.6;
}

/* Footer Section */
footer {
    background-color: var(--amuri-dark);
    color: var(--text-light);
    padding: 100px 0 30px 0;
    position: relative;
    overflow: hidden;
}

.footer-decor {
    position: absolute;
    top: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(21, 60, 122, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 60px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 24px;
    color: var(--amuri-mid);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 16px;
}

.footer-col ul li a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-col ul li a:hover {
    color: var(--amuri-accent);
    padding-left: 5px;
}

.footer-col p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 12px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    text-align: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

/* Animations using GSAP or Vanilla JS Intersection Observer */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Delay modifiers */
.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .popular-plan { transform: none; box-shadow: 0 10px 30px rgba(0,0,0,0.03); }
    .popular-plan:hover { transform: translateY(-10px); }
}

@media (max-width: 1024px) {
    .plans-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    .plans-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero-content h1 {
        font-size: 3.2rem;
    }
}

@media (max-width: 850px) {
    .top-bar {
        justify-content: center;
        flex-wrap: wrap;
        text-align: center;
    }
    
    .header-container {
        padding: 16px 24px;
    }
    
    header {
        position: fixed;
        top: 0;
        background: rgba(10, 25, 54, 0.95);
        backdrop-filter: blur(10px);
    }

    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(10, 25, 54, 0.98);
        padding: 20px;
        flex-direction: column;
        border-top: 1px solid rgba(255,255,255,0.1);
    }
    
    nav.active {
        display: flex;
    }

    nav ul {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }
    
    nav ul li {
        width: 100%;
        text-align: center;
        padding: 15px 0;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        background: transparent;
        transform: none;
        opacity: 1;
        display: none;
        border: none;
    }

    .dropdown:hover .dropdown-menu {
        display: block;
        transform: none;
    }
    
    .dropdown-menu li a {
        color: rgba(255,255,255,0.7);
        padding: 10px;
    }

    .dropdown-menu li a:hover {
        background: transparent;
        color: var(--amuri-accent);
    }

    .mobile-menu-toggle {
        display: block;
    }
    
    .header-actions {
        display: none;
    }

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

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .address-checker-box {
        flex-direction: column;
        border-radius: 20px;
        padding: 16px;
    }

    .address-checker-box input {
        border-radius: 12px;
        margin-bottom: 12px;
        padding: 16px;
        width: 100%;
    }

    .address-checker-box button {
        border-radius: 12px;
        width: 100%;
        padding: 16px;
        margin-left: 0;
    }

    .plans-grid, .plans-grid-3 {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
    }

    .all-plans-box {
        flex-direction: column;
        align-items: flex-start;
        padding: 30px 24px;
    }

    .all-plans-title {
        border-right: none;
        border-bottom: 2px solid var(--amuri-light);
        padding-right: 0;
        padding-bottom: 20px;
        margin-bottom: 10px;
        width: 100%;
    }

    .mobile-promo-banner {
        flex-direction: column;
        text-align: center;
        padding: 40px 24px;
    }

    .mobile-promo-text h3 {
        justify-content: center;
    }
}
