:root {
    /* Color Palette - Premium Azure & Sun */
    --primary: #2563EB;
    /* Vibrant Blue - Trust & Energy */
    --primary-dark: #1D4ED8;
    --primary-light: #EFF6FF;
    --secondary: #FDE68A;
    /* Soft Gold - Warmth & Value */
    --secondary-dark: #FACC15;
    --accent: #F97316;
    /* Vibrant Orange - Positivity */
    --text-primary: #1E293B;
    /* Deep Slate - Professional */
    --text-secondary: #64748B;
    /* Muted Slate */
    --background: #F8FAFC;
    /* Clean White-Blue Base */
    --white: #FFFFFF;
    --success: #10B981;
    --error: #EF4444;

    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Nunito', sans-serif;

    /* Layout */
    --container-width: min(1200px, 94vw);
    --header-height: clamp(64px, 12vh, 88px);

    /* Spacing Scale */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 7rem;

    /* Effects - Premium Polish */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 10, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 20, 0.05), 0 2px 4px -1px rgba(0, 0, 20, 0.03);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 50, 0.04), 0 4px 6px -2px rgba(0, 0, 50, 0.02);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 50, 0.06), 0 10px 10px -5px rgba(0, 0, 50, 0.02);
    --shadow-soft: 0 10px 30px rgba(37, 99, 235, 0.05);
    --shadow-hover: 0 20px 40px rgba(37, 99, 235, 0.1);

    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --radius: 1.5rem;
    --radius-full: 9999px;

    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --glass: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(255, 255, 255, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: none;
    -moz-text-size-adjust: none;
    -ms-text-size-adjust: none;
    text-size-adjust: none;
    width: 100%;
}

body {
    font-family: var(--font-body);
    background-color: var(--background);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: var(--glass);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    z-index: 1000;
    border-bottom: 1px solid var(--glass-border);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
}

.navbar .container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-weight: 600;
    color: var(--text-primary);
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.lang-switch {
    display: flex;
    align-items: center;
    background: #f0f0f0;
    border-radius: 30px;
    padding: 4px;
}

.lang-btn {
    border: none;
    background: none;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    color: var(--text-secondary);
    transition: var(--transition);
}

.lang-btn.active {
    background-color: var(--white);
    color: var(--primary);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Mobile Menu Toggle & Hamburger Icon */
.nav-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.menu-toggle {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    padding: 10px;
    z-index: 1002;
    -webkit-appearance: none;
    appearance: none;
    -webkit-tap-highlight-color: transparent;
}

.hamburger-icon {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 24px;
    height: 20px;
}

.hamburger-icon .bar {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

/* Hamburger to X animation */
.menu-toggle.active .hamburger-icon .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active .hamburger-icon .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .hamburger-icon .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}


/* Hero Section */
.hero {
    padding-top: calc(var(--header-height) + 60px);
    padding-bottom: 100px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-text {
    max-width: 100%;
    box-sizing: border-box;
}

.hero-text h1 {
    font-size: clamp(1.2rem, 5vw, 2.8rem);
    margin-bottom: 10px;
    color: var(--text-primary);
    word-break: normal;
    overflow-wrap: break-word;
    max-width: 100%;
}

.hero-text p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    max-width: 100%;
    word-break: normal;
    overflow-wrap: break-word;
}

.hero-text p:last-of-type {
    margin-bottom: 40px;
}

.hero-btns-container {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 18px 40px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 1.15rem;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.2);
    transition: var(--transition);
}

.search-btn {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%) !important;
    color: var(--text-primary) !important;
    box-shadow: 0 10px 25px rgba(252, 211, 77, 0.2) !important;
}

.search-btn-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.1;
}

.platform-text {
    font-size: 0.65rem;
    opacity: 0.9;
    font-weight: 600;
    margin-top: 2px;
}

.hero-cta:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.25);
    filter: brightness(1.1);
}

.search-btn:hover {
    box-shadow: 0 15px 35px rgba(252, 211, 77, 0.3) !important;
}

.hero-cta i {
    margin-left: 12px;
    transition: transform 0.3s ease;
}

.hero-cta:hover i {
    transform: translateX(5px);
}

.hero-image {
    position: relative;
    max-width: 100%;
    overflow: hidden;
}

.carousel-frame {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    position: relative;
    aspect-ratio: 4/3;
    transform: perspective(1000px) rotateY(-5deg);
    transition: var(--transition);
    background-color: var(--white);
}

.carousel-frame:hover {
    transform: perspective(1000px) rotateY(0deg);
    box-shadow: var(--shadow-hover);
}

.carousel-slide {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease;
}

.carousel-slide.active {
    opacity: 1;
}

.hero-shape {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60%;
    height: 120%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(253, 230, 138, 0.1) 100%);
    border-radius: 50%;
    z-index: -1;
    filter: blur(60px);
}

/* Intent Layer Styling */
.intent-layer {
    margin-top: 40px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    border-radius: var(--radius);
    border: 1px solid rgba(37, 99, 235, 0.1);
    max-width: 600px;
}

.intent-title {
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary);
    font-size: 1.1rem;
}

.intent-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.intent-item {
    display: block;
    padding: 10px 15px;
    background: var(--white);
    border: 1px solid #eee;
    border-radius: 30px;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    transition: var(--transition);
}

.intent-item:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

@media (max-width: 480px) {
    .intent-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Stats Section */
.stats {
    background-color: var(--white);
    padding: var(--space-lg) 0;
    box-shadow: var(--shadow-lg);
    margin-top: -60px;
    border-radius: var(--radius);
    position: relative;
    z-index: 10;
    width: 92%;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid rgba(37, 99, 235, 0.05);
}

.stats-agency-name {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: var(--space-md);
    letter-spacing: 0.5px;
    opacity: 0.9;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 5px;
}

.stat-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 600;
}

/* Services Section */
.section {
    padding: 70px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.04);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(37, 99, 235, 0.1);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.service-card-link.disabled {
    cursor: default;
    pointer-events: none;
}

.service-card-link.disabled .service-card:hover {
    transform: none;
    box-shadow: var(--shadow-soft);
    border-color: rgba(0, 0, 0, 0.03);
}

.clickable-service {
    cursor: pointer;
}

/* Modal Styling */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background-color: transparent;
    margin: 5% auto;
    padding: 0;
    width: 80%;
    max-width: 900px;
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.close-modal {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--primary);
}

.modal-carousel-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background-color: #000;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.modal-slides-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.modal-slide {
    min-width: 100%;
    height: 100%;
    object-fit: contain;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-nav:hover {
    background: var(--primary);
}

.carousel-nav.prev {
    left: 20px;
}

.carousel-nav.next {
    right: 20px;
}

.carousel-dots {
    text-align: center;
    padding: 20px 0;
}

.dot {
    cursor: pointer;
    height: 10px;
    width: 10px;
    margin: 0 5px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: inline-block;
    transition: var(--transition);
}

.dot.active,
.dot:hover {
    background-color: var(--primary);
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 20% auto;
    }

    .carousel-nav {
        width: 40px;
        height: 40px;
    }
}

.service-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(74, 144, 226, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.service-icon span {
    font-size: 32px;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

/* Pricing Section */
.pricing-section {
    background-color: var(--background);
    padding: 100px 0;
}

/* Pricing Toggle */
.pricing-toggle-container {
    display: flex;
    justify-content: center;
    width: fit-content;
    margin: 0 auto 24px;
    position: relative;
    padding: 4px;
    border-radius: 50px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 50%, var(--primary) 100%);
    background-size: 200% auto;
    animation: runningLight 4s linear infinite;
}

@keyframes runningLight {
    to {
        background-position: 200% center;
    }
}

.pricing-toggle {
    display: inline-flex;
    background: white;
    border-radius: 50px;
    padding: 6px;
    position: relative;
    z-index: 1;
    width: 100%;
    /* Ensure container fills the padding */
}

.toggle-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border: none;
    background: none;
    border-radius: 40px;
    cursor: pointer;
    font-weight: 700;
    color: var(--text-secondary);
    transition: var(--transition);
}

.toggle-btn .flag-label {
    background: var(--text-secondary);
    color: white;
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 4px;
    line-height: 1;
}

.toggle-btn.active {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.toggle-btn.active .flag-label {
    background: rgba(255, 255, 255, 0.3);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.pricing-card {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(37, 99, 235, 0.2);
}

.pricing-card.popular {
    border: 2px solid var(--primary);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.1);
}

.card-badge {
    position: absolute;
    top: 15px;
    right: -35px;
    background: linear-gradient(90deg, var(--accent) 0%, #FB923C 100%);
    color: white;
    padding: 6px 45px;
    font-size: 0.75rem;
    font-weight: 800;
    transform: rotate(45deg);
    box-shadow: 0 4px 10px rgba(249, 115, 22, 0.2);
}

.card-header {
    text-align: left;
    margin-bottom: 20px;
}

.card-header h3 {
    font-size: 1.25rem;
    margin-bottom: 4px;
    text-align: left;
}

.card-header .subtitle {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.price-display {
    margin-bottom: 12px;
}

.price-display .currency {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-secondary);
    vertical-align: top;
    margin-right: 2px;
}

.price-display .amount {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-primary);
}

.price-display .suffix {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

.replacement-badge {
    display: inline-block;
    background: rgba(74, 144, 226, 0.1);
    color: var(--primary);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.card-selector {
    margin-bottom: 20px;
}

.selector-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--text-secondary);
    text-transform: uppercase;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.custom-select {
    width: 100%;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid #eee;
    background: #f9f9f9;
    font-family: inherit;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-primary);
    cursor: pointer;
    transition: var(--transition);
}

.custom-select:hover {
    border-color: var(--primary);
}

.card-features {
    flex-grow: 1;
    margin-bottom: 24px;
}

.card-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    margin-bottom: 10px;
    color: var(--text-secondary);
}

.card-features li .material-icons-round {
    font-size: 1.1rem;
    color: var(--primary);
}

.card-features li.excluded {
    opacity: 0.5;
    text-decoration: line-through;
}

.med-tooltip {
    position: relative;
    border-bottom: 1px dotted var(--text-secondary);
    cursor: help;
}

.med-tooltip::before {
    content: var(--tooltip-text, '');
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: #2C3E50;
    color: white;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 0.75rem;
    width: 200px;
    text-align: center;
    visibility: hidden;
    opacity: 0;
    transition: var(--transition);
    z-index: 100;
    line-height: 1.4;
    font-weight: 400;
    text-decoration: none;
}

.med-tooltip:hover::before {
    visibility: visible;
    opacity: 1;
    transform: translateX(-50%) translateY(-5px);
}

.card-whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--white);
    color: #25D366;
    padding: 12px;
    border-radius: 10px;
    border: 2px solid #25D366;
    font-weight: 700;
    font-size: 0.95rem;
    transition: var(--transition);
}

.card-whatsapp-btn:hover {
    background: #25D366;
    color: white;
}

.pricing-card.popular .card-whatsapp-btn {
    background: #25D366;
    color: white;
    border-color: #25D366;
}

.pricing-card.popular .card-whatsapp-btn:hover {
    background: #128C7E;
    border-color: #128C7E;
    transform: translateY(-2px);
}

/* Hide/Show based on Country */
[data-country] {
    display: none;
}

body.country-ph [data-country="ph"] {
    display: block;
}

body.country-ph span[data-country="ph"] {
    display: inline;
}

body.country-id [data-country="id"] {
    display: block;
}

body.country-id span[data-country="id"] {
    display: inline;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--text-primary);
    text-align: center;
}

.price-box {
    background-color: rgba(74, 144, 226, 0.05);
    padding: 16px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.price-row:last-child {
    margin-bottom: 0;
}

.price-row .label {
    font-weight: 600;
    color: var(--text-secondary);
}

.price-row .amount {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary);
}

.price-row .amount small {
    font-size: 1rem;
    margin-left: 2px;
}

.feature-list {
    margin-bottom: auto;
}

.feature-list li {
    padding: 4px 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.feature-list li::before {
    content: "check_circle";
    font-family: 'Material Icons Round';
    color: #4CAF50;
    font-size: 18px;
}

.feature-list li.note {
    color: var(--text-secondary);
    font-style: italic;
    font-size: 0.85rem;
    padding-top: 15px;
}

.feature-list li.note::before {
    content: "info";
    color: var(--primary);
}

.card-footer {
    margin-top: 16px;
    border-top: 1px dashed #eee;
    padding-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.pricing-wa-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #25D366;
    color: white !important;
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
}

.pricing-wa-btn:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.3);
}

.pricing-wa-btn svg {
    flex-shrink: 0;
}

@media (max-width: 1200px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-card.highlight {
        transform: none;
    }

    .pricing-card.highlight:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pricing-card {
        padding: 25px;
    }

    .pricing-card h3 {
        font-size: 1.3rem;
    }

    .price-box {
        padding: 15px;
    }

    .price-row .amount {
        font-size: 1.3rem;
    }

    .feature-list li {
        font-size: 0.9rem;
    }

    .pricing-wa-btn {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
}

/* Pricing Footnote */
.pricing-footnote {
    margin-top: 40px;
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-style: italic;
    padding: 15px 25px;
    background: rgba(74, 144, 226, 0.03);
    border-radius: 15px;
    border: 1px dashed rgba(74, 144, 226, 0.2);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Flow Section Styling */
.flow-section {
    background-color: var(--beige-light);
}

.flow-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
    position: relative;
}

.flow-step {
    display: flex;
    gap: 25px;
    background: #FFFFFF;
    background: var(--white, #FFFFFF);
    padding: 30px;
    border-radius: 1.25rem;
    border-radius: var(--radius, 1.25rem);
    box-shadow: 0 0.625rem 1.875rem rgba(0, 0, 0, 0.05);
    box-shadow: var(--shadow-soft, 0 0.625rem 1.875rem rgba(0, 0, 0, 0.05));
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    transition: all 0.3s ease;
    transition: var(--transition, all 0.3s ease);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.flow-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.step-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(0, 102, 204, 0.1);
    line-height: 1;
    font-family: 'Outfit', sans-serif;
}

.step-content h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--primary);
}

.step-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-muted);
}

.step-keywords {
    margin-top: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.keyword {
    font-size: 0.75rem;
    color: var(--primary-light);
    background: rgba(0, 102, 204, 0.05);
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 600;
}

.flow-cta {
    margin-top: 60px;
    text-align: center;
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    border: 1px dashed var(--primary-light);
}

.flow-cta p {
    margin-bottom: 20px;
    font-weight: 600;
    color: var(--text);
}

/* Step 7 Celebration Animation */
.celebration-step {
    overflow: hidden;
    position: relative;
    cursor: default;
}

.celebration-particles {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    pointer-events: none;
    z-index: 1;
}

.celebration-particles span {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 2px;
    opacity: 0;
    transform: translate(0, 0) rotate(0deg);
}

.celebration-step:hover .celebration-particles span {
    animation: celebrate-burst 1.2s cubic-bezier(0.1, 0.7, 0.3, 1) forwards;
}

@keyframes celebrate-burst {
    0% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    100% {
        transform: translate(var(--tx), var(--ty)) rotate(var(--rot));
        opacity: 0;
    }
}

.celebration-particles span:nth-child(1) {
    --tx: -120px;
    --ty: -150px;
    --rot: 720deg;
    background: #FFD700;
    animation-delay: 0.0s;
}

.celebration-particles span:nth-child(2) {
    --tx: 120px;
    --ty: -140px;
    --rot: -540deg;
    background: #FF4500;
    animation-delay: 0.05s;
}

.celebration-particles span:nth-child(3) {
    --tx: -150px;
    --ty: 10px;
    --rot: 360deg;
    background: #32CD32;
    animation-delay: 0.02s;
}

.celebration-particles span:nth-child(4) {
    --tx: 150px;
    --ty: 20px;
    --rot: -720deg;
    background: #1E90FF;
    animation-delay: 0.08s;
}

.celebration-particles span:nth-child(5) {
    --tx: -80px;
    --ty: 120px;
    --rot: 450deg;
    background: #FF69B4;
    animation-delay: 0.03s;
}

.celebration-particles span:nth-child(6) {
    --tx: 80px;
    --ty: 130px;
    --rot: -450deg;
    background: #8A2BE2;
    animation-delay: 0.06s;
}

.celebration-particles span:nth-child(7) {
    --tx: -180px;
    --ty: -60px;
    --rot: 600deg;
    background: #00CED1;
    animation-delay: 0.1s;
}

.celebration-particles span:nth-child(8) {
    --tx: 180px;
    --ty: -70px;
    --rot: -600deg;
    background: #FF8C00;
    animation-delay: 0.04s;
}

.celebration-particles span:nth-child(9) {
    --tx: -40px;
    --ty: -180px;
    --rot: 500deg;
    background: #7FFF00;
    animation-delay: 0.07s;
}

.celebration-particles span:nth-child(10) {
    --tx: 40px;
    --ty: -190px;
    --rot: -500deg;
    background: #FF1493;
    animation-delay: 0.09s;
}

.celebration-particles span:nth-child(11) {
    --tx: -200px;
    --ty: 80px;
    --rot: 300deg;
    background: #ADFF2F;
    animation-delay: 0.12s;
}

.celebration-particles span:nth-child(12) {
    --tx: 200px;
    --ty: 90px;
    --rot: -300deg;
    background: #BA55D3;
    animation-delay: 0.11s;
}

.celebration-particles span:nth-child(13) {
    --tx: -100px;
    --ty: -100px;
    --rot: 400deg;
    background: #F0E68C;
    animation-delay: 0.15s;
}

.celebration-particles span:nth-child(14) {
    --tx: 100px;
    --ty: -110px;
    --rot: -400deg;
    background: #40E0D0;
    animation-delay: 0.13s;
}

.celebration-particles span:nth-child(15) {
    --tx: -130px;
    --ty: 150px;
    --rot: 550deg;
    background: #E9967A;
    animation-delay: 0.18s;
}

.celebration-particles span:nth-child(16) {
    --tx: 130px;
    --ty: 160px;
    --rot: -550deg;
    background: #9ACD32;
    animation-delay: 0.16s;
}

.celebration-particles span:nth-child(17) {
    --tx: 0px;
    --ty: -200px;
    --rot: 700deg;
    background: #FF00FF;
    animation-delay: 0.2s;
}

.celebration-particles span:nth-child(18) {
    --tx: 0px;
    --ty: 200px;
    --rot: -700deg;
    background: #00FF00;
    animation-delay: 0.19s;
}

.celebration-particles span:nth-child(19) {
    --tx: -200px;
    --ty: -200px;
    --rot: 800deg;
    background: #00FFFF;
    animation-delay: 0.22s;
}

.celebration-particles span:nth-child(20) {
    --tx: 200px;
    --ty: 200px;
    --rot: -800deg;
    background: #FF0000;
    animation-delay: 0.21s;
}


@media (max-width: 992px) {
    .flow-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media (max-width: 600px) {
    .flow-step {
        flex-direction: column;
        gap: 15px;
        padding: 25px;
    }
}

/* Values / Why Choose Us */
.values-section {
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.values-content .value-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.value-icon {
    width: 50px;
    height: 50px;
    background-color: var(--secondary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #5D5647;
}

.value-text h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.value-text p {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.values-image img {
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

.methodology-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    padding: 12px 25px;
    background-color: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
}

.methodology-link-btn:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.2);
}

.methodology-link-btn i {
    font-size: 20px;
}

/* Testimonials */
.testimonials {
    background: linear-gradient(180deg, var(--background) 0%, #F5F0E6 100%);
    padding: 100px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    position: relative;
    margin-top: 20px;
}

.testimonial-card::before {
    content: '"';
    font-family: serif;
    font-size: 100px;
    color: rgba(230, 221, 196, 0.5);
    position: absolute;
    top: -30px;
    left: 20px;
    z-index: 0;
}

.testimonial-text {
    position: relative;
    z-index: 1;
    font-size: 1.1rem;
    font-style: italic;
    color: #444;
    margin-bottom: 25px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

/* Contact Section */
.contact-section {
    background-color: var(--primary);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-section h2 {
    color: var(--white);
    margin-bottom: 20px;
}

.contact-section p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.contact-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    padding: 20px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.2);
}

.contact-item i {
    font-size: 24px;
}

.cta-btn-large {
    background-color: var(--accent);
    color: var(--white);
    padding: 18px 45px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    display: inline-block;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.contact-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.contact-cta-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    min-width: 220px;
}

.contact-cta-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.phone-btn {
    background-color: var(--white);
    color: var(--primary);
}

.whatsapp-btn {
    background-color: #25D366;
    color: white;
}

.contact-info-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.info-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: inherit;
    text-decoration: none;
}

.info-link:hover {
    color: white;
    text-decoration: underline;
}

.info-divider {
    opacity: 0.5;
}

/* FAQ Section */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.faq-item {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    border-left: 4px solid var(--primary);
}

.faq-question {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.faq-answer {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Footer */
.footer {
    background-color: #2C3E50;
    color: #ecf0f1;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-brand p {
    color: #bdc3c7;
    margin-top: 15px;
    max-width: 300px;
}

.footer-links {
    display: flex;
    justify-content: flex-end;
    gap: 40px;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 20px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col a {
    color: #bdc3c7;
}

.footer-col a:hover {
    color: var(--white);
}

.footer-logos {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    align-items: center;
    flex-wrap: wrap;
}

.footer-logo-link img {
    height: 40px;
    width: auto;
    max-width: 120px;
    background: rgba(255, 255, 255, 0.9);
    padding: 5px;
    border-radius: 8px;
    transition: var(--transition);
}

.footer-logo-link:hover img {
    transform: translateY(-5px);
    background: white;
}

.footer-contact-info {
    margin-top: 25px;
}

.footer-contact-info p {
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: #bdc3c7;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer-contact-info i {
    font-size: 20px;
    color: var(--secondary);
}

.whatsapp-consult {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: white !important;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    margin-top: 5px;
    transition: var(--transition);
}

.whatsapp-consult:hover {
    transform: scale(1.05);
    background: #20ba5a;
    text-decoration: none !important;
}

/* Sharing Component */
.share-box {
    margin: 60px 0 40px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #eee;
}

.share-title {
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-primary);
    line-height: 1.6;
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none !important;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 0.95rem;
}

.share-btn.whatsapp {
    background-color: #25D366;
    color: white !important;
}

.share-btn.whatsapp:hover {
    background-color: #20ba5a;
    transform: translateY(-2px);
}

.share-btn.facebook {
    background-color: #1877F2;
    color: white !important;
}

.share-btn.facebook:hover {
    background-color: #166fe5;
    transform: translateY(-2px);
}

.share-btn.copy-link {
    background-color: var(--primary);
    color: white !important;
}

.share-btn.copy-link:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

@media (max-width: 480px) {
    .share-btn {
        width: 100%;
        justify-content: center;
    }
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
    color: #7f8c8d;
}

/* Animations using Intersection Observer classes would be impactful */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        padding: 100px 30px 30px;
        gap: 0;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        z-index: 1001;
        transform: translateX(100%);
        visibility: hidden;
        transition: transform 0.3s ease, visibility 0.3s ease;
    }

    .nav-links.active {
        transform: translateX(0);
        visibility: visible;
    }

    .nav-link {
        padding: 15px 0;
        font-size: 1.1rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-link::after {
        display: none;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-text {
        order: 1;
    }

    .hero-image {
        order: 2;
    }

    .hero-text h1 {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .hero-text p {
        font-size: 1.1rem;
        margin: 0 auto 30px;
        max-width: 100%;
    }

    .hero-btns-container {
        justify-content: center;
    }

    .stats {
        width: 95%;
        margin-top: -30px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .services-grid,
    .values-grid,
    .testimonials-grid,
    .faq-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .carousel-frame {
        transform: none;
        max-width: 100%;
        margin: 20px auto 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
    }

    .footer-logos {
        justify-content: center;
        gap: 12px;
    }

    .footer-logo-link img {
        height: 40px;
        padding: 4px;
        width: auto;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding-top: calc(var(--header-height) + 20px);
        padding-bottom: 40px;
        overflow-x: hidden;
    }

    .hero-text h1 {
        font-size: clamp(1rem, 4.5vw, 1.5rem);
        line-height: 1.3;
        margin-bottom: 12px;
        max-width: 100%;
    }

    .hero-text p {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }

    .hero-btns-container {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .hero-cta {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
        font-size: 0.95rem;
    }

    .hero-image {
        width: calc(100% + 30px);
        margin-left: -15px;
        max-width: none;
        margin-top: 25px;
    }

    .carousel-frame {
        width: 100%;
        border-radius: 0;
        aspect-ratio: 16/9;
        transform: none;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .stats {
        width: 100%;
        padding: 25px 15px;
        margin-top: -20px;
        border-radius: 0;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .stat-item {
        padding: 8px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .stat-item:last-child {
        border-bottom: none;
    }

    .stat-item h3 {
        font-size: 1.8rem;
    }

    .services-grid,
    .values-grid,
    .testimonials-grid,
    .faq-grid,
    .contact-grid {
        gap: 20px;
    }

    .service-card,
    .testimonial-card,
    .value-item {
        padding: 20px;
    }

    /* Footer Logo Adjustments for Small Screens */
    .footer-logos {
        gap: 10px;
        margin-top: 20px;
        justify-content: center;
    }

    .footer-logo-link img {
        height: 28px;
        /* Further reduced from 40px to ensure it's not too big */
        max-width: 90px;
        padding: 3px;
    }
}

/* ========================================
   LANDSCAPE ORIENTATION ADJUSTMENTS
   ======================================== */

/* Mobile Landscape (phones in landscape mode) */
@media (orientation: landscape) and (max-height: 500px) {
    .hero {
        padding-top: calc(var(--header-height) + 10px);
        padding-bottom: 20px;
    }

    .hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .hero-text h1 {
        font-size: 1.5rem;
    }

    .hero-text p {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }

    .hero-btns-container {
        flex-direction: row;
        gap: 10px;
    }

    .hero-cta {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .stats {
        padding: 15px;
    }

    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
    }

    .stat-item h3 {
        font-size: 1.2rem;
    }

    .section {
        padding: 40px 0;
    }

    .carousel-frame {
        max-height: 60vh;
    }
}

/* Tablet Landscape (768px - 1024px in landscape) */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .flow-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablet Portrait (768px - 1024px in portrait) */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-image {
        order: -1;
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .flow-container {
        grid-template-columns: 1fr;
    }
}

/* Pricing Add-ons Section */
.pricing-addons {
    margin-top: var(--space-xl);
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(37, 99, 235, 0.05);
}

.addon-header {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.addon-header h3 {
    color: var(--primary);
    margin-bottom: 5px;
}

.addon-header p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
}

.addon-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

@media (max-width: 992px) {
    .addon-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
}

.addon-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 12px 24px;
    background: rgba(74, 144, 226, 0.03);
    border-radius: 12px;
    border: 1px solid transparent;
    transition: var(--transition);
}

.addon-item:hover {
    border-color: var(--primary);
    background: rgba(74, 144, 226, 0.08);
    transform: translateY(-2px);
}

.addon-item.highlight {
    background: rgba(255, 143, 0, 0.03);
}

.addon-item.highlight:hover {
    border-color: var(--accent);
}

.addon-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    min-width: 100px;
}

@media (max-width: 768px) {
    .pricing-addons {
        padding: var(--space-md) var(--space-sm);
    }

    .addon-item {
        flex-direction: column;
        text-align: center;
        gap: 12px;
        padding: 20px 15px;
    }

    .addon-price {
        font-size: 1.6rem;
        min-width: auto;
    }

    .addon-desc {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .addon-price {
        font-size: 1.5rem;
    }
}

.addon-item.highlight .addon-price {
    color: var(--accent);
}

.addon-desc {
    font-weight: 700;
    color: var(--text-primary);
    font-size: 1.05rem;
    line-height: 1.4;
}

.addon-footer {
    margin-top: var(--space-lg);
    padding-top: var(--space-md);
    border-top: 1px dashed rgba(0, 0, 0, 0.08);
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-secondary);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.addon-footer p