/* =========================================== */
/* ROOT VARIABLES & RESET (Same as original)   */
/* =========================================== */
:root {
    --bg-color: #EAE5DA;
    --primary: #B5462A;
    --primary-dark: #9e3d25;
    --text-dark: #1B1B17;
    --text-light: #4a4a44;
    --dark-bg: #1A1A16;
    --card-bg: rgba(255, 255, 255, 0.7);
    --border-radius: 28px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-dark);
    font-family: 'Archivo', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

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

.mono {
    font-family: 'Space Mono', monospace;
    letter-spacing: 0.03em;
}

/* =========================================== */
/* TOP BAR - Glassy                           */
/* =========================================== */
.top-bar {
    background: rgba(26, 26, 22, 0.75);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    padding: 8px 0;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.top-bar-left {
    display: flex;
    gap: 24px;
    align-items: center;
}

.top-bar-left span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-bar-right {
    display: flex;
    gap: 20px;
    align-items: center;
}

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

.top-bar-right a:hover {
    color: #fff;
}

.top-bar-cta {
    background: var(--primary);
    color: white !important;
    padding: 4px 18px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.75rem;
}

.top-bar-cta:hover {
    background: var(--primary-dark) !important;
}

/* =========================================== */
/* HEADER - Glassy                            */
/* =========================================== */
.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(234, 229, 218, 0.25);
    backdrop-filter: blur(24px) saturate(200%);
    -webkit-backdrop-filter: blur(24px) saturate(200%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.main-header.header-scrolled {
    background: rgba(234, 229, 218, 0.4);
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.04);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 76px;
}

.logo {
    font-size: 2rem;
    font-weight: 900;
    text-decoration: none;
    color: var(--text-dark);
    letter-spacing: -0.03em;
    flex-shrink: 0;
}

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

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.2s;
    position: relative;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

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

.btn-nav {
    background: var(--primary) !important;
    color: white !important;
    padding: 0.5rem 1.5rem !important;
    border-radius: 40px !important;
    font-weight: 700 !important;
}

.btn-nav:hover {
    background: var(--primary-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(181, 70, 42, 0.3);
}

.btn-nav::after {
    display: none !important;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--text-dark);
    padding: 4px 8px;
}

/* =========================================== */
/* HERO SECTION                                */
/* =========================================== */
.hero-section {
    padding: 60px 0 50px;
    position: relative;
    overflow: hidden;
    background-image: url('../images/hero/hero-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Background Shapes */
.hero-section::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle at 30% 40%, rgba(181, 70, 42, 0.08) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle at 70% 60%, rgba(181, 70, 42, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.hero-section .bg-shape-1 {
    position: absolute;
    top: 10%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(181, 70, 42, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.hero-section .bg-shape-2 {
    position: absolute;
    bottom: 10%;
    right: -5%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(181, 70, 42, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.hero-section .bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(181, 70, 42, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(181, 70, 42, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: rgba(181, 70, 42, 0.08);
    padding: 0.3rem 1.2rem;
    border-radius: 40px;
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.hero-section h1 {
    font-size: clamp(3.2rem, 8vw, 5.5rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 1.2rem;
}

.accent-text {
    color: var(--primary);
    border-bottom: 6px solid var(--primary);
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.2rem;
    max-width: 560px;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

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

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(24px) saturate(200%);
    -webkit-backdrop-filter: blur(24px) saturate(200%);
    padding: 2rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
}

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

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary);
    font-family: 'Space Mono', monospace;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
}

/* =========================================== */
/* SECTION BADGES & TITLES                     */
/* =========================================== */
.section-badge {
    text-align: center;
    margin-bottom: 0.8rem;
}

.section-badge span {
    background: rgba(181, 70, 42, 0.08);
    padding: 0.3rem 1.2rem;
    border-radius: 40px;
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 0.05em;
}

.section-title {
    text-align: center;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 3rem;
}

.hero-section {
    padding: 60px 0 50px;
    position: relative;
    overflow: hidden;
}

/* Background Image - Abstract Shapes */
.hero-section::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle at 30% 40%, rgba(181, 70, 42, 0.08) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle at 70% 60%, rgba(181, 70, 42, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

/* Additional Abstract Shapes */
.hero-section .bg-shape-1 {
    position: absolute;
    top: 10%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(181, 70, 42, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.hero-section .bg-shape-2 {
    position: absolute;
    bottom: 10%;
    right: -5%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(181, 70, 42, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

/* Hero content on top */
.hero-section .container {
    position: relative;
    z-index: 1;
}

/* Optional: subtle grid or dots pattern */
.hero-section .bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(181, 70, 42, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(181, 70, 42, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}
/* ===== HERO BACKGROUND IMAGE (CSS GENERATED) ===== */
.hero-section {
    position: relative;
    overflow: hidden;
    background-image: url('../images/hero/hero-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle at 30% 40%, rgba(181, 70, 42, 0.08) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle at 70% 60%, rgba(181, 70, 42, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.hero-section .bg-shape-1 {
    position: absolute;
    top: 5%;
    left: -8%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(181, 70, 42, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.hero-section .bg-shape-2 {
    position: absolute;
    bottom: 5%;
    right: -8%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(181, 70, 42, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

/* Optional: subtle noise texture */
.hero-section .bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 10% 30%, rgba(255,255,255,0.02) 0%, transparent 50%),
        radial-gradient(circle at 90% 70%, rgba(255,255,255,0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* =========================================== */
/* HOSTING PLANS - Glassy Cards               */
/* =========================================== */
.hosting-section {
    padding: 70px 0 40px;
}

.hosting-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.hosting-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.03);
    border-radius: var(--border-radius);
    padding: 2rem 1.5rem 1.8rem;
    transition: all 0.4s ease;
    position: relative;
}

.hosting-card:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.35);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
}

.hosting-card.featured {
    background: rgba(181, 70, 42, 0.1);
    border: 2px solid rgba(181, 70, 42, 0.2);
}

.hosting-card.featured:hover {
    background: rgba(181, 70, 42, 0.15);
    border-color: rgba(181, 70, 42, 0.35);
}

.card-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--primary);
    color: white;
    padding: 0.2rem 1rem;
    border-radius: 40px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.card-icon {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
}

.hosting-card h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 0.2rem;
}

.card-sub {
    color: var(--text-light);
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.card-price {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1rem;
}

.card-price span {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-light);
}

.card-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.card-features li {
    padding: 0.3rem 0;
    font-size: 0.9rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 8px;
}

.card-features li::before {
    content: "✓";
    color: var(--primary);
    font-weight: 700;
    font-size: 1.1rem;
}

/* =========================================== */
/* EMAIL HOSTING - Glassy                     */
/* =========================================== */
.email-hosting-section {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
    margin-top: 40px;
}

.email-hosting-section .hosting-grid {
    grid-template-columns: 1fr 1fr;
}

.email-cta {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 0 20px 40px;
}

.email-cta h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.email-cta p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

/* =========================================== */
/* DOMAIN SEARCH - Glassy                     */
/* =========================================== */
.domain-section {
    padding: 60px 0 70px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-radius: 40px;
    margin: 0 24px 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.domain-search .search-wrapper {
    display: flex;
    gap: 12px;
    max-width: 700px;
    margin: 2rem auto 0;
    flex-wrap: wrap;
    justify-content: center;
}

.search-wrapper input,
.search-wrapper select {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1rem 1.5rem;
    border-radius: 60px;
    font-size: 1rem;
    font-family: 'Space Mono', monospace;
    transition: border-color var(--transition);
    color: var(--text-dark);
}

.search-wrapper input:focus,
.search-wrapper select:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.25);
    border-color: var(--primary);
}

.search-wrapper select {
    font-family: 'Archivo', sans-serif;
    font-weight: 600;
    cursor: pointer;
}

.search-wrapper button {
    padding: 1rem 2.5rem;
}

.domain-result {
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(181, 70, 42, 0.06);
    border-radius: 20px;
}

/* =========================================== */
/* WHY CHOOSE - Dark Glassy                   */
/* =========================================== */
.why-section {
    background: rgba(26, 26, 22, 0.85);
    backdrop-filter: blur(24px) saturate(200%);
    -webkit-backdrop-filter: blur(24px) saturate(200%);
    color: #EAE5DA;
    padding: 80px 0 70px;
    border-radius: 40px 40px 0 0;
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.why-section .section-badge span {
    background: rgba(234, 229, 218, 0.08);
    color: #EAE5DA;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-item {
    padding: 1.8rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    border-left: 4px solid var(--primary);
    transition: all var(--transition);
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateX(4px);
}

.feature-icon {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.feature-item h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    color: #EAE5DA;
}

.feature-item p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* =========================================== */
/* MIGRATION - Glassy                         */
/* =========================================== */
.migration-section {
    padding: 70px 0;
}

.migration-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    text-align: center;
}

.step {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--border-radius);
    padding: 2rem;
    transition: all 0.4s ease;
}

.step:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.25);
}

.step-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary);
    font-family: 'Space Mono', monospace;
    opacity: 0.2;
    line-height: 1;
}

.step h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0.5rem 0;
}

.step p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* =========================================== */
/* TESTIMONIALS - Glassy                      */
/* =========================================== */
.testimonials-section {
    padding: 70px 0 60px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--border-radius);
    padding: 2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.25);
}

.testimonial-number {
    position: absolute;
    top: -10px;
    right: -5px;
    font-size: 5rem;
    font-weight: 900;
    color: rgba(181, 70, 42, 0.04);
    font-family: 'Space Mono', monospace;
    line-height: 1;
    pointer-events: none;
}

.stars {
    color: #FFB800;
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 0.8rem;
}

.testimonial-text {
    margin: 0.8rem 0 1.2rem;
    font-style: italic;
    line-height: 1.7;
    color: var(--text-dark);
    font-size: 1rem;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.testimonial-author strong {
    font-size: 1rem;
    font-weight: 700;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.85rem;
}

/* =========================================== */
/* CTA - Glassy                               */
/* =========================================== */
.cta-section {
    background: rgba(181, 70, 42, 0.6);
    backdrop-filter: blur(24px) saturate(200%);
    -webkit-backdrop-filter: blur(24px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: white;
    padding: 80px 0;
    text-align: center;
    border-radius: 40px;
    margin: 0 24px 0;
    box-shadow: 0 8px 40px rgba(181, 70, 42, 0.15);
    position: relative;
    overflow: hidden;
}

.cta-section h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.cta-section p {
    opacity: 0.85;
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
}

.cta-section .btn-primary {
    background: white;
    color: var(--primary);
}

.cta-section .btn-primary:hover {
    background: var(--text-dark);
    color: white;
}

/* =========================================== */
/* FOOTER - Glassy                            */
/* =========================================== */
.main-footer {
    background: rgba(26, 26, 22, 0.7);
    backdrop-filter: blur(24px) saturate(200%);
    -webkit-backdrop-filter: blur(24px) saturate(200%);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.6);
    padding: 60px 0 30px;
    margin-top: 40px;
    border-radius: 40px 40px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-col h4 {
    color: #EAE5DA;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 0.03em;
}

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

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

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s;
    display: inline-block;
}

.footer-col ul li a:hover {
    color: #EAE5DA;
    padding-left: 4px;
}

.footer-brand .logo {
    color: #EAE5DA;
    font-size: 1.8rem;
}

.footer-brand .logo span {
    color: var(--primary);
}

.footer-description {
    font-size: 0.9rem;
    opacity: 0.6;
    margin: 1rem 0 1.5rem;
    max-width: 300px;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-bottom: 1rem;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-trustpilot {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.footer-trustpilot span:first-child {
    font-size: 1.2rem;
    font-weight: 700;
    color: #EAE5DA;
}

.footer-trustpilot span:last-child {
    font-size: 0.85rem;
    opacity: 0.4;
}

.footer-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-contact-item a:hover {
    color: #EAE5DA;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    font-size: 0.85rem;
    opacity: 0.4;
}

/* =========================================== */
/* RESPONSIVE (Same as original)               */
/* =========================================== */
@media (max-width: 1200px) {
    .hosting-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .email-hosting-section .hosting-grid { grid-template-columns: 1fr; }
    .email-cta { padding: 20px 0 0; }
}

@media (max-width: 768px) {
    .top-bar { display: none; }
    .mobile-toggle { display: block; }
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 76px;
        left: 0;
        right: 0;
        background: rgba(234, 229, 218, 0.95);
        backdrop-filter: blur(20px);
        padding: 2rem 1.5rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.04);
        gap: 1rem;
        align-items: stretch;
    }
    .nav-links.open { display: flex; }
    .nav-links a { padding: 10px 0; border-bottom: 1px solid rgba(27,27,23,0.04); }
    .nav-links a::after { display: none; }
    .btn-nav { text-align: center; margin-top: 4px; }
    .nav-dropdown { position: static; }
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: rgba(27,27,23,0.03);
        padding: 8px 0 8px 16px;
        margin-top: 4px;
        border-radius: 8px;
        display: none;
    }
    .nav-dropdown.active .dropdown-menu { display: block; }
    .dropdown-toggle::after { content: ' ▼'; font-size: 0.7rem; }

    .hero-stats { grid-template-columns: 1fr 1fr; }
    .hosting-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .features-grid { grid-template-columns: 1fr 1fr; }
    .migration-steps { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .domain-section { margin: 0 12px 30px; padding: 30px 16px; }
    .search-wrapper { flex-direction: column; }
    .search-wrapper input,
    .search-wrapper select,
    .search-wrapper button { width: 100%; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
    .footer-contact { flex-direction: column; gap: 12px; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
    .cta-section { margin: 0 12px; padding: 50px 20px; border-radius: 24px; }
    .email-hosting-section { padding: 24px 16px; }
}

@media (max-width: 480px) {
    .hosting-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .hero-section h1 { font-size: 2.5rem; }
    .hero-buttons { flex-direction: column; align-items: stretch; }
    .hero-buttons .btn { text-align: center; }
    .header-inner { height: 64px; }
    .logo { font-size: 1.5rem; }
}

/* =========================================== */
/* DROPDOWN (Same)                            */
/* =========================================== */
.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(234, 229, 218, 0.95);
    backdrop-filter: blur(20px);
    min-width: 200px;
    padding: 10px 0;
    border-radius: 12px;
    border: 1px solid rgba(27, 27, 23, 0.06);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
}

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

.dropdown-menu a {
    display: block;
    padding: 8px 20px;
    font-weight: 500;
    font-size: 0.9rem;
    border-bottom: none !important;
}

.dropdown-menu a:hover {
    background: rgba(181, 70, 42, 0.06);
    color: var(--primary) !important;
}

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

/* plan-detail.css (add to style.css) */
.plan-detail-section {
    padding: 60px 0;
}

.plan-detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.plan-badge {
    display: inline-block;
    background: rgba(181, 70, 42, 0.1);
    color: var(--primary);
    padding: 0.3rem 1rem;
    border-radius: 40px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.plan-info h1 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.plan-description {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.plan-price-box {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(16px);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.15);
    margin-bottom: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.plan-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
}

.plan-price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-light);
}

.plan-features-full h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.plan-features-full ul {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem 1.5rem;
}

.plan-features-full ul li {
    padding: 0.4rem 0;
    font-size: 1rem;
    color: var(--text-light);
}

/* =========================================== */
/* SERVICE PAGE - Category Page                */
/* =========================================== */
.service-page-section {
    padding: 60px 0 80px;
}

.service-page-header {
    text-align: center;
    margin-bottom: 3rem;
}

.service-page-icon {
    font-size: 4rem;
    margin-bottom: 0.5rem;
}

.service-page-header h1 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.service-page-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.service-plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 2rem;
}

.service-plan-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--border-radius);
    padding: 2rem 1.5rem;
    transition: all 0.4s ease;
    position: relative;
}

.service-plan-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.06);
}

.service-plan-card.featured {
    border-color: var(--primary);
    background: rgba(181, 70, 42, 0.08);
}

.service-plan-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.3rem;
}

.service-plan-card .plan-desc {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
}

.service-plan-card .plan-pricing {
    margin-bottom: 1.2rem;
}

.service-plan-card .plan-price {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
}

.service-plan-card .plan-suffix {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 400;
}

.service-plan-card .plan-features-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-plan-card .plan-features-list li {
    padding: 0.3rem 0;
    font-size: 0.9rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-plan-card .plan-features-list li::before {
    content: "✓";
    color: var(--primary);
    font-weight: 700;
}

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

.service-page-footer {
    text-align: center;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .service-page-header h1 {
        font-size: 2rem;
    }
    .service-plans-grid {
        grid-template-columns: 1fr;
    }
    .service-page-icon {
        font-size: 3rem;
    }
}

/* Add to style.css */

.plan-pricing-tabs {
    margin: 1.5rem 0;
}

.pricing-toggle {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 1.5rem;
    background: rgba(255,255,255,0.06);
    padding: 6px;
    border-radius: 16px;
}

.pricing-btn {
    flex: 1;
    min-width: 80px;
    padding: 10px 16px;
    border: none;
    border-radius: 12px;
    background: transparent;
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Archivo', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.pricing-btn:hover {
    background: rgba(255,255,255,0.05);
}

.pricing-btn.active {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 16px rgba(181, 70, 42, 0.3);
}

.pricing-btn small {
    font-size: 0.65rem;
    font-weight: 500;
    opacity: 0.7;
}

.pricing-btn.active small {
    opacity: 0.9;
}

.plan-price-display {
    text-align: center;
    padding: 1rem;
    background: rgba(255,255,255,0.04);
    border-radius: 16px;
}

.plan-price-amount {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--primary);
}

.plan-price-cycle {
    font-size: 1.2rem;
    color: var(--text-light);
}

.order-summary {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255,255,255,0.04);
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.06);
}

.order-summary p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.8rem;
}

.order-details {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 1.2rem;
}

.order-plan {
    font-weight: 700;
    font-size: 1.1rem;
}

.order-price {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary);
}

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

/* =========================================== */
/* HOSTINGER-STYLE ORDER SUMMARY              */
/* =========================================== */
.order-summary {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border-radius: var(--border-radius);
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 1.5rem;
}

.order-summary h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: #EAE5DA;
}

.order-plan-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 1rem;
}

.order-plan-name {
    font-weight: 600;
    font-size: 1rem;
}

.order-plan-period {
    font-size: 0.85rem;
    opacity: 0.6;
}

.order-price-breakdown {
    margin-bottom: 1.2rem;
}

.order-subtotal-row,
.order-tax-row,
.order-total-row {
    display: flex;
    justify-content: space-between;
    padding: 0.4rem 0;
}

.order-total-row {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 0.8rem;
    margin-top: 0.4rem;
}

.order-label {
    font-size: 0.9rem;
    opacity: 0.7;
}

.order-value {
    font-weight: 600;
}

.order-total-price {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--primary);
}

.order-savings-badge {
    text-align: center;
    background: rgba(76, 175, 80, 0.1);
    color: #4CAF50;
    padding: 0.5rem 1rem;
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.order-coupon {
    display: flex;
    gap: 10px;
    margin-bottom: 1rem;
}

.order-coupon input {
    flex: 1;
    padding: 0.6rem 1rem;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-dark);
    font-family: 'Archivo', sans-serif;
}

.order-coupon input::placeholder {
    color: rgba(0, 0, 0, 0.3);
}

.order-note {
    font-size: 0.8rem;
    opacity: 0.5;
    text-align: center;
    margin: 1rem 0;
}

/* Pricing button with best value badge */
.pricing-btn .best-value-badge {
    display: block;
    font-size: 0.6rem;
    background: #4CAF50;
    color: white;
    padding: 1px 8px;
    border-radius: 20px;
    margin-top: 2px;
    font-weight: 700;
}

/* Responsive */
@media (max-width: 768px) {
    .order-summary {
        padding: 1.5rem;
    }
    .order-plan-detail {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
    .order-coupon {
        flex-direction: column;
    }
    .order-total-price {
        font-size: 1.2rem;
    }
}

/* =========================================== */
/* PLAN DETAIL - INDUSTRY STANDARD LAYOUT     */
/* =========================================== */
.plan-detail-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    padding: 2rem 0;
}

/* Pricing Card */
.pricing-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(16px);
    border-radius: var(--border-radius);
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 2rem;
}

/* Period Selector - Dropdown */
.period-selector {
    margin-bottom: 1.5rem;
}

.period-selector label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.period-dropdown {
    width: 100%;
    padding: 0.8rem 1.2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-dark);
    font-family: 'Archivo', sans-serif;
    font-size: 1rem;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%231B1B17' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
}

.period-dropdown:focus {
    outline: none;
    border-color: var(--primary);
}

.period-dropdown option {
    padding: 0.5rem;
}

/* Price Display */
.price-display {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    margin-bottom: 1.5rem;
}

.price-main {
    margin-bottom: 0.5rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary);
}

.price-cycle {
    font-size: 1.2rem;
    color: var(--text-light);
}

.price-sub {
    font-size: 0.95rem;
    color: var(--text-light);
}

.price-total {
    font-weight: 700;
    color: var(--text-dark);
}

/* Order Summary */
.order-summary {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.order-summary h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.order-plan-detail {
    display: flex;
    justify-content: space-between;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 1rem;
}

.order-plan-name {
    font-weight: 600;
}

.order-plan-period {
    font-size: 0.85rem;
    opacity: 0.6;
}

.order-price-breakdown {
    margin-bottom: 1rem;
}

.order-subtotal-row,
.order-tax-row,
.order-total-row {
    display: flex;
    justify-content: space-between;
    padding: 0.3rem 0;
}

.order-total-row {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 0.8rem;
    margin-top: 0.4rem;
}

.order-label {
    font-size: 0.9rem;
    opacity: 0.7;
}

.order-value {
    font-weight: 600;
}

.order-total-price {
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--primary);
}

.order-savings-badge {
    text-align: center;
    background: rgba(76, 175, 80, 0.1);
    color: #4CAF50;
    padding: 0.4rem 1rem;
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.order-coupon {
    display: flex;
    gap: 10px;
    margin-bottom: 1rem;
}

.order-coupon input {
    flex: 1;
    padding: 0.6rem 1rem;
    border-radius: 40px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    font-family: 'Archivo', sans-serif;
    font-size: 0.9rem;
}

.order-coupon input:focus {
    outline: none;
    border-color: var(--primary);
}

.order-note {
    font-size: 0.8rem;
    opacity: 0.5;
    text-align: center;
    margin: 0.8rem 0;
}
/* =========================================== */
/* SIDEBAR - STICKY ORDER SUMMARY             */
/* =========================================== */

/* Sidebar Container - Sticky */
.plan-sidebar {
    position: sticky;
    top: 100px; /* Adjust based on your header height */
    align-self: flex-start;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Glass Card - Single Definition */
.plan-sidebar .glass-card {
    padding: 1.5rem;
    border-radius: var(--border-radius);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.plan-sidebar .glass-card:hover {
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.plan-sidebar .glass-card h4 {
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.plan-sidebar .glass-card p {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 1rem;
}

.plan-sidebar .glass-card ul {
    list-style: none;
    padding: 0;
}

.plan-sidebar .glass-card ul li {
    padding: 6px 0;
    font-size: 0.9rem;
}

/* =========================================== */
/* STICKY SUMMARY (if using wrapper)          */
/* =========================================== */
.sticky-summary {
    position: sticky;
    top: 90px;
    z-index: 10;
}

/* Order Summary Glass (for sticky version) */
.order-summary-glass {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(24px) saturate(200%);
    -webkit-backdrop-filter: blur(24px) saturate(200%);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.order-summary-glass h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding-bottom: 0.6rem;
}

.order-summary-glass .order-plan-detail {
    display: flex;
    justify-content: space-between;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    margin-bottom: 1rem;
}

.order-summary-glass .order-plan-name {
    font-weight: 600;
    font-size: 0.95rem;
}

.order-summary-glass .order-plan-period {
    font-size: 0.8rem;
    opacity: 0.6;
}

.order-summary-glass .order-price-breakdown {
    margin-bottom: 1rem;
}

.order-summary-glass .order-subtotal-row,
.order-summary-glass .order-tax-row,
.order-summary-glass .order-total-row {
    display: flex;
    justify-content: space-between;
    padding: 0.3rem 0;
    font-size: 0.9rem;
}

.order-summary-glass .order-total-row {
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding-top: 0.8rem;
    margin-top: 0.4rem;
}

.order-summary-glass .order-label {
    opacity: 0.7;
}

.order-summary-glass .order-value {
    font-weight: 600;
}

.order-summary-glass .order-total-price {
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--primary);
}

.order-summary-glass .order-savings-badge {
    text-align: center;
    background: rgba(76, 175, 80, 0.1);
    color: #2e7d32;
    padding: 0.4rem 1rem;
    border-radius: 40px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.order-summary-glass .order-coupon {
    display: flex;
    gap: 8px;
    margin-bottom: 1rem;
}

.order-summary-glass .order-coupon input {
    flex: 1;
    padding: 0.5rem 1rem;
    border-radius: 40px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    font-family: 'Archivo', sans-serif;
    font-size: 0.85rem;
    background: rgba(255, 255, 255, 0.5);
}

.order-summary-glass .order-coupon input:focus {
    outline: none;
    border-color: var(--primary);
}

.order-summary-glass .btn-large {
    width: 100%;
    text-align: center;
    padding: 0.8rem;
    font-size: 1rem;
}

.order-summary-glass .order-note {
    font-size: 0.75rem;
    opacity: 0.5;
    text-align: center;
    margin-top: 0.8rem;
}

/* =========================================== */
/* HELP CARD                                   */
/* =========================================== */
.help-card {
    background: rgba(255, 255, 255, 0.06) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
    padding: 1.5rem !important;
    border-radius: var(--border-radius) !important;
}

.help-card h4 {
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.help-card p {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 1rem;
}

/* =========================================== */
/* RESPONSIVE                                 */
/* =========================================== */

/* Disable sticky on tablets & mobile */
@media (max-width: 992px) {
    .plan-sidebar {
        position: static;
    }
    .sticky-summary {
        position: static;
    }
    .plan-detail-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .order-summary-glass {
        background: rgba(255, 255, 255, 0.06);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border: 1px solid rgba(255, 255, 255, 0.06);
    }
}

@media (max-width: 768px) {
    .plan-sidebar {
        position: static;
    }
    .sticky-summary {
        position: static;
    }
    
    /* Price display responsive */
    .price-amount {
        font-size: 2.2rem;
    }
    .pricing-card {
        padding: 1.5rem;
    }
    .period-dropdown {
        font-size: 0.9rem;
        padding: 0.6rem 1rem;
    }
    
    /* Order summary responsive */
    .order-summary {
        padding: 1rem;
    }
    .order-summary-glass .order-plan-detail {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
    .order-summary-glass .order-coupon {
        flex-direction: column;
    }
    .order-summary-glass .order-total-price {
        font-size: 1.1rem;
    }
    
    /* Features list responsive */
    .plan-features-full ul {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .price-amount {
        font-size: 1.8rem;
    }
    .price-main-inline {
        flex-wrap: wrap;
        justify-content: center;
        gap: 4px;
    }
    .order-summary-glass .order-total-price {
        font-size: 1rem;
    }
}
/* =========================================== */
/* PRICING ROW LAYOUT - Dropdown + Price      */
/* =========================================== */
.pricing-row-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 1.5rem;
}

/* Left: Period Selector */
.period-selector {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.period-selector label {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-light);
}

.period-dropdown {
    width: 100%;
    padding: 0.8rem 1.2rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-dark);
    font-family: 'Archivo', sans-serif;
    font-size: 1rem;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%231B1B17' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    transition: border-color 0.3s ease;
}

.period-dropdown:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(181, 70, 42, 0.1);
}

/* Right: Price Display (Inline) */
.price-display-inline {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.2rem;
    padding: 0.5rem 1rem;
    background: rgba(181, 70, 42, 0.04);
    border-radius: 12px;
    border: 1px solid rgba(181, 70, 42, 0.06);
}

.price-main-inline {
    display: flex;
    align-items: baseline;
    gap: 0.3rem;
}

.price-main-inline .price-amount {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary);
}

.price-main-inline .price-cycle {
    font-size: 1rem;
    color: var(--text-light);
}

.price-sub-inline {
    display: flex;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-light);
}

.price-sub-inline .price-total {
    font-weight: 700;
    color: var(--text-dark);
}

/* Responsive */
@media (max-width: 768px) {
    .pricing-row-layout {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .price-display-inline {
        align-items: stretch;
        text-align: center;
        padding: 0.8rem;
    }
    
    .price-main-inline {
        justify-content: center;
    }
    
    .price-sub-inline {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .price-main-inline .price-amount {
        font-size: 1.6rem;
    }
}