/* ========== RESET & BASE ========== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Dark tones (header, hero, footer, CTA) */
    --bg-deep: #0A0A0A;
    --bg-dark: #111111;
    --bg-navy: #1A1A1A;
    --bg-card-dark: #1E1E1E;

    /* Light tones (content sections) */
    --bg-white: #FFFFFF;
    --bg-light: #F7F7F8;
    --bg-muted: #F0F0F2;
    --bg-card: #FFFFFF;

    /* Orange accent */
    --orange: #FC7B64;
    --orange-light: #FD9A88;
    --orange-bright: #FFB5A6;
    --orange-bg: rgba(252, 123, 100, 0.08);
    --orange-bg-hover: rgba(252, 123, 100, 0.14);

    /* Text (light mode) */
    --text-dark: #1A1A2E;
    --text-heading: #111111;
    --text-body: #555566;
    --text-muted: #888899;

    /* Text (dark sections) */
    --text-white: #FFFFFF;
    --text-light-on-dark: #C8C8D0;
    --text-muted-on-dark: #8888A0;

    /* Borders */
    --border: rgba(0, 0, 0, 0.08);
    --border-light: rgba(0, 0, 0, 0.12);
    --border-orange: rgba(252, 123, 100, 0.35);
    --border-dark: rgba(255, 255, 255, 0.08);
    --border-dark-light: rgba(255, 255, 255, 0.12);

    --radius: 14px;
    --radius-sm: 10px;
    --transition: 0.3s ease;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 110px;
    overflow-x: hidden;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--bg-white);
    color: var(--text-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-heading);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul { list-style: none; }
img { max-width: 100%; display: block; }

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

.gold {
    color: var(--orange);
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    gap: 8px;
}

.btn-gold {
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    color: #fff;
    box-shadow: 0 4px 20px rgba(252, 123, 100, 0.3);
}

.btn-gold:hover {
    box-shadow: 0 8px 32px rgba(252, 123, 100, 0.45);
    transform: translateY(-2px);
    filter: brightness(1.05);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-light-on-dark);
    border: 1.5px solid var(--border-dark-light);
}

.btn-outline:hover {
    border-color: var(--orange);
    color: var(--orange-light);
    background: rgba(252, 123, 100, 0.1);
}

.btn-lg {
    padding: 16px 40px;
    font-size: 16px;
    border-radius: var(--radius);
}

.btn-block {
    width: 100%;
    text-align: center;
}

/* ========== TOP BAR ========== */
.top-bar {
    background: #fff;
    border-bottom: 1px solid #eee;
    padding: 8px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
}

.top-bar-inner {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.top-bar-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #555;
}

.top-bar-phone svg {
    color: var(--orange);
}

.top-bar-phone:hover {
    color: var(--orange);
}

/* ========== NAVBAR ========== */
.navbar {
    position: fixed;
    top: 34px;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid #eee;
    transition: var(--transition);
}

.navbar.scrolled {
    top: 0;
    background: rgba(255, 255, 255, 0.98);
    border-bottom-color: #ddd;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo img {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-links > li {
    position: relative;
}

.nav-links > li > a {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    padding: 8px 0;
    position: relative;
}

.nav-links > li > a:hover,
.nav-links > li.nav-active > a {
    color: var(--orange);
}

.nav-links > li.nav-active > a {
    background: rgba(252, 123, 100, 0.28);
    border-radius: 6px;
    padding: 6px 14px;
}

.nav-links > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--orange);
    transition: var(--transition);
    border-radius: 2px;
}

.nav-links > li > a:hover::after {
    width: 100%;
}

.dropdown-arrow {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    opacity: 0.6;
}

/* Dropdown Menu */
.has-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid #eee;
    border-radius: var(--radius-sm);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.25s ease;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
    z-index: 100;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.has-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
    opacity: 1;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 500;
    color: #555;
    transition: var(--transition);
    white-space: nowrap;
}

.dropdown-menu li a::after {
    display: none;
}

.dropdown-menu li a:hover {
    color: var(--orange);
    background: rgba(252, 123, 100, 0.06);
    padding-left: 24px;
}

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-buttons .btn {
    padding: 9px 22px;
    font-size: 14px;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #333;
    border-radius: 2px;
    transition: var(--transition);
}

/* ========== HERO SLIDER ========== */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    display: flex;
    align-items: center;
}

.hero-slide.active {
    position: relative;
    opacity: 1;
    visibility: visible;
}

.hero-slider-dots {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.4);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.hero-dot.active {
    background: var(--orange);
    border-color: var(--orange);
    box-shadow: 0 0 10px rgba(252, 123, 100, 0.5);
}

.hero-dot:hover {
    border-color: var(--orange-light);
}

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(0, 0, 0, 0.3);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
}

.hero-arrow:hover {
    background: var(--orange);
    border-color: var(--orange);
    box-shadow: 0 4px 16px rgba(252, 123, 100, 0.4);
}

.hero-arrow-left {
    left: 24px;
}

.hero-arrow-right {
    right: 24px;
}

/* ========== HERO (DARK) ========== */
.hero {
    position: relative;
    padding: 180px 0 100px;
    overflow: hidden;
    min-height: 92vh;
    display: flex;
    align-items: center;
    background: linear-gradient(145deg, #050505 0%, #0A0A0A 25%, #111 50%, #1A1A1A 75%, #0A0A0A 100%);
    color: #fff;
}

.hero h1, .hero h2, .hero h3 {
    color: #fff;
}

.hero .gold {
    color: var(--orange);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 55% at 50% 30%, rgba(252, 123, 100, 0.1) 0%, transparent 65%),
        radial-gradient(ellipse 40% 40% at 20% 80%, rgba(252, 123, 100, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse 40% 40% at 85% 20%, rgba(252, 123, 100, 0.04) 0%, transparent 50%);
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(ellipse at center, black 15%, transparent 60%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 15%, transparent 60%);
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1000px;
    height: 600px;
    background: radial-gradient(ellipse, rgba(252, 123, 100, 0.08) 0%, rgba(252, 123, 100, 0.02) 40%, transparent 65%);
    border-radius: 50%;
    animation: heroGlow 8s ease-in-out infinite;
}

@keyframes heroGlow {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.4; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 1; }
}

.hero-split {
    position: relative;
    display: flex;
    align-items: center;
    gap: 40px;
    z-index: 2;
}

.hero-content {
    position: relative;
    text-align: left;
    flex: 1;
    min-width: 0;
}

.hero-banner {
    flex: 0 0 45%;
    max-width: 45%;
    position: relative;
}

/* Mac RDP hero: 3-part layout (title+subtitle | image | pills+buttons) */
.hero-split:has(.mac-hero-content) {
    flex-wrap: wrap;
}

.mac-hero-content {
    flex: 1 1 50%;
}

.mac-hero-banner {
    flex: 0 0 45%;
    max-width: 45%;
    align-self: center;
}

.mac-hero-bottom {
    flex: 1 1 50%;
    margin-top: 0;
}

.hero-banner img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 20px 60px rgba(252, 123, 100, 0.15));
    animation: heroBannerFloat 6s ease-in-out infinite;
}
.hero-banner-mobile {
    display: none;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: rgba(252, 123, 100, 0.1);
    border: 1px solid rgba(252, 123, 100, 0.3);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--orange-light);
    margin-bottom: 32px;
}

.hero-badge::before {
    content: '';
    width: 7px;
    height: 7px;
    background: var(--orange);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--orange);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.hero h1 {
    font-size: clamp(32px, 4vw, 50px);
    font-weight: 800;
    margin-bottom: 40px;
    letter-spacing: -1.5px;
    line-height: 1.15;
}

.hero-features {
    list-style: none;
    margin-bottom: 48px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 14px;
}

.hero-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: var(--text-light-on-dark);
    font-weight: 500;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-dark-light);
    border-radius: 50px;
    transition: var(--transition);
}

.hero-features li:hover {
    border-color: var(--border-orange);
    background: var(--orange-bg);
}

.hero-features li::before {
    content: '';
    width: 7px;
    height: 7px;
    background: var(--orange);
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 8px rgba(252, 123, 100, 0.4);
}

.hero-sub {
    font-size: 17px;
    color: var(--text-muted-on-dark);
    margin-bottom: 24px;
    font-weight: 500;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-actions .btn {
    padding: 14px 28px;
    font-size: 14px;
    white-space: nowrap;
}

.btn-whatsapp {
    background: #25D366 !important;
    color: #fff !important;
    border-color: #25D366 !important;
}

.btn-whatsapp:hover {
    background: #1EBE5A !important;
    border-color: #1EBE5A !important;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
}

/* ========== INTRO SECTION (LIGHT) ========== */
.intro-section {
    padding: 60px 0;
    background: var(--bg-white);
    text-align: left;
}

.intro-section h2 {
    font-size: clamp(26px, 3.5vw, 36px);
    margin-bottom: 20px;
    color: var(--text-heading);
}

.intro-section p {
    font-size: 18px;
    color: var(--text-body);
    line-height: 1.85;
    max-width: 900px;
}

/* ========== STATS BAR (LIGHT) ========== */
.stats-bar {
    position: relative;
    background: var(--bg-light);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 52px 0;
}

.stats-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 10%, rgba(252, 123, 100, 0.4) 50%, transparent 90%);
}

.stats-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 56px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 38px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 6px;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 44px;
    background: linear-gradient(180deg, transparent, var(--border-light), transparent);
}

/* ========== SECTION HEADER ========== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: clamp(30px, 4vw, 44px);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-header p {
    font-size: 16px;
    color: var(--text-body);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

.section-subtitle {
    display: inline-block;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--orange);
    margin-bottom: 10px;
}

/* ========== PRICING PLANS (LIGHT) ========== */
.plans {
    padding: 80px 0;
    background: var(--bg-white);
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    position: relative;
    align-items: start;
}

.plans-grid .plan-card {
    width: 100%;
}

@media (min-width: 1025px) {
    .plans-grid .plan-card:last-child:nth-child(3n + 1) {
        grid-column: 2;
    }

    .usa-res-plans {
        grid-template-columns: repeat(2, 1fr);
        max-width: 900px;
        margin: 0 auto;
    }
}

.plan-card {
    background: var(--bg-white);
    border: 1px solid rgba(0, 0, 0, 0.55);
    border-radius: var(--radius);
    padding: 44px 32px 36px;
    text-align: center;
    position: relative;
    transition: var(--transition);
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
}

.plan-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--orange), var(--orange-light));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.plan-card:hover::after {
    transform: scaleX(1);
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.14);
    border-color: rgba(0, 0, 0, 0.12);
}

/* Active / Popular card */
.plan-card.active {
    background: var(--bg-deep);
    border-color: rgba(252, 123, 100, 0.3);
    box-shadow: 0 12px 48px rgba(252, 123, 100, 0.12);
    transform: translateY(-8px);
}

.plan-card.active:hover {
    box-shadow: 0 20px 64px rgba(252, 123, 100, 0.22);
    transform: translateY(-14px);
}

.plan-card.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--orange), var(--orange-light));
}

.plan-card.active .plan-title,
.plan-card.active .plan-price {
    color: #fff;
}

.plan-card.active .plan-price-label,
.plan-card.active .plan-period {
    color: var(--text-muted-on-dark);
}

.plan-card.active .plan-currency {
    color: var(--orange-light);
}

.plan-card.active .plan-features-content p {
    color: var(--text-light-on-dark);
}

.plan-card.active .plan-features-content p::before {
    background: repeating-linear-gradient(
        to bottom,
        transparent,
        transparent 31px,
        rgba(255, 255, 255, 0.06) 31px,
        rgba(255, 255, 255, 0.06) 32px
    );
}

.popular-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Plan Icon */
.plan-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    background: var(--orange-bg);
    border: 1px solid var(--border-orange);
    border-radius: 50%;
    color: var(--orange);
    transition: var(--transition);
}

.plan-card:hover .plan-icon {
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    color: #fff;
    border-color: transparent;
    box-shadow: 0 8px 28px rgba(252, 123, 100, 0.3);
    transform: scale(1.05);
}

.plan-card.active .plan-icon {
    background: rgba(252, 123, 100, 0.12);
    border-color: rgba(252, 123, 100, 0.35);
}

.plan-card.active:hover .plan-icon {
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    color: #fff;
    border-color: transparent;
}

/* Plan Title */
.plan-title {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Plan Price Wrap */
.plan-price-wrap {
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--border);
}

.plan-card.active .plan-price-wrap {
    border-bottom-color: var(--border-dark);
}

.plan-price-label {
    display: block;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.plan-price {
    font-family: 'Outfit', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: var(--text-heading);
    line-height: 1;
}

.plan-currency {
    font-size: 28px;
    font-weight: 700;
    color: var(--orange);
    vertical-align: super;
    margin-right: 2px;
}

.plan-period {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-muted);
}

/* Plan Features Content (paragraph style) */
.plan-features-content {
    margin-bottom: 32px;
    position: relative;
}

.plan-features-content p {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: var(--text-body);
    line-height: 2.3;
    position: relative;
}

.plan-features-content p::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        to bottom,
        transparent,
        transparent 31px,
        var(--border) 31px,
        var(--border) 32px
    );
    pointer-events: none;
}

/* Plan Action */
.plan-action {
    padding-top: 4px;
}

/* Plan button overrides for light bg */
.plan-card .btn-outline {
    background: transparent;
    color: var(--text-heading);
    border: 2px solid rgba(0, 0, 0, 0.55);
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 50px;
}

.plan-card .btn-outline:hover {
    border-color: var(--orange);
    color: #fff;
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    box-shadow: 0 8px 28px rgba(252, 123, 100, 0.3);
}

.plan-card.active .btn-outline {
    color: var(--text-light-on-dark);
    border-color: var(--border-dark-light);
}

.plan-card.active .btn-outline:hover {
    color: #fff;
    border-color: var(--orange);
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
}

.plan-card .btn-gold {
    color: #fff;
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 50px;
}

/* ========== ABOUT (LIGHT) ========== */
.about {
    padding: 80px 0;
    background: var(--bg-light);
}

.about .section-header p {
    max-width: 900px;
    font-size: 16px;
    line-height: 1.85;
}

/* ========== SERVICES (LIGHT) ========== */
.services {
    padding: 80px 0;
    background: var(--bg-white);
}

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

.service-card {
    background: var(--bg-white);
    border: 1px solid rgba(0, 0, 0, 0.55);
    border-radius: var(--radius);
    padding: 36px 28px;
    transition: var(--transition);
    text-align: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.service-card:hover {
    border-color: var(--border-orange);
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.1);
}

.service-icon-wrap {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    background: var(--orange-bg);
    border: 1px solid var(--border-orange);
    border-radius: 50%;
    color: var(--orange);
    font-size: 28px;
    transition: var(--transition);
    position: relative;
    z-index: 2;
}

.service-card:hover .service-icon-wrap {
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    color: #fff;
    border-color: transparent;
    box-shadow: 0 8px 24px rgba(252, 123, 100, 0.3);
}

.service-content h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.service-content h3 a {
    color: var(--text-heading);
    transition: var(--transition);
}

.service-content h3 a:hover {
    color: var(--orange);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--orange);
    margin-top: 16px;
    transition: var(--transition);
}

.service-link i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.service-link:hover {
    color: var(--orange-light);
}

.service-link:hover i {
    transform: translateX(4px);
}


.service-content p {
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.75;
    margin-bottom: 20px;
}

.service-content .btn {
    padding: 10px 24px;
    font-size: 13px;
}

/* ========== ATTENTION (LIGHT) ========== */
.attention {
    padding: 80px 0;
    background: var(--bg-light);
}

.attention-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.attention-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    transition: var(--transition);
}

.attention-item:hover {
    border-color: var(--border-orange);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.attention-number {
    width: 36px;
    height: 36px;
    min-width: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 16px;
    border-radius: 50%;
}

.attention-item p {
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.65;
}

.attention-item strong {
    color: var(--orange);
}

/* Attention List Style */
.attention-list {
    list-style: none;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.attention-list-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.7;
}
.attention-list-icon {
    color: var(--orange);
    font-size: 18px;
    margin-top: 3px;
    flex-shrink: 0;
}
.attention-list-item a {
    color: var(--orange);
    text-decoration: underline;
}
.attention-list-item strong {
    color: var(--orange);
}

/* ========== NOTICE BANNER ========== */
.notice-banner {
    position: relative;
    padding: 0;
    background: var(--bg-deep);
    overflow: hidden;
    border-top: 1px solid rgba(252, 123, 100, 0.15);
    border-bottom: 1px solid rgba(252, 123, 100, 0.15);
}

.notice-glow {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 100% at 0% 50%, rgba(252, 123, 100, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse 60% 100% at 100% 50%, rgba(252, 123, 100, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.notice-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 18px 0;
    position: relative;
    z-index: 1;
}

.notice-icon-pulse {
    width: 40px;
    height: 40px;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(252, 123, 100, 0.12);
    border: 1px solid rgba(252, 123, 100, 0.3);
    border-radius: 50%;
    color: var(--orange);
    animation: noticePulse 2.5s ease-in-out infinite;
}

@keyframes noticePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(252, 123, 100, 0.25); }
    50% { box-shadow: 0 0 0 10px rgba(252, 123, 100, 0); }
}

.notice-text {
    display: flex;
    align-items: center;
    gap: 12px;
}

.notice-label {
    display: inline-block;
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #fff;
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    padding: 4px 12px;
    border-radius: 50px;
    flex-shrink: 0;
}

.notice-banner p {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-light-on-dark);
    margin: 0;
}

.notice-banner p strong {
    color: var(--orange-light);
    font-weight: 700;
}

.notice-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--orange);
    padding: 8px 20px;
    border: 1.5px solid rgba(252, 123, 100, 0.35);
    border-radius: 50px;
    background: rgba(252, 123, 100, 0.08);
    white-space: nowrap;
    transition: var(--transition);
    flex-shrink: 0;
}

.notice-btn:hover {
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 20px rgba(252, 123, 100, 0.35);
    transform: translateX(2px);
}

.notice-btn svg {
    transition: transform 0.3s ease;
}

.notice-btn:hover svg {
    transform: translateX(3px);
}

.notice-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.notice-btn-filled {
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 16px rgba(252, 123, 100, 0.3);
}

.notice-btn-filled:hover {
    box-shadow: 0 6px 24px rgba(252, 123, 100, 0.45);
    filter: brightness(1.08);
}

@media (max-width: 768px) {
    .notice-buttons {
        flex-direction: column;
        width: 100%;
        gap: 8px;
    }

    .notice-buttons .notice-btn {
        width: 100%;
        justify-content: center;
    }

    .notice-inner {
        flex-direction: column;
        gap: 14px;
        padding: 20px 0;
        text-align: center;
    }

    .notice-text {
        flex-direction: column;
        gap: 8px;
    }

    .notice-icon-pulse {
        width: 36px;
        height: 36px;
        min-width: 36px;
    }
}

/* ========== FAQ (LIGHT) ========== */
.faq {
    padding: 80px 0;
    background: var(--bg-white);
    position: relative;
}

.faq::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 100%, rgba(252, 123, 100, 0.03), transparent 50%);
    pointer-events: none;
}

.faq-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
}

.faq-img img {
    width: 100%;
    height: auto;
    display: block;
}

.faq-img-mobile {
    display: none;
}

.faq-split > .faq-content .section-subtitle {
    margin-bottom: 12px;
}

.faq-split > .faq-content h2 {
    font-size: clamp(24px, 3vw, 32px);
    color: var(--text-heading);
    margin-bottom: 28px;
}

.faq-list {
    max-width: 760px;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 8px 32px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

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

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0;
    background: none;
    border: none;
    color: var(--text-heading);
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    gap: 16px;
    transition: var(--transition);
}

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

.faq-icon {
    width: 24px;
    height: 24px;
    color: var(--orange);
    flex-shrink: 0;
    transition: transform 0.3s ease;
    padding: 3px;
    background: var(--orange-bg);
    border-radius: 50%;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    background: var(--orange-bg-hover);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding-bottom: 22px;
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.75;
}

/* ========== MAC FAQ ROWS ========== */
.mac-faq-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
    margin-bottom: 40px;
}

.mac-faq-row:last-child {
    margin-bottom: 0;
}

.mac-faq-row-reverse {
    grid-template-columns: auto 1fr;
}

.mac-faq-text h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 12px;
}

.mac-faq-text p {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.75;
}

.mac-faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.mac-faq-icon img {
    width: 128px;
    height: 128px;
}

@media (max-width: 768px) {
    .mac-faq-row,
    .mac-faq-row-reverse {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .mac-faq-row .mac-faq-icon {
        order: -1;
    }
}

/* ========== WHY CHOOSE RDP (LIGHT) ========== */
.why-rdp {
    padding: 100px 0;
    background: var(--bg-light);
}

.why-rdp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.why-rdp-card {
    text-align: center;
    padding: 40px 28px;
    background: var(--bg-white);
    border: 1px solid rgba(0, 0, 0, 0.55);
    border-radius: var(--radius);
    transition: var(--transition);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.why-rdp-card:hover {
    border-color: var(--border-orange);
    background: var(--orange-bg);
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.why-rdp-card:hover h3 {
    color: var(--orange);
}

.why-rdp-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    background: var(--orange-bg);
    border: 1px solid var(--border-orange);
    border-radius: 50%;
    font-size: 26px;
    color: var(--orange);
    transition: var(--transition);
}

.why-rdp-card:hover .why-rdp-icon {
    background: var(--orange-bg-hover);
    color: var(--orange);
    border-color: var(--orange);
    box-shadow: 0 4px 16px rgba(252, 123, 100, 0.2);
}

.why-rdp-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 12px;
}

.why-rdp-card p {
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.75;
}

/* ========== HEADING BAR + ICON BOXES ========== */
.heading-bar {
    padding: 80px 0;
    background: var(--bg-white);
    text-align: center;
}
.heading-bar-title {
    font-family: 'Outfit', sans-serif;
    font-size: 34px;
    font-weight: 700;
    color: var(--text-heading);
    line-height: 1.3;
    margin-bottom: 50px;
}
.icon-boxes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}
.icon-box-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 36px 20px;
    background: var(--bg-white);
    border: 1px solid rgba(0, 0, 0, 0.55);
    border-radius: var(--radius);
    transition: var(--transition);
}
.icon-box-item:hover {
    border-color: var(--orange);
    box-shadow: 0 4px 20px rgba(252, 123, 100, 0.12);
    transform: translateY(-3px);
}
.icon-box-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--orange-bg);
    color: var(--orange);
    font-size: 24px;
    margin-bottom: 18px;
}
.icon-box-item h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-heading);
}
.heading-bar-alt {
    background: var(--bg-light);
}
@media (max-width: 768px) {
    .heading-bar { padding: 40px 0 50px; }
    .heading-bar-title { font-size: 24px; margin-bottom: 32px; }
    .icon-boxes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .icon-box-item { padding: 28px 16px; }
    .icon-box-item h3 { font-size: 14px; }
}

/* ========== ADVANTAGES ========== */
.advantages {
    padding: 80px 0;
    background: var(--bg-white);
}
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.advantage-card {
    width: 100%;
    background: var(--bg-light);
    border: 1px solid rgba(0, 0, 0, 0.55);
    border-radius: var(--radius);
    padding: 32px 28px;
    text-align: center;
    transition: var(--transition);
}
.advantage-card:hover {
    border-color: var(--orange);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}
.advantage-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--orange-bg);
    color: var(--orange);
    font-size: 22px;
    margin: 0 auto 20px;
}
.advantage-card h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-heading);
    margin-bottom: 12px;
}
.advantage-card p {
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.7;
}
@media (max-width: 768px) {
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .advantage-card {
        width: 100%;
        text-align: center;
        padding: 24px 20px;
    }
    .advantage-icon {
        margin: 0 auto 20px;
    }
}

/* ========== HOW TO BUY SECTION ========== */
.how-to-section {
    padding: 80px 0;
    background: var(--bg-dark);
}
.how-to-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
.mac-support-img-mobile { display: none; }
.how-to-video {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 16 / 9;
}
.how-to-video iframe {
    width: 100%;
    height: 100%;
    border: none;
}
.how-to-steps h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 24px;
}
.how-to-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.how-to-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: var(--text-light-on-dark);
    line-height: 1.6;
}
.how-to-list li i {
    color: var(--orange);
    font-size: 16px;
    margin-top: 3px;
    min-width: 20px;
    text-align: center;
}
.how-to-list li a {
    color: var(--orange);
    text-decoration: underline;
}
@media (max-width: 768px) {
    .how-to-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .how-to-steps h3 { font-size: 20px; text-align: center; }
    .how-to-steps { text-align: center; display: flex; flex-direction: column; align-items: center; }
    .how-to-steps .btn { margin: 0 auto; }
    .mac-support-img-mobile { width: 100%; display: flex !important; justify-content: center; }
    .how-to-list li { text-align: left; }
    .mac-support-img-desktop { display: none !important; }
    .mac-support-img-mobile { display: block !important; }
}

/* ========== CTA (DARK) ========== */
.cta {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: #F4F1F1;
}

.cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 70% at 50% 50%, rgba(252, 123, 100, 0.06), transparent 60%);
}

.cta::after {
    display: none;
}

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

.cta h2 {
    font-size: clamp(30px, 4vw, 48px);
    margin-bottom: 16px;
    color: var(--bg-deep);
}

.cta p {
    font-size: 17px;
    color: #555;
    margin-bottom: 36px;
}

/* ========== CONTACT (LIGHT) ========== */
.contact {
    padding: 80px 0;
    background: var(--bg-white);
}
.contact.contact-bg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}
.contact.contact-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
}
.contact.contact-bg > .container {
    position: relative;
    z-index: 1;
}
.contact-info.contact-info-bg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: none;
    position: relative;
    z-index: 1;
}
.contact-info.contact-info-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    border-radius: var(--radius);
    z-index: -1;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
}

.contact-info {
    background: var(--bg-deep);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius);
    padding: 40px 32px;
}

.contact-info h3 {
    font-size: 22px;
    margin-bottom: 32px;
    color: #fff;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 28px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(252, 123, 100, 0.1);
    border: 1px solid rgba(252, 123, 100, 0.2);
    border-radius: var(--radius-sm);
}

.contact-icon svg {
    width: 22px;
    height: 22px;
    color: var(--orange);
}

.contact-item span {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--orange);
    margin-bottom: 6px;
}

.contact-item a,
.contact-item p {
    display: block;
    font-size: 14px;
    color: var(--text-muted-on-dark);
    line-height: 1.6;
}

.contact-item a:hover {
    color: var(--orange-light);
}

/* Contact Form */
.contact-form-header {
    margin-bottom: 28px;
}

.contact-form-header .section-subtitle {
    margin-bottom: 12px;
}

.contact-form-header h2 {
    font-size: clamp(22px, 3vw, 28px);
    color: var(--text-heading);
    line-height: 1.3;
}

.contact-form-wrap {
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px 32px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-form label {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    color: var(--text-heading);
    margin-bottom: 8px;
}

.form-group {
    width: 100%;
}

.form-row {
    display: flex;
    gap: 12px;
}

.form-group-code {
    flex: 0 0 220px;
}

.form-group-phone {
    flex: 1;
}

/* Merged phone input */
.phone-input-wrap {
    display: flex;
    align-items: center;
    background: var(--bg-white);
    border: 1px solid rgba(0, 0, 0, 0.45);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: var(--transition);
}

.phone-input-wrap:focus-within {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(252, 123, 100, 0.1);
}

.phone-input-wrap .phone-code-select {
    width: auto;
    min-width: 75px;
    max-width: 200px;
    flex-shrink: 0;
    padding: 14px 8px 14px 14px;
    border: none;
    border-right: 1px solid rgba(0, 0, 0, 0.45);
    border-radius: 0;
    background: var(--bg-light);
    color: var(--text-heading);
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23666'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
    padding-right: 22px;
}

.phone-input-wrap .phone-code-select:focus {
    background-color: rgba(252, 123, 100, 0.05);
}

.phone-input-wrap input[type="tel"] {
    flex: 1;
    padding: 14px 18px;
    border: none;
    border-radius: 0;
    background: transparent;
    color: var(--text-heading);
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    outline: none;
    min-width: 0;
}

.phone-input-wrap input[type="tel"]::placeholder {
    color: var(--text-muted);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg-white);
    border: 1px solid rgba(0, 0, 0, 0.45);
    border-radius: var(--radius-sm);
    color: var(--text-heading);
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    transition: var(--transition);
    outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--text-muted);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(252, 123, 100, 0.1);
}

.contact-form select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23888899' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.contact-form select option {
    background: var(--bg-white);
    color: var(--text-heading);
}

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

.contact-form label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-body);
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}

/* ========== FOOTER (DARK) ========== */
.footer {
    padding: 64px 0 0;
    background: var(--bg-deep);
    border-top: 1px solid var(--border-dark);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    text-align: center;
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.footer-col ul a {
    font-size: 14px;
    color: var(--text-muted-on-dark);
}

.footer-col ul a:hover {
    color: var(--orange-light);
}

.footer-payments {
    padding: 36px 0;
    margin-top: 48px;
    border-top: 1px solid var(--border-dark);
    text-align: center;
}

.payment-methods {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.payment-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-dark);
    border-radius: 8px;
    transition: var(--transition);
}

.payment-badge svg {
    display: block;
    opacity: 0.6;
    transition: var(--transition);
}

.payment-badge:hover {
    border-color: var(--border-orange);
}

.payment-badge:hover svg {
    opacity: 1;
}

.footer-bottom {
    padding: 28px 0;
    text-align: center;
    border-top: 1px solid var(--border-dark);
}

.footer-bottom p {
    font-size: 13px;
    color: var(--text-muted-on-dark);
}

/* ========== PAGE HERO / BREADCRUMB (DARK) ========== */
.page-hero {
    position: relative;
    padding: 180px 0 60px;
    text-align: center;
    overflow: hidden;
    min-height: 320px;
    display: flex;
    align-items: center;
    background: var(--bg-deep);
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.2);
}

.page-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.5) 0%, rgba(10, 10, 10, 0.9) 100%);
}

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

.page-hero-content h1 {
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -1px;
    color: #fff;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 15px;
}

.breadcrumb-nav a {
    color: var(--text-muted-on-dark);
}

.breadcrumb-nav a:hover {
    color: var(--orange-light);
}

.breadcrumb-sep {
    color: var(--orange);
    font-weight: 600;
}

.breadcrumb-nav > span:last-child {
    color: var(--orange);
    font-weight: 600;
}

/* ========== CONTACT PAGE SPECIFIC ========== */
.contact-page {
    padding: 80px 0 110px;
}

.contact-form-header {
    margin-bottom: 32px;
}

.contact-form-header h2 {
    font-size: clamp(24px, 3vw, 32px);
    letter-spacing: -0.5px;
}

.form-subtitle {
    display: inline-block;
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--orange);
    margin-bottom: 8px;
}

.contact-info-cta {
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid var(--border-dark);
}

/* OTP Section */
.otp-section {
    padding: 24px;
    background: var(--orange-bg);
    border: 1px solid rgba(252, 123, 100, 0.15);
    border-radius: var(--radius-sm);
}

.otp-section label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-heading);
    margin-bottom: 16px;
}

.otp-inputs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.otp-input {
    width: 48px !important;
    height: 52px;
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 0;
    padding: 8px !important;
    background: var(--bg-white);
    border: 1.5px solid var(--border-light);
    border-radius: var(--radius-sm);
    color: var(--orange);
    outline: none;
    transition: var(--transition);
}

.otp-input:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(252, 123, 100, 0.12);
}

.otp-actions {
    display: flex;
    gap: 12px;
}

.otp-actions .btn {
    padding: 10px 24px;
    font-size: 14px;
}

.otp-message {
    font-size: 14px;
    color: var(--orange);
    margin-bottom: 12px;
    font-weight: 500;
}

/* Thank You & Form Messages */
.thank-you-msg {
    padding: 20px;
    background: var(--orange-bg);
    border: 1px solid rgba(252, 123, 100, 0.2);
    border-radius: var(--radius-sm);
    text-align: center;
}

.thank-you-msg p {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--orange);
}

.form-msg {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 8px;
    min-height: 20px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .nav-links {
        gap: 18px;
    }

    .plans-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .usa-res-plans {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .hero-split {
        gap: 30px;
    }

    .hero-banner {
        flex: 0 0 40%;
        max-width: 40%;
    }

    .hero-features {
        gap: 10px;
    }

    .hero-features li {
        font-size: 13px;
        padding: 8px 14px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .rdp-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-rdp-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    .faq-split {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .faq-split {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .faq-split > .faq-content {
        display: contents;
    }

    .faq-split > .faq-content .section-subtitle {
        order: 1;
    }

    .faq-split > .faq-content h2 {
        order: 2;
        margin-bottom: 20px;
    }

    .faq-img {
        order: 3;
        display: block;
        text-align: center;
        margin-bottom: 28px;
    }

    .faq-img img {
        max-width: 300px;
        width: 100%;
        height: auto;
        margin: 0 auto;
    }

    .faq-split > .faq-content .faq-list {
        order: 4;
    }

    .faq-split > .faq-content {
        order: 1;
    }

    .faq-split > .faq-content h2 {
        text-align: center;
    }

    .faq-split > .faq-content .section-subtitle {
        text-align: center;
    }

    .faq-list {
        padding: 8px 20px;
    }

    .rdp-features-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .why-rdp-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .navbar {
        top: 0;
    }

    .logo {
        margin-left: -18px;
    }

    .nav-links.active > li.nav-active > a {
        background: none;
        border-radius: 0;
        padding: 14px 0;
        color: var(--orange);
        font-weight: 600;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 68px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        padding: 0 24px;
        gap: 0;
        border-bottom: 1px solid #eee;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease, padding 0.35s ease;
    }

    .nav-buttons {
        display: none;
    }

    .nav-links.active {
        max-height: 80vh;
        padding: 16px 24px;
        overflow-y: auto;
    }

    .nav-links.active > li {
        width: 100%;
    }

    .nav-links.active > li > a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 14px 0;
        font-size: 15px;
        color: #333;
        border-bottom: 1px solid #eee;
    }

    .nav-links.active > li > a::after {
        display: none;
    }

    /* Mobile dropdown */
    .nav-links .dropdown-menu {
        all: unset;
        display: block;
        padding-left: 16px;
        height: 0;
        overflow: hidden;
        transition: height 0.3s ease;
    }

    .nav-links.active .dropdown-menu li a {
        padding: 10px 0;
        font-size: 14px;
        color: #555;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-links.active .dropdown-menu li a:hover {
        padding-left: 8px;
    }

    .mobile-toggle {
        display: flex;
    }

    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero {
        min-height: auto;
        padding: 120px 0 60px;
    }

    .hero-split {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        text-align: center;
    }

    .hero-features {
        justify-content: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-banner {
        display: none;
    }
    .hero-banner-mobile {
        display: block;
        max-width: 75%;
        margin: 20px auto;
    }
    .hero-banner-mobile img {
        width: 100%;
        height: auto;
    }

    .mac-hero-content {
        flex: 1 1 100%;
    }

    .mac-hero-banner {
        flex: 0 0 auto;
        max-width: 75%;
        margin: 20px auto 0;
        order: 0;
    }

    .mac-hero-bottom {
        flex: 1 1 100%;
        text-align: center;
    }

    .hero h1 {
        font-size: 32px;
        letter-spacing: -1px;
        margin-bottom: 32px;
    }

    .hero-arrow {
        width: 36px;
        height: 36px;
    }

    .hero-arrow-left {
        left: 10px;
    }

    .hero-arrow-right {
        right: 10px;
    }

    .hero-slider-dots {
        bottom: 20px;
    }

    .about,
    .services,
    .plans,
    .attention,
    .contact,
    .faq {
        padding: 60px 0;
    }

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

    .plans-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .plan-card.active {
        transform: none;
    }

    .plan-card.active:hover {
        transform: translateY(-4px);
    }

    .locations-grid,
    .features-grid,
    .reviews-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

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

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        gap: 24px;
    }

    .stat-divider {
        display: none;
    }

    .stats-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .tutorial-block,
    .tutorial-block-reverse {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .subscribe-inner {
        flex-direction: column;
        text-align: center;
    }

    .tutorial-section {
        padding: 48px 0;
    }

    .tutorial-subscribe {
        padding: 48px 0;
    }

    .about-services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 48px auto 0;
    }

    .about-faq-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .about-faq-img {
        order: -1;
    }

    .about-services,
    .about-faq,
    .about-testimonials {
        padding: 60px 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .faq-list {
        padding: 4px 20px;
    }

    .page-hero {
        padding: 120px 0 48px;
        min-height: 240px;
    }

    .contact-form-wrap {
        padding: 24px 18px;
    }

    .phone-input-wrap .phone-code-select {
        min-width: 0;
        max-width: 155px;
        flex: 0 0 155px;
        padding: 12px 22px 12px 8px;
        font-size: 12px;
    }

    .phone-input-wrap input[type="tel"] {
        flex: 1;
        min-width: 0;
        padding: 12px 14px;
        font-size: 13px;
    }

    .contact-form input,
    .contact-form select {
        padding: 12px 14px;
        font-size: 13px;
    }

    .otp-inputs {
        justify-content: center;
    }

    .otp-actions {
        flex-direction: column;
    }
}

/* ========== POLICY PAGE (LIGHT) ========== */
.policy-section {
    padding: 80px 0 100px;
    background: var(--bg-white);
}

.policy-content {
    max-width: 860px;
    margin: 0 auto;
}

.policy-page-title {
    font-size: clamp(26px, 3vw, 32px);
    color: var(--text-heading);
    margin-bottom: 24px;
    padding-left: 0;
    border-left: none;
}

.policy-intro {
    font-size: 18px;
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border);
}

.policy-block p + .policy-list {
    margin-top: 16px;
}

.policy-list li strong {
    color: var(--text-heading);
}

.policy-block {
    margin-bottom: 40px;
}

.policy-block h2 {
    font-size: 24px;
    color: var(--text-heading);
    margin-bottom: 16px;
    padding-left: 16px;
    border-left: 3px solid var(--orange);
}

.policy-block p {
    font-size: 16px;
    color: var(--text-body);
    line-height: 1.8;
}

.policy-block-highlight {
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 40px;
}

.policy-block-highlight h2 {
    color: var(--orange);
    font-size: 20px;
    margin-bottom: 24px;
    padding-left: 0;
    border-left: none;
}

.policy-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.policy-list li {
    position: relative;
    padding-left: 24px;
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.7;
}

.policy-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--orange);
}

/* ========== TUTORIAL PAGE ========== */
.tutorial-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.tutorial-section.tutorial-alt {
    background: var(--bg-light);
}

.tutorial-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

@media (max-width: 1024px) {
    .tutorial-block,
    .tutorial-block-reverse {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .tutorial-steps {
        display: contents;
    }

    .tutorial-steps h2 {
        order: 1;
        text-align: center;
    }

    .tutorial-steps .steps-list {
        order: 2;
    }

    .tutorial-video {
        order: 3;
    }

    .tutorial-cta {
        order: 4;
        justify-self: center;
        margin-top: 0;
    }
}

.tutorial-block-reverse {
    direction: ltr;
}

.tutorial-steps h2 {
    font-size: clamp(22px, 2.5vw, 28px);
    color: var(--text-heading);
    margin-bottom: 28px;
    line-height: 1.3;
}

.steps-list {
    list-style: none;
    counter-reset: step;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 28px;
}

.steps-list li {
    counter-increment: step;
    position: relative;
    padding-left: 40px;
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.7;
}

.steps-list li::before {
    content: counter(step);
    position: absolute;
    left: 0;
    top: 2px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--orange-bg);
    border: 1px solid var(--border-orange);
    color: var(--orange);
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tutorial-cta {
    margin-top: 8px;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border-light);
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.tutorial-subscribe {
    padding: 80px 0;
    background: var(--bg-light);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.subscribe-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.subscribe-inner h2 {
    font-size: clamp(20px, 2.5vw, 28px);
    color: var(--text-heading);
}

.subscribe-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

/* ========== THANK YOU PAGE ========== */
.thankyou-section {
    padding: 80px 0 100px;
    background: var(--bg-light);
}

.thankyou-card {
    max-width: 680px;
    margin: 0 auto;
    background: var(--bg-white);
    border: 1px solid rgba(0, 0, 0, 0.55);
    border-radius: var(--radius);
    padding: 60px 48px;
    text-align: center;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.thankyou-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--orange-bg);
    border: 2px solid var(--border-orange);
    border-radius: 50%;
    color: var(--orange);
    animation: thankyouPulse 2s ease-in-out infinite;
}

.thankyou-icon svg {
    width: 26px;
    height: 26px;
}

@keyframes thankyouPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(252, 123, 100, 0.2); }
    50% { box-shadow: 0 0 0 16px rgba(252, 123, 100, 0); }
}

.thankyou-card h2 {
    font-size: clamp(24px, 3vw, 30px);
    color: var(--text-heading);
    margin-bottom: 16px;
}

.thankyou-card > p {
    font-size: 16px;
    color: var(--text-body);
    line-height: 1.75;
    margin-bottom: 40px;
}

.thankyou-steps {
    text-align: left;
    margin-bottom: 40px;
    padding: 32px;
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
}

.thankyou-steps h3 {
    font-size: 18px;
    color: var(--text-heading);
    margin-bottom: 24px;
    text-align: center;
}

.thankyou-timeline {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.timeline-number {
    width: 32px;
    height: 32px;
    min-width: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 14px;
    border-radius: 50%;
}

.timeline-content strong {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-heading);
    margin-bottom: 4px;
}

.timeline-content p {
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.6;
}

.thankyou-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.btn-outline-light {
    background: transparent;
    color: var(--text-heading);
    border: 1.5px solid var(--border-light);
}

.btn-outline-light:hover {
    border-color: var(--orange);
    color: var(--orange);
    background: var(--orange-bg);
}

.thankyou-contact {
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.thankyou-contact p {
    font-size: 14px;
    color: var(--text-muted);
}

.thankyou-contact a {
    color: var(--orange);
    font-weight: 600;
}

.thankyou-contact a:hover {
    color: var(--orange-light);
}

.gold-link {
    color: var(--orange);
    text-decoration: none;
    transition: var(--transition);
}

.gold-link:hover {
    color: var(--orange-light);
    text-decoration: underline;
}

/* ========== ABOUT PAGE ========== */
.about-services {
    padding: 100px 0;
    background: var(--bg-light);
}

.about-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 48px;
}

.about-service-card {
    background: var(--bg-white);
    border: 1px solid rgba(0, 0, 0, 0.55);
    border-radius: var(--radius);
    padding: 40px 28px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.about-service-card:hover {
    border-color: var(--border-orange);
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.1);
}

.about-service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    background: var(--orange-bg);
    border: 1px solid var(--border-orange);
    border-radius: 50%;
    color: var(--orange);
    transition: var(--transition);
}

.about-service-icon svg {
    width: 24px;
    height: 24px;
}

.about-service-card:hover .about-service-icon {
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    color: #fff;
    border-color: transparent;
    box-shadow: 0 8px 24px rgba(252, 123, 100, 0.3);
}

.about-service-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-heading);
}

.about-service-card p {
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.75;
    margin-bottom: 20px;
}

.about-service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--orange);
}

.about-service-link:hover {
    gap: 10px;
}

/* About FAQ */
.about-faq {
    padding: 100px 0;
    background: var(--bg-white);
}

.about-faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.about-faq-img-mobile {
    display: none;
}

@media (max-width: 991px) {
    .about-faq-grid {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .about-faq-content {
        display: contents;
    }

    .about-faq-content .section-subtitle {
        order: 1;
    }

    .about-faq-content h2 {
        order: 2;
        margin-bottom: 20px;
    }

    .about-faq-img {
        order: 3;
        display: block;
        text-align: center;
        margin-bottom: 28px;
    }

    .about-faq-grid:has(.about-faq-img-mobile) .about-faq-img {
        display: none;
    }

    .about-faq-img img {
        max-width: 300px;
        width: 100%;
        height: auto;
    }

    .about-faq-content .about-faq-img-mobile {
        display: block;
        order: 3;
        text-align: center;
        margin-bottom: 28px;
    }

    .about-faq-content .about-faq-img-mobile img {
        max-width: 300px;
        width: 100%;
        height: auto;
    }

    .about-faq-content .faq-list,
    .about-faq-content .faq-accordion {
        order: 4;
    }
}

.about-faq-img img {
    width: 100%;
    max-width: 480px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.about-faq-content .section-subtitle {
    text-align: left;
}

.about-faq-content h2 {
    font-size: clamp(26px, 3vw, 36px);
    color: var(--text-heading);
    margin-bottom: 32px;
}

.about-faq .faq-list {
    padding: 0;
    background: none;
    border: none;
    box-shadow: none;
}

/* About Testimonials */
.about-testimonials {
    padding: 100px 0;
    background: var(--bg-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
    justify-content: center;
}

.testimonials-grid:has(.testimonial-card:nth-child(2):last-child) {
    grid-template-columns: repeat(2, 1fr);
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-card {
    background: var(--bg-white);
    border: 1px solid rgba(0, 0, 0, 0.55);
    border-radius: var(--radius);
    padding: 32px 28px;
    position: relative;
    transition: var(--transition);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.testimonial-card:hover {
    border-color: var(--border-orange);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
}

.testimonial-quote {
    color: var(--orange);
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.75;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.testimonial-avatar {
    width: 44px;
    min-width: 44px;
    height: 44px;
    min-height: 44px;
    border-radius: 50%;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 700;
}

.testimonial-author strong {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-heading);
}

.testimonial-author span {
    font-size: 13px;
    color: var(--text-muted);
}

/* ========== Test Form Section ========== */
.testform-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.testform-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 48px;
    align-items: center;
}

.testform-grid > * {
    min-width: 0;
}

.testform-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.testform-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    display: block;
}

.testform-wrap {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px 32px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.testform .form-group {
    margin-bottom: 20px;
}

.testform .form-group label {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    color: var(--text-heading);
    margin-bottom: 8px;
}

.testform .form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: var(--text-dark);
    background: var(--bg-white);
    transition: var(--transition);
    outline: none;
    max-width: 100%;
}

.testform select.form-control {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23555566' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
    cursor: pointer;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.testform .form-control:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(252, 123, 100, 0.12);
}

.phone-input-group {
    display: flex;
    gap: 10px;
}

.phone-input-group .country-select {
    flex: 0 0 55%;
    min-width: 0;
}

.phone-input-group input {
    flex: 1;
    min-width: 0;
}

.testform-submit {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    margin-top: 4px;
}

/* OTP Section */
.otp-section {
    text-align: center;
    padding: 20px 0;
}

.otp-inputs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 24px;
}

.otp-input {
    width: 48px;
    height: 52px;
    text-align: center;
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-heading);
    border: 2px solid var(--border-light);
    border-radius: var(--radius-sm);
    outline: none;
    transition: var(--transition);
}

.otp-input:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(252, 123, 100, 0.12);
}

.otp-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.otp-buttons .btn {
    padding: 12px 28px;
    font-size: 14px;
}

.btn-outline {
    background: transparent;
    color: var(--orange);
    border: 2px solid var(--orange);
    padding: 12px 28px;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-outline:hover {
    background: var(--orange);
    color: #fff;
}

.thankyou-msg {
    text-align: center;
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #22c55e;
    padding: 20px;
}

.form-msg {
    text-align: center;
    font-size: 14px;
    color: var(--orange);
    margin-top: 12px;
}

#output {
    text-align: center;
    margin-bottom: 16px;
    font-size: 14px;
    color: var(--text-body);
}

@media (max-width: 768px) {
    .testform-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .testform-image {
        order: -1;
    }

    .testform-wrap {
        padding: 28px 20px;
    }

    .phone-input-group {
        flex-direction: column;
    }

    .phone-input-group .country-select {
        flex: 1;
    }

    .otp-input {
        width: 40px;
        height: 44px;
        font-size: 18px;
    }

    .otp-buttons {
        flex-direction: column;
    }

    .otp-buttons .btn {
        width: 100%;
    }
}

/* ========== Domain Search Section ========== */
.domain-search {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.domain-search-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.domain-search-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.92), rgba(26, 26, 26, 0.88));
}

.domain-search-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.domain-search-form {
    max-width: 700px;
    margin: 40px auto 0;
}

.domain-input-wrap {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 50px;
    padding: 6px 6px 6px 20px;
    gap: 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.domain-input-icon {
    color: var(--text-muted);
    flex-shrink: 0;
}

.domain-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 14px 12px;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    color: var(--text-dark);
    background: transparent;
    min-width: 0;
}

.domain-input::placeholder {
    color: var(--text-muted);
}

.domain-ext {
    border: none;
    outline: none;
    background: transparent;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-heading);
    padding: 10px 8px;
    cursor: pointer;
    appearance: auto;
}

.domain-search-btn {
    border-radius: 50px;
    padding: 14px 32px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    flex-shrink: 0;
}

.domain-pricing {
    margin-top: 36px;
}

.domain-pricing ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px 32px;
    list-style: none;
}

.domain-pricing li {
    color: var(--text-light-on-dark);
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
}

.domain-pricing li span {
    color: var(--orange-light);
    font-weight: 700;
    margin-left: 6px;
}

@media (max-width: 768px) {
    .domain-input-wrap {
        flex-wrap: wrap;
        border-radius: var(--radius);
        padding: 12px;
        gap: 8px;
    }

    .domain-input-icon {
        display: none;
    }

    .domain-input {
        width: 100%;
        padding: 12px;
        border: 1px solid var(--border);
        border-radius: var(--radius-sm);
    }

    .domain-ext {
        flex: 1;
        border: 1px solid var(--border);
        border-radius: var(--radius-sm);
        padding: 12px;
    }

    .domain-search-btn {
        width: 100%;
        border-radius: var(--radius-sm);
    }

    .domain-pricing ul {
        gap: 8px 20px;
    }
}

/* ========== Blog Section ========== */
.blog-section {
    padding: 80px 0 100px;
    background: var(--bg-white);
}

.blog-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
    align-items: start;
}

.blog-loading {
    text-align: center;
    padding: 60px 0;
    color: var(--text-muted);
    font-size: 16px;
}

/* Blog Post Cards */
.blog-posts {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.blog-post-card {
    background: var(--bg-white);
    border: 1px solid rgba(0, 0, 0, 0.55);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

.blog-post-card:hover {
    border-color: var(--border-light);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.blog-post-img {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.blog-post-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-post-card:hover .blog-post-img img {
    transform: scale(1.03);
}

/* Date Badge */
.blog-date-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--orange);
    color: #fff;
    border-radius: 8px;
    padding: 8px 14px;
    text-align: center;
    line-height: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.blog-date-day {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 700;
    display: block;
}

.blog-date-month {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
}

/* Post Body */
.blog-post-body {
    padding: 28px 28px 24px;
}

.blog-post-title {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 12px;
}

.blog-post-title a {
    color: var(--text-heading);
    text-decoration: none;
    transition: var(--transition);
}

.blog-post-title a:hover {
    color: var(--orange);
}

/* Post Meta */
.blog-post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.blog-post-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: var(--text-muted);
}

.blog-post-meta-item svg {
    color: var(--orange);
    flex-shrink: 0;
}

/* Excerpt */
.blog-post-excerpt {
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Read More */
.blog-read-more {
    display: inline-block;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--orange);
    text-decoration: none;
    transition: var(--transition);
}

.blog-read-more:hover {
    color: var(--text-heading);
}

/* Blog Post Tags */
.blog-post-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.blog-post-tags > svg {
    color: var(--orange);
    flex-shrink: 0;
}

.blog-post-tag {
    display: inline-block;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-body);
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: 20px;
}

/* Blog Pagination */
.blog-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-top: 48px;
}

.pag-btn {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 16px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    background: var(--bg-white);
    color: var(--text-body);
    cursor: pointer;
    transition: var(--transition);
}

.pag-btn:hover {
    border-color: var(--orange);
    color: var(--orange);
}

.pag-btn.active {
    background: var(--orange);
    border-color: var(--orange);
    color: #fff;
}

.pag-dots {
    padding: 0 4px;
    color: var(--text-muted);
}

/* ========== Blog Sidebar ========== */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.sidebar-widget {
    background: var(--bg-light);
    border-radius: var(--radius);
    padding: 24px;
}

.sidebar-widget-title {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--orange);
}

/* Search Widget */
.sidebar-search {
    display: flex;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: var(--bg-white);
}

.sidebar-search input {
    flex: 1;
    border: none;
    outline: none;
    padding: 10px 14px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: var(--text-body);
    background: transparent;
}

.sidebar-search input::placeholder {
    color: var(--text-muted);
}

.sidebar-search button {
    border: none;
    background: var(--orange);
    color: #fff;
    padding: 10px 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.sidebar-search button:hover {
    background: var(--orange-light);
}

/* Recent Posts Widget */
.sidebar-recent-posts {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.sidebar-recent-post {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.sidebar-recent-post-img {
    width: 70px;
    min-width: 70px;
    height: 55px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
}

.sidebar-recent-post-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sidebar-recent-post-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sidebar-recent-post-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-heading);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: var(--transition);
}

.sidebar-recent-post-title:hover {
    color: var(--orange);
}

.sidebar-recent-post-date {
    font-size: 12px;
    color: var(--text-muted);
}

/* Categories & Archives Widgets */
.sidebar-categories,
.sidebar-archives {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.sidebar-categories li,
.sidebar-archives li {
    border-bottom: 1px solid var(--border);
}

.sidebar-categories li:last-child,
.sidebar-archives li:last-child {
    border-bottom: none;
}

.sidebar-categories li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 0;
    font-size: 13px;
    color: var(--text-body);
    transition: var(--transition);
}

.sidebar-categories li a:hover {
    color: var(--orange);
    padding-left: 4px;
}

.sidebar-categories li a span {
    color: var(--text-muted);
    font-size: 12px;
}

/* Tags Widget */
.sidebar-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.sidebar-tag {
    display: inline-block;
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-body);
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 20px;
    transition: var(--transition);
}

.sidebar-tag:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: #fff;
}

/* Blog Responsive */
@media (max-width: 991px) {
    .blog-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

@media (max-width: 768px) {
    .blog-section {
        padding: 60px 0 80px;
    }

    .blog-post-body {
        padding: 20px;
    }

    .blog-post-title {
        font-size: 18px;
    }

    .blog-post-meta {
        gap: 10px;
    }

    .blog-pagination {
        flex-wrap: wrap;
    }
}

/* ========== Blog Single Post ========== */
.blog-single-post {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.blog-single-img {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.blog-single-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-single-title {
    font-family: 'Outfit', sans-serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.35;
    color: var(--text-heading);
    padding: 28px 28px 0;
    margin-bottom: 12px;
}

.blog-single-post .blog-post-meta {
    padding: 0 28px;
}

.blog-single-content {
    padding: 24px 28px 28px;
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.8;
}

.blog-single-content h2 {
    font-size: 24px;
    margin: 32px 0 16px;
}

.blog-single-content h3 {
    font-size: 20px;
    margin: 28px 0 12px;
}

.blog-single-content h4 {
    font-size: 18px;
    margin: 24px 0 10px;
}

.blog-single-content p {
    margin-bottom: 16px;
}

.blog-single-content ul,
.blog-single-content ol {
    margin: 0 0 16px 24px;
    list-style: disc;
}

.blog-single-content ol {
    list-style: decimal;
}

.blog-single-content li {
    margin-bottom: 6px;
}

.blog-single-content blockquote {
    border-left: 4px solid var(--orange);
    margin: 20px 0;
    padding: 16px 20px;
    background: var(--bg-light);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-style: italic;
    color: var(--text-heading);
}

.blog-single-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.blog-single-content th,
.blog-single-content td {
    border: 1px solid var(--border-light);
    padding: 10px 14px;
    text-align: left;
    font-size: 14px;
}

.blog-single-content th {
    background: var(--bg-light);
    font-weight: 600;
    color: var(--text-heading);
}

.blog-single-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-sm);
    margin: 16px 0;
}

.blog-single-content a {
    color: var(--orange);
    text-decoration: underline;
}

.blog-single-content a:hover {
    color: var(--text-heading);
}

.blog-single-post .blog-post-tags {
    padding: 0 28px 28px;
}

.blog-single-post .blog-post-tags .blog-post-tag {
    text-decoration: none;
    transition: var(--transition);
}

.blog-single-post .blog-post-tags .blog-post-tag:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: #fff;
}

/* Elementor Accordion - FAQ sections from WP posts */
.blog-single-content .elementor-accordion {
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    overflow: hidden;
    margin: 20px 0;
}

.blog-single-content .elementor-accordion-item {
    border-bottom: 1px solid var(--border-light);
}

.blog-single-content .elementor-accordion-item:last-child {
    border-bottom: none;
}

.blog-single-content .elementor-tab-title {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    cursor: pointer;
    background: var(--bg-light);
    transition: background 0.3s;
    gap: 12px;
}

.blog-single-content .elementor-tab-title:hover {
    background: var(--bg-muted);
}

.blog-single-content .elementor-accordion-title {
    font-weight: 600;
    color: var(--text-heading);
    font-size: 15px;
    text-decoration: none;
}

.blog-single-content .elementor-tab-content {
    display: none;
    padding: 15px 20px;
}

.blog-single-content .elementor-tab-content.elementor-active {
    display: block;
}

.blog-single-content .elementor-accordion-icon-opened {
    display: none;
}

.blog-single-content .elementor-tab-title.elementor-active .elementor-accordion-icon-closed {
    display: none;
}

.blog-single-content .elementor-tab-title.elementor-active .elementor-accordion-icon-opened {
    display: inline-flex;
}

@media (max-width: 768px) {
    .blog-single-title {
        font-size: 22px;
        padding: 20px 20px 0;
    }

    .blog-single-post .blog-post-meta {
        padding: 0 20px;
    }

    .blog-single-content {
        padding: 20px;
    }

    .blog-single-post .blog-post-tags {
        padding: 0 20px 20px;
    }
}

/* ========== Shared Hosting Pricing Cards ========== */
.shared-pricing {
    padding: 100px 0 70px;
    background: var(--bg-light);
}

.shared-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.shared-pricing-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0;
    text-align: center;
    transition: var(--transition);
    overflow: hidden;
}

.shared-pricing-card:hover {
    border-color: var(--orange);
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(252, 123, 100, 0.12);
}

.shared-pricing-head {
    padding: 32px 24px 24px;
    background: var(--bg-light);
    border-bottom: 1px solid var(--border);
}

.shared-pricing-head h6 {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--orange);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.shared-pricing-icon {
    width: 44px;
    height: 44px;
    background: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.shared-pricing-icon svg {
    width: 22px;
    height: 22px;
    color: #fff;
}

.shared-pricing-features {
    padding: 28px 24px;
    text-align: left;
}

.shared-pricing-features h5 {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-heading);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.shared-pricing-features ul {
    list-style: none;
}

.shared-pricing-features li {
    position: relative;
    padding: 8px 0 8px 24px;
    font-size: 14px;
    color: var(--text-body);
    border-bottom: 1px solid var(--border);
}

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

.shared-pricing-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background: var(--orange);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 10px;
}

.shared-pricing-price {
    padding: 0 24px 8px;
}

.price-amount {
    font-family: 'Outfit', sans-serif;
    font-size: 40px;
    font-weight: 800;
    color: var(--text-heading);
}

.price-period {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    color: var(--text-muted);
    font-weight: 500;
}

.shared-pricing-btn {
    display: block;
    margin: 0 24px 28px;
    text-align: center;
    padding: 14px 24px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ========== Domain Search Section (Shared Hosting) ========== */
.domain-search-section {
    padding: 0 0 100px;
    background: var(--bg-white);
}

.domain-search-inner {
    background: var(--bg-light);
    border-radius: var(--radius);
    padding: 48px;
    display: flex;
    align-items: center;
    gap: 40px;
}

.domain-search-img {
    flex-shrink: 0;
}

.domain-search-img img {
    width: 200px;
    height: auto;
}

.domain-search-form-wrap {
    flex: 1;
    min-width: 0;
}

.domain-form-row {
    display: flex;
    gap: 0;
    margin-bottom: 20px;
}

.domain-input {
    flex: 1;
    padding: 14px 18px;
    border: 1px solid var(--border-light);
    border-right: none;
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: var(--text-dark);
    background: var(--bg-white);
    outline: none;
    min-width: 0;
}

.domain-input:focus {
    border-color: var(--orange);
}

.domain-select {
    padding: 14px 12px;
    border: 1px solid var(--border-light);
    border-right: none;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: var(--text-body);
    background: var(--bg-white);
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%23555' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
    padding-right: 24px;
}

.domain-search-btn {
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    padding: 14px 28px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.domain-price-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 24px;
}

.domain-price-list li {
    font-size: 14px;
    color: var(--text-body);
}

.domain-price-list li span {
    font-weight: 700;
    color: var(--orange);
    margin-left: 4px;
}

@media (max-width: 768px) {
    .shared-pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .domain-search-inner {
        flex-direction: column;
        padding: 32px 20px;
        text-align: center;
    }

    .domain-form-row {
        flex-direction: column;
        gap: 10px;
    }

    .domain-input,
    .domain-select,
    .domain-search-btn {
        border-radius: var(--radius-sm);
        border: 1px solid var(--border-light);
    }

    .domain-search-btn {
        width: 100%;
    }

    .domain-price-list {
        justify-content: center;
    }
}

/* ========== WHMCS Hero Section ========== */
.whmcs-hero {
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
}

.whmcs-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.whmcs-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.92), rgba(26, 26, 42, 0.85));
}

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

.whmcs-hero-grid {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 48px;
    align-items: center;
}

.whmcs-hero-text h1 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 16px;
}

.whmcs-hero-text p {
    font-size: 16px;
    color: var(--text-light-on-dark);
    line-height: 1.7;
    margin-bottom: 28px;
}

.whmcs-countdown {
    display: flex;
    gap: 14px;
    margin-bottom: 32px;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    text-align: center;
    color: var(--text-light-on-dark);
    font-size: 12px;
    font-weight: 500;
    min-width: 72px;
}

.countdown-item span {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--orange);
    margin-bottom: 4px;
}

.whmcs-hero-img img {
    width: 100%;
    max-width: 560px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.whmcs-hero-img-mobile {
    display: none;
}

/* ========== Brand Logos ========== */
.brand-logos {
    padding: 48px 0;
    background: linear-gradient(135deg, var(--bg-light), var(--bg-muted));
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.brand-logos-track {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
}

.brand-logo-item {
    text-align: center;
}

.brand-logo-item img {
    max-height: 70px;
    width: auto;
    opacity: 0.5;
    transition: var(--transition);
    filter: grayscale(100%);
}

.brand-logo-item img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

/* ========== WHMCS Tabbed Pricing ========== */
.whmcs-pricing {
    padding: 100px 0 70px;
    background: var(--bg-light);
}

.whmcs-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 48px;
}

.whmcs-tab {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 600;
    padding: 12px 28px;
    border: 1px solid var(--border-light);
    border-radius: 50px;
    background: var(--bg-white);
    color: var(--text-body);
    cursor: pointer;
    transition: var(--transition);
}

.whmcs-tab:hover {
    border-color: var(--orange);
    color: var(--orange);
}

.whmcs-tab.active {
    background: var(--orange);
    border-color: var(--orange);
    color: #fff;
}

.whmcs-tab-content {
    display: none;
}

.whmcs-tab-content.active {
    display: block;
}

@media (max-width: 768px) {
    .whmcs-hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .whmcs-hero-img {
        display: none;
    }

    .whmcs-hero-img-mobile {
        display: flex;
        justify-content: center;
        margin-bottom: 20px;
    }

    .whmcs-hero-img-mobile img {
        max-width: 300px;
        width: 100%;
        height: auto;
        margin: 0 auto;
    }

    .whmcs-countdown {
        justify-content: center;
        flex-wrap: wrap;
    }

    .countdown-item {
        min-width: 60px;
        padding: 10px 12px;
    }

    .countdown-item span {
        font-size: 22px;
    }

    .whmcs-hero-text .btn {
        width: 100%;
        text-align: center;
    }

    .brand-logos-track {
        flex-wrap: wrap;
        justify-content: center;
        gap: 24px;
    }

    .brand-logo-item {
        flex: 0 0 auto;
    }

    .brand-logo-item img {
        max-height: 50px;
    }

    .whmcs-tabs {
        flex-wrap: wrap;
    }

    .whmcs-tab {
        font-size: 13px;
        padding: 10px 20px;
    }
}

/* ========== Cloud Hosting Features Section ========== */
.cloud-features {
    padding: 100px 0;
    background: var(--bg-white);
}

.cloud-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 20px;
}

.cloud-features-img img {
    width: 100%;
    max-width: 480px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.cloud-features-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.cloud-feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.cloud-feature-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--orange-bg);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
}

.cloud-feature-icon img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.cloud-feature-content h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 8px;
}

.cloud-feature-content p {
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.7;
}

/* ========== Pricing Comparison Table ========== */
.pricing-table-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.pricing-table-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.pricing-table-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.94), rgba(26, 26, 26, 0.9));
}

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

.pricing-table-box {
    background: var(--bg-white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'DM Sans', sans-serif;
}

.pricing-table thead tr {
    background: var(--bg-light);
}

.pricing-table-head {
    width: 28%;
    padding: 32px 28px;
    text-align: left;
    vertical-align: top;
    border-right: 1px solid var(--border);
}

.pricing-head-inner {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pricing-head-icon {
    color: var(--orange);
}

.pricing-head-inner h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-heading);
    line-height: 1.3;
}

.pricing-toggle {
    display: flex;
    align-items: center;
    gap: 12px;
}

.toggle-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    transition: var(--transition);
}

.toggle-label.active {
    color: var(--orange);
}

.toggle-switch {
    position: relative;
    width: 44px;
    height: 24px;
    background: var(--border-light);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.toggle-switch.active {
    background: var(--orange);
}

.toggle-knob {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 18px;
    height: 18px;
    background: #fff;
    border-radius: 50%;
    transition: var(--transition);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.toggle-switch.active .toggle-knob {
    left: 23px;
}

.pricing-plan-head {
    width: 24%;
    padding: 28px 20px;
    text-align: center;
    vertical-align: top;
    border-right: 1px solid var(--border);
}

.pricing-plan-head:last-child {
    border-right: none;
}

.plan-name {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 4px;
}

.plan-offer {
    display: block;
    font-size: 12px;
    color: var(--orange);
    font-weight: 600;
    margin-bottom: 12px;
}

.plan-price {
    font-family: 'Outfit', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: var(--text-heading);
    margin-bottom: 16px;
}

.yearly-price {
    display: none;
}

.plan-btn {
    font-size: 13px;
    padding: 10px 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-table tbody th,
.pricing-table tbody td {
    padding: 14px 20px;
    font-size: 14px;
    border-top: 1px solid var(--border);
}

.pricing-table tbody th {
    text-align: left;
    font-weight: 600;
    color: var(--text-heading);
    width: 28%;
    padding-left: 28px;
}

.pricing-table tbody td {
    text-align: center;
    color: var(--text-body);
    width: 24%;
    border-left: 1px solid var(--border);
}

.pricing-table tbody tr:hover {
    background: var(--bg-light);
}

/* Mobile pricing cards (hidden on desktop) */
.pricing-mobile {
    display: none;
}

.pricing-toggle-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
}

.pricing-card-mobile {
    background: var(--bg-white);
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.pricing-card-mobile-head {
    text-align: center;
    padding: 28px 20px 24px;
    background: var(--bg-light);
    border-bottom: 1px solid var(--border);
}

.pricing-card-mobile-features {
    list-style: none;
    padding: 0;
}

.pricing-card-mobile-features li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 13px 20px;
    font-size: 14px;
    border-bottom: 1px solid var(--border);
}

.pricing-card-mobile-features li span {
    color: var(--text-body);
}

.pricing-card-mobile-features li strong {
    color: var(--text-heading);
    font-weight: 600;
}

.pricing-card-mobile .plan-btn {
    display: block;
    text-align: center;
    margin: 20px;
    font-size: 14px;
    padding: 14px 20px;
}

/* ========== Exclusive Services Section ========== */
.exclusive-services {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.exclusive-services-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.exclusive-services-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.92), rgba(26, 26, 42, 0.88));
}

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

.exclusive-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.exclusive-service-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition);
    backdrop-filter: blur(8px);
}

.exclusive-service-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--orange);
    transform: translateY(-4px);
}

.exclusive-service-icon {
    width: 48px;
    height: 48px;
    background: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.exclusive-service-icon svg {
    width: 22px;
    height: 22px;
    color: #fff;
}

.exclusive-service-card h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.exclusive-service-card p {
    font-size: 14px;
    color: var(--text-light-on-dark);
    line-height: 1.7;
    margin-bottom: 16px;
}

.exclusive-service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--orange);
    text-decoration: none;
    transition: var(--transition);
}

.exclusive-service-link:hover {
    color: var(--orange-light);
    gap: 10px;
}

@media (max-width: 768px) {
    .cloud-features-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cloud-features-img {
        order: -1;
    }

    .pricing-desktop {
        display: none;
    }

    .pricing-mobile {
        display: block;
    }

    .exclusive-services-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero {
        padding: 110px 0 50px;
    }

    .hero h1 {
        font-size: 26px;
        margin-bottom: 28px;
    }

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

    .hero-features li {
        font-size: 12px;
        padding: 6px 12px;
    }

    .hero-features {
        gap: 8px;
        margin-bottom: 32px;
    }

    .hero-banner {
        max-width: 95%;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
    }

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

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

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

    .about,
    .services,
    .plans,
    .attention,
    .contact,
    .faq {
        padding: 50px 0;
    }

    .service-card {
        padding: 28px 20px;
    }

    .service-icon-wrap {
        width: 52px;
        height: 52px;
    }

    .service-content h3 {
        font-size: 18px;
    }

    .plan-card {
        padding: 28px 20px;
    }

    .plan-price {
        font-size: 40px;
    }

    .plan-features li {
        font-size: 13px;
    }

    .attention-item {
        padding: 20px 16px;
    }

    .attention-item p {
        font-size: 13px;
    }

    .contact-info,
    .contact-form-wrap {
        padding: 28px 20px;
    }

    .contact-info h3 {
        font-size: 18px;
    }

    .faq-list {
        padding: 4px 16px;
    }

    .faq-question {
        font-size: 15px;
        padding: 18px 16px;
    }

    .faq-answer p {
        font-size: 14px;
    }

    .notice-banner p {
        font-size: 13px;
    }

    .notice-inner {
        padding: 16px 0;
    }

    .cta h2 {
        font-size: 24px;
    }

    .cta p {
        font-size: 14px;
    }

    .footer-grid {
        gap: 24px;
    }

    .footer-col h4 {
        font-size: 16px;
    }

    .policy-section {
        padding: 48px 0 60px;
    }

    .policy-block-highlight {
        padding: 24px 20px;
    }

    .policy-block h2 {
        font-size: 20px;
    }

    .policy-intro {
        font-size: 16px;
    }

    .thankyou-card {
        padding: 40px 24px;
    }

    .thankyou-steps {
        padding: 24px 20px;
    }

    .thankyou-actions {
        flex-direction: column;
    }

    .thankyou-actions .btn {
        width: 100%;
    }
}

/* ========== GPU LANDING PAGE — PURPLE NEON CYBERPUNK ========== */

/* GPU Theme Variables */
.gpu-page {
    --gpu-purple: #A855F7;
    --gpu-purple-light: #C084FC;
    --gpu-magenta: #FF3EAC;
    --gpu-gradient: linear-gradient(135deg, #A855F7, #FF3EAC);
    --gpu-bg-deep: #08060E;
    --gpu-bg-dark: #0E0B16;
    --gpu-bg-card: #150F22;
    --gpu-bg-card-hover: #1C1530;
    --gpu-border: rgba(168, 85, 247, 0.45);
    --gpu-border-hover: rgba(168, 85, 247, 0.65);
    --gpu-glow: rgba(168, 85, 247, 0.25);
    --gpu-glow-magenta: rgba(255, 62, 172, 0.2);
    --gpu-text: #E2D9F3;
    --gpu-text-muted: #8B7DA8;
    --gpu-accent-bg: rgba(168, 85, 247, 0.08);
}

/* GPU Navbar (logo only) */
.gpu-navbar {
    top: 0;
    background: var(--gpu-bg-deep);
    border-bottom: none;
    position: relative;
}

.gpu-navbar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gpu-gradient);
    opacity: 0.7;
}

.gpu-navbar .logo img {
    filter: drop-shadow(0 0 12px rgba(168, 85, 247, 0.4)) drop-shadow(0 0 24px rgba(255, 62, 172, 0.2));
    transition: filter 0.3s ease;
}

.gpu-navbar .logo img:hover {
    filter: drop-shadow(0 0 18px rgba(168, 85, 247, 0.6)) drop-shadow(0 0 36px rgba(255, 62, 172, 0.35));
}

.gpu-navbar.scrolled {
    background: rgba(8, 6, 14, 0.98);
    box-shadow: 0 4px 30px rgba(168, 85, 247, 0.12), 0 0 60px rgba(168, 85, 247, 0.05);
}

.gpu-navbar.scrolled::after {
    opacity: 1;
}

.gpu-navbar .nav-container {
    justify-content: flex-start;
}

/* Override global styles inside .gpu-page */
.gpu-page .gold {
    color: var(--gpu-purple-light);
}

.gpu-page .section-subtitle {
    color: var(--gpu-purple);
}

/* GPU Hero */
.gpu-hero {
    position: relative;
    padding: 160px 0 80px;
    overflow: hidden;
    background: linear-gradient(145deg, #06040A 0%, var(--gpu-bg-deep) 25%, var(--gpu-bg-dark) 50%, #12091C 75%, var(--gpu-bg-deep) 100%);
    color: #fff;
}

.gpu-hero h1, .gpu-hero h2, .gpu-hero h3 {
    color: #fff;
}

.gpu-hero .gold {
    background: var(--gpu-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gpu-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 30% 40%, rgba(168, 85, 247, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse 40% 40% at 80% 70%, rgba(255, 62, 172, 0.08) 0%, transparent 50%);
}

.gpu-hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(168, 85, 247, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(168, 85, 247, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at 30% 50%, black 10%, transparent 55%);
    -webkit-mask-image: radial-gradient(ellipse at 30% 50%, black 10%, transparent 55%);
}

.gpu-hero-bg::after {
    content: '';
    position: absolute;
    top: 40%;
    left: 30%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 500px;
    background: radial-gradient(ellipse, rgba(168, 85, 247, 0.08) 0%, rgba(255, 62, 172, 0.03) 40%, transparent 65%);
    border-radius: 50%;
    animation: gpuGlow 8s ease-in-out infinite;
}

@keyframes gpuGlow {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.4; }
    50% { transform: translate(-50%, -50%) scale(1.15); opacity: 1; }
}

.gpu-hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 48px;
    align-items: start;
    z-index: 2;
}

.gpu-hero-content h1 {
    font-size: clamp(30px, 3.5vw, 44px);
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.gpu-hero-sub {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(18px, 2vw, 22px);
    font-weight: 600;
    color: var(--gpu-text);
    margin-bottom: 8px;
}

.gpu-hero-tagline {
    font-size: 16px;
    color: var(--gpu-text-muted);
    margin-bottom: 36px;
}

/* GPU Hero Badges */
.gpu-hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.gpu-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    background: rgba(168, 85, 247, 0.06);
    border: 1px solid var(--gpu-border);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.gpu-badge:hover {
    border-color: var(--gpu-border-hover);
    background: rgba(168, 85, 247, 0.12);
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.1);
}

.gpu-badge svg {
    color: var(--gpu-purple-light);
    flex-shrink: 0;
}

.gpu-badge strong {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--gpu-text);
}

/* GPU Hero Form */
.gpu-form-wrap {
    background: var(--gpu-bg-card);
    border: 1px solid var(--gpu-border-hover);
    border-radius: var(--radius);
    padding: 32px 28px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4), 0 0 60px rgba(168, 85, 247, 0.08);
}

.gpu-form-wrap h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: center;
}

.gpu-form-wrap .gold {
    background: var(--gpu-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gpu-form-wrap .contact-form input,
.gpu-form-wrap .contact-form select,
.gpu-form-wrap .contact-form textarea {
    background-color: rgba(168, 85, 247, 0.06);
    border-color: var(--gpu-border);
    color: #fff;
}

.gpu-form-wrap .contact-form input::placeholder,
.gpu-form-wrap .contact-form textarea::placeholder {
    color: var(--gpu-text-muted);
}

.gpu-form-wrap .contact-form input:focus,
.gpu-form-wrap .contact-form select:focus,
.gpu-form-wrap .contact-form textarea:focus {
    border-color: var(--gpu-purple);
    box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.2);
}

.gpu-form-wrap .contact-form select {
    color: var(--gpu-text-muted);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238B7DA8' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
}

.gpu-form-wrap .contact-form select option {
    background: var(--gpu-bg-dark);
    color: #fff;
}

.gpu-form-wrap .btn-gold {
    background: var(--gpu-gradient);
    box-shadow: 0 4px 20px var(--gpu-glow);
}

.gpu-form-wrap .btn-gold:hover {
    box-shadow: 0 8px 32px rgba(168, 85, 247, 0.45);
}

.gpu-form-disclaimer {
    margin-top: 16px;
    font-size: 12px;
    color: var(--gpu-magenta);
    text-align: center;
    font-weight: 500;
    opacity: 0.8;
}

/* ========== GPU PAGE — DARK SECTIONS OVERRIDE ========== */

/* Benefits / Services section */
.gpu-page .services {
    background: var(--gpu-bg-deep);
}

.gpu-page .services::before {
    background: radial-gradient(ellipse at 50% 0%, rgba(168, 85, 247, 0.06), transparent 50%);
}

.gpu-page .section-header h2 {
    color: #fff;
}

.gpu-page .section-header p {
    color: var(--gpu-text-muted);
}

.gpu-page .service-card {
    background: var(--gpu-bg-card);
    border-color: var(--gpu-border);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.3);
}

.gpu-page .service-card:hover {
    border-color: var(--gpu-border-hover);
    box-shadow: 0 20px 48px rgba(168, 85, 247, 0.12);
}

.gpu-page .service-icon-wrap {
    background: var(--gpu-accent-bg);
    border-color: rgba(168, 85, 247, 0.3);
    color: var(--gpu-purple-light);
}

.gpu-page .service-card:hover .service-icon-wrap {
    background: var(--gpu-gradient);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 8px 24px var(--gpu-glow);
}

.gpu-page .service-content h3 {
    color: #fff;
}

.gpu-page .service-content h3 .gold {
    color: var(--gpu-purple-light);
}

.gpu-page .service-content p {
    color: var(--gpu-text-muted);
}


/* Plans section */
.gpu-page .plans {
    background: var(--gpu-bg-dark);
}

.gpu-page .plans::before {
    background: radial-gradient(ellipse at 50% 0%, rgba(255, 62, 172, 0.05), transparent 50%);
}

.gpu-page .plan-card {
    background: var(--gpu-bg-card);
    border-color: var(--gpu-border);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.3);
}

.gpu-page .plan-card:hover {
    border-color: var(--gpu-border-hover);
    box-shadow: 0 24px 56px rgba(168, 85, 247, 0.15);
}

.gpu-page .plan-icon {
    background: var(--gpu-accent-bg);
    border-color: rgba(168, 85, 247, 0.3);
    color: var(--gpu-purple-light);
}

.gpu-page .plan-card:hover .plan-icon {
    background: var(--gpu-gradient);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 8px 28px var(--gpu-glow);
}

.gpu-page .plan-title {
    color: #fff;
}

.gpu-page .plan-price-wrap {
    border-bottom-color: var(--gpu-border);
}

.gpu-page .plan-price-label {
    color: var(--gpu-text-muted);
}

.gpu-page .plan-price {
    color: #fff;
}

.gpu-page .plan-currency {
    color: var(--gpu-purple-light);
}

.gpu-page .plan-period {
    color: var(--gpu-text-muted);
}

.gpu-page .plan-features-content p {
    color: var(--gpu-text);
}

.gpu-page .plan-features-content p::before {
    background: repeating-linear-gradient(
        to bottom,
        transparent,
        transparent 31px,
        rgba(168, 85, 247, 0.08) 31px,
        rgba(168, 85, 247, 0.08) 32px
    );
}

.gpu-page .plan-card .btn-outline {
    color: var(--gpu-text);
    border-color: var(--gpu-border);
}

.gpu-page .plan-card .btn-outline:hover {
    border-color: var(--gpu-purple);
    color: #fff;
    background: var(--gpu-gradient);
    box-shadow: 0 8px 28px var(--gpu-glow);
}

.gpu-page .plan-card .btn-gold {
    background: var(--gpu-gradient);
    box-shadow: 0 4px 20px var(--gpu-glow);
}

.gpu-page .plan-card .btn-gold:hover {
    box-shadow: 0 8px 32px rgba(168, 85, 247, 0.45);
}

/* Active plan card */
.gpu-page .plan-card.active {
    background: linear-gradient(145deg, #1A1030, #150D22);
    border-color: rgba(168, 85, 247, 0.5);
    box-shadow: 0 12px 48px rgba(168, 85, 247, 0.15), 0 0 80px rgba(168, 85, 247, 0.05);
}

.gpu-page .plan-card.active::before {
    background: var(--gpu-gradient);
}

.gpu-page .plan-card.active:hover {
    box-shadow: 0 20px 64px rgba(168, 85, 247, 0.25), 0 0 100px rgba(168, 85, 247, 0.08);
}

.gpu-page .plan-card.active .plan-price-wrap {
    border-bottom-color: rgba(168, 85, 247, 0.15);
}

.gpu-page .plan-card.active .plan-icon {
    background: rgba(168, 85, 247, 0.15);
    border-color: rgba(168, 85, 247, 0.4);
}

.gpu-page .plan-card.active:hover .plan-icon {
    background: var(--gpu-gradient);
    color: #fff;
    border-color: transparent;
}

.gpu-page .popular-badge {
    background: var(--gpu-gradient);
}

/* About / Why section */
.gpu-page .about {
    background: var(--gpu-bg-deep);
}

/* Why section */
.gpu-page .gpu-why-section {
    background: var(--gpu-bg-deep);
    padding: 0 0 100px;
}

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

.gpu-why-card {
    background: var(--gpu-bg-card);
    border: 1px solid var(--gpu-border);
    border-radius: var(--radius);
    padding: 36px 32px;
    transition: var(--transition);
}

.gpu-why-card:hover {
    border-color: var(--gpu-border-hover);
    box-shadow: 0 16px 40px rgba(168, 85, 247, 0.1);
    transform: translateY(-4px);
}

.gpu-why-card-large {
    grid-column: span 1;
}

.gpu-why-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gpu-accent-bg);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 50%;
    color: var(--gpu-purple-light);
    margin-bottom: 20px;
    transition: var(--transition);
}

.gpu-why-card:hover .gpu-why-icon {
    background: var(--gpu-gradient);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 8px 24px var(--gpu-glow);
}

.gpu-why-card h3 {
    font-size: 20px;
    color: #fff;
    margin-bottom: 12px;
}

.gpu-why-card h3 .gold {
    color: var(--gpu-purple-light);
}

.gpu-why-card p {
    font-size: 14px;
    color: var(--gpu-text-muted);
    line-height: 1.8;
}

/* GPU Custom Quote CTA Banner */
.gpu-cta-banner {
    padding: 70px 0;
    background: var(--gpu-bg-deep);
}

.gpu-cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 44px 50px;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1) 0%, rgba(255, 62, 172, 0.06) 100%);
    border: 1px solid var(--gpu-border-hover);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.gpu-cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gpu-gradient);
}

.gpu-cta-content {
    flex: 1;
}

.gpu-cta-badge {
    display: inline-block;
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #fff;
    background: var(--gpu-gradient);
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.gpu-cta-content h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 10px;
}

.gpu-cta-content p {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    color: var(--gpu-text-muted);
    margin: 0;
    line-height: 1.7;
    max-width: 520px;
}

.gpu-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: var(--gpu-gradient);
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 4px 20px var(--gpu-glow);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.gpu-cta-btn:hover {
    box-shadow: 0 8px 32px rgba(168, 85, 247, 0.5);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .gpu-cta-box {
        flex-direction: column;
        text-align: center;
        padding: 36px 28px;
        gap: 28px;
    }

    .gpu-cta-content p {
        max-width: 100%;
    }

    .gpu-cta-content h3 {
        font-size: 20px;
    }
}

/* GPU Key Features */
.gpu-features {
    padding: 100px 0;
    background: var(--gpu-bg-deep);
}

.gpu-features .section-header h2 {
    color: #fff;
}

.gpu-features .section-header h2 .gold {
    color: var(--gpu-purple-light);
}

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

.gpu-feature-card {
    background: var(--gpu-bg-card);
    border: 1px solid var(--gpu-border);
    border-radius: var(--radius);
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.3);
}

.gpu-feature-card:hover {
    border-color: var(--gpu-border-hover);
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(168, 85, 247, 0.12);
}

.gpu-feature-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    background: var(--gpu-accent-bg);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 50%;
    color: var(--gpu-purple-light);
    transition: var(--transition);
}

.gpu-feature-card:hover .gpu-feature-icon {
    background: var(--gpu-gradient);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 8px 24px var(--gpu-glow);
}

.gpu-feature-card h3 {
    font-size: 18px;
    color: #fff;
    margin-bottom: 12px;
}

.gpu-feature-card p {
    font-size: 14px;
    color: var(--gpu-text-muted);
    line-height: 1.75;
}

/* FAQ override */
.gpu-page .faq {
    background: var(--gpu-bg-dark);
}

.gpu-page .faq::before {
    background: radial-gradient(ellipse at 50% 100%, rgba(168, 85, 247, 0.05), transparent 50%);
}

.gpu-page .faq .section-header h2 {
    color: #fff;
}

.gpu-page .faq .section-header h2 .gold {
    color: var(--gpu-purple-light);
}

.gpu-page .faq-list {
    background: var(--gpu-bg-card);
    border-color: var(--gpu-border-hover);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

.gpu-page .faq-item {
    border-bottom-color: var(--gpu-border);
}

.gpu-page .faq-question {
    color: #fff;
}

.gpu-page .faq-question:hover {
    color: var(--gpu-purple-light);
}

.gpu-page .faq-icon {
    color: var(--gpu-purple-light);
    background: var(--gpu-accent-bg);
}

.gpu-page .faq-item.active .faq-icon {
    background: rgba(168, 85, 247, 0.15);
}

.gpu-page .faq-answer p {
    color: var(--gpu-text-muted);
}

/* CTA override */
.gpu-page .cta {
    background: var(--gpu-bg-deep);
}

.gpu-page .cta::before {
    background: radial-gradient(ellipse 80% 70% at 50% 50%, rgba(168, 85, 247, 0.12), transparent 60%);
}

.gpu-page .cta::after {
    background: linear-gradient(90deg, transparent 10%, var(--gpu-purple) 50%, transparent 90%);
}

.gpu-page .cta h2 {
    color: #fff;
}

.gpu-page .cta p {
    color: var(--gpu-text-muted);
}

.gpu-page .cta .btn-gold {
    background: var(--gpu-gradient);
    box-shadow: 0 4px 20px var(--gpu-glow);
}

.gpu-page .cta .btn-gold:hover {
    box-shadow: 0 8px 32px rgba(168, 85, 247, 0.45);
}

/* Footer override */
.gpu-page .footer .footer-col h4 {
    color: var(--gpu-purple);
}

/* GPU Responsive */
@media (max-width: 1024px) {
    .gpu-hero-grid {
        grid-template-columns: 1fr 360px;
        gap: 32px;
    }

    .gpu-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .gpu-hero {
        padding: 120px 0 60px;
    }

    .gpu-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .gpu-hero-content {
        text-align: center;
    }

    .gpu-hero-badges {
        justify-content: center;
    }

    .gpu-why-grid {
        grid-template-columns: 1fr;
    }

    .gpu-features-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .gpu-why-section {
        padding: 0 0 60px;
    }

    .gpu-features {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .gpu-hero {
        padding: 110px 0 50px;
    }

    .gpu-hero-content h1 {
        font-size: 26px;
    }

    .gpu-form-wrap {
        padding: 24px 20px;
    }

    .gpu-badge {
        padding: 8px 14px;
    }

    .gpu-badge strong {
        font-size: 12px;
    }

    .gpu-why-card {
        padding: 28px 20px;
    }

    .gpu-feature-card {
        padding: 28px 20px;
    }
}

/* ========== MISSING BASE GRID DEFINITIONS ========== */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

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

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

.rdp-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* ========== TEAM SECTION ========== */
.team-section {
    padding: 80px 0;
    background: #fff;
}

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

.team-card {
    text-align: center;
    background: #fff;
    border-radius: 12px;
    width: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #ddd;
}

.team-card:hover {
    box-shadow: 0 12px 35px rgba(252, 123, 100, 0.2);
    transform: translateY(-8px);
}

.team-card img {
    width: 100%;
    height: 220px;
    object-fit: contain;
    display: block;
    background: #f5f5f5;
}

.team-card-info {
    padding: 20px;
    background: #fff;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.team-card h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-heading);
    margin-bottom: 8px;
}

.team-card .role {
    color: var(--text-body);
    font-size: 0.9rem;
    font-weight: 500;
}

.team-card .email {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.team-card .email:hover {
    color: var(--orange);
}

/* ========== TABLET BREAKPOINT (1024px) ========== */
@media (max-width: 1024px) {
    /* Stats */
    .stats-grid {
        gap: 32px;
    }
    .stat-number {
        font-size: 32px;
    }

    /* Attention */
    .attention-grid {
        gap: 20px;
    }

    /* FAQ */
    .faq-split {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .faq-img {
        max-width: 400px;
        margin: 0 auto;
    }

    /* Contact */
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    /* Locations */
    .locations-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Features */
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Reviews */
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* About services */
    .about-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Icon boxes */
    .icon-boxes-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Advantages */
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Cloud hosting features */
    .cloud-features-grid {
        gap: 40px;
    }

    /* Shared hosting pricing */
    .shared-pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* WHMCS */
    .whmcs-hero-grid {
        grid-template-columns: 1fr;
    }

    /* Exclusive services */
    .exclusive-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Team */
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Intro */
    .intro-section p {
        font-size: 16px;
    }

    /* Page hero */
    .page-hero {
        padding: 140px 0 40px;
        min-height: 200px;
    }

    /* Section header */
    .section-header {
        margin-bottom: 40px;
    }

    /* Notice banner */
    .notice-inner {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }
}

/* ========== SMALL MOBILE BREAKPOINT (480px) ========== */
@media (max-width: 480px) {
    /* Stats */
    .stats-grid {
        gap: 20px;
    }
    .stat-number {
        font-size: 26px;
    }
    .stat-label {
        font-size: 12px;
    }
    .stats-bar {
        padding: 32px 0;
    }

    /* Locations */
    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    /* Features */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* Reviews */
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* RDP Features */
    .rdp-features-grid {
        gap: 16px;
    }
    .rdp-feature-card {
        padding: 24px 16px;
    }

    /* Why RDP */
    .why-rdp-grid {
        gap: 16px;
    }
    .why-rdp-card {
        padding: 24px 16px;
    }

    /* Page hero */
    .page-hero {
        padding: 110px 0 32px;
        min-height: 160px;
    }
    .page-hero h1 {
        font-size: 28px;
    }

    /* About services */
    .about-services-grid {
        grid-template-columns: 1fr;
    }
    .about-service-card {
        padding: 24px 16px;
    }

    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .testimonial-card {
        padding: 24px 16px;
    }

    /* Icon boxes */
    .icon-boxes-grid {
        grid-template-columns: 1fr;
    }

    /* Cloud features */
    .cloud-features-grid {
        grid-template-columns: 1fr;
    }

    /* Shared pricing */
    .shared-pricing-grid {
        grid-template-columns: 1fr;
    }

    /* WHMCS */
    .whmcs-pricing-tabs {
        flex-direction: column;
        align-items: stretch;
    }

    /* Exclusive services */
    .exclusive-grid {
        grid-template-columns: 1fr;
    }

    /* Team */
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .team-card img {
        height: 160px;
    }
    .team-card-info {
        padding: 14px 10px;
    }
    .team-card h5 {
        font-size: 0.9rem;
    }
    .team-card .role {
        font-size: 0.8rem;
    }

    /* Advantages */
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* Section header */
    .section-header {
        margin-bottom: 32px;
    }
    .section-header h2 {
        font-size: 22px;
    }

    /* FAQ */
    .faq-question {
        font-size: 14px;
        padding: 14px 16px;
    }
    .faq-answer p {
        font-size: 13px;
    }

    /* Contact */
    .contact-form-wrap {
        padding: 24px 16px;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    /* Intro */
    .intro-section {
        padding: 40px 0;
    }
    .intro-section p {
        font-size: 14px;
    }
}

/* ========== SCROLL REVEAL ANIMATION ========== */
.scroll-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.scroll-reveal.revealed,
.revealed {
    opacity: 1 !important;
    transform: translateY(0) !important;
}
