: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: 8px 24px;
    font-size: 0.95rem;
    display: block;
    font-weight: 500;
    line-height: 1.2;
}

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

.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-login-item {
    display: none;
}

/* 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);
}

/* Hero Promo Badge */
.hero-promo-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 10px 24px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 30px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    animation: fadeInDown 0.8s ease-out forwards;
}

.hero-promo-badge:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
}

.promo-tag {
    background: linear-gradient(135deg, var(--amuri-accent), #ff9d40);
    color: white;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 4px 14px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(255, 123, 0, 0.3);
}

.promo-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-light);
    letter-spacing: 0.2px;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Glassmorphic Address Checker */
.address-checker-box {
    display: none !important; /* Hidden by request */
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 8px;
    border-radius: 50px;
    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;
    scroll-margin-top: 110px;
}

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

.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;
}

/* Things You Need To Know – Collapsible Disclosure */
.things-to-know {
    max-width: 900px;
    margin: 40px auto 0 auto;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    overflow: hidden;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.things-to-know:hover {
    border-color: rgba(21, 60, 122, 0.15);
    box-shadow: 0 4px 20px rgba(21, 60, 122, 0.06);
}

.things-to-know-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px 28px;
    cursor: pointer;
    list-style: none;
    user-select: none;
    -webkit-user-select: none;
    font-size: 1rem;
    font-weight: 600;
    color: var(--amuri-primary, #153c7a);
    transition: background 0.2s ease;
}

.things-to-know-toggle::-webkit-details-marker {
    display: none;
}

.things-to-know-toggle::marker {
    display: none;
    content: '';
}

.things-to-know-toggle:hover {
    background: rgba(21, 60, 122, 0.03);
}

.things-to-know-label {
    display: flex;
    align-items: center;
    gap: 12px;
}

.things-to-know-label svg {
    color: var(--amuri-accent, #e66e00);
    flex-shrink: 0;
}

.things-to-know-chevron {
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--amuri-primary, #153c7a);
    opacity: 0.5;
    flex-shrink: 0;
}

.things-to-know[open] .things-to-know-chevron {
    transform: rotate(180deg);
    opacity: 0.8;
}

.things-to-know-content {
    padding: 0 28px 28px 28px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    animation: ttkReveal 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--text-grey, #6b7280);
    font-size: 0.92rem;
    line-height: 1.75;
}

@keyframes ttkReveal {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Rich-text prose styling inside disclosure */
.things-to-know-content h1,
.things-to-know-content h2,
.things-to-know-content h3,
.things-to-know-content h4 {
    color: var(--text-dark, #1f2937);
    margin-top: 24px;
    margin-bottom: 12px;
    font-weight: 600;
}

.things-to-know-content h2 { font-size: 1.15rem; }
.things-to-know-content h3 { font-size: 1.05rem; }
.things-to-know-content h4 { font-size: 0.95rem; }

.things-to-know-content p {
    margin-bottom: 12px;
}

.things-to-know-content ul,
.things-to-know-content ol {
    padding-left: 24px;
    margin-bottom: 12px;
}

.things-to-know-content li {
    margin-bottom: 6px;
}

.things-to-know-content a {
    color: var(--amuri-accent, #e66e00);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.things-to-know-content a:hover {
    color: var(--amuri-primary, #153c7a);
}

.things-to-know-content strong {
    color: var(--text-dark, #1f2937);
    font-weight: 600;
}

.things-to-know-content blockquote {
    border-left: 3px solid var(--amuri-accent, #e66e00);
    margin: 16px 0;
    padding: 12px 20px;
    background: rgba(21, 60, 122, 0.03);
    border-radius: 0 8px 8px 0;
    font-style: italic;
}

.things-to-know-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
    font-size: 0.88rem;
}

.things-to-know-content th,
.things-to-know-content td {
    padding: 10px 14px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    text-align: left;
}

.things-to-know-content th {
    background: var(--bg-light, #f8fafc);
    font-weight: 600;
    color: var(--text-dark, #1f2937);
}

@media (max-width: 768px) {
    .things-to-know {
        margin-left: 10px;
        margin-right: 10px;
        border-radius: 12px;
    }

    .things-to-know-toggle {
        padding: 16px 20px;
        font-size: 0.92rem;
    }

    .things-to-know-content {
        padding: 0 20px 20px 20px;
        font-size: 0.88rem;
    }
}

/* Addons Section */
.addons-section {
    max-width: 900px;
    margin: 40px auto 0 auto;
}

.addons-title {
    text-align: center;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--amuri-primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    position: relative;
}

.addons-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: linear-gradient(135deg, var(--amuri-accent), #e66e00);
    margin: 10px auto 0 auto;
    border-radius: 2px;
}

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

.addon-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    padding: 18px 22px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.addon-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-color: rgba(21, 60, 122, 0.15);
}

.addon-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: var(--amuri-light);
    color: var(--amuri-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.addon-card:hover .addon-icon {
    background: var(--amuri-primary);
    color: #ffffff;
}

.addon-info {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
}

.addon-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.3;
}

.addon-desc {
    font-size: 0.8rem;
    color: var(--text-grey);
    margin-top: 2px;
    line-height: 1.4;
}

.addon-price {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--amuri-accent);
    white-space: nowrap;
}

/* 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;
}

.social-icons {
    display: flex;
    gap: 16px;
    margin-top: 14px;
    align-items: center;
}

.social-icons a,
.social-icons a i {
    color: #ffffff !important;
    font-size: 2rem;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.social-icons a:hover,
.social-icons a:hover i {
    color: var(--amuri-accent) !important;
    transform: translateY(-2px);
}

.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,
    .page-title {
        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;
        line-height: 1.2;
    }

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

    .mobile-menu-toggle {
        display: block;
    }

    .header-actions {
        display: none;
    }

    .mobile-login-item {
        display: list-item;
        margin-top: 15px;
    }

    .mobile-login-item .login-btn {
        display: inline-flex;
        justify-content: center;
    }

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

    .hero-content h1,
    .page-title {
        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;
    }
}

/* Page Hero (for subpages) */
.page-hero {
    position: relative;
    height: 40vh;
    min-height: 350px;
    background: url('https://images.unsplash.com/photo-1516387938699-a93567ec168e?q=80&w=2071&auto=format&fit=crop') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.page-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 4px 15px rgba(0,0,0,0.3);
    line-height: 1.15;
    color: var(--text-light);
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Support Grid */
.support-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
}

@media (max-width: 900px) {
    .support-section.section-padding {
        padding: 40px 0;
    }
    .support-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .contact-box, .faq-box {
        padding: 20px 16px;
        margin-left: -24px;
        margin-right: -24px;
        border-radius: 0;
        border-left: none;
        border-right: none;
    }
}

/* Contact & FAQ Boxes */
.contact-box, .faq-box {
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.03);
    height: fit-content;
    min-width: 0;
}

.contact-box h3, .faq-box h3 {
    font-size: 1.8rem;
    color: var(--amuri-primary);
    margin-bottom: 10px;
}

.contact-box > p {
    margin-bottom: 25px;
    color: var(--text-grey);
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
    background: var(--bg-light);
    font-family: inherit;
    color: var(--text-dark);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--amuri-mid);
    box-shadow: 0 0 0 3px rgba(104, 155, 212, 0.2);
    background: #fff;
}

.submit-btn {
    background: linear-gradient(135deg, var(--amuri-accent), #e66e00);
    color: #fff;
    border: none;
    padding: 16px 32px;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: 12px;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(255, 123, 0, 0.3);
    margin-top: 10px;
}

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

/* FAQ Accordion */
.faq-accordion {
    margin-top: 30px;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    border-color: var(--amuri-mid);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 18px 20px;
    background: #fff;
    border: none;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--amuri-primary);
}

.faq-question::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    transition: transform 0.3s ease;
    color: var(--amuri-mid);
}

.faq-item.active .faq-question::after {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: var(--bg-light);
}

.faq-item.active .faq-answer {
    max-height: 2000px;
    padding: 0 20px 20px 20px;
}

.faq-answer p {
    margin: 0;
    color: var(--text-grey);
    line-height: 1.6;
    overflow-wrap: anywhere;
}

/* Network Status Component */
.network-status-card {
    background: linear-gradient(135deg, var(--amuri-primary) 0%, var(--amuri-dark) 100%);
    border-radius: 20px;
    padding: 24px 30px;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 24px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    color: white;
}

.network-status-card::before {
    content: '';
    position: absolute;
    right: -50px;
    top: -50px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.network-status-card > * {
    position: relative;
    z-index: 2;
}

.network-status-card.status-ok {
    background: linear-gradient(135deg, #0d6b3e 0%, #22c55e 100%);
    box-shadow: 0 15px 35px rgba(34, 197, 94, 0.2);
}

.network-status-card.status-issue {
    background: linear-gradient(135deg, #e66e00 0%, var(--amuri-accent) 100%);
    box-shadow: 0 15px 35px rgba(255, 123, 0, 0.2);
}

.network-status-card.status-outage {
    background: linear-gradient(135deg, #991b1b 0%, #dc2626 100%);
    box-shadow: 0 15px 35px rgba(220, 38, 38, 0.2);
}

.status-icon {
    font-size: 2.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.status-content {
    flex: 1;
}

.status-content h3 {
    margin-bottom: 6px;
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    letter-spacing: 0.5px;
}

.status-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin: 0;
    line-height: 1.5;
}

.status-action {
    white-space: nowrap;
}

.status-btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    background: #ffffff;
    color: var(--amuri-primary);
    font-weight: 700;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.status-ok .status-btn {
    color: #16a34a;
}

.status-issue .status-btn {
    color: var(--amuri-accent);
}

.status-outage .status-btn {
    color: #dc2626;
}

.status-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.2);
    background: #f8fafc;
}

.pulse-animation {
    animation: statusPulse 2s infinite;
}

@keyframes statusPulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
    100% { transform: scale(1); opacity: 1; }
}

@media (max-width: 768px) {
    .network-status-card {
        flex-direction: column;
        text-align: center;
        padding: 24px 20px;
        gap: 16px;
    }
}

/* Plan Enquiry Modal */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 130px 24px 24px;
    backdrop-filter: blur(4px);
    overflow-y: auto;
}

.modal-content {
    background: #fff;
    border-radius: 24px;
    max-width: 960px;
    width: 100%;
    margin-bottom: 24px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    animation: modalFadeIn 0.25s ease;
}

.modal-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 24px;
    align-items: start;
}

@keyframes modalFadeIn {
    from { opacity: 0; transform: scale(0.95) translateY(10px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 28px 0;
}

.modal-header h2 {
    font-size: 1.4rem;
    color: var(--amuri-primary);
    margin: 0;
}

.modal-close-btn {
    background: none;
    border: none;
    font-size: 2rem;
    line-height: 1;
    color: var(--text-grey);
    cursor: pointer;
    padding: 0 4px;
    transition: color 0.2s;
}

.modal-close-btn:hover {
    color: var(--text-dark);
}

.modal-body {
    padding: 20px 28px 28px;
}

.modal-plan-selected {
    background: var(--amuri-light);
    border-radius: 12px;
    padding: 14px 18px;
    margin-bottom: 24px;
    font-size: 1rem;
    color: var(--amuri-primary);
}

.modal-plan-selected strong {
    font-weight: 700;
}

.modal-addons {
    margin-bottom: 20px;
    padding: 18px;
    background: var(--bg-light);
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.modal-addons h4 {
    font-size: 1rem;
    margin-bottom: 14px;
    color: var(--text-dark);
}

.modal-addon-checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    cursor: pointer;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.modal-addon-checkbox:last-child {
    border-bottom: none;
}

.modal-addon-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--amuri-primary);
    flex-shrink: 0;
    cursor: pointer;
}

.modal-addon-label {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.modal-addon-label strong {
    font-size: 0.95rem;
    color: var(--text-dark);
}

.modal-addon-label small {
    font-size: 0.8rem;
    color: var(--text-grey);
}

.modal-addon-price {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--amuri-accent);
    white-space: nowrap;
}

.modal-status {
    padding: 12px 16px;
    border-radius: 12px;
    margin-bottom: 16px;
    font-size: 0.9rem;
    font-weight: 500;
}

.modal-status-ok {
    background: #d4edda;
    color: #155724;
}

.modal-status-err {
    background: #f8d7da;
    color: #721c24;
}

@media (max-width: 600px) {
    .modal-overlay {
        padding: 100px 16px 16px;
        align-items: flex-start;
    }

    .modal-content {
        border-radius: 20px;
        max-width: 100%;
    }

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

    .modal-header {
        padding: 20px 20px 0;
    }

    .modal-body {
        padding: 16px 20px 24px;
    }
}

/* SIM Help Page Styles */
.sim-warning-box {
    background: linear-gradient(135deg, rgba(255, 123, 0, 0.08) 0%, rgba(255, 123, 0, 0.04) 100%);
    border: 1px solid rgba(255, 123, 0, 0.15);
    border-radius: 20px;
    padding: 28px 32px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 56px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.sim-warning-box:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    border-color: rgba(255, 123, 0, 0.25);
}

.sim-warning-box .warning-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--amuri-accent) 0%, #e66e00 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    box-shadow: 0 8px 20px rgba(255, 123, 0, 0.25);
}

.sim-warning-box .warning-content h3 {
    margin: 0 0 8px 0;
    color: var(--amuri-primary);
    font-size: 1.4rem;
    font-weight: 700;
}

.sim-warning-box .warning-content p {
    margin: 0;
    color: var(--text-grey);
    line-height: 1.7;
    font-size: 1rem;
}

.sim-manufacturers-section {
    margin-bottom: 80px;
}

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

.sim-manufacturers-section .section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-grey);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.manufacturer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.manufacturer-card {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 20px;
    padding: 36px 28px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    color: inherit;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.manufacturer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--amuri-primary) 0%, var(--amuri-mid) 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.manufacturer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(21, 60, 122, 0.12);
    border-color: rgba(104, 155, 212, 0.3);
}

.manufacturer-card:hover::before {
    transform: scaleX(1);
}

.manufacturer-card .manufacturer-icon {
    width: 72px;
    height: 72px;
    background: var(--amuri-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 36px;
    color: var(--amuri-primary);
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(21, 60, 122, 0.1);
}

.manufacturer-card:hover .manufacturer-icon {
    background: linear-gradient(135deg, var(--amuri-primary) 0%, var(--amuri-mid) 100%);
    color: white;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(21, 60, 122, 0.25);
}

.manufacturer-card h3 {
    margin: 0 0 12px;
    font-size: 1.35rem;
    color: var(--text-dark);
    font-weight: 700;
    letter-spacing: -0.3px;
}

.manufacturer-card p {
    margin: 0 0 20px;
    color: var(--text-grey);
    font-size: 0.95rem;
    line-height: 1.6;
}

.manufacturer-card .card-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--amuri-primary);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.manufacturer-card:hover .card-link {
    gap: 16px;
    color: var(--amuri-accent);
}

.fwa-section {
    background: linear-gradient(135deg, var(--bg-light) 0%, white 100%);
    border-radius: 24px;
    padding: 48px 52px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.03);
}

.fwa-section .section-title {
    margin: 0 0 12px;
    font-size: 2rem;
    color: var(--amuri-dark);
    font-weight: 800;
    letter-spacing: -0.4px;
}

.fwa-section .section-subtitle {
    margin: 0 0 40px;
    color: var(--text-grey);
    font-size: 1.05rem;
    line-height: 1.7;
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.step-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

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

.step-item:hover {
    padding-left: 12px;
}

.step-item .step-number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--amuri-primary) 0%, var(--amuri-mid) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    box-shadow: 0 4px 15px rgba(21, 60, 122, 0.2);
}

.step-item .step-content {
    flex: 1;
    padding-top: 6px;
}

.step-item .step-content h4 {
    margin: 0 0 10px;
    font-size: 1.2rem;
    color: var(--text-dark);
    font-weight: 700;
    letter-spacing: -0.2px;
}

.step-item .step-content p {
    margin: 0;
    color: var(--text-grey);
    line-height: 1.7;
    font-size: 1rem;
}

.fwa-note {
    margin-top: 40px;
    padding: 24px 28px;
    background: linear-gradient(135deg, rgba(104, 155, 212, 0.1) 0%, rgba(104, 155, 212, 0.05) 100%);
    border-left: 4px solid var(--amuri-mid);
    border-radius: 12px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    box-shadow: 0 4px 15px rgba(104, 155, 212, 0.08);
}

.fwa-note i {
    color: var(--amuri-primary);
    font-size: 1.4rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.fwa-note p {
    margin: 0;
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .sim-warning-box {
        padding: 24px;
        gap: 16px;
        border-radius: 16px;
    }

    .sim-warning-box .warning-icon {
        width: 44px;
        height: 44px;
        font-size: 20px;
    }

    .sim-warning-box .warning-content h3 {
        font-size: 1.2rem;
    }

    .sim-manufacturers-section .section-title {
        font-size: 2.2rem;
    }

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

    .fwa-section {
        padding: 32px 24px;
        border-radius: 20px;
    }

    .fwa-section .section-title {
        font-size: 1.6rem;
    }

    .step-item {
        gap: 16px;
        padding: 16px 0;
    }

    .step-item:hover {
        padding-left: 0;
    }

    .step-item .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .step-item .step-content h4 {
        font-size: 1.1rem;
    }

    .fwa-note {
        padding: 20px;
        flex-direction: column;
        gap: 12px;
    }

    .fwa-note i {
        margin-top: 0;
    }
}
