/* ===== ZOZCLOUD – Premium Luxury Theme ===== */

:root {
    --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

    --navy: #080d18;
    --navy-soft: #111827;
    --navy-mid: #1a2234;
    --gold: #c9a227;
    --gold-light: #e4c76b;
    --gold-muted: rgba(201, 162, 39, 0.15);
    --cream: #f8f6f1;
    --cream-dark: #f0ece3;
    --white: #ffffff;

    --primary: #0f1a2e;
    --primary-dark: #080d18;
    --primary-light: #1e3a5f;
    --accent: #c9a227;
    --accent-dark: #a8861f;

    --dark: #080d18;
    --dark-light: #111827;
    --gray-900: #0f1419;
    --gray-800: #1c2430;
    --gray-700: #3d4654;
    --gray-600: #5c6675;
    --gray-500: #7a8494;
    --gray-400: #a0a8b5;
    --gray-300: #d4d9e0;
    --gray-200: #e8ebf0;
    --gray-100: #f3f4f6;
    --gray-50: #faf9f7;

    --success: #1a9e6e;
    --warning: #c9a227;
    --danger: #c44536;

    --gradient: linear-gradient(135deg, #0f1a2e 0%, #1a2d4a 50%, #0f1a2e 100%);
    --gradient-gold: linear-gradient(135deg, #c9a227 0%, #e4c76b 50%, #a8861f 100%);
    --gradient-hero: linear-gradient(160deg, #f8f6f1 0%, #f0ece3 45%, #e8e4db 100%);

    --shadow-sm: 0 1px 2px rgba(8, 13, 24, 0.04);
    --shadow: 0 4px 20px rgba(8, 13, 24, 0.06);
    --shadow-lg: 0 12px 40px rgba(8, 13, 24, 0.08);
    --shadow-xl: 0 24px 60px rgba(8, 13, 24, 0.12);
    --shadow-gold: 0 8px 32px rgba(201, 162, 39, 0.2);

    --radius: 4px;
    --radius-sm: 2px;
    --radius-lg: 8px;

    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 40px;
    --space-xl: 64px;
    --space-2xl: 100px;

    --container: 1240px;
    --container-pad: 32px;

    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    color: var(--gray-700);
    line-height: 1.7;
    background: var(--white);
    overflow-x: hidden;
    letter-spacing: 0.01em;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--navy);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

a { color: var(--accent-dark); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold); }

img { max-width: 100%; height: auto; display: block; }

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--container-pad);
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--navy);
    border-color: transparent;
    box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(201, 162, 39, 0.35);
    color: var(--navy);
}

.btn-outline {
    background: transparent;
    color: var(--navy);
    border-color: var(--navy);
}
.btn-outline:hover {
    background: var(--navy);
    color: var(--gold-light);
    border-color: var(--navy);
}

.btn-white {
    background: var(--white);
    color: var(--navy);
    border: 1px solid rgba(255,255,255,0.3);
}
.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--navy);
    background: var(--cream);
}

.btn-sm { padding: 10px 20px; font-size: 11px; }
.btn-lg { padding: 16px 36px; font-size: 13px; }
.btn-block { width: 100%; }

/* ===== Top Bar ===== */
.top-bar {
    background: var(--navy);
    color: var(--gray-400);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.04em;
    padding: 10px 0;
    border-bottom: 1px solid rgba(201, 162, 39, 0.12);
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar a {
    color: var(--gray-400);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
}
.top-bar a:hover { color: var(--gold-light); }

.top-bar-left, .top-bar-right {
    display: flex;
    align-items: center;
    gap: 28px;
}

.top-bar-right a {
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 11px;
}

/* ===== Header ===== */
.main-header {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--gray-200);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.main-header.scrolled {
    box-shadow: var(--shadow);
    border-bottom-color: rgba(201, 162, 39, 0.15);
}

.main-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    gap: var(--space-md);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 700;
    color: var(--navy);
    text-decoration: none;
    letter-spacing: 0.02em;
    flex-shrink: 0;
}

.logo-icon {
    font-size: 22px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy);
    color: var(--gold);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(201, 162, 39, 0.3);
}

.logo-text sup {
    font-size: 9px;
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--gold);
    vertical-align: super;
}

.main-nav { flex: 1; display: flex; justify-content: center; }

.main-nav .nav-list {
    display: flex;
    list-style: none;
    gap: 4px;
    align-items: center;
}

.nav-item > a {
    display: block;
    padding: 10px 18px;
    color: var(--gray-700);
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
.nav-item > a:hover {
    color: var(--navy);
    background: var(--cream);
}

.nav-item.has-dropdown { position: relative; }
.nav-item.has-dropdown:hover .dropdown { display: block; opacity: 1; transform: translateY(0); }

.dropdown {
    display: none;
    opacity: 0;
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-top: 2px solid var(--gold);
    border-radius: var(--radius);
    box-shadow: var(--shadow-xl);
    min-width: 260px;
    padding: 8px;
    z-index: 100;
    transition: var(--transition);
}

.nav-item.has-dropdown:hover .dropdown {
    transform: translateX(-50%) translateY(0);
}

.dropdown a {
    display: block;
    padding: 12px 18px;
    color: var(--gray-700);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-transform: none;
    border-radius: var(--radius-sm);
}
.dropdown a:hover {
    background: var(--cream);
    color: var(--navy);
    padding-left: 22px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.mobile-toggle span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--navy);
    transition: var(--transition);
}

/* ===== Hero ===== */
.hero {
    background: var(--gradient-hero);
    padding: var(--space-2xl) 0;
    overflow: hidden;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(ellipse at 80% 20%, rgba(201, 162, 39, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.hero .container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: var(--space-xl);
    align-items: center;
    position: relative;
}

.hero-content { max-width: 580px; }

.hero-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: var(--space-sm);
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(201, 162, 39, 0.3);
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    font-weight: 600;
    line-height: 1.1;
    color: var(--navy);
    margin-bottom: var(--space-md);
}

.gradient-text {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: italic;
}

.hero-subtitle {
    font-size: 17px;
    color: var(--gray-600);
    margin-bottom: var(--space-lg);
    line-height: 1.75;
    max-width: 520px;
}

.hero-features {
    list-style: none;
    margin-bottom: var(--space-lg);
    display: grid;
    gap: 10px;
}

.hero-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--gray-700);
    padding: 10px 0;
    border-bottom: 1px solid rgba(8, 13, 24, 0.06);
}

.hero-features li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
}

.hero-actions {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
    align-items: center;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    box-shadow: var(--shadow-xl);
    text-align: center;
    position: relative;
    border: 1px solid var(--gray-200);
    width: 100%;
    max-width: 380px;
}

.hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.hero-card-badge {
    position: absolute;
    top: -14px;
    right: 24px;
    background: var(--navy);
    color: var(--gold);
    padding: 6px 18px;
    border-radius: var(--radius-sm);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: 1px solid rgba(201, 162, 39, 0.4);
}

.hero-card h3 {
    font-size: 22px;
    color: var(--navy);
    margin-bottom: var(--space-sm);
    font-weight: 600;
}

.hero-card-price {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1;
}
.hero-card-price span {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    color: var(--gray-500);
}

/* ===== Domain Search ===== */
.domain-search {
    background: var(--navy);
    padding: var(--space-xl) 0;
    text-align: center;
    position: relative;
}

.domain-search::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.4;
}

.domain-search h2 {
    color: var(--white);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    margin-bottom: var(--space-md);
    font-weight: 600;
}

.domain-form {
    max-width: 720px;
    margin: 0 auto var(--space-sm);
}

.domain-input-wrap {
    display: flex;
    align-items: stretch;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(201, 162, 39, 0.2);
}

.domain-input-wrap input {
    flex: 1;
    border: none;
    padding: 18px 24px;
    font-family: var(--font-body);
    font-size: 15px;
    outline: none;
    min-width: 0;
}

.domain-input-wrap select {
    border: none;
    border-left: 1px solid var(--gray-200);
    padding: 18px 20px;
    font-family: var(--font-body);
    font-size: 14px;
    background: var(--cream);
    outline: none;
    cursor: pointer;
}

.domain-input-wrap .btn {
    border-radius: 0;
    padding: 18px 36px;
    flex-shrink: 0;
}

.domain-tlds {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.tld-badge {
    background: rgba(201, 162, 39, 0.1);
    color: var(--gold-light);
    padding: 8px 18px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    border: 1px solid rgba(201, 162, 39, 0.2);
}

/* ===== Stats ===== */
.stats {
    padding: var(--space-lg) 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--space-sm);
    align-items: stretch;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-sm);
    text-align: left;
    border-right: 1px solid var(--gray-200);
}

.stat-item:last-child { border-right: none; }

.stat-icon {
    font-size: 24px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.stat-info strong {
    display: block;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.2;
}

.stat-info span {
    font-size: 12px;
    color: var(--gray-500);
    letter-spacing: 0.02em;
}

/* ===== Section Headers ===== */
.section-header {
    text-align: center;
    margin-bottom: var(--space-xl);
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 var(--space-sm);
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 600;
    color: var(--navy);
    margin-bottom: var(--space-sm);
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 48px;
    height: 2px;
    background: var(--gradient-gold);
    margin: var(--space-sm) auto 0;
}

.section-header p {
    font-size: 16px;
    color: var(--gray-600);
    line-height: 1.75;
    margin: var(--space-sm) auto 0;
}

.pricing-currency-note {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: var(--space-sm);
}

/* ===== Pricing ===== */
.pricing {
    padding: var(--space-2xl) 0;
    background: var(--cream);
}

.currency-toggle {
    display: inline-flex;
    background: var(--white);
    border-radius: var(--radius-sm);
    padding: 4px;
    border: 1px solid var(--gray-200);
    margin-top: var(--space-sm);
}

.currency-btn {
    padding: 10px 28px;
    border: none;
    background: transparent;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    color: var(--gray-600);
    transition: var(--transition);
}

.currency-btn.active {
    background: var(--navy);
    color: var(--gold);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
    align-items: start;
}

.pricing-card {
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(201, 162, 39, 0.3);
}

.pricing-card.popular {
    border-color: var(--gold);
    box-shadow: var(--shadow-lg);
}

.pricing-card.popular::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold);
}

.popular-badge {
    background: var(--navy);
    color: var(--gold);
    text-align: center;
    padding: 8px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.pricing-header {
    padding: 32px 28px 24px;
    text-align: center;
    border-bottom: 1px solid var(--gray-100);
}

.pricing-header h3 {
    font-family: var(--font-display);
    font-size: 26px;
    color: var(--navy);
    margin-bottom: 6px;
    font-weight: 600;
}

.pricing-note {
    font-size: 12px;
    color: var(--gray-500);
    margin-bottom: 16px;
    letter-spacing: 0.02em;
}

.pricing-original { margin-bottom: 10px; }

.pricing-original del {
    color: var(--gray-400);
    font-size: 15px;
}

.saving {
    background: var(--gold-muted);
    color: var(--accent-dark);
    padding: 3px 10px;
    border-radius: var(--radius-sm);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    margin-left: 8px;
}

.pricing-amount {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.1;
    margin-bottom: 6px;
}

.pricing-amount small {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-500);
}

.pricing-term {
    font-size: 12px;
    color: var(--gray-500);
    margin-bottom: 20px;
    letter-spacing: 0.02em;
}

.pricing-features {
    list-style: none;
    padding: 24px 28px;
    max-height: 380px;
    overflow-y: auto;
    flex: 1;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 7px 0;
    font-size: 13px;
    color: var(--gray-600);
    border-bottom: 1px solid rgba(8, 13, 24, 0.04);
    line-height: 1.5;
}

.pricing-features li:last-child { border-bottom: none; }

.pricing-features svg {
    flex-shrink: 0;
    color: var(--gold);
    margin-top: 3px;
}

.pricing-card > .btn-block:last-child {
    margin: 0 28px 28px;
    width: calc(100% - 56px);
}

/* ===== Support ===== */
.support {
    padding: var(--space-2xl) 0;
    background: var(--white);
}

.support .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.support-content { max-width: 520px; }

.support h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 600;
    color: var(--navy);
    margin-bottom: var(--space-sm);
    line-height: 1.25;
}

.support h2::after {
    content: '';
    display: block;
    width: 48px;
    height: 2px;
    background: var(--gradient-gold);
    margin-top: var(--space-sm);
}

.support p {
    color: var(--gray-600);
    margin-bottom: var(--space-md);
    font-size: 16px;
    line-height: 1.75;
}

.support-contacts {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.support-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 600;
    color: var(--navy);
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-200);
    width: fit-content;
}
.support-link:hover { color: var(--gold); }
.support-link svg { color: var(--gold); flex-shrink: 0; }

.support-card {
    background: var(--navy);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    text-align: center;
    color: var(--white);
    border: 1px solid rgba(201, 162, 39, 0.2);
    position: relative;
    overflow: hidden;
}

.support-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold);
}

.support-avatar { font-size: 40px; margin-bottom: var(--space-sm); }
.support-card h4 {
    font-size: 22px;
    margin-bottom: 8px;
    color: var(--white);
    font-weight: 600;
}
.support-card p { opacity: 0.75; font-size: 14px; }

/* ===== CMS ===== */
.cms {
    padding: var(--space-2xl) 0;
    background: var(--cream);
}

.cms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    align-items: stretch;
}

.cms-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px 32px;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.cms-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(201, 162, 39, 0.25);
}

.cms-icon {
    width: 52px;
    height: 52px;
    background: var(--navy);
    color: var(--gold);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: var(--space-md);
    border: 1px solid rgba(201, 162, 39, 0.2);
}

.cms-card h3 {
    font-size: 22px;
    color: var(--navy);
    margin-bottom: 10px;
    font-weight: 600;
}

.cms-card p {
    font-size: 14px;
    color: var(--gray-600);
    margin-bottom: var(--space-md);
    line-height: 1.65;
    flex: 1;
}

.cms-link {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--navy);
}
.cms-link:hover { color: var(--gold); }

/* ===== Features ===== */
.features {
    padding: var(--space-2xl) 0;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    align-items: start;
}

.feature-card {
    text-align: center;
    padding: 40px 28px;
    border-radius: var(--radius);
    transition: var(--transition);
    border: 1px solid transparent;
}

.feature-card:hover {
    background: var(--cream);
    border-color: var(--gray-200);
}

.feature-icon {
    font-size: 32px;
    margin-bottom: var(--space-sm);
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    background: var(--cream);
    border-radius: var(--radius-sm);
    border: 1px solid var(--gray-200);
}

.feature-card h3 {
    font-size: 20px;
    color: var(--navy);
    margin-bottom: 10px;
    font-weight: 600;
}

.feature-card p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.65;
}

/* ===== Tools ===== */
.tools {
    padding: var(--space-2xl) 0;
    background: var(--cream);
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
    align-items: stretch;
}

.tool-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px 28px;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.tool-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: rgba(201, 162, 39, 0.2);
}

.tool-icon {
    font-size: 28px;
    margin-bottom: var(--space-md);
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream);
    border-radius: var(--radius-sm);
}

.tool-card h3 {
    font-size: 20px;
    color: var(--navy);
    margin-bottom: 12px;
    line-height: 1.35;
    font-weight: 600;
}

.tool-card p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.65;
    flex: 1;
}

/* ===== FAQ ===== */
.faq {
    padding: var(--space-2xl) 0;
    background: var(--white);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--gray-200);
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 24px 48px 24px 0;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--navy);
    cursor: pointer;
    position: relative;
    transition: var(--transition);
    line-height: 1.4;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 300;
    color: var(--gold);
    transition: var(--transition);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
}

.faq-item.active .faq-question::after { content: '−'; background: var(--navy); color: var(--gold); border-color: var(--navy); }
.faq-question:hover { color: var(--gold); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer { max-height: 500px; }

.faq-answer p {
    padding: 0 0 24px;
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.75;
}

.faq-answer p + p { margin-top: 12px; }

/* ===== Testimonials ===== */
.testimonials {
    padding: var(--space-2xl) 0;
    background: var(--cream);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    align-items: stretch;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px 32px;
    border: 1px solid var(--gray-200);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.testimonial-card:hover {
    box-shadow: var(--shadow);
    border-color: rgba(201, 162, 39, 0.2);
}

.testimonial-card h4 {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: var(--space-sm);
}

.testimonial-text {
    font-family: var(--font-display);
    font-size: 17px;
    color: var(--gray-700);
    font-style: italic;
    margin-bottom: var(--space-md);
    line-height: 1.65;
    flex: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: var(--space-sm);
    border-top: 1px solid var(--gray-100);
}

.author-avatar {
    width: 44px;
    height: 44px;
    background: var(--navy);
    color: var(--gold);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.testimonial-author strong {
    display: block;
    font-size: 14px;
    color: var(--navy);
    font-weight: 600;
}

.testimonial-author span {
    font-size: 12px;
    color: var(--gray-500);
    letter-spacing: 0.02em;
}

/* ===== Partners ===== */
.partners {
    padding: var(--space-xl) 0;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--space-sm);
    align-items: center;
}

.partner-logo {
    background: var(--cream);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    padding: 24px 16px;
    text-align: center;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gray-500);
    transition: var(--transition);
}

.partner-logo:hover {
    border-color: rgba(201, 162, 39, 0.3);
    color: var(--navy);
    background: var(--white);
}

/* ===== CTA Banner ===== */
.cta-banner {
    background: var(--navy);
    padding: var(--space-xl) 0;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(201, 162, 39, 0.12) 0%, transparent 60%);
    pointer-events: none;
}

.cta-banner .container { position: relative; }

.cta-content h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 4px;
    color: var(--white);
    font-weight: 600;
}

.cta-content > p {
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.7;
}

.cta-price {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 700;
    color: var(--gold);
    margin: var(--space-sm) 0 var(--space-md);
    line-height: 1;
}
.cta-price span {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 500;
    color: rgba(255,255,255,0.6);
}

.cta-tagline {
    margin-top: var(--space-md);
    opacity: 0.65;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    font-size: 14px;
    line-height: 1.7;
}

/* ===== Footer ===== */
.main-footer {
    background: var(--navy);
    color: var(--gray-400);
    padding: var(--space-xl) 0 0;
    border-top: 1px solid rgba(201, 162, 39, 0.15);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr repeat(3, 1fr);
    gap: var(--space-lg);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    align-items: start;
}

.footer-brand .logo { color: var(--white); margin-bottom: var(--space-md); }
.footer-brand .logo-icon { background: rgba(201, 162, 39, 0.15); }

.footer-brand p {
    font-size: 14px;
    margin-bottom: 10px;
    line-height: 1.7;
    max-width: 280px;
}

.footer-contact {
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 6px;
}
.footer-contact a { color: var(--gold-light); }
.footer-contact a:hover { color: var(--gold); }

.footer-col h4 {
    font-family: var(--font-body);
    color: var(--gold);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: var(--space-sm);
    margin-top: var(--space-md);
}
.footer-col h4:first-child { margin-top: 0; }

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
    color: rgba(255,255,255,0.55);
    font-size: 13px;
    line-height: 1.5;
    transition: var(--transition);
}
.footer-col a:hover { color: var(--white); padding-left: 4px; }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md) 0;
    font-size: 12px;
    letter-spacing: 0.02em;
}

.footer-links {
    display: flex;
    gap: var(--space-md);
    align-items: center;
}
.footer-links a {
    color: rgba(255,255,255,0.45);
    font-size: 12px;
    letter-spacing: 0.04em;
}
.footer-links a:hover { color: var(--gold); }

/* ===== Page Styles ===== */
.page-hero {
    background: var(--navy);
    padding: var(--space-xl) 0;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 100%, rgba(201, 162, 39, 0.1) 0%, transparent 60%);
}

.page-hero .container { position: relative; }

.page-hero h1 {
    font-size: clamp(2.25rem, 5vw, 3.25rem);
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--white);
}

.page-hero p {
    opacity: 0.7;
    font-size: 16px;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.65;
}

.page-content { padding: var(--space-xl) 0; }

.content-block { margin-bottom: var(--space-lg); max-width: 800px; }

.content-block h2 {
    font-size: 28px;
    color: var(--navy);
    margin-bottom: var(--space-sm);
    font-weight: 600;
}

.content-block h2::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: var(--gradient-gold);
    margin-top: 12px;
}

.content-block p {
    font-size: 16px;
    color: var(--gray-600);
    margin-bottom: 12px;
    line-height: 1.75;
}

.check-list { list-style: none; padding: 0; }

.check-list li {
    padding: 10px 0 10px 32px;
    position: relative;
    font-size: 15px;
    color: var(--gray-600);
    border-bottom: 1px solid var(--gray-100);
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
    width: 20px;
    text-align: center;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
    margin: var(--space-lg) 0;
}

.about-stat {
    text-align: center;
    padding: 36px 24px;
    background: var(--cream);
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
}

.about-stat strong {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
    line-height: 1;
}

.about-stat span {
    font-size: 12px;
    color: var(--gray-500);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.legal-content {
    max-width: 760px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 22px;
    color: var(--navy);
    margin: 36px 0 14px;
    font-weight: 600;
}

.legal-content h2:first-child { margin-top: 0; }

.legal-content p, .legal-content li {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.75;
    margin-bottom: 8px;
}

.legal-content ul {
    padding-left: 24px;
    margin-bottom: 16px;
}

/* ===== Service Pages ===== */
.service-intro {
    padding: var(--space-xl) 0;
    background: var(--white);
}

.service-intro-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--space-xl);
    align-items: center;
}

.service-intro-content h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    margin-bottom: var(--space-sm);
    font-weight: 600;
}

.service-intro-content h2::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: var(--gradient-gold);
    margin-top: 14px;
}

.service-intro-content > p {
    font-size: 16px;
    color: var(--gray-600);
    line-height: 1.75;
    margin-bottom: var(--space-md);
    max-width: 560px;
}

.service-intro-content .check-list { margin-bottom: var(--space-md); }

.service-intro-card {
    background: var(--navy);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    text-align: center;
    color: var(--white);
    border: 1px solid rgba(201, 162, 39, 0.2);
    position: relative;
    overflow: hidden;
}

.service-intro-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold);
}

.service-intro-icon {
    font-size: 40px;
    margin-bottom: var(--space-sm);
}

.service-intro-card h3 {
    font-size: 22px;
    color: var(--white);
    margin-bottom: 10px;
    font-weight: 600;
}

.service-intro-card p {
    font-size: 14px;
    opacity: 0.7;
    letter-spacing: 0.02em;
}

.service-features {
    padding: var(--space-xl) 0;
    background: var(--cream);
}

.service-cta {
    padding: var(--space-xl) 0;
    background: var(--white);
    text-align: center;
    border-top: 1px solid var(--gray-200);
}

.service-cta h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    margin-bottom: 10px;
    font-weight: 600;
}

.service-cta > .container > p {
    color: var(--gray-600);
    margin-bottom: var(--space-md);
    font-size: 16px;
}

.service-cta-actions {
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}

/* ===== VPS / Server Plan Cards ===== */
.vps-plans {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-md);
    align-items: stretch;
}

.vps-plan-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 40px 32px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
}

.vps-plan-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: rgba(201, 162, 39, 0.25);
    transform: translateY(-4px);
}

.vps-plan-card.popular {
    border-color: var(--gold);
    box-shadow: var(--shadow);
}

.vps-plan-card.popular::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: var(--radius) var(--radius) 0 0;
}

.vps-plan-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--navy);
}

.vps-plan-card p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.6;
}

.vps-plan-price {
    margin: var(--space-sm) 0 var(--space-md);
    text-align: center;
}

.vps-plan-price del {
    display: block;
    font-size: 15px;
    color: var(--gray-400);
    margin-bottom: 6px;
}

.vps-plan-price strong {
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.1;
}

.vps-plan-price strong small {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-500);
}

.vps-plan-card .btn { margin-top: auto; width: 100%; }

/* ===== Contact ===== */
.contact-section { padding: var(--space-xl) 0; background: var(--cream); }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: var(--space-xl);
    align-items: start;
}

.contact-info h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    color: var(--navy);
    margin-bottom: 12px;
    font-weight: 600;
}

.contact-info h2::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: var(--gradient-gold);
    margin-top: 12px;
}

.contact-info > p {
    color: var(--gray-600);
    margin-bottom: var(--space-md);
    line-height: 1.75;
    max-width: 400px;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    padding: 24px;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.contact-card:hover {
    border-color: rgba(201, 162, 39, 0.25);
    box-shadow: var(--shadow);
}

.contact-card-icon {
    font-size: 22px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.contact-card h3 {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-500);
    margin-bottom: 4px;
}

.contact-card a, .contact-card p {
    font-size: 15px;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.5;
}

.contact-form-wrap {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow);
}

.form-group { margin-bottom: 22px; }

.form-group label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gray-600);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 15px;
    background: var(--cream);
    transition: var(--transition);
    outline: none;
    color: var(--navy);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 3px var(--gold-muted);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
}

.alert {
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-sm);
    font-size: 14px;
    line-height: 1.5;
}

.alert-success {
    background: rgba(26, 158, 110, 0.1);
    color: #0d6b4a;
    border: 1px solid rgba(26, 158, 110, 0.25);
}

.alert-error {
    background: rgba(196, 69, 54, 0.08);
    color: #8b2e22;
    border: 1px solid rgba(196, 69, 54, 0.2);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    :root { --container-pad: 24px; }

    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .tools-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .partners-grid { grid-template-columns: repeat(3, 1fr); }
    .service-intro-grid { grid-template-columns: 1fr; }
    .vps-plans { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
}

@media (max-width: 768px) {
    :root {
        --space-2xl: 72px;
        --space-xl: 48px;
        --container-pad: 20px;
    }

    .top-bar { display: none; }

    .mobile-toggle { display: flex; }
    .main-nav { display: none; justify-content: flex-start; }

    .main-nav {
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(16px);
        border-bottom: 1px solid var(--gray-200);
        box-shadow: var(--shadow-lg);
        padding: var(--space-sm);
    }

    .main-nav.active { display: block; }

    .main-nav .nav-list {
        flex-direction: column;
        gap: 0;
        align-items: stretch;
    }

    .nav-item > a { padding: 14px 16px; }

    .nav-item .dropdown {
        position: static;
        transform: none;
        box-shadow: none;
        border: none;
        border-top: none;
        padding: 0 0 8px 16px;
        min-width: auto;
        opacity: 1;
        display: none;
    }

    .nav-item.has-dropdown.open .dropdown { display: block; }

    .hero .container { grid-template-columns: 1fr; gap: var(--space-lg); }
    .hero-content { max-width: none; }
    .hero-image { order: -1; }

    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-item { border-right: none; border-bottom: 1px solid var(--gray-200); }

    .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }

    .support .container { grid-template-columns: 1fr; }
    .support-content { max-width: none; }

    .cms-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .tools-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .partners-grid { grid-template-columns: repeat(2, 1fr); }

    .contact-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .about-stats { grid-template-columns: repeat(2, 1fr); }

    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

    .domain-input-wrap { flex-direction: column; }
    .domain-input-wrap select { border-left: none; border-top: 1px solid var(--gray-200); }
    .domain-input-wrap .btn { width: 100%; }

    .service-cta-actions { flex-direction: column; }
    .service-cta-actions .btn { width: 100%; }
}

@media (max-width: 480px) {
    .hero-actions { flex-direction: column; align-items: stretch; }
    .hero-actions .btn { width: 100%; }
    .features-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr; }
    .contact-form-wrap { padding: 28px 20px; }
}
