/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

/* CSS Variables */
:root {
    /* Brand gradient (image-inspired) */
    --brand-yellow: #f6c653; /* softer */
    --brand-orange: #ff7a33; /* less saturated */
    --brand-red: #b83a2a;    /* softer red */
    --gradient-brand: linear-gradient(180deg, var(--brand-yellow) 0%, var(--brand-orange) 45%, var(--brand-red) 100%);

    /* Theme palette */
    --primary-color: var(--brand-orange);
    --primary-dark: var(--brand-red);
    --secondary-color: #9aa4b2;
    --accent-color: var(--brand-yellow);
    --success-color: #f6c653;
    --text-color: #d1d5db;   /* dimmed text */
    --text-light: #a5adbb;   /* slightly lighter than before */
    --bg-color: #121826;     /* a touch lighter */
    --bg-light: #1a2232;     /* surface slightly brighter */
    --border-color: rgba(255, 255, 255, 0.06);
    --shadow-light: 0 1px 3px 0 rgba(0, 0, 0, 0.55);
    --shadow-medium: 0 8px 16px rgba(0, 0, 0, 0.4);
    --shadow-large: 0 25px 45px -5px rgba(0, 0, 0, 0.5);
    --border-radius: 0.75rem;
    --transition: all 0.3s ease;
    
    /* Typography */
    --h1-size: 3rem;
    --h2-size: 2.25rem;
    --h3-size: 1.5rem;
    --normal-size: 1rem;
    --small-size: 0.875rem;
    
    /* Spacing */
    --header-height: 4.5rem;
    --section-padding: 5rem 0;
    --container-margin: 1.5rem;
    --gap: 2rem;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    min-height: 100vh; /* enable sticky footer */
    display: flex;
    flex-direction: column;
}

/* Mini Header Styles */
.mini-header {
    background-color: var(--bg-light);
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.85rem;
    width: 100%;
    display: block;
    position: sticky;
    top: 0;
    z-index: 101;
}

.mini-header-container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.mini-header-email, .mini-header-whatsapp, .mini-header-offer {
    color: var(--text-light);
    display: flex;
    align-items: center;
    height: 100%;
    line-height: normal;
}

.mini-header-email i, .mini-header-whatsapp i, .whatsapp-link i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 5px;
}

.whatsapp-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-light);
}

.whatsapp-link i {
    font-size: 1rem;
    color: var(--text-light);
    margin-right: 5px;
}

.mini-header-offer {
    font-weight: 600;
    color: var(--accent-color);
}

@media (max-width: 768px) {
    .mini-header-container {
        flex-direction: column;
        gap: 4px;
    }
}

/* CSS Variables */
:root {
    /* Brand gradient (image-inspired) */
    --brand-yellow: #f6c653; /* softer */
    --brand-orange: #ff7a33; /* less saturated */
    --brand-red: #b83a2a;    /* softer red */
    --gradient-brand: linear-gradient(180deg, var(--brand-yellow) 0%, var(--brand-orange) 45%, var(--brand-red) 100%);

    /* Theme palette */
    --primary-color: var(--brand-orange);
    --primary-dark: var(--brand-red);
    --secondary-color: #9aa4b2;
    --accent-color: var(--brand-yellow);
    --success-color: #f6c653;
    --text-color: #d1d5db;   /* dimmed text */
    --text-light: #a5adbb;   /* slightly lighter than before */
    --bg-color: #121826;     /* a touch lighter */
    --bg-light: #1a2232;     /* surface slightly brighter */
    --border-color: rgba(255, 255, 255, 0.06);
    --shadow-light: 0 1px 3px 0 rgba(0, 0, 0, 0.55);
    --shadow-medium: 0 8px 16px rgba(0, 0, 0, 0.4);
    --shadow-large: 0 25px 45px -5px rgba(0, 0, 0, 0.5);
    --border-radius: 0.75rem;
    --transition: all 0.3s ease;
    
    /* Typography */
    --h1-size: 3rem;
    --h2-size: 2.25rem;
    --h3-size: 1.5rem;
    --normal-size: 1rem;
    --small-size: 0.875rem;
    
    /* Spacing */
    --header-height: 4.5rem;
    --section-padding: 5rem 0;
    --container-margin: 1.5rem;
    --gap: 2rem;
}

/* Responsive Typography */
@media screen and (max-width: 768px) {
    :root {
        --h1-size: 2.25rem;
        --h2-size: 1.875rem;
        --h3-size: 1.25rem;
        --section-padding: 3rem 0;
        --container-margin: 1rem;
        --gap: 1.5rem;
    }
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--container-margin);
    padding-right: var(--container-margin);
}

.grid {
    display: grid;
    gap: var(--gap);
}

.section {
    padding: var(--section-padding);
}

/* Sticky footer layout */
.main { flex: 1 0 auto; }
.footer { margin-top: auto; }

.section__header {
    text-align: center;
    margin-bottom: 3rem;
}

.section__title {
    font-size: var(--h2-size);
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.section__subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: var(--border-radius);
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    font-size: var(--normal-size);
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-brand);
    color: white;
    border: none;
}

.btn-primary:hover {
    filter: brightness(1.05);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    border: none;
}

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

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

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

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.btn-full {
    width: 100%;
}

/* Header */
.header {
    position: fixed;
    top: 38px;
    left: 0;
    width: 100%;
    background-color: #121826; /* fixed dark header */
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-light);
    z-index: 1000;
    transition: var(--transition);
    margin-top: 0;
}

.nav {
    height: var(--header-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-image {
    height: 68px;
    width: auto;
}

.nav__logo .logo-text {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--accent-color);
    font-family: 'Bungee Spice', sans-serif;
    text-decoration: none;
}

.nav__list {
    display: flex;
    flex-direction: row;
    list-style: none;
    gap: 2rem;
}

.nav__link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav__link:hover,
.nav__link.active-link {
    color: var(--accent-color);
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-brand);
    transition: width 0.3s ease;
}

.nav__link:hover::after,
.nav__link.active-link::after {
    width: 100%;
}

.client-area {
    background: var(--gradient-brand);
    color: white !important;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: var(--transition);
}

.client-area:hover {
    filter: brightness(1.05);
    transform: translateY(-1px);
}

.client-area::after {
    display: none;
}

.nav__toggle,
.nav__close {
    display: none;
    font-size: 1.25rem;
    color: var(--text-color);
    cursor: pointer;
}

/* Submenu base */
.nav__item { position: relative; }
.submenu {
    display: none;
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    min-width: 220px;
    padding: 0.5rem 0;
    box-shadow: var(--shadow-medium);
    list-style: none;
    z-index: 1001;
}
.submenu li { padding: 0; }
.submenu a.nav__link { display: block; padding: 0.6rem 1rem; color: var(--text-color); }
.submenu a.nav__link:hover { background: rgba(255, 255, 255, 0.04); }

/* Show submenu only when parent is open */
.nav__item.open > .submenu { display: block; }

/* Mobile adjustments (position inline) */
@media screen and (max-width: 768px) {
    .nav__item .submenu {
        position: static;
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 0.25rem 0 0.5rem;
        min-width: 0;
    }
}

/* Web Hosting submenu */
.nav__item { position: relative; }
.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    min-width: 220px;
    padding: 0.5rem 0;
    box-shadow: var(--shadow-medium);
    list-style: none;
    z-index: 1001;
}
.submenu li { padding: 0; }
.submenu a.nav__link { display: block; padding: 0.6rem 1rem; color: var(--text-color); }
.submenu a.nav__link:hover { background: rgba(255, 255, 255, 0.04); }

@media screen and (min-width: 769px) {
    .nav__item > .submenu {
        top: calc(100% + 0.9rem) !important; /* push submenu further down */
    }
}
@media screen and (max-width: 768px) {
    .nav__item .submenu {
        position: static;
        display: block;
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 0.25rem 0 0.5rem;
        min-width: 0;
    }
}

/* Mobile Navigation - FIXED */
@media screen and (max-width: 768px) {
    .mini-header-container {
        justify-content: center;
    }
    
    .mini-header-whatsapp, .mini-header-offer {
        display: none;
    }
    
    .mini-header-email {
        margin: 0 auto;
    }
    
    .nav {
        justify-content: space-between;
        position: relative;
        height: var(--header-height);
    }
    
    .header {
        top: 37px; /* मोबाइल व्यू के लिए टॉप पोजिशन को कम किया */
    }
    
    .nav__logo {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        display: flex;
        align-items: center;
        z-index: 1000;
    }
    
    .logo-link {
        flex-direction: row;
        align-items: center;
        gap: 0.6rem;
    }
    
    .logo-image {
        height: 68px;
    }
    
    .logo-text {
        font-size: 1.3rem;
        text-align: center;
        line-height: 1;
    }
    
    /* Hide logo text in the logo container and show centered version */
    .nav__logo .logo-text {
        display: none;
    }
    
    
    .nav__toggle {
        position: absolute;
        right: 1rem;
        top: 50%;
        transform: translateY(-50%);
        display: flex;
        align-items: center;
        z-index: 1002;
    }

    /* Mobile-only hamburger icon color */
    .nav__toggle .toggle-icon {
        color: var(--primary-dark);
    }
    
    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        height: 100vh;
        background-color: var(--bg-light);
        padding: 6rem 2rem 2rem;
        transition: right 0.4s ease;
        box-shadow: var(--shadow-large);
        z-index: 1001;
    }
    
    .nav__menu.show-menu {
        right: 0;
    }
    
    /* Keep logo visible when menu is open */
    .nav.menu-open .nav__logo {
        opacity: 1;
        pointer-events: auto;
    }
    
    
    .nav__list {
        flex-direction: column;
        gap: 2.5rem;
        text-align: center;
    }
    
    .nav__link {
        font-size: 1.125rem;
        justify-content: center;
    }
    
    .nav__close {
        display: block;
        position: absolute;
        top: 1rem;
        right: 1rem;
        font-size: 2rem;
    }
}

/* Hero Section */
.hero {
    padding-top: calc(var(--header-height) + 2rem);
    background: radial-gradient(1200px 600px at 20% 20%, #202a3f 0%, transparent 60%),
                radial-gradient(1200px 600px at 80% 0%, #1c2538 0%, transparent 60%),
                linear-gradient(135deg, #141c2b 0%, #121826 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero__container {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 3rem;
}

.hero__title {
    font-size: var(--h1-size);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.hero__title-accent {
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero__description {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero__buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero__stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat__number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat__label {
    font-size: var(--small-size);
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Hero Illustration */
.hero__illustration {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
}

.server-icon {
    position: relative;
}

.server-rack {
    width: 120px;
    height: 200px;
    background: var(--gradient-brand);
    border-radius: 1rem;
    padding: 1rem;
    box-shadow: var(--shadow-large);
    animation: float 6s ease-in-out infinite;
}

.server-unit {
    width: 100%;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 0.5rem;
    margin-bottom: 0.75rem;
    position: relative;
    border: 2px solid rgba(255, 255, 255, 0.15);
}

.server-unit:last-child {
    margin-bottom: 0;
}

.server-unit.active {
    background-color: rgba(255, 194, 46, 0.25);
    border-color: var(--accent-color);
    animation: pulse 2s ease-in-out infinite;
}

.server-unit::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background-color: var(--success-color);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@media screen and (max-width: 768px) {
    .hero {
        padding-top: calc(var(--header-height) + 7rem); /* increased extra space below header on mobile */
    }
    .hero__container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero__buttons {
        justify-content: center;
    }
    
    .hero__stats {
        justify-content: center;
    }
}

/* Features Section */
.features {
    background-color: var(--bg-light);
}

.features__container {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.feature__card {
    background-color: var(--bg-color);
    padding: 2rem 2.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.feature__card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.feature__icon {
    margin-bottom: 1.5rem;
}

.icon-circle {
    width: 80px;
    height: 80px;
    background: var(--gradient-brand);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto;
    box-shadow: var(--shadow-medium);
}

.feature__title {
    font-size: var(--h3-size);
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.feature__description {
    color: var(--text-light);
    line-height: 1.6;
}

/* Pricing Section */
.pricing__container {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem; /* slightly tighter to allow wider cards */
    max-width: 1150px; /* allow a bit more width */
    margin: 0 auto;
}

.pricing__card {
    background-color: var(--bg-color);
    padding: 1.5rem 1.25rem; /* reduced to make cards shorter */
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-light);
    border: 2px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.pricing__card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.pricing__card--popular {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.pricing__card--popular:hover {
    transform: scale(1.05) translateY(-5px);
}

.popular__badge {
    position: absolute;
    top: 1.5rem;
    right: -2.5rem;
    background: var(--gradient-brand);
    color: white;
    padding: 0.5rem 2.5rem;
    font-size: var(--small-size);
    font-weight: 600;
    transform: rotate(45deg);
    text-transform: uppercase;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.35);
}

.pricing__title {
    font-size: var(--h3-size);
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.75rem; /* slightly tighter */
}

.pricing__price {
    display: flex;
    justify-content: center;
    align-items: baseline;
    margin-bottom: 1.25rem; /* slightly tighter */
}

.price__currency {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-light);
}

.price__amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0.25rem;
}

.price__period {
    font-size: 1rem;
    color: var(--text-light);
}

.pricing__features {
    list-style: none;
    margin-bottom: 1.25rem; /* slightly tighter */
    text-align: left;
    position: relative;
}

.pricing__features.folded .feature__item:nth-child(n+6) {
    display: none;
}

.feature__item {
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.feature__item:last-child {
    border-bottom: none;
}

.feature__check {
    color: var(--success-color);
    font-weight: 700;
    margin-right: 0.75rem;
    width: 20px;
    text-align: center;
}

.see-more-btn {
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 0.9rem;
    cursor: pointer;
    padding: 0.5rem;
    margin: -1rem auto 1rem;
    display: block;
    text-align: center;
    font-weight: 500;
    transition: var(--transition);
}

.see-more-btn:hover {
    color: var(--accent-color);
}

.see-more-btn i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.see-more-btn.expanded i {
    transform: rotate(180deg);
}

/* Contact Section */
.contact {
    background-color: var(--bg-light);
}

.contact__container {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: stretch;
    max-width: 1000px;
    margin: 0 auto;
}

.contact__info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    background-color: var(--bg-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    height: 100%;
}

.contact__item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1rem;
    border-radius: 0.5rem;
    transition: var(--transition);
    width: 100%;
    max-width: 300px;
    justify-content: flex-start;
}

.contact__item:hover {
    background-color: var(--bg-light);
    transform: translateX(5px);
}

.contact__icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-brand);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-medium);
}

.contact__details h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.contact__details p {
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 500;
}

.contact__form {
    background-color: var(--bg-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-color);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.contact__form .btn {
    margin-top: auto;
}

.contact__form h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.form__group {
    margin-bottom: 1.25rem;
}

.form__input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: var(--normal-size);
    transition: var(--transition);
    background-color: #151e2c; /* softer input surface */
    color: var(--text-color);
    font-family: inherit;
}

.form__input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.25);
    transform: translateY(-1px);
}

.form__textarea {
    resize: vertical;
    min-height: 100px;
}

@media screen and (max-width: 768px) {
    .contact__container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact__info {
        padding: 1.5rem;
    }
    
    .contact__form {
        padding: 1.5rem;
    }
    
    .contact__item {
        padding: 0.75rem;
    }
    
    .contact__icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
}

/* Footer */
.footer {
    background-color: var(--bg-light);
    color: white;
    padding: 3rem 0 1rem;
}

.footer__container {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer__logo .logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    font-family: 'Caveat', cursive;
}

.footer__logo {
    display: flex;
    justify-content: center;
}

.footer-logo-image {
    max-height: 50px;
    width: auto;
}

.footer__description {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 1rem;
    line-height: 1.6;
}

.footer__title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.footer__list {
    list-style: none;
}

.footer__list li {
    margin-bottom: 0.5rem;
}

.footer__link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer__link:hover {
    color: var(--accent-color);
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
}

.footer__copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--small-size);
}

/* Payment Icons in Footer */
.footer__payments {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.payment-icon {
    height: 28px;
    width: auto;
    filter: none;
    background: transparent;
    border-radius: 4px;
}

@media screen and (max-width: 768px) {
    .payment-icon { height: 24px; }
}

/* Scroll to Top Button */
.scroll-up {
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    width: 50px;
    height: 50px;
    background: var(--gradient-brand);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    z-index: 999;
}

.scroll-up.show {
    opacity: 1;
    visibility: visible;
}

.scroll-up:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.6s ease forwards;
}

/* Responsive Design */
@media screen and (max-width: 480px) {
    .features__container {
        grid-template-columns: 1fr !important;
    }
    
    .hero__buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero__buttons .btn {
        width: 100%;
        max-width: 170px;
    }
    
    .hero__stats {
        justify-content: space-around;
    }
    
    .pricing__container {
        grid-template-columns: 1fr;
    }
    
    .pricing__card--popular {
        transform: none;
    }
    
    .pricing__card--popular:hover {
        transform: translateY(-5px);
    }
}

@media screen and (max-width: 768px) {
    .features__container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing__container {
        grid-template-columns: 1fr;
    }
}

/* Print Styles */
@media print {
    .header,
    .scroll-up {
        display: none;
    }
    
    .hero {
        padding-top: 0;
        min-height: auto;
    }
    
    * {
        background: white !important;
        color: black !important;
        box-shadow: none !important;
    }
}