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

:root {
    /* Dark Mode Colors */
    --bg-primary: #0F172A;
    --bg-secondary: #1E293B;
    --bg-tertiary: #334155;
    --bg-card: #1E293B;
    --text-primary: #F8FAFC;
    --text-secondary: #CBD5E1;
    --text-muted: #94A3B8;
    --accent-primary: #FF6B35;
    --accent-secondary: #f5e08c;
    --accent-tertiary: #A8E063;
    --border: rgba(255, 255, 255, 0.08);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.6);
}


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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    font-size: 1rem;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    margin-bottom: 0.5em;
}

h1 { 
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
}

h2 { 
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
}

h3 { 
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
}

h4 { 
    font-size: 1.25rem;
    font-weight: 600;
}

p {
    color: var(--text-secondary);
    margin-bottom: 1.25em;
    font-size: 1.0625rem;
    line-height: 1.75;
}

a {
    color: var(--accent-secondary);
    text-decoration: none;
    transition: color 0.2s ease;
    font-weight: 500;
}

a:hover {
    color: var(--accent-tertiary);
}

/* ============================================
   LAYOUT
   ============================================ */
.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 6rem 0;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.75rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    white-space: nowrap;
    gap: 0.5rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-primary), #E55A2B);
    color: #FFFFFF;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, #E55A2B, var(--accent-primary));
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background-color: var(--bg-card);
    border-color: var(--accent-secondary);
    color: var(--accent-secondary);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1rem 2.25rem;
    font-size: 1.125rem;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.header {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-primary);
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.logo-link:hover {
    opacity: 0.8;
}

.logo {
    width: auto;
    height: 50px;
    object-fit: contain;
    border-radius: 0.5rem;
    display: block;
    transition: opacity 0.3s ease;
}



.navbar-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.navbar-menu a {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.9375rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
}

.navbar-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-secondary), var(--accent-tertiary));
    transition: width 0.3s ease;
    border-radius: 2px;
}

.navbar-menu a:hover,
.navbar-menu a.active {
    color: var(--text-primary);
}

.navbar-menu a:hover::after,
.navbar-menu a.active::after {
    width: calc(100% - 1.5rem);
}

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

.navbar-dropdown > a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.navbar-dropdown > a i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.navbar-dropdown:hover > a i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 0.5rem;
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    list-style: none;
    padding: 0.75rem 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
}

.navbar-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.25rem;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.2s ease;
    border-radius: 0;
    position: relative;
}

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

.dropdown-menu a:hover {
    background: rgba(255, 107, 53, 0.1);
    color: var(--text-primary);
    padding-left: 1.5rem;
}

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

.dropdown-divider {
    height: 1px;
    background: var(--border);
    margin: 0.5rem 0;
}

.dropdown-programmer-link {
    display: flex !important;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 140, 90, 0.1)) !important;
    border-left: 3px solid var(--accent-primary);
    font-weight: 600 !important;
    color: var(--accent-primary) !important;
}

.dropdown-programmer-link:hover {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(255, 140, 90, 0.15)) !important;
    color: var(--accent-primary) !important;
    padding-left: 1.5rem !important;
}

.dropdown-programmer-link i {
    font-size: 1rem;
    color: var(--accent-primary);
}


.navbar-menu-portal {
    display: none;
}

.navbar-menu-portal .btn {
    width: 100%;
    justify-content: center;
    margin-top: 0.5rem;
    background: linear-gradient(135deg, var(--accent-primary), #FF8C5A);
    color: #FFFFFF;
    border: none;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-size: 0.9375rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.navbar-menu-portal .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    background: linear-gradient(135deg, #FF8C5A, var(--accent-primary));
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.navbar-actions .btn-primary {
    background: linear-gradient(135deg, var(--accent-primary), #FF8C5A);
    color: #FFFFFF;
    border: none;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-size: 0.9375rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}


.navbar-actions .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.navbar-actions .btn-primary:hover::before {
    left: 100%;
}

.navbar-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    background: linear-gradient(135deg, #FF8C5A, var(--accent-primary));
}

.navbar-actions .btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}


.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    width: 40px;
    height: 40px;
    justify-content: center;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    padding: 8rem 0 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08) 0%, rgba(0, 217, 255, 0.08) 50%, rgba(255, 107, 53, 0.05) 100%);
    pointer-events: none;
    z-index: 0;
}

.hero-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 217, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 107, 53, 0.08) 0%, transparent 70%);
    opacity: 0.6;
    animation: overlayPulse 8s ease-in-out infinite;
}

@keyframes overlayPulse {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.15) 0%, rgba(255, 107, 53, 0.05) 40%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    animation: floatOrb 12s ease-in-out infinite;
}

@keyframes floatOrb {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.8;
    }
    33% {
        transform: translate(-30px, 30px) scale(1.1);
        opacity: 1;
    }
    66% {
        transform: translate(30px, -20px) scale(0.9);
        opacity: 0.7;
    }
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.12) 0%, rgba(0, 217, 255, 0.04) 40%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    animation: floatOrbReverse 10s ease-in-out infinite;
}

@keyframes floatOrbReverse {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.7;
    }
    50% {
        transform: translate(40px, -40px) scale(1.15);
        opacity: 0.9;
    }
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

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

/* Stats Section */
.stats-section {
    padding: 4rem 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--bg-card);
    border-radius: 0.75rem;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-4px);
    border-color: var(--accent-primary);
    box-shadow: var(--shadow-md);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-primary);
    line-height: 1;
    margin-bottom: 0.75rem;
}

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

.section-description {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.125rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 3rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.03em;
    text-align: left;
}

.highlight {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: clamp(0.125rem, 2vw, 1rem);
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.7;
    max-width: 100%;
    text-align: left;
}

.hero-actions {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   DOMAIN HERO SECTION
   ============================================ */
.domain-hero {
    padding: 8rem 0 6rem;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 100%;
    margin: 0;
    text-align: left;
}

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

.hero-banner-img {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    border-radius: 1rem;
}

.domain-search-container {
    max-width: 100%;
    margin: 3rem 0;
}

.domain-search-form {
    /* margin-bottom: 4rem; */
}

.domain-search-input-wrapper {
    display: flex;
    gap: 1rem;
    background: var(--bg-card);
    padding: 0.75rem;
    border-radius: 1rem;
    border: 2px solid var(--border);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.domain-search-input-wrapper:focus-within {
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1), var(--shadow-lg);
}

.domain-search-input {
    flex: 1;
    padding: 1rem 1.5rem;
    background: var(--bg-secondary);
    border: none;
    border-radius: 0.75rem;
    color: var(--text-primary);
    font-size: 1.125rem;
    font-weight: 500;
    font-family: inherit;
    transition: all 0.2s ease;
}

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

.domain-search-input:focus {
    outline: none;
    background: var(--bg-primary);
}

.domain-search-btn {
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.2s ease;
}

.domain-search-btn i {
    font-size: 1rem;
}

.domain-search-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.domain-suggestions {
    margin-top: 1rem;
    display: none;
}

.popular-domains {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.popular-domains-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2rem;
    text-align: left;
}

.popular-domains-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    max-width: 100%;
}

.domain-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--bg-card);
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    border: 1px solid var(--border);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    min-width: auto;
}

.domain-item:hover {
    border-color: var(--accent-primary);
    background: var(--bg-secondary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.domain-item.featured {
    border-color: var(--accent-primary);
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08), rgba(245, 224, 140, 0.05));
}

.domain-ext {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--accent-primary);
    letter-spacing: 0.02em;
    min-width: 50px;
    transition: color 0.25s ease;
}

.domain-item:hover .domain-ext {
    color: var(--accent-secondary);
}

.domain-pricing {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    flex: 1;
}

.price-old {
    font-size: 0.8125rem;
    color: var(--text-muted);
    text-decoration: line-through;
    font-weight: 500;
}

.price-new {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--accent-tertiary);
    line-height: 1;
    display: flex;
    align-items: baseline;
    gap: 0.125rem;
}

.price-period {
    font-size: 0.625rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-left: 0.125rem;
}

.popular-badge {
    position: absolute;
    top: -0.5rem;
    right: 0.75rem;
    background: linear-gradient(135deg, var(--accent-primary), #FF8C5A);
    color: #FFFFFF;
    padding: 0.2rem 0.5rem;
    border-radius: 0.375rem;
    font-size: 0.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: var(--shadow-sm);
}

/* ============================================
   CARDS
   ============================================ */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.card {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 1rem;
    border: 1px solid var(--border);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-secondary), var(--accent-tertiary));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card:hover::before {
    opacity: 1;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-secondary);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
    color: var(--accent-secondary);
}

.card-icon i {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.card p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.7;
}

.card-link {
    color: var(--accent-secondary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}


/* ============================================
   SECTIONS
   ============================================ */
.section-title {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-description {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.125rem;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.benefit-item {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--bg-card);
    border-radius: 1rem;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-secondary);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.benefit-item h3 {
    margin-bottom: 0.75rem;
    font-size: 1.375rem;
}

.benefit-item p {
    font-size: 1rem;
    margin-bottom: 0;
}

.process-timeline {
    position: relative;
    margin-top: 4rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.process-step {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--bg-card);
    border-radius: 1rem;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.step-number {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-secondary), var(--accent-tertiary));
    color: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 800;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-md);
}

.process-step h3 {
    margin-bottom: 0.75rem;
    font-size: 1.375rem;
}

.process-step p {
    font-size: 1rem;
    margin-bottom: 0;
}

/* ============================================
   PORTFOLIO
   ============================================ */
.portfolio-filter {
    padding: 3rem 0 2rem;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.5625rem 1.125rem;
    background: var(--bg-secondary);
    color: var(--text-secondary);
    border: 1.5px solid var(--border);
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.8125rem;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
    flex-shrink: 0;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.filter-btn:hover::before {
    left: 100%;
}

.filter-btn:hover {
    background: var(--bg-card);
    color: var(--text-primary);
    border-color: rgba(255, 107, 53, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.15);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--accent-primary), #E55A2B);
    color: #FFFFFF;
    border-color: var(--accent-primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 107, 53, 0.35);
    font-weight: 600;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.portfolio-items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.portfolio-item {
    background: var(--bg-card);
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-secondary);
}

.portfolio-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 1rem 1rem 0 0;
}

.portfolio-image {
    width: 100%;
    height: 240px;
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-tertiary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    transition: transform 0.3s ease;
    color: var(--accent-secondary);
}

.portfolio-image i {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-item:hover .portfolio-image {
    transform: scale(1.1);
}

.btn-small {
    padding: 0.625rem 1.25rem;
    font-size: 0.9375rem;
}

.portfolio-stats {
    padding: 4rem 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.portfolio-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.portfolio-year {
    color: var(--text-muted);
    font-size: 0.875rem;
    font-weight: 500;
}

.portfolio-details {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.portfolio-detail-item {
    margin-bottom: 1rem;
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

.portfolio-detail-item strong {
    color: var(--text-primary);
    margin-right: 0.5rem;
}

.portfolio-tech {
    margin-top: 1rem;
}

.portfolio-tech strong {
    display: block;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    font-size: 0.9375rem;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tech-tag {
    padding: 0.375rem 0.75rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    font-size: 0.8125rem;
    color: var(--text-secondary);
}

.portfolio-content {
    padding: 2rem;
}

.portfolio-tag {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background: var(--accent-primary);
    color: #FFFFFF;
    border-radius: 1.5rem;
    font-size: 0.8125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.portfolio-content h3 {
    margin-bottom: 0.75rem;
    font-size: 1.375rem;
}

.portfolio-content p {
    font-size: 0.9375rem;
    margin-bottom: 0;
    color: var(--text-secondary);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.testimonial {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    position: relative;
}

.testimonial:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-secondary);
}

.testimonial-rating {
    display: flex;
    gap: 0.375rem;
    margin-bottom: 1.25rem;
}

.testimonial-rating i {
    color: var(--accent-primary);
    font-size: 1rem;
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-size: 1.0625rem;
    line-height: 1.7;
    margin-bottom: 0;
    color: var(--text-secondary);
    font-style: italic;
}

.testimonial-author {
    padding-top: 1.25rem;
    border-top: 1px solid var(--border);
}

.testimonial-author strong {
    display: block;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
    font-size: 1rem;
    font-weight: 600;
}

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

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    background: var(--bg-secondary);
    padding: 6rem 0;
    border-radius: 2rem;
    margin: 4rem 0;
}

.cta-section .container {
    text-align: center;
}

.cta-section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: var(--text-secondary);
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: var(--text-secondary);
}

.cta-form {
    margin-top: 2.5rem;
    max-width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.cta-form input,
.cta-form textarea {
    width: 100%;
    padding: 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.cta-form input:focus,
.cta-form textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

/* ============================================
   PAGE HEADER
   ============================================ */
.page-header {
    padding: 7rem 0 5rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08) 0%, rgba(0, 217, 255, 0.08) 100%);
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(0, 217, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.25rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.page-header p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.page-header .domains-count-text {
    margin-top: 1rem;
    font-size: 1rem;
    color: var(--text-muted);
}

.page-header .domains-count-text strong {
    color: var(--accent-primary);
    font-weight: 700;
}

/* ============================================
   FORMS
   ============================================ */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    background: var(--bg-card);
    padding: 3rem;
    border-radius: 1rem;
    border: 1px solid var(--border);
    height: fit-content;
}

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

.contact-item {
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem;
    background: var(--bg-secondary);
    border-radius: 0.75rem;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.contact-item:hover {
    border-color: var(--accent-primary);
    transform: translateX(4px);
    box-shadow: var(--shadow-md);
}

.contact-item.highlight {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08), rgba(245, 224, 140, 0.05));
    border-color: var(--accent-primary);
}

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

.contact-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 0.5rem;
    font-size: 1.25rem;
    flex-shrink: 0;
    color: var(--accent-primary);
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    background: rgba(255, 107, 53, 0.2);
    transform: scale(1.1);
}

.contact-details {
    flex: 1;
}

.contact-details strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-item a {
    color: var(--text-primary);
    font-size: 1.125rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-item a:hover {
    color: var(--accent-primary);
}

.contact-item span {
    color: var(--text-primary);
    font-size: 1.125rem;
    font-weight: 500;
}

.contact-intro {
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    font-size: 1.0625rem;
}

.contact-items-list {
    margin-bottom: 2.5rem;
}

.working-hours {
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--border);
}

.working-hours h3 {
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    color: var(--text-primary);
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background: var(--bg-card);
    border-radius: 0.5rem;
    border: 1px solid var(--border);
}

.hours-day {
    font-weight: 500;
    color: var(--text-primary);
}

.hours-time {
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

.contact-faq {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border);
}

.contact-faq h3 {
    margin-bottom: 1.5rem;
    font-size: 1.375rem;
    color: var(--text-primary);
    font-weight: 600;
}

.faq-item-small {
    margin-bottom: 1.25rem;
    padding: 1.5rem;
    background: var(--bg-secondary);
    border-radius: 0.75rem;
    border: 1px solid var(--border);
    transition: all 0.2s ease;
}

.faq-item-small:hover {
    border-color: var(--accent-primary);
}

.faq-item-small strong {
    display: block;
    margin-bottom: 0.75rem;
    color: var(--accent-primary);
    font-size: 1rem;
    font-weight: 600;
}

.faq-item-small p {
    margin-bottom: 0;
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.7;
}

.contact-form-wrapper {
    background: var(--bg-card);
    padding: 3.5rem;
    border-radius: 1rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
}

.contact-form-wrapper h2 {
    margin-bottom: 2rem;
    font-size: 1.75rem;
    color: var(--text-primary);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.9375rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.15);
    background: var(--bg-primary);
}

.form-group input.error,
.form-group textarea.error {
    border-color: #EF4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.error-message {
    display: block;
    color: #EF4444;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    font-weight: 500;
}

.alert {
    padding: 1.25rem;
    border-radius: 0.75rem;
    margin-bottom: 2rem;
    border: 1px solid;
}

.alert-success {
    background: rgba(168, 224, 99, 0.1);
    border-color: var(--accent-tertiary);
    color: var(--accent-tertiary);
}

/* Toast Notifications */
.toast-notification {
    position: fixed;
    top: 2rem;
    right: 2rem;
    min-width: 320px;
    max-width: 500px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    padding: 1.25rem 1.5rem;
    box-shadow: var(--shadow-xl);
    z-index: 10000;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.toast-notification.show {
    opacity: 1;
    transform: translateX(0);
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.toast-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.toast-success .toast-icon {
    color: var(--accent-tertiary);
}

.toast-error .toast-icon {
    color: #EF4444;
}

.toast-message {
    color: var(--text-primary);
    font-size: 0.9375rem;
    line-height: 1.5;
    flex: 1;
}

.toast-close {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
    flex-shrink: 0;
}

.toast-close:hover {
    color: var(--text-primary);
}

.toast-success {
    border-left: 4px solid var(--accent-tertiary);
}

.toast-error {
    border-left: 4px solid #EF4444;
}

@media (max-width: 768px) {
    .toast-notification {
        top: 1rem;
        right: 1rem;
        left: 1rem;
        min-width: auto;
        max-width: none;
        transform: translateY(-100px);
    }
    
    .toast-notification.show {
        transform: translateY(0);
    }
}

/* ============================================
   HOSTING PLANS
   ============================================ */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.plan-card {
    background: var(--bg-card);
    padding: 2.5rem 2rem;
    border-radius: 0.75rem;
    border: 1px solid var(--border);
    position: relative;
    transition: all 0.2s ease;
}

.plan-card:hover {
    border-color: var(--accent-primary);
    box-shadow: var(--shadow-md);
}

.plan-card.featured {
    border-color: var(--accent-primary);
    border-width: 2px;
}

.plan-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent-primary);
    color: #FFFFFF;
    padding: 0.375rem 0.875rem;
    border-radius: 0.375rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.plan-billing-toggle {
    display: flex;
    gap: 0.5rem;
    background: var(--bg-secondary);
    padding: 0.25rem;
    border-radius: 0.5rem;
    margin: 1rem 0;
    border: 1px solid var(--border);
}

.billing-btn {
    flex: 1;
    padding: 0.5rem 1rem;
    background: transparent;
    border: none;
    border-radius: 0.375rem;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
}

.billing-btn:hover {
    color: var(--text-primary);
}

.billing-btn.active {
    background: var(--accent-primary);
    color: white;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

.discount-badge {
    background: var(--accent-tertiary);
    color: var(--bg-primary);
    font-size: 0.6875rem;
    font-weight: 700;
    padding: 0.125rem 0.375rem;
    border-radius: 0.25rem;
    margin-left: 0.25rem;
}

.plan-price {
    margin: 1.5rem 0 2rem;
    min-height: 80px;
}

.price-monthly,
.price-yearly {
    width: 100%;
}

.yearly-savings {
    font-size: 0.75rem;
    color: var(--accent-tertiary);
    font-weight: 600;
    margin-top: 0.5rem;
    text-align: center;
    padding: 0.25rem 0.5rem;
    background: rgba(168, 224, 99, 0.1);
    border-radius: 0.25rem;
    display: inline-block;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-primary);
    line-height: 1;
}

.currency {
    font-size: 1.25rem;
    vertical-align: top;
    font-weight: 500;
}

.period {
    color: var(--text-muted);
    font-size: 0.9375rem;
    font-weight: 400;
}

.plan-features {
    list-style: none;
    margin: 2rem 0;
    padding: 0;
}

.plan-features li {
    padding: 0.75rem 0;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
}

.plan-features .feature-icon {
    color: var(--accent-tertiary);
    font-size: 1rem;
    width: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.plan-features li::before {
    display: none;
}

.plan-discount {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--accent-secondary);
    color: var(--bg-primary);
    padding: 0.375rem 0.875rem;
    border-radius: 0.375rem;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
}

.price-original {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
    display: block;
}

.plan-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    font-weight: 600;
}

/* ============================================
   HOSTING GUARANTEES
   ============================================ */
.guarantees-section {
    padding: 4rem 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

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

.guarantee-item {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--bg-card);
    border-radius: 1rem;
    border: 1px solid var(--border);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.guarantee-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.guarantee-item:hover {
    transform: translateY(-8px);
    border-color: var(--accent-secondary);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.guarantee-item:hover::before {
    transform: scaleX(1);
}

.guarantee-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(245, 224, 140, 0.15));
    border-radius: 1rem;
    border: 2px solid rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
}

.guarantee-item:hover .guarantee-icon {
    transform: scale(1.1) rotate(5deg);
    border-color: var(--accent-primary);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.guarantee-icon i {
    font-size: 2.5rem;
    color: var(--accent-primary);
}

.guarantee-item h3 {
    font-size: 1.375rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.guarantee-item p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 0;
    line-height: 1.6;
}

/* ============================================
   SERVER TECH
   ============================================ */
.server-tech-section {
    padding: 4rem 0;
}

.server-tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.server-tech-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.server-tech-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent-primary), var(--accent-secondary));
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.server-tech-item:hover {
    transform: translateX(8px);
    border-color: var(--accent-secondary);
    box-shadow: 0 4px 12px rgba(245, 224, 140, 0.15);
}

.server-tech-item:hover::before {
    transform: scaleY(1);
}

.server-tech-item i {
    font-size: 1.5rem;
    color: var(--accent-tertiary);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.server-tech-item:hover i {
    transform: scale(1.2) rotate(5deg);
}

.server-tech-item span {
    color: var(--text-secondary);
    font-size: 1.0625rem;
    font-weight: 500;
    line-height: 1.6;
}

.section-description {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.125rem;
    margin-top: 1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   HOSTING TESTIMONIALS
   ============================================ */
.hosting-testimonials {
    padding: 4rem 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial {
    padding: 2.5rem;
    background: var(--bg-card);
    border-radius: 1rem;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-4px);
    border-color: var(--accent-secondary);
    box-shadow: var(--shadow-lg);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 0;
    position: relative;
    padding-left: 1.5rem;
}

.testimonial-content p::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -0.5rem;
    font-size: 3rem;
    color: var(--accent-primary);
    opacity: 0.3;
    font-family: Georgia, serif;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.testimonial-author strong {
    color: var(--text-primary);
    font-size: 1.0625rem;
    font-weight: 600;
}

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

/* ============================================
   COMPARISON TABLE
   ============================================ */
.comparison-section {
    padding: 4rem 0;
}

.table-wrapper {
    overflow-x: auto;
    margin-top: 3rem;
    border-radius: 0.75rem;
    border: 1px solid var(--border);
    background: var(--bg-card);
}

.comparison {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-card);
}

.comparison th,
.comparison td {
    padding: 1rem 1.25rem;
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.comparison th {
    background: var(--bg-secondary);
    color: var(--text-primary);
    font-weight: 700;
    font-size: 0.9375rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.comparison th:first-child {
    text-align: left;
    font-weight: 700;
    color: var(--text-primary);
}

.comparison td {
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

.comparison td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--text-primary);
}

.comparison tr:last-child td {
    border-bottom: none;
}

.comparison tr:hover {
    background: rgba(255, 107, 53, 0.05);
}

.comparison td:not(:first-child) {
    text-align: center;
}

.comparison-section {
    padding: 4rem 0;
}

.comparison-table h2 {
    text-align: center;
    margin-bottom: 1rem;
}

/* ============================================
   FAQ
   ============================================ */
.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 1rem;
    margin-bottom: 1.5rem;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--accent-secondary);
    box-shadow: var(--shadow-md);
}

.faq-item h3 {
    margin-bottom: 1rem;
    color: var(--accent-secondary);
    font-size: 1.25rem;
}

.faq-item p {
    margin-bottom: 0;
    font-size: 1rem;
}

/* FAQ Accordion */
.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.faq-accordion-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 1rem;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-accordion-item:hover {
    border-color: var(--accent-secondary);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    text-align: left;
    color: var(--text-primary);
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: all 0.2s ease;
}

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

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--accent-secondary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 2rem;
}

.faq-question[aria-expanded="true"] + .faq-answer {
    max-height: 500px;
    padding: 0 2rem 1.5rem;
}

.faq-answer p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0;
}

/* ============================================
   SOFTWARE
   ============================================ */
.software-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.software-card {
    background: var(--bg-card);
    padding: 2.5rem 2rem;
    border-radius: 0.75rem;
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.2s ease;
}

.software-card:hover {
    border-color: var(--accent-primary);
    box-shadow: var(--shadow-md);
}

.software-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: block;
    color: var(--accent-primary);
}

.benefits-list {
    max-width: 900px;
    margin: 0 auto;
}

.benefit-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
    padding: 1.5rem 2rem;
    background: var(--bg-card);
    border-radius: 0.75rem;
    border: 1px solid var(--border);
    transition: all 0.2s ease;
}

.benefit-row:hover {
    border-color: var(--accent-primary);
    box-shadow: var(--shadow-md);
}

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

.benefit-icon {
    font-size: 2rem;
    flex-shrink: 0;
    color: var(--accent-primary);
}

.benefit-text h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.benefit-text p {
    margin-bottom: 0;
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.tech-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 3rem;
}

.tech-item {
    padding: 0.75rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9375rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.tech-item:hover {
    border-color: var(--accent-secondary);
    color: var(--accent-secondary);
    transform: translateY(-2px);
}

.software-meta {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.duration-badge {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 0.375rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--accent-primary);
    margin-bottom: 1rem;
}

.examples-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.example-tag {
    padding: 0.25rem 0.75rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 0.375rem;
    font-size: 0.8125rem;
    color: var(--text-secondary);
}

.software-process {
    padding: 4rem 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.process-timeline-vertical {
    max-width: 800px;
    margin: 3rem auto 0;
    position: relative;
    padding-left: 3rem;
}

.process-timeline-vertical::before {
    content: '';
    position: absolute;
    left: 1.25rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border);
}

.process-step-vertical {
    position: relative;
    margin-bottom: 2.5rem;
    padding-left: 3rem;
}

.process-step-vertical:last-child {
    margin-bottom: 0;
}

.step-number-vertical {
    position: absolute;
    left: -2.5rem;
    top: 0;
    width: 2.5rem;
    height: 2.5rem;
    background: var(--bg-card);
    border: 2px solid var(--accent-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    color: var(--accent-primary);
    z-index: 1;
}

.step-content {
    background: var(--bg-card);
    padding: 1.5rem 2rem;
    border-radius: 0.75rem;
    border: 1px solid var(--border);
    transition: all 0.2s ease;
}

.step-content:hover {
    border-color: var(--accent-primary);
    box-shadow: var(--shadow-md);
}

.step-content h3 {
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
    color: var(--text-primary);
    font-weight: 600;
}

.step-content p {
    margin-bottom: 0;
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.9375rem;
}

.tech-stack {
    padding: 4rem 0;
}

.tech-stack-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.tech-category {
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid var(--border);
    transition: all 0.2s ease;
}

.tech-category:hover {
    border-color: var(--accent-primary);
}

.tech-category-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.tech-category-items {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tech-badge-colored {
    padding: 0.5rem 1rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 0.375rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.tech-badge-colored:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

/* ============================================
   ABOUT
   ============================================ */
.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.about-content h2 {
    margin-bottom: 1.5rem;
    text-align: center;
}

.about-content h3 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: var(--accent-primary);
    text-align: center;
}

.about-header {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), rgba(245, 224, 140, 0.05));
}

.about-stats {
    padding: 4rem 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.about-mission {
    padding: 4rem 0;
}

.mission-intro {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-weight: 500;
    text-align: center;
}

.value-examples {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.value-examples li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

.value-examples li i {
    margin-right: 0.5rem;
    color: var(--accent-secondary);
}

.about-content p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.about-values {
    padding: 4rem 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.value-item {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--bg-card);
    border-radius: 0.75rem;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-primary);
}

.value-item:hover::before {
    transform: scaleX(1);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: block;
    color: var(--accent-primary);
    transition: transform 0.3s ease;
}

.value-item:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
}

.value-icon i {
    filter: drop-shadow(0 2px 4px rgba(255, 107, 53, 0.3));
}

.value-item h3 {
    font-size: 1.375rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.value-item p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.services-list {
    max-width: 900px;
    margin: 0 auto;
}

.about-services {
    padding: 4rem 0;
}

.service-row {
    margin-bottom: 2rem;
    padding: 2rem;
    background: var(--bg-card);
    border-radius: 0.75rem;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-row::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent-primary), var(--accent-secondary));
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.service-row:hover {
    border-color: var(--accent-primary);
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.service-row:hover::before {
    transform: scaleY(1);
}

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

.service-row h3 {
    margin-bottom: 1rem;
    color: var(--accent-primary);
    font-size: 1.375rem;
    font-weight: 600;
}

.service-row p {
    margin-bottom: 0;
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   LEGAL
   ============================================ */
.legal-text {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-card);
    padding: 4rem;
    border-radius: 1rem;
    border: 1px solid var(--border);
}

.legal-text h2 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: var(--accent-secondary);
    font-size: 1.75rem;
}

.legal-text h2:first-child {
    margin-top: 0;
}

.legal-text p {
    margin-bottom: 1.5rem;
    font-size: 1.0625rem;
}

.legal-text ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
    color: var(--text-secondary);
}

.legal-text li {
    margin-bottom: 0.75rem;
    font-size: 1.0625rem;
    line-height: 1.7;
}

/* ============================================
   404
   ============================================ */
.error-page {
    padding: 8rem 0;
    text-align: center;
}

.error-content {
    max-width: 700px;
    margin: 0 auto;
}

.error-code {
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    line-height: 1;
}

.error-content h2 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    margin-bottom: 1rem;
}

.error-content p {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
}

.error-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    padding: 5rem 0 2rem;
    margin-top: 6rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo a {
    display: inline-block;
    transition: opacity 0.3s ease;
}

.footer-logo a:hover {
    opacity: 0.8;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    display: block;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-section h4 {
    margin-bottom: 1.25rem;
    color: var(--text-primary);
    font-size: 1.125rem;
    font-weight: 600;
}

.footer-section p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

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

.footer-section ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-section ul li {
    margin-bottom: 0;
}

.footer-section a {
    color: var(--text-secondary);
    transition: color 0.2s ease;
    font-size: 0.9375rem;
}

.footer-section a:hover {
    color: var(--accent-secondary);
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    transition: all 0.2s ease;
}

.social-icon:hover {
    color: var(--accent-secondary);
    border-color: var(--accent-secondary);
    background: var(--bg-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

.footer-legal-links {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    text-align: center;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-menu .menu-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-menu .menu-item a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
    vertical-align: middle;
}

.footer-menu .menu-item a:hover {
    opacity: 0.8;
}

.footer-menu .menu-item img {
    display: block;
    max-width: 150px;
    height: auto;
    vertical-align: middle;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    /* border-top: 1px solid var(--border); */
    color: var(--text-muted);
    font-size: 0.875rem;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

.footer-bottom p:last-child {
    margin-bottom: 0;
    font-size: 0.75rem;
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   SERVICES DETAIL
   ============================================ */
.service-content-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    align-items: start;
}

.service-content {
    flex: 1;
}

.service-intro {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--text-secondary);
}

.feature-list {
    list-style: none;
    margin: 2rem 0;
    padding: 0;
}

.feature-list li {
    padding: 0.875rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-secondary);
    font-size: 1.0625rem;
    line-height: 1.7;
}

.feature-list .checkmark {
    position: absolute;
    left: 0;
    color: var(--accent-tertiary);
}

.feature-list .checkmark i {
    font-size: 1.125rem;
}

.service-cta {
    margin-top: 2.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.price-hint {
    color: var(--text-muted);
    font-size: 0.9375rem;
    font-weight: 500;
}

.service-visual {
    position: sticky;
    top: 100px;
}

.service-visual-card {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 1rem;
    border: 1px solid var(--border);
    text-align: center;
}

.visual-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
}

.service-visual-card h4 {
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.service-visual-card p {
    margin-bottom: 0;
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

.technologies-section,
.example-projects-section {
    margin: 4rem 0;
    padding: 3rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.section-subtitle {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.tech-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.tech-badge {
    padding: 0.625rem 1.25rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9375rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.tech-badge:hover {
    border-color: var(--accent-secondary);
    color: var(--accent-secondary);
    transform: translateY(-2px);
}

.example-projects {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.example-project-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    color: var(--text-primary);
    transition: all 0.2s ease;
    text-decoration: none;
}

.example-project-link:hover {
    border-color: var(--accent-secondary);
    background: var(--bg-secondary);
    transform: translateX(8px);
}

.project-arrow {
    color: var(--accent-secondary);
    font-size: 1.25rem;
    font-weight: 700;
}

.service-link-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    color: var(--accent-secondary);
}

.visual-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
    color: var(--accent-secondary);
}

.service-link-card {
    text-align: center;
    padding: 2.5rem;
}

/* ============================================
   SERVICES PAGE - ENHANCED STYLES
   ============================================ */
.services-detail {
    padding: 4rem 0;
}

.service-hero {
    text-align: center;
    padding: 3rem 0;
    margin-bottom: 4rem;
}

.service-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.service-icon-large {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(245, 224, 140, 0.1));
    border-radius: 2rem;
    border: 2px solid rgba(255, 107, 53, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-icon-large:hover {
    transform: scale(1.05) rotate(5deg);
    border-color: var(--accent-primary);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.service-icon-large i {
    font-size: 4rem;
    color: var(--accent-primary);
    filter: drop-shadow(0 4px 8px rgba(255, 107, 53, 0.4));
}

.service-hero h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-features-section {
    margin: 4rem 0;
    padding: 3rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent-primary), var(--accent-secondary));
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateX(8px);
    border-color: var(--accent-secondary);
    box-shadow: 0 4px 12px rgba(245, 224, 140, 0.15);
}

.feature-item:hover::before {
    transform: scaleY(1);
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--accent-tertiary);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.feature-item:hover i {
    transform: scale(1.2) rotate(5deg);
}

.feature-item span {
    color: var(--text-secondary);
    font-size: 1.0625rem;
    font-weight: 500;
    line-height: 1.6;
}

.service-cta-section {
    margin: 4rem 0;
    padding: 3rem 0;
}

.service-cta-box {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08), rgba(245, 224, 140, 0.05));
    border: 2px solid rgba(255, 107, 53, 0.2);
    border-radius: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
}

.service-cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

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

.service-cta-box > div:first-child {
    flex: 1;
    min-width: 250px;
    position: relative;
    z-index: 1;
}

.service-cta-box h3 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.service-cta-box p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    margin-bottom: 0;
}

.cta-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.cta-actions .btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
}

.price-hint {
    color: var(--accent-secondary);
    font-size: 1rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    background: rgba(245, 224, 140, 0.1);
    border-radius: 0.5rem;
    border: 1px solid rgba(245, 224, 140, 0.2);
}

.other-services-section {
    margin: 4rem 0;
    padding: 3rem 0;
    border-top: 1px solid var(--border);
}

.other-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.other-service-card {
    padding: 2.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.other-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.other-service-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-secondary);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

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

.other-service-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(245, 224, 140, 0.15));
    border-radius: 1rem;
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
}

.other-service-card:hover .other-service-icon {
    transform: scale(1.1) rotate(5deg);
    border-color: var(--accent-primary);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.other-service-icon i {
    font-size: 2.5rem;
    color: var(--accent-primary);
}

.other-service-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.other-service-card p {
    color: var(--text-secondary);
    font-size: 1.0625rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--accent-secondary);
    font-weight: 600;
    font-size: 1.0625rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.service-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-secondary);
    transition: width 0.3s ease;
}

.service-link:hover {
    color: var(--accent-primary);
    gap: 1rem;
}

.service-link:hover::after {
    width: 100%;
}

.service-link i {
    transition: transform 0.3s ease;
}

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

.faq-section {
    margin: 4rem 0;
    padding: 3rem 0;
    border-top: 1px solid var(--border);
}

/* ============================================
   UTILITIES
   ============================================ */
.text-center {
    text-align: center;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) and (min-width: 481px) {
    .popular-domains-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.875rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .logo {
        height: 35px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .navbar-menu {
        position: fixed;
        top: 72px;
        left: -100%;
        width: 100%;
        background: var(--bg-secondary);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transition: left 0.3s ease;
        border-top: 1px solid var(--border);
        box-shadow: var(--shadow-xl);
    }
    
    .navbar-menu.active {
        left: 0;
    }
    
    .navbar-actions {
        display: none;
    }
    
    .navbar-menu-portal {
        display: block;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid var(--border);
    }
    
    .navbar-menu-portal .btn {
        width: 100%;
        justify-content: center;
        margin-top: 0;
    }
    
    .hero {
        padding: 5rem 0 4rem;
    }
    
    .domain-hero {
        padding: 4rem 0 3rem;
    }
    
    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-image {
        order: -1;
        margin-bottom: 1rem;
    }
    
    .hero-banner-img {
        max-width: 100%;
        height: auto;
        max-height: 250px;
        object-fit: contain;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-title {
        text-align: center;
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        text-align: center;
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .popular-domains-title {
        text-align: center;
        font-size: 1.25rem;
        margin-bottom: 1.25rem;
    }
    
    .popular-domains-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .domain-search-container {
        margin: 2rem auto;
        max-width: 100%;
    }
    
    .domain-search-form {
        margin-bottom: 2rem;
    }
    
    .domain-search-input-wrapper {
        flex-direction: column;
        gap: 0.75rem;
        padding: 0.625rem;
    }
    
    .domain-search-input {
        font-size: 1rem;
        padding: 0.875rem 1.25rem;
    }
    
    .domain-search-btn {
        width: 100%;
        justify-content: center;
        padding: 0.875rem 1.5rem;
        font-size: 0.9375rem;
        min-height: 44px; /* Touch target size */
    }
    
    .domain-item {
        padding: 0.75rem 1rem;
        min-width: auto;
        width: 100%;
        margin: 0;
        gap: 0.625rem;
    }
    
    .domain-ext {
        font-size: 0.8125rem;
        min-width: 45px;
    }
    
    .price-new {
        font-size: 0.75rem;
    }
    
    .domain-item .price-period,
    .popular-domains-list .price-period {
        font-size: 0.5rem !important;
        color: var(--text-muted);
        font-weight: 500;
    }
    
    .popular-domains {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .stats-section .stat-number,
    .stats-grid .stat-number {
        font-size: 1.875rem !important;
    }
    
    .stats-section .stat-label,
    .stats-grid .stat-label {
        font-size: 0.8125rem !important;
    }
    
    .stats-section .stat-item,
    .stats-grid .stat-item {
        padding: 1.5rem 1rem !important;
    }
    
    .card-icon {
        font-size: 2.5rem;
        margin-bottom: 1.25rem;
    }
    
    .card h3 {
        font-size: 1.25rem;
    }
    
    .card p {
        font-size: 0.9375rem;
    }
    
    .benefit-icon {
        font-size: 2.5rem;
        margin-bottom: 1.25rem;
    }
    
    .benefit-item h3 {
        font-size: 1.125rem;
    }
    
    .benefit-item p {
        font-size: 0.9375rem;
    }
    
    .step-number {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
    }
    
    .process-step h3 {
        font-size: 1.125rem;
    }
    
    .process-step p {
        font-size: 0.9375rem;
    }
    
    .testimonial-content p {
        font-size: 0.9375rem;
    }
    
    .testimonial-author strong {
        font-size: 0.9375rem;
    }
    
    .testimonial-author span {
        font-size: 0.8125rem;
    }
    
    .cta-section h2 {
        font-size: 1.75rem;
    }
    
    .cta-section p {
        font-size: 1rem;
    }
    
    section {
        padding: 4rem 0;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .plans-grid,
    .cards-grid,
    .portfolio-grid,
    .portfolio-items,
    .guarantees-grid,
    .server-tech-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .table-wrapper {
        margin: 2rem -1.5rem;
        padding: 0 1.5rem;
    }
    
    .comparison {
        font-size: 0.875rem;
    }
    
    .comparison th,
    .comparison td {
        padding: 1rem 0.75rem;
    }
    
    .cta-section {
        margin: 2rem 0;
        padding: 4rem 0;
        border-radius: 1rem;
    }
    
    .page-header {
        padding: 4rem 0 3rem;
    }
    
    .service-content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-visual {
        position: static;
    }
    
    .service-hero {
        padding: 2rem 0;
    }
    
    .service-icon-large {
        width: 100px;
        height: 100px;
    }
    
    .service-icon-large i {
        font-size: 3rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .service-cta-box {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
    }
    
    .cta-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-actions .btn-large {
        width: 100%;
    }
    
    .other-services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .logo {
        height: 30px;
    }
    
    .hero {
        padding: 3rem 0 2.5rem;
    }
    
    .domain-hero {
        padding: 3rem 0 2.5rem;
    }
    
    .hero-wrapper {
        gap: 1.5rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
        margin-bottom: 0.875rem;
    }
    
    .hero-description {
        font-size: 0.9375rem;
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }
    
    .popular-domains-list {
        gap: 0.625rem;
    }
    
    .domain-item {
        padding: 0.625rem 0.875rem;
        flex-direction: row;
        align-items: center;
        gap: 0.5rem;
        min-height: 44px; /* Touch target size */
    }
    
    .domain-ext {
        font-size: 0.75rem;
        min-width: 40px;
    }
    
    .domain-pricing {
        width: auto;
        justify-content: flex-end;
        flex: 1;
    }
    
    .price-new {
        font-size: 0.7rem;
    }
    
    .domain-item .price-period,
    .popular-domains-list .price-period {
        font-size: 0.5rem !important;
        color: var(--text-muted);
        font-weight: 500;
    }
    
    .popular-domains-title {
        font-size: 1.125rem;
        margin-bottom: 1rem;
    }
    
    .domain-search-container {
        margin: 1.5rem auto;
    }
    
    .domain-search-input-wrapper {
        padding: 0.5rem;
        gap: 0.625rem;
    }
    
    .domain-search-input {
        font-size: 0.9375rem;
        padding: 0.75rem 1rem;
        min-height: 44px; /* Touch target size */
    }
    
    .domain-search-btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
        min-height: 44px; /* Touch target size */
    }
    
    .popular-domains {
        margin-top: 1.5rem;
        padding-top: 1.25rem;
    }
    
    .popular-badge {
        position: absolute;
        top: -0.375rem;
        right: 0.5rem;
        padding: 0.15rem 0.4rem;
        font-size: 0.4375rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-description {
        font-size: 0.9375rem;
    }
    
    .stats-section .stat-number,
    .stats-grid .stat-number {
        font-size: 1.625rem !important;
    }
    
    .stats-section .stat-label,
    .stats-grid .stat-label {
        font-size: 0.75rem !important;
    }
    
    .stats-section .stat-item,
    .stats-grid .stat-item {
        padding: 1.25rem 0.875rem !important;
    }
    
    .card-icon {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .card h3 {
        font-size: 1.125rem;
    }
    
    .card p {
        font-size: 0.875rem;
    }
    
    .benefit-icon {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .benefit-item h3 {
        font-size: 1rem;
    }
    
    .benefit-item p {
        font-size: 0.875rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .process-step h3 {
        font-size: 1rem;
    }
    
    .process-step p {
        font-size: 0.875rem;
    }
    
    .testimonial-content p {
        font-size: 0.875rem;
    }
    
    .testimonial-author strong {
        font-size: 0.875rem;
    }
    
    .testimonial-author span {
        font-size: 0.75rem;
    }
    
    .cta-section h2 {
        font-size: 1.5rem;
    }
    
    .cta-section p {
        font-size: 0.9375rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .card,
    .plan-card,
    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }
    
    .error-code {
        font-size: 4rem;
    }
    
    .service-hero h2 {
        font-size: 2rem;
    }
    
    .service-icon-large {
        width: 80px;
        height: 80px;
    }
    
    .service-icon-large i {
        font-size: 2.5rem;
    }
    
    .service-cta-box h3 {
        font-size: 1.5rem;
    }
    
    .other-service-card {
        padding: 2rem 1.5rem;
    }
    
    .feature-item {
        padding: 1rem 1.25rem;
    }
    
    .guarantees-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .server-tech-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .table-wrapper {
        overflow-x: scroll;
        -webkit-overflow-scrolling: touch;
    }
    
    .comparison {
        min-width: 600px;
    }
    
    .plan-card {
        padding: 2rem 1.5rem;
    }
    
    .guarantee-item {
        padding: 2rem 1.5rem;
    }
    
    .process-timeline-vertical {
        padding-left: 2rem;
    }
    
    .step-number-vertical {
        left: -1.75rem;
        width: 2rem;
        height: 2rem;
        font-size: 0.875rem;
    }
    
    .process-step-vertical {
        padding-left: 2rem;
        margin-bottom: 2rem;
    }
    
    .step-content {
        padding: 1.25rem 1.5rem;
    }
    
    .benefit-row {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .benefit-icon {
        margin: 0 auto;
    }
    
    .tech-stack-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .stats-section .stat-item,
    .stats-grid .stat-item {
        padding: 1.25rem 0.875rem !important;
    }
    
    .stats-section .stat-number,
    .stats-grid .stat-number {
        font-size: 1.625rem !important;
    }
    
    .about-content {
        text-align: center;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .value-item {
        padding: 2rem 1.5rem;
    }
    
    .service-row {
        padding: 1.5rem;
    }
}

/* ============================================
   DOMAINS PAGE
   ============================================ */
.domains-section {
    padding: 4rem 0;
    min-height: 60vh;
}

.domains-content-grid {
    display: grid;
    grid-template-columns: 25% 1fr;
    gap: 2rem;
    align-items: start;
}

.domains-filters-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: sticky;
    top: 2rem;
}

.domains-table-wrapper-main {
    min-width: 0;
}

.domains-filters {
    margin-bottom: 3rem;
}

.domain-search-filter {
    margin-bottom: 0;
}

.domains-filters-sidebar .search-input-wrapper {
    position: relative;
    width: 100%;
    margin: 0;
}

.search-input-wrapper i {
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 1.125rem;
    pointer-events: none;
}

.domain-search-input-filter {
    width: 100%;
    padding: 1rem 3.5rem 1rem 3.5rem;
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: 0.75rem;
    color: var(--text-primary);
    font-size: 1.0625rem;
    transition: all 0.3s ease;
}

.domain-search-input-filter:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.clear-search-btn {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
}

.clear-search-btn:hover {
    color: var(--text-primary);
}

.filters-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.category-filters {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0.625rem;
    padding: 1.25rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 1rem;
    width: 100%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.category-filters::-webkit-scrollbar {
    height: 6px;
}

.category-filters::-webkit-scrollbar-track {
    background: transparent;
}

.category-filters::-webkit-scrollbar-thumb {
    background: var(--accent-primary);
    border-radius: 3px;
}

.category-filters::-webkit-scrollbar-thumb:hover {
    background: #E55A2B;
}

.category-filters:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    border-color: rgba(255, 107, 53, 0.2);
}

.price-filter {
    padding: 1.25rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 1rem;
    width: 100%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.price-filter:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    border-color: rgba(255, 107, 53, 0.2);
}

.price-filter-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-size: 0.875rem;
    font-weight: 600;
}

.price-filter-text {
    color: var(--text-secondary);
}

.price-filter-value-input {
    color: var(--accent-primary);
    font-weight: 700;
    font-size: 1rem;
    min-width: 70px;
    max-width: 100px;
    text-align: center;
    background: transparent;
    border: 2px solid transparent;
    border-radius: 0.375rem;
    padding: 0.2rem 0.4rem;
    transition: all 0.2s ease;
    -moz-appearance: textfield;
}

.price-filter-value-input::-webkit-outer-spin-button,
.price-filter-value-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.price-filter-value-input:hover {
    border-color: var(--border);
    background: var(--bg-secondary);
}

.price-filter-value-input:focus {
    outline: none;
    border-color: var(--accent-primary);
    background: var(--bg-card);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.price-filter-currency {
    color: var(--text-secondary);
    font-weight: 500;
}

.price-filter-slider {
    width: 100%;
    height: 8px;
    border-radius: 5px;
    background: var(--bg-secondary);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

.price-filter-slider:hover {
    background: var(--bg-tertiary);
}

.price-filter-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-primary), #E55A2B);
    cursor: pointer;
    border: 2.5px solid var(--bg-primary);
    box-shadow: 0 2px 6px rgba(255, 107, 53, 0.4), 0 0 0 1.5px rgba(255, 107, 53, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: -5px;
}

.price-filter-slider::-webkit-slider-thumb:hover {
    transform: scale(1.15);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.5), 0 0 0 4px rgba(255, 107, 53, 0.15);
    border-color: var(--bg-secondary);
}

.price-filter-slider::-webkit-slider-thumb:active {
    transform: scale(1.2);
}

.price-filter-slider::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-primary), #E55A2B);
    cursor: pointer;
    border: 2.5px solid var(--bg-primary);
    box-shadow: 0 2px 6px rgba(255, 107, 53, 0.4), 0 0 0 1.5px rgba(255, 107, 53, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-sizing: border-box;
}

.price-filter-slider::-moz-range-thumb:hover {
    transform: scale(1.15);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.5), 0 0 0 4px rgba(255, 107, 53, 0.15);
    border-color: var(--bg-secondary);
}

.price-filter-slider::-moz-range-thumb:active {
    transform: scale(1.2);
}

.price-filter-slider::-webkit-slider-runnable-track {
    height: 8px;
    border-radius: 5px;
    background: linear-gradient(to right, var(--accent-primary), var(--accent-secondary));
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.2);
}

.price-filter-slider::-moz-range-track {
    height: 8px;
    border-radius: 5px;
    background: linear-gradient(to right, var(--accent-primary), var(--accent-secondary));
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.2);
}

.domains-table-container {
    margin-bottom: 1.5rem;
}

.domains-table-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 1rem;
    overflow: hidden;
    overflow-x: auto;
}

.domains-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 700px;
}

.domains-table thead {
    background: var(--bg-secondary);
}

.domains-table th {
    padding: 1.25rem 1.5rem;
    text-align: left;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9375rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 2px solid var(--border);
}

.domains-table th.domain-name-col {
    width: 25%;
}

.domains-table th.domain-price-col {
    width: 20%;
    text-align: center;
}

.domains-table th.domain-action-col {
    width: 15%;
    text-align: center;
}

.domain-row {
    border-bottom: 1px solid var(--border);
    transition: all 0.2s ease;
}

.domain-row:last-child {
    border-bottom: none;
}

.domain-row:hover {
    background: var(--bg-secondary);
}

.domain-row.hidden {
    display: none;
}

.domain-name-cell {
    padding: 1rem 1.5rem;
}

.domain-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent-primary);
    letter-spacing: 0.02em;
}

.domain-price-cell {
    padding: 1.5rem 1.5rem;
    text-align: center;
}

.price-value {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--text-primary);
}

.price-period {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-left: 0.25rem;
}

.price-na {
    color: var(--text-muted);
    font-size: 1rem;
}

.domain-action-cell {
    padding: 1.5rem 1.5rem;
    text-align: center;
}

.domain-register-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.domain-register-btn i {
    font-size: 0.875rem;
}

.no-results-message {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-secondary);
}

.no-results-message i {
    font-size: 3rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    display: block;
}

.no-results-message p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.domains-results-info {
    text-align: center;
    padding: 1.5rem 0;
    color: var(--text-muted);
    font-size: 0.9375rem;
}

/* Responsive Design for Domains Page */
@media (max-width: 968px) {
    .domains-table {
        font-size: 0.9375rem;
    }
    
    .domains-table th,
    .domains-table td {
        padding: 1rem;
    }
    
    .domain-name {
        font-size: 1.125rem;
    }
    
    .price-value {
        font-size: 1.25rem;
    }
    
    .domain-register-btn {
        padding: 0.625rem 1rem;
        font-size: 0.875rem;
    }
}

@media (max-width: 968px) {
    .domains-content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .domains-filters-sidebar {
        position: static;
    }
    
    .category-filters {
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .domains-section {
        padding: 3rem 0;
    }
    
    .category-filters {
        gap: 0.5rem;
        padding: 1rem 1.125rem;
        justify-content: flex-start;
    }
    
    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
        border-radius: 0.4375rem;
    }
    
    .price-filter {
        padding: 1rem 1.25rem;
    }
    
    .price-filter-label {
        font-size: 0.8125rem;
        margin-bottom: 0.875rem;
    }
    
    .price-filter-value-input {
        font-size: 0.9375rem;
        min-width: 55px;
        max-width: 85px;
        padding: 0.15rem 0.35rem;
    }
    
    .domains-table {
        font-size: 0.875rem;
        min-width: 650px;
    }
    
    .domains-table th,
    .domains-table td {
        padding: 0.875rem 0.75rem;
    }
    
    .domain-name {
        font-size: 1rem;
    }
    
    .price-value {
        font-size: 1.125rem;
    }
    
    .domain-register-btn span {
        display: none;
    }
    
    .domain-register-btn {
        padding: 0.625rem;
        width: 40px;
        height: 40px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
}

/* ============================================
   HOSTING PAGE
   ============================================ */
.hosting-section {
    padding: 4rem 0;
}

.hosting-variant-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.variant-tab-btn {
    padding: 1rem 2.5rem;
    background: var(--bg-card);
    color: var(--text-secondary);
    border: 2px solid var(--border);
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.125rem;
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.variant-tab-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.variant-tab-btn:hover::before {
    left: 100%;
}

.variant-tab-btn:hover {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border-color: rgba(255, 107, 53, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.15);
}

.variant-tab-btn.active {
    background: linear-gradient(135deg, var(--accent-primary), #E55A2B);
    color: #FFFFFF;
    border-color: var(--accent-primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 107, 53, 0.35);
}

.hosting-variant-content {
    animation: fadeIn 0.3s ease-in-out;
}

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

.hosting-packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.hosting-package {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.hosting-package:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-color: rgba(255, 107, 53, 0.3);
}

.package-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.package-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.package-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
}

.price-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-primary);
    line-height: 1;
}

.price-period {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
}

.package-features {
    list-style: none;
    margin: 0 0 2rem 0;
    padding: 0;
    flex-grow: 1;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

.feature-item i {
    color: var(--accent-primary);
    font-size: 0.875rem;
    flex-shrink: 0;
}

.package-action {
    margin-top: auto;
}

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

/* WHMCS Compare Tables for Start Packages */
.hosting-start-tables {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.hosting-package-detailed {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 0.875rem;
    padding: 1.25rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.hosting-package-detailed::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-primary), #E55A2B);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hosting-package-detailed:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-color: rgba(255, 107, 53, 0.3);
}

.hosting-package-detailed:hover::before {
    opacity: 1;
}

.package-header-detailed {
    text-align: center;
    margin-bottom: 1rem;
    padding-bottom: 0.875rem;
    border-bottom: 2px solid rgba(255, 107, 53, 0.1);
    background: linear-gradient(to bottom, transparent, rgba(255, 107, 53, 0.02));
    margin: -1.25rem -1.25rem 1rem -1.25rem;
    padding: 1rem 1.25rem 0.875rem 1.25rem;
    border-radius: 0.875rem 0.875rem 0 0;
}

.package-name-detailed {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.package-pricing-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-bottom: 1rem;
    max-width: 100%;
}

.pricing-option {
    display: flex;
    flex-direction: column;
    padding: 0.625rem 0.75rem;
    border: 2px solid var(--border);
    border-radius: 0.625rem;
    background: var(--bg-primary);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    min-height: 70px;
    justify-content: center;
    align-items: center;
}

.pricing-option:hover {
    border-color: rgba(255, 107, 53, 0.5);
    background: rgba(255, 107, 53, 0.03);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.pricing-option.active {
    border-color: var(--accent-primary);
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 107, 53, 0.05));
    box-shadow: 0 6px 16px rgba(255, 107, 53, 0.25);
}

.pricing-option.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--accent-primary), #E55A2B);
    border-radius: 0.75rem 0 0 0.75rem;
}

.pricing-option-label {
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.4px;
    margin-bottom: 0.375rem;
    text-align: center;
}

.pricing-option-label-small {
    font-size: 0.625rem;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: none;
    letter-spacing: 0.2px;
    margin-top: 0.125rem;
    text-align: center;
}

.pricing-option-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    margin-bottom: 0.375rem;
}

.pricing-option-price .price-value {
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--accent-primary);
    line-height: 1;
    margin-bottom: 0.125rem;
}

.pricing-option-price .price-original {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-decoration: line-through;
    font-weight: 500;
    margin-top: 0.125rem;
}

.pricing-option-savings {
    position: absolute;
    top: -0.375rem;
    right: -0.375rem;
    font-size: 0.5625rem;
    font-weight: 700;
    color: #FFFFFF;
    background: linear-gradient(135deg, #10B981, #059669);
    padding: 0.1875rem 0.4375rem;
    border-radius: 0.1875rem;
    white-space: nowrap;
    box-shadow: 0 2px 4px rgba(16, 185, 129, 0.3);
    letter-spacing: 0.25px;
    z-index: 2;
}

.pricing-option-savings-empty {
    display: none;
}

.package-action-detailed {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    padding-top: 0.75rem;
}

.package-action-detailed .btn-primary {
    background: linear-gradient(135deg, #10B981, #059669);
    color: #FFFFFF;
    border: none;
    padding: 0.625rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 3px 10px rgba(16, 185, 129, 0.25);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    width: auto;
    min-width: 160px;
}

.package-action-detailed .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.package-action-detailed .btn-primary:hover {
    background: linear-gradient(135deg, #059669, #047857);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.35);
}

.package-action-detailed .btn-primary:hover::before {
    left: 100%;
}

.package-action-detailed .btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(16, 185, 129, 0.25);
}

.package-action-detailed .btn-primary i {
    font-size: 0.875rem;
}

.business-free-domain-banner {
    margin-top: 1rem;
    margin-bottom: 0.75rem;
    padding: 0.625rem 0.9375rem;
    border: 2px solid #10B981;
    background: linear-gradient(135deg, #D1FAE5 0%, #ECFDF5 100%);
    color: #065F46;
    font-weight: 800;
    font-size: 0.8125rem;
    text-align: center;
    border-radius: 0.5rem;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.15);
    position: relative;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.business-free-domain-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #10B981, #34D399, #10B981);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.business-free-domain-banner:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.25);
}

.business-free-domain-subtitle {
    font-size: 0.6875rem;
    font-weight: 600;
    color: #047857;
    margin-top: 0.25rem;
    display: block;
    opacity: 0.9;
}

.directadmin-features-section {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.directadmin-features-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-align: center;
}

.directadmin-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0.75rem;
    margin-top: 0.75rem;
}

.directadmin-feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    font-size: 0.8125rem;
    color: var(--text-secondary);
    transition: color 0.2s ease;
}

.directadmin-feature-item:hover {
    color: var(--accent-primary);
}

.directadmin-feature-item i {
    color: var(--accent-tertiary);
    font-size: 0.875rem;
    flex-shrink: 0;
}

/* ============================================
   HOSTING FEATURES SECTION
   ============================================ */
.hosting-features-section {
    padding: 5rem 0;
    margin-top: 5rem;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
}

.hosting-features-content {
    max-width: 1200px;
    margin: 0 auto;
}

.hosting-features-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hosting-features-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

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

.hosting-feature-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 0.75rem;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    text-align: center;
}

.hosting-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-primary);
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: #FFFFFF;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.feature-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.feature-card-description {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.directadmin-features-list {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border);
}

.directadmin-list-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 2rem;
}

.whmcs-compare-wrap {
    overflow-x: auto;
    margin-top: 0.75rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    background: var(--bg-primary);
    border: 1px solid var(--border);
}

.whmcs-compare-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-primary);
    border-radius: 0.75rem;
    overflow: hidden;
}

.whmcs-compare-table thead {
    background: linear-gradient(135deg, var(--accent-primary), #E55A2B);
    color: #FFFFFF;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.whmcs-compare-table thead th {
    padding: 1rem 1.125rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.9375rem;
    letter-spacing: 0.3px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.whmcs-compare-table tbody th {
    padding: 0.75rem 1rem;
    text-align: left;
    font-weight: 600;
    color: var(--text-primary);
    background: linear-gradient(to right, var(--bg-secondary), var(--bg-primary));
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    width: 50%;
    font-size: 0.8125rem;
    line-height: 1.6;
    transition: all 0.2s ease;
}

.whmcs-compare-table tbody td {
    padding: 0.75rem 1rem;
    text-align: left;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 0.8125rem;
    line-height: 1.6;
    transition: all 0.2s ease;
}

.whmcs-compare-table tbody tr:hover th,
.whmcs-compare-table tbody tr:hover td {
    background: rgba(255, 107, 53, 0.05);
    color: var(--text-primary);
}

.whmcs-compare-table tbody tr:last-child th,
.whmcs-compare-table tbody tr:last-child td {
    border-bottom: none;
}

.whmcs-section {
    background: linear-gradient(to right, var(--bg-secondary), rgba(255, 107, 53, 0.05)) !important;
}

.whmcs-section th {
    background: linear-gradient(to right, var(--bg-secondary), rgba(255, 107, 53, 0.05)) !important;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-primary);
    padding: 1rem 1.125rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border-top: 2px solid rgba(255, 107, 53, 0.15);
    border-bottom: 2px solid rgba(255, 107, 53, 0.15);
    margin-top: 0.5rem;
}

.yn {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.8125rem;
}

.yn .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.yn.yes .dot {
    background-color: #10B981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15), 0 2px 4px rgba(16, 185, 129, 0.2);
}

.yn.no .dot {
    background-color: #EF4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15), 0 2px 4px rgba(239, 68, 68, 0.2);
}

.yn.yes {
    color: #059669;
    font-weight: 600;
}

.yn.no {
    color: #DC2626;
    font-weight: 600;
}

.yn:hover .dot {
    transform: scale(1.15);
}

@media (max-width: 768px) {
    .hosting-section {
        padding: 3rem 0;
    }
    
    .hosting-variant-tabs {
        gap: 0.75rem;
        margin-bottom: 2rem;
    }
    
    .variant-tab-btn {
        padding: 0.875rem 1.75rem;
        font-size: 1rem;
    }
    
    .hosting-packages-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .hosting-package {
        padding: 1.5rem;
    }
    
    .package-name {
        font-size: 1.25rem;
    }
    
    .price-value {
        font-size: 2rem;
    }
    
    .hosting-start-tables {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hosting-package-detailed {
        padding: 1rem;
    }
    
    .package-name-detailed {
        font-size: 1.25rem;
    }
    
    .package-header-detailed {
        margin: -1rem -1rem 0.875rem -1rem;
        padding: 0.875rem 1rem 0.75rem 1rem;
    }
    
    .package-pricing-options {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .pricing-option {
        min-height: 100px;
        padding: 1rem 0.875rem;
    }
    
    .pricing-option-label {
        font-size: 0.6875rem;
        margin-bottom: 0.625rem;
    }
    
    .pricing-option-price .price-value {
        font-size: 1.125rem;
    }
    
    .pricing-option-price .price-original {
        font-size: 0.6875rem;
        margin-top: 0.125rem;
    }
    
    .pricing-option-savings {
        font-size: 0.5625rem;
        padding: 0.1875rem 0.4375rem;
        top: -0.375rem;
        right: -0.375rem;
    }
    
    .package-action-detailed .btn-primary {
        padding: 0.5625rem 1.25rem;
        font-size: 0.8125rem;
        min-width: 140px;
    }
    
    .package-action-detailed .btn-primary i {
        font-size: 0.8125rem;
    }
    
    .hosting-features-section {
        padding: 3rem 0;
    }
    
    .hosting-features-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hosting-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        margin-bottom: 3rem;
    }
    
    .hosting-feature-card {
        padding: 1.5rem;
    }
    
    .directadmin-list-title {
        font-size: 1.25rem;
        margin-bottom: 1.5rem;
    }
    
    .directadmin-features-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 0.625rem;
    }
    
    .directadmin-feature-item {
        font-size: 0.75rem;
        padding: 0.4375rem;
    }
    
    .whmcs-compare-table thead th,
    .whmcs-compare-table tbody th,
    .whmcs-compare-table tbody td {
        padding: 0.5rem 0.625rem;
        font-size: 0.75rem;
    }
    
    .whmcs-section th {
        padding: 0.625rem 0.625rem;
        font-size: 0.6875rem;
    }
    
    .yn {
        font-size: 0.75rem;
    }
    
    .yn .dot {
        width: 6px;
        height: 6px;
    }
    
    .hosting-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 600px) {
    .hosting-features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Development Service Section */
.development-service-section {
    margin-bottom: 5rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border);
}

.development-service-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

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

.development-service-header .service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.25rem;
    color: #FFFFFF;
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.3);
}

.development-service-header h2 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.development-service-header p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

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

.development-package-wrap {
    width: 100%;
}

.development-package-wrap .whmcs-compare-wrap {
    margin-top: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.development-package-wrap .whmcs-compare-table {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.development-package-wrap .whmcs-compare-table thead {
    flex-shrink: 0;
}

.development-package-wrap .whmcs-compare-table tbody {
    flex: 1;
    display: flex;
    flex-direction: column;
}

@media (max-width: 968px) {
    .development-packages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .development-service-section {
        margin-bottom: 3rem;
        padding-bottom: 2rem;
    }
    
    .development-service-header {
        margin-bottom: 2rem;
    }
    
    .development-packages-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* ============================================
   DEZVOLTARE WEB SECTION
   ============================================ */
.development-section {
    padding: 5rem 0;
}

.development-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.development-intro h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-fill-color: transparent;
    background-clip: text;
}

.development-intro p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.development-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.development-service-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 2.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.development-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.development-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    border-color: var(--accent-primary);
}

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

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: #FFFFFF;
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.3);
}

.development-service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.development-service-card p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.625rem 0;
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

.service-features li i {
    color: #10B981;
    font-size: 0.875rem;
}

@media (max-width: 968px) {
    .development-services {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .development-section {
        padding: 3rem 0;
    }
    
    .development-intro {
        margin-bottom: 2.5rem;
    }
    
    .development-services {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .development-service-card {
        padding: 2rem;
    }
    
    .navbar-dropdown .dropdown-menu {
        position: static;
        transform: none;
        margin-top: 0.5rem;
        opacity: 1;
        visibility: visible;
        display: none;
    }
    
    .navbar-dropdown:hover .dropdown-menu,
    .navbar-dropdown.active .dropdown-menu {
        display: block;
    }
}

/* ============================================
   EXTRA OPTIONS SECTION
   ============================================ */
.extra-options-section {
    margin-top: 5rem;
    padding-top: 4rem;
    border-top: 2px solid var(--border);
    position: relative;
}

.extra-options-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-primary), transparent);
}

.extra-options-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 3rem;
    text-align: center;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    padding-bottom: 1rem;
}

.extra-options-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-primary), transparent);
    border-radius: 2px;
}

.extra-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.extra-option-item {
    background: linear-gradient(135deg, var(--bg-card), var(--bg-secondary));
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.extra-option-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.extra-option-item:hover {
    border-color: var(--accent-primary);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.15), 0 4px 12px rgba(0, 0, 0, 0.3);
    transform: translateY(-4px);
}

.extra-option-item:hover::before {
    opacity: 1;
}

.extra-option-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border);
    position: relative;
}

.extra-option-name::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-primary), transparent);
    transition: width 0.3s ease;
}

.extra-option-item:hover .extra-option-name::after {
    width: 100%;
}

.extra-option-description {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 2rem;
    padding: 1rem;
    background-color: rgba(30, 41, 59, 0.5);
    border-radius: 0.5rem;
    border-left: 3px solid var(--accent-primary);
}

.extra-option-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.extra-option-list li {
    padding: 1.25rem;
    background: linear-gradient(135deg, var(--bg-secondary), rgba(51, 65, 85, 0.5));
    border: 1px solid var(--border);
    border-radius: 0.625rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.extra-option-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--accent-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.extra-option-list li:hover {
    background: linear-gradient(135deg, var(--bg-tertiary), var(--bg-secondary));
    border-color: var(--accent-primary);
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.1);
}

.extra-option-list li:hover::before {
    opacity: 1;
}

.option-content {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.option-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.5;
}

.option-price-wrapper {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    align-items: baseline;
    flex-wrap: wrap;
}

.option-price-wrapper > span:not(.option-price-main):not(.option-price-sub) {
    color: var(--text-secondary);
    font-weight: 500;
}

.option-price-main {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--accent-secondary);
}

.option-price-sub {
    font-size: 0.9375rem;
    color: var(--text-muted);
    font-weight: 500;
}

.option-price {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--accent-secondary);
    white-space: nowrap;
    text-align: right;
}

@media (max-width: 768px) {
    .extra-options-section {
        margin-top: 3rem;
        padding-top: 3rem;
    }
    
    .extra-options-title {
        margin-bottom: 2rem;
        font-size: clamp(1.5rem, 4vw, 2rem);
    }
    
    .extra-options-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .extra-option-item {
        padding: 1.5rem;
    }
    
    .extra-option-list li {
        padding: 1rem;
    }
    
    .option-price-wrapper {
        flex-direction: column;
        gap: 0.25rem;
        align-items: flex-start;
    }
}

/* ============================================
   FRAMEWORKS GRID
   ============================================ */
.frameworks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.framework-item {
    background: linear-gradient(135deg, var(--bg-card), var(--bg-secondary));
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.framework-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.framework-item:hover {
    transform: translateY(-6px);
    border-color: var(--accent-primary);
    box-shadow: 0 12px 32px rgba(255, 107, 53, 0.15), 0 4px 12px rgba(0, 0, 0, 0.3);
}

.framework-item:hover::before {
    opacity: 1;
}

.framework-icon {
    font-size: 3.5rem;
    color: var(--accent-secondary);
    margin-bottom: 1.25rem;
    transition: transform 0.3s ease;
}

.framework-item:hover .framework-icon {
    transform: scale(1.1);
}

.framework-item h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.framework-item p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .frameworks-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .framework-item {
        padding: 1.5rem;
    }
    
    .framework-icon {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .frameworks-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   CONTACT SECTION EXTRA
   ============================================ */
.contact-section-extra {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08), rgba(0, 217, 255, 0.08));
    border-radius: 1.5rem;
    padding: 4rem 2rem;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.contact-section-extra::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(0, 217, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.contact-wrapper-extra {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact-info-extra {
    text-align: center;
}

.contact-info-extra h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text-primary), var(--accent-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-info-extra > p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.contact-details-extra {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.contact-item-extra {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 1rem;
    transition: all 0.3s ease;
    min-width: 250px;
}

.contact-item-extra:hover {
    border-color: var(--accent-primary);
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.15);
    transform: translateY(-4px);
}

.contact-icon-extra {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #FFFFFF;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.contact-text-extra h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.contact-text-extra a {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-text-extra a:hover {
    color: var(--accent-primary);
}

@media (max-width: 768px) {
    .contact-section-extra {
        padding: 3rem 1.5rem;
    }
    
    .contact-details-extra {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    
    .contact-item-extra {
        width: 100%;
        max-width: 400px;
    }
}

/* ============================================
   ABOUT STATS
   ============================================ */
.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    padding: 2rem 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, var(--bg-card), var(--bg-secondary));
    border: 1px solid var(--border);
    border-radius: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-6px);
    border-color: var(--accent-primary);
    box-shadow: 0 12px 32px rgba(255, 107, 53, 0.15), 0 4px 12px rgba(0, 0, 0, 0.3);
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--accent-secondary);
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.stat-item:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (max-width: 768px) {
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .stat-item {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-icon {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .about-stats {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   PROGRAMMER PAGE STYLES
   ============================================ */

/* Programmer Hero Section */
.programmer-hero {
    padding: 5rem 0 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.programmer-hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.programmer-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--accent-primary), #FF8C5A);
    color: #FFFFFF;
    padding: 0.5rem 1.25rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.programmer-badge i {
    font-size: 1rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.hero-stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-primary);
    line-height: 1.2;
}

.hero-stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-cta {
    margin-top: 2rem;
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

/* Programmer Benefits Section */
.programmer-benefits {
    padding: 3rem 0;
    background: var(--bg-secondary);
}

.programmer-benefits .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

/* Programmer Pricing Section */
.programmer-pricing {
    padding: 3rem 0;
}

.pricing-category {
    margin-bottom: 2.5rem;
}

.pricing-category-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pricing-category-title i {
    color: var(--accent-primary);
    font-size: 1.5rem;
}

.reseller-features-info {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.feature-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 0.875rem 1.5rem;
    border-radius: 0.75rem;
    font-size: 0.9375rem;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.feature-badge:hover {
    border-color: var(--accent-primary);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.1);
    transform: translateY(-2px);
}

.feature-badge i {
    color: var(--accent-primary);
    font-size: 1.125rem;
}

.storage-info {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 400;
}

.pricing-table-wrapper {
    overflow-x: auto;
    border-radius: 1rem;
    border: 1px solid var(--border);
    background: var(--bg-card);
}

.programmer-pricing-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.programmer-pricing-table thead {
    background: var(--bg-secondary);
}

.programmer-pricing-table th {
    padding: 1.25rem 1.5rem;
    text-align: left;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9375rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 2px solid var(--border);
}

.programmer-pricing-table th:first-child {
    border-top-left-radius: 1rem;
}

.programmer-pricing-table th:last-child {
    border-top-right-radius: 1rem;
}

.programmer-pricing-table td {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border);
    color: var(--text-primary);
}

.programmer-pricing-table tbody tr:last-child td {
    border-bottom: none;
}

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

.programmer-pricing-table .price-old {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 1rem;
    margin-right: 0.5rem;
}

.programmer-pricing-table .price-new {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent-primary);
}

.programmer-pricing-table .price-period {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-left: 0.25rem;
}

.discount-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-tertiary), #A8E063);
    color: var(--bg-primary);
    padding: 0.375rem 0.75rem;
    border-radius: 0.375rem;
    font-size: 0.8125rem;
    font-weight: 700;
}

/* Programmer Process Section */
.programmer-process {
    padding: 3rem 0;
    background: var(--bg-secondary);
}

/* Programmer Testimonials Section */
.programmer-testimonials {
    padding: 3rem 0;
}

/* Programmer CTA Section */
.programmer-cta {
    padding: 3rem 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(0, 217, 255, 0.05) 100%);
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.cta-content > p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.programmer-application-form {
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    text-align: left;
    max-width: 700px;
    margin: 0 auto;
}

.programmer-application-form .form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.875rem;
    margin-bottom: 0.875rem;
}

.programmer-application-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.programmer-application-form label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
}

.programmer-application-form input,
.programmer-application-form select,
.programmer-application-form textarea {
    padding: 0.75rem 1rem;
    background: var(--bg-secondary);
    border: 2px solid var(--border);
    border-radius: 0.5rem;
    color: var(--text-primary);
    font-size: 0.9375rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.programmer-application-form input:focus,
.programmer-application-form select:focus,
.programmer-application-form textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
}

.programmer-application-form textarea {
    resize: vertical;
    min-height: 100px;
}

/* Domains Simple Info */
.domains-simple-info {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 2.5rem;
    text-align: center;
}

.domains-simple-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--accent-primary), #FF8C5A);
    color: #FFFFFF;
    padding: 0.875rem 2rem;
    border-radius: 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.domains-simple-badge i {
    font-size: 1.25rem;
}

.domains-simple-text {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

.domains-simple-text strong {
    color: var(--accent-primary);
    font-weight: 700;
}

/* SSL Simple Info */
.ssl-simple-info {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 2.5rem;
}

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

.ssl-feature-item {
    text-align: center;
}

.ssl-feature-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--accent-primary), #FF8C5A);
    color: #FFFFFF;
    padding: 0.875rem 2rem;
    border-radius: 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.ssl-feature-badge.free {
    background: linear-gradient(135deg, var(--accent-tertiary), #A8E063);
    box-shadow: 0 4px 12px rgba(168, 224, 99, 0.3);
}

.ssl-feature-badge i {
    font-size: 1.25rem;
}

.ssl-feature-item p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.form-submit {
    margin-top: 1.25rem;
    text-align: center;
}

.form-submit .btn {
    padding: 0.875rem 2rem;
    font-size: 1rem;
}

.form-note {
    margin-top: 0.75rem;
    font-size: 0.8125rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Responsive Styles for Programmer Page */
@media (max-width: 768px) {
    .programmer-hero {
        padding: 4rem 0 2.5rem;
    }
    
    .hero-stats {
        gap: 1.5rem;
    }
    
    .hero-stat-number {
        font-size: 1.75rem;
    }
    
    .programmer-benefits {
        padding: 2.5rem 0;
    }
    
    .programmer-benefits .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .programmer-pricing {
        padding: 2.5rem 0;
    }
    
    .programmer-process {
        padding: 2.5rem 0;
    }
    
    .programmer-testimonials {
        padding: 2.5rem 0;
    }
    
    .programmer-cta {
        padding: 2.5rem 0;
    }
    
    .pricing-category-title {
        font-size: 1.25rem;
        margin-bottom: 1.25rem;
    }
    
    .pricing-category {
        margin-bottom: 2rem;
    }
    
    .programmer-pricing-table {
        font-size: 0.875rem;
    }
    
    .programmer-pricing-table th,
    .programmer-pricing-table td {
        padding: 1rem;
    }
    
    .programmer-application-form {
        padding: 1.25rem;
    }
    
    .programmer-application-form .form-row {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        margin-bottom: 0.75rem;
    }
    
    .programmer-application-form .form-group {
        gap: 0.25rem;
    }
    
    .programmer-application-form label {
        font-size: 0.8125rem;
    }
    
    .programmer-application-form input,
    .programmer-application-form select,
    .programmer-application-form textarea {
        padding: 0.625rem 0.875rem;
        font-size: 0.875rem;
    }
    
    .form-submit {
        margin-top: 1rem;
    }
    
    .form-note {
        margin-top: 0.625rem;
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .programmer-hero {
        padding: 4rem 0 3rem;
    }
    
    .programmer-badge {
        font-size: 0.75rem;
        padding: 0.375rem 1rem;
    }
    
    .hero-stats {
        gap: 1.5rem;
    }
    
    .hero-stat-number {
        font-size: 1.75rem;
    }
    
    .hero-stat-label {
        font-size: 0.75rem;
    }
    
    .pricing-category-title {
        font-size: 1.25rem;
    }
    
    .programmer-pricing-table {
        font-size: 0.8125rem;
        min-width: 500px;
    }
    
    .programmer-pricing-table th,
    .programmer-pricing-table td {
        padding: 0.75rem;
    }
    
    .programmer-application-form {
        padding: 1.5rem 1rem;
    }
    
    .domains-simple-info {
        padding: 2rem 1.5rem;
    }
    
    .domains-simple-badge {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    .domains-simple-text {
        font-size: 1rem;
    }
    
    .ssl-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .ssl-simple-info {
        padding: 2rem 1.5rem;
    }
    
    .ssl-feature-badge {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    .ssl-feature-item p {
        font-size: 0.9375rem;
    }
    
    .reseller-features-info {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .feature-badge {
        width: 100%;
        justify-content: center;
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }
}
