/* ═══════════════════════════════════════════════════════════════
   ATYAF PUBLIC WEBSITE — public.css
   Brand: #E8366D (Rose) · Font: IBM Plex Sans Arabic
   ═══════════════════════════════════════════════════════════════ */

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --primary: #E8366D;
    --primary-dark: #C9204F;
    --primary-light: #F9E0E8;
    --primary-soft: rgba(232, 54, 109, 0.08);
    --dark: #14141F;
    --dark-2: #1E1E2E;
    --dark-3: #2A2A3C;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;
    --white: #FFFFFF;
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
    --transition: 0.2s ease;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'IBM Plex Sans Arabic', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-700);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

/* RTL support */
[dir="rtl"] { direction: rtl; text-align: right; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 7px; height: 7px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb {
    background: rgba(0,0,0,.18);
    border-radius: 100px;
    border: 2px solid transparent;
    background-clip: content-box;
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(0,0,0,.3);
    border: 1px solid transparent;
    background-clip: content-box;
}
::-webkit-scrollbar-corner { background: transparent; }
* { scrollbar-width: thin; scrollbar-color: rgba(0,0,0,.18) transparent; }

a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-dark); }
img { max-width: 100%; height: auto; }

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

/* ── Buttons ── */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    font-family: inherit; font-weight: 600; font-size: 15px;
    padding: 10px 24px; border-radius: var(--radius-sm); border: 2px solid transparent;
    cursor: pointer; transition: all var(--transition); text-decoration: none; line-height: 1.4;
    white-space: nowrap;
}
.btn--sm { padding: 7px 18px; font-size: 14px; }
.btn--lg { padding: 14px 32px; font-size: 16px; }
.btn--block { width: 100%; }

.btn--primary { background: var(--primary); color: var(--white); border-color: var(--primary); }
.btn--primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); color: var(--white); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(232,54,109,0.35); }

.btn--outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn--outline:hover { background: var(--primary); color: var(--white); transform: translateY(-1px); }

.btn--outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.4); }
.btn--outline-light:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.8); color: var(--white); }

.btn--ghost { background: transparent; color: var(--gray-700); border-color: var(--gray-200); }
.btn--ghost:hover { background: var(--gray-50); border-color: var(--gray-300); color: var(--gray-900); }

.btn--white { background: var(--white); color: var(--primary); border-color: var(--white); }
.btn--white:hover { background: var(--gray-100); transform: translateY(-1px); box-shadow: var(--shadow-lg); color: var(--primary); }


/* ═══════════════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════════════ */
.site-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 16px 0;
    background: rgba(255,255,255,0.72);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}
.site-header--scrolled {
    padding: 10px 0;
    background: rgba(255,255,255,0.92);
    border-bottom-color: var(--gray-200);
    box-shadow: var(--shadow-sm);
}
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; }

.site-header__logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.site-header__logo span { font-size: 20px; font-weight: 700; color: var(--gray-900); }

.site-nav { display: flex; align-items: center; gap: 4px; }
.site-nav__link {
    padding: 8px 16px; border-radius: var(--radius-sm); font-size: 15px; font-weight: 500;
    color: var(--gray-600); transition: all var(--transition);
}
.site-nav__link:hover { color: var(--gray-900); background: var(--gray-50); }
.site-nav__link.active { color: var(--primary); background: var(--primary-soft); }

.site-header__actions { display: flex; align-items: center; gap: 8px; }

.lang-toggle__btn {
    display: inline-flex; align-items: center; justify-content: center;
    width: 36px; height: 36px; border-radius: var(--radius-sm);
    font-size: 12px; font-weight: 700; color: var(--gray-500); background: var(--gray-100);
    text-decoration: none; transition: all var(--transition);
}
.lang-toggle__btn:hover { background: var(--gray-200); color: var(--gray-700); }

.mobile-toggle {
    display: none; flex-direction: column; gap: 5px; padding: 8px;
    background: none; border: none; cursor: pointer;
}
.mobile-toggle span {
    display: block; width: 22px; height: 2px; background: var(--gray-700);
    border-radius: 2px; transition: all 0.3s ease;
}
.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }


/* ═══════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════ */
.hero {
    position: relative; padding: 160px 0 100px; overflow: hidden;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 50%, var(--dark-3) 100%);
    color: var(--white);
}
.hero__bg { position: absolute; inset: 0; overflow: hidden; }
.hero__pattern {
    position: absolute; inset: 0;
    background-image:
        radial-gradient(circle at 25% 25%, rgba(232,54,109,0.08) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(232,54,109,0.05) 0%, transparent 50%);
}
.hero__glow {
    position: absolute; border-radius: 50%; filter: blur(100px); opacity: 0.4;
}
.hero__glow--1 { width: 500px; height: 500px; top: -100px; right: -100px; background: var(--primary); opacity: 0.12; }
.hero__glow--2 { width: 300px; height: 300px; bottom: -50px; left: 10%; background: var(--primary); opacity: 0.08; }

.hero__content { position: relative; max-width: 680px; }

.hero__badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 16px; border-radius: 100px; font-size: 13px; font-weight: 600;
    background: rgba(232,54,109,0.15); color: var(--primary); border: 1px solid rgba(232,54,109,0.25);
    margin-bottom: 24px;
}

.hero__title { font-size: clamp(36px, 5vw, 56px); font-weight: 700; line-height: 1.15; margin-bottom: 20px; }
.hero__accent { color: var(--primary); }

.hero__subtitle { font-size: 18px; line-height: 1.7; color: rgba(255,255,255,0.7); margin-bottom: 36px; max-width: 540px; }

.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }

.hero__stats { display: flex; align-items: center; gap: 32px; }
.hero__stat strong { display: block; font-size: 24px; font-weight: 700; color: var(--white); }
.hero__stat span { font-size: 13px; color: rgba(255,255,255,0.5); }
.hero__stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.15); }


/* ═══════════════════════════════════════════════════════
   SECTIONS
   ═══════════════════════════════════════════════════════ */
.section { padding: 100px 0; }
.section--gray { background: var(--gray-50); }

.section__header { text-align: center; max-width: 600px; margin: 0 auto 56px; }
.section__label {
    display: inline-block; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px;
    color: var(--primary); margin-bottom: 12px;
}
.section__title { font-size: clamp(28px, 3vw, 38px); font-weight: 700; color: var(--gray-900); line-height: 1.25; margin-bottom: 16px; }
.section__subtitle { font-size: 17px; color: var(--gray-500); line-height: 1.7; }

/* Page Header (inner pages) */
.page-header {
    padding: 140px 0 60px;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
    color: var(--white); text-align: center;
}
.page-header__title { font-size: clamp(32px, 4vw, 48px); font-weight: 700; margin-bottom: 12px; }
.page-header__subtitle { font-size: 18px; color: rgba(255,255,255,0.7); max-width: 600px; margin: 0 auto; }


/* ═══════════════════════════════════════════════════════
   PRICING CARDS
   ═══════════════════════════════════════════════════════ */
.plans__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; align-items: start; }
.plans__empty { grid-column: 1 / -1; text-align: center; padding: 48px; color: var(--gray-500); }

.plan-card {
    position: relative; background: var(--white); border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg); padding: 36px 28px; transition: all 0.3s ease;
}
.plan-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); border-color: var(--gray-300); }

.plan-card--popular { border-color: var(--primary); box-shadow: 0 0 0 1px var(--primary); }
.plan-card--popular:hover { box-shadow: 0 0 0 1px var(--primary), var(--shadow-xl); }

.plan-card__badge {
    position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
    padding: 4px 20px; border-radius: 100px; font-size: 12px; font-weight: 700; text-transform: uppercase;
    background: var(--primary); color: var(--white); letter-spacing: 0.5px;
}
[dir="rtl"] .plan-card__badge { left: auto; right: 50%; transform: translateX(50%); }

.plan-card__header { margin-bottom: 24px; }
.plan-card__name { font-size: 22px; font-weight: 700; color: var(--gray-900); margin-bottom: 4px; }
.plan-card__desc { font-size: 14px; color: var(--gray-500); }

.plan-card__price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 8px; }
.plan-card__currency { font-size: 16px; font-weight: 600; color: var(--gray-500); }
.plan-card__amount { font-size: 48px; font-weight: 700; color: var(--gray-900); line-height: 1; }
.plan-card__cycle { font-size: 15px; color: var(--gray-400); }

.plan-card__annual { font-size: 13px; color: var(--primary); font-weight: 600; margin-bottom: 24px; }

.plan-card__features { list-style: none; margin-bottom: 28px; display: flex; flex-direction: column; gap: 12px; }
.plan-card__features li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--gray-600); }
.plan-card__check { width: 18px; height: 18px; flex-shrink: 0; color: #10B981; }


/* ═══════════════════════════════════════════════════════
   DOMAIN SEARCH
   ═══════════════════════════════════════════════════════ */
.domain-search { background: var(--gray-50); }

.domain-search__box {
    background: var(--white); border-radius: var(--radius-lg); padding: 40px;
    box-shadow: var(--shadow-lg); border: 1px solid var(--gray-100);
}
.domain-search__box--large { padding: 48px; }
.domain-search__heading { font-size: 22px; font-weight: 700; color: var(--gray-900); margin-bottom: 20px; text-align: center; }

.domain-search__form { display: flex; gap: 0; }
.domain-search__input {
    flex: 1; padding: 16px 20px; font-size: 17px; font-family: inherit;
    border: 2px solid var(--gray-200); border-radius: var(--radius) 0 0 var(--radius);
    outline: none; transition: border-color var(--transition);
}
[dir="rtl"] .domain-search__input { border-radius: 0 var(--radius) var(--radius) 0; }
.domain-search__input:focus { border-color: var(--primary); }
.domain-search__input::placeholder { color: var(--gray-400); }

.domain-search__btn { border-radius: 0 var(--radius) var(--radius) 0; padding: 16px 32px; font-size: 16px; min-width: 140px; }
[dir="rtl"] .domain-search__btn { border-radius: var(--radius) 0 0 var(--radius); }

.domain-search__results { margin-top: 20px; display: none; }
.domain-search__results.active { display: block; }

.domain-result {
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 20px; border-radius: var(--radius-sm); margin-bottom: 8px;
}
.domain-result--available { background: #F0FDF4; border: 1px solid #BBF7D0; }
.domain-result--taken { background: var(--gray-50); border: 1px solid var(--gray-200); }

.domain-result__domain { font-weight: 600; font-size: 16px; color: var(--gray-900); }
.domain-result__status { display: flex; align-items: center; gap: 12px; }
.domain-result__price { font-weight: 700; color: var(--gray-900); }
.domain-result__badge {
    padding: 4px 12px; border-radius: 100px; font-size: 12px; font-weight: 600;
}
.domain-result__badge--available { background: #DCFCE7; color: #166534; }
.domain-result__badge--taken { background: var(--gray-100); color: var(--gray-500); }

/* TLD pricing grid (home page) */
.domain-search__tlds {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 16px;
    margin-top: 40px;
}
.tld-card {
    text-align: center; padding: 24px 16px; background: var(--white);
    border-radius: var(--radius); border: 1px solid var(--gray-200);
    transition: all var(--transition);
}
.tld-card:hover { border-color: var(--primary); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.tld-card__ext { display: block; font-size: 24px; font-weight: 700; color: var(--gray-900); margin-bottom: 8px; }
.tld-card__price { font-size: 15px; font-weight: 600; color: var(--primary); }
.tld-card__price del { color: var(--gray-400); font-size: 13px; margin-right: 4px; }
.tld-card__cycle { display: block; font-size: 12px; color: var(--gray-400); margin-top: 2px; }

/* TLD pricing grid (domains page) */
.tld-pricing-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }
.tld-pricing-card {
    background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius);
    padding: 28px; transition: all var(--transition);
}
.tld-pricing-card:hover { border-color: var(--primary); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.tld-pricing-card__ext { display: block; font-size: 28px; font-weight: 700; color: var(--gray-900); margin-bottom: 20px; }
.tld-pricing-card__prices { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.tld-pricing-card__row {
    display: flex; justify-content: space-between; align-items: center;
    font-size: 14px; padding-bottom: 10px; border-bottom: 1px solid var(--gray-100);
}
.tld-pricing-card__row span { color: var(--gray-500); }
.tld-pricing-card__row strong { color: var(--gray-900); }
.tld-pricing-card__row strong del { color: var(--gray-400); font-weight: 400; margin-right: 6px; }


/* ═══════════════════════════════════════════════════════
   FEATURES
   ═══════════════════════════════════════════════════════ */
.features__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.features__grid--4 { grid-template-columns: repeat(4, 1fr); }

.feature-card {
    padding: 32px; border-radius: var(--radius-lg);
    background: var(--white); border: 1px solid var(--gray-100);
    transition: all 0.3s ease;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--gray-200); }

.feature-card__icon {
    width: 52px; height: 52px; border-radius: var(--radius); margin-bottom: 20px;
    display: flex; align-items: center; justify-content: center;
}
.feature-card__icon svg { width: 26px; height: 26px; }

.feature-card__icon--rose { background: rgba(232,54,109,0.1); color: #E8366D; }
.feature-card__icon--blue { background: rgba(59,130,246,0.1); color: #3B82F6; }
.feature-card__icon--green { background: rgba(16,185,129,0.1); color: #10B981; }
.feature-card__icon--purple { background: rgba(139,92,246,0.1); color: #8B5CF6; }
.feature-card__icon--amber { background: rgba(245,158,11,0.1); color: #F59E0B; }
.feature-card__icon--teal { background: rgba(20,184,166,0.1); color: #14B8A6; }

.feature-card h3 { font-size: 18px; font-weight: 700; color: var(--gray-900); margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: var(--gray-500); line-height: 1.7; }


/* ═══════════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════════ */
.testimonials { background: var(--gray-50); }
.testimonials__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

.testimonial-card {
    background: var(--white); border-radius: var(--radius-lg); padding: 32px;
    border: 1px solid var(--gray-100); transition: all 0.3s ease;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.testimonial-card__stars { display: flex; gap: 2px; color: #F59E0B; margin-bottom: 16px; }
.testimonial-card__text { font-size: 15px; color: var(--gray-600); line-height: 1.7; margin-bottom: 24px; font-style: italic; }

.testimonial-card__author { display: flex; align-items: center; gap: 12px; }
.testimonial-card__avatar {
    width: 44px; height: 44px; border-radius: 50%; background: var(--primary-soft);
    color: var(--primary); display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 16px; flex-shrink: 0;
}
.testimonial-card__author strong { display: block; font-size: 14px; color: var(--gray-900); }
.testimonial-card__author span { font-size: 13px; color: var(--gray-400); }


/* ═══════════════════════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════════════════════ */
.cta { padding: 100px 0; }
.cta__inner {
    position: relative; padding: 64px; border-radius: var(--radius-xl);
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
    color: var(--white); text-align: center; overflow: hidden;
}
.cta__glow {
    position: absolute; width: 400px; height: 400px; border-radius: 50%;
    background: var(--primary); opacity: 0.1; filter: blur(80px);
    top: -100px; right: -100px;
}
.cta__title { font-size: clamp(28px, 3vw, 38px); font-weight: 700; margin-bottom: 16px; position: relative; }
.cta__subtitle { font-size: 17px; color: rgba(255,255,255,0.7); max-width: 520px; margin: 0 auto 32px; position: relative; line-height: 1.7; }
.cta__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; }


/* ═══════════════════════════════════════════════════════
   COMPARISON TABLE
   ═══════════════════════════════════════════════════════ */
.comparison-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.comparison-table {
    width: 100%; border-collapse: collapse; background: var(--white);
    border-radius: var(--radius); overflow: hidden; border: 1px solid var(--gray-200);
}
.comparison-table th, .comparison-table td {
    padding: 16px 20px; text-align: center; font-size: 14px; border-bottom: 1px solid var(--gray-100);
}
.comparison-table th:first-child, .comparison-table td:first-child { text-align: left; font-weight: 600; }
[dir="rtl"] .comparison-table th:first-child, [dir="rtl"] .comparison-table td:first-child { text-align: right; }
.comparison-table thead th { background: var(--gray-50); font-weight: 700; color: var(--gray-900); font-size: 15px; }
.comparison-table tbody tr:hover { background: var(--gray-50); }
.table-check { color: #10B981; }


/* ═══════════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════════ */
.faq { display: flex; flex-direction: column; gap: 8px; }
.faq__item { border: 1px solid var(--gray-200); border-radius: var(--radius); overflow: hidden; background: var(--white); }
.faq__item.active { border-color: var(--primary); box-shadow: 0 0 0 1px var(--primary); }

.faq__question {
    width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
    padding: 18px 24px; font-size: 16px; font-weight: 600; color: var(--gray-900);
    background: none; border: none; cursor: pointer; font-family: inherit; text-align: left;
}
[dir="rtl"] .faq__question { text-align: right; }
.faq__chevron { width: 20px; height: 20px; flex-shrink: 0; color: var(--gray-400); transition: transform 0.3s ease; }
.faq__item.active .faq__chevron { transform: rotate(180deg); color: var(--primary); }

.faq__answer { padding: 0 24px; max-height: 0; overflow: hidden; transition: all 0.3s ease; }
.faq__item.active .faq__answer { max-height: 300px; padding: 0 24px 20px; }
.faq__answer p { font-size: 15px; color: var(--gray-600); line-height: 1.7; }


/* ═══════════════════════════════════════════════════════
   ABOUT PAGE
   ═══════════════════════════════════════════════════════ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-grid__content h2 { font-size: 32px; font-weight: 700; color: var(--gray-900); margin-bottom: 20px; line-height: 1.3; }
.about-grid__content p { font-size: 16px; color: var(--gray-600); line-height: 1.8; margin-bottom: 16px; }

.about-stats { display: flex; gap: 32px; margin-top: 32px; }
.about-stats__item strong { display: block; font-size: 28px; font-weight: 700; color: var(--primary); }
.about-stats__item span { font-size: 13px; color: var(--gray-500); }

.about-visual { position: relative; height: 400px; }
.about-visual__card {
    position: absolute; background: var(--white); border-radius: var(--radius);
    padding: 24px; display: flex; align-items: center; gap: 16px;
    box-shadow: var(--shadow-lg); border: 1px solid var(--gray-100);
    color: var(--gray-700); font-weight: 600; font-size: 15px;
}
.about-visual__card svg { color: var(--primary); flex-shrink: 0; }
.about-visual__card--1 { top: 20px; left: 20px; }
.about-visual__card--2 { top: 50%; left: 50%; transform: translate(-50%, -50%); }
.about-visual__card--3 { bottom: 20px; right: 20px; }

/* Team */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.team-card { text-align: center; padding: 36px 24px; }
.team-card__avatar {
    width: 80px; height: 80px; border-radius: 50%; margin: 0 auto 16px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white); display: flex; align-items: center; justify-content: center;
    font-size: 28px; font-weight: 700;
}
.team-card__name { font-size: 16px; font-weight: 700; color: var(--gray-900); margin-bottom: 4px; }
.team-card__role { font-size: 14px; color: var(--gray-500); }


/* ═══════════════════════════════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════════════════════════════ */
.contact-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 48px; }

.contact-form-wrap h2 { font-size: 28px; font-weight: 700; color: var(--gray-900); margin-bottom: 8px; }
.contact-form-wrap > p { font-size: 15px; color: var(--gray-500); margin-bottom: 28px; }

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

.contact-info__card {
    background: var(--gray-50); border-radius: var(--radius-lg); padding: 36px;
    border: 1px solid var(--gray-100); margin-bottom: 24px;
}
.contact-info__card h3 { font-size: 20px; font-weight: 700; color: var(--gray-900); margin-bottom: 24px; }
.contact-info__items { display: flex; flex-direction: column; gap: 24px; }

.contact-info__item { display: flex; gap: 16px; }
.contact-info__icon {
    width: 44px; height: 44px; border-radius: var(--radius-sm); flex-shrink: 0;
    background: var(--primary-soft); color: var(--primary);
    display: flex; align-items: center; justify-content: center;
}
.contact-info__icon svg { width: 20px; height: 20px; }
.contact-info__item strong { display: block; font-size: 14px; color: var(--gray-900); margin-bottom: 4px; }
.contact-info__item p { font-size: 14px; color: var(--gray-500); margin: 0; }

.contact-map { border-radius: var(--radius-lg); overflow: hidden; }
.contact-map__placeholder {
    height: 200px; background: var(--gray-100); display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 8px; color: var(--gray-400);
    border-radius: var(--radius-lg); border: 2px dashed var(--gray-200);
}


/* ═══════════════════════════════════════════════════════
   FORMS
   ═══════════════════════════════════════════════════════ */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 14px; font-weight: 600; color: var(--gray-700); }
.required { color: var(--primary); }
.optional { font-weight: 400; color: var(--gray-400); font-size: 12px; }

.form-input {
    padding: 12px 16px; font-size: 15px; font-family: inherit;
    border: 1.5px solid var(--gray-200); border-radius: var(--radius-sm);
    outline: none; transition: all var(--transition); background: var(--white); color: var(--gray-900);
}
.form-input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(232,54,109,0.1); }
.form-input::placeholder { color: var(--gray-400); }
.form-input--error { border-color: #EF4444; }
.form-error { font-size: 13px; color: #EF4444; }

select.form-input { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%239CA3AF' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 40px; }
[dir="rtl"] select.form-input { background-position: left 12px center; padding-right: 16px; padding-left: 40px; }

textarea.form-input { resize: vertical; min-height: 120px; }

.checkbox-label {
    display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--gray-600); cursor: pointer;
}
.form-checkbox {
    width: 18px; height: 18px; margin-top: 2px; flex-shrink: 0;
    accent-color: var(--primary); cursor: pointer;
}


/* ═══════════════════════════════════════════════════════
   AUTH SECTION (Register/Login)
   ═══════════════════════════════════════════════════════ */
.auth-section { padding: 120px 0 80px; background: var(--gray-50); min-height: 100vh; }

.auth-card {
    max-width: 640px; margin: 0 auto; background: var(--white);
    border-radius: var(--radius-lg); padding: 48px; border: 1px solid var(--gray-100);
    box-shadow: var(--shadow-lg);
}
.auth-card__header { text-align: center; margin-bottom: 32px; }
.auth-card__logo { display: inline-block; margin-bottom: 20px; }
.auth-card__title { font-size: 26px; font-weight: 700; color: var(--gray-900); margin-bottom: 6px; }
.auth-card__subtitle { font-size: 15px; color: var(--gray-500); }

.auth-form { display: flex; flex-direction: column; gap: 20px; }

.auth-card__footer { text-align: center; margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--gray-100); }
.auth-card__footer p { font-size: 14px; color: var(--gray-500); }
.auth-card__footer a { font-weight: 600; color: var(--primary); }


/* ═══════════════════════════════════════════════════════
   ALERTS
   ═══════════════════════════════════════════════════════ */
.alert {
    padding: 14px 20px; border-radius: var(--radius-sm); font-size: 14px;
    display: flex; align-items: center; gap: 10px; margin-bottom: 20px;
}
.alert--success { background: #F0FDF4; color: #166534; border: 1px solid #BBF7D0; }
.alert--danger { background: #FEF2F2; color: #991B1B; border: 1px solid #FECACA; }
.alert--danger ul { margin: 0; padding-left: 16px; }
.alert--danger li { margin-bottom: 4px; }


/* ═══════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════ */
.site-footer { background: var(--dark); color: rgba(255,255,255,0.7); padding: 80px 0 0; }

.site-footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }

.site-footer__logo { display: flex; align-items: center; gap: 10px; text-decoration: none; margin-bottom: 16px; }
.site-footer__logo span { font-size: 20px; font-weight: 700; color: var(--white); }
.site-footer__tagline { font-size: 14px; line-height: 1.8; margin-bottom: 24px; }

.site-footer__social { display: flex; gap: 12px; }
.site-footer__social a {
    width: 36px; height: 36px; border-radius: var(--radius-sm);
    background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.6);
    display: flex; align-items: center; justify-content: center;
    transition: all var(--transition);
}
.site-footer__social a:hover { background: var(--primary); color: var(--white); }

.site-footer__col h4 { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 20px; }
.site-footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.site-footer__col li { font-size: 14px; display: flex; align-items: center; gap: 8px; }
.site-footer__col a { color: rgba(255,255,255,0.6); transition: color var(--transition); }
.site-footer__col a:hover { color: var(--white); }
.site-footer__col li svg { flex-shrink: 0; color: rgba(255,255,255,0.4); }

.site-footer__bottom {
    padding: 24px 0; border-top: 1px solid rgba(255,255,255,0.08);
    text-align: center; font-size: 13px; color: rgba(255,255,255,0.4);
}


/* ═══════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .features__grid, .testimonials__grid { grid-template-columns: repeat(2, 1fr); }
    .features__grid--4 { grid-template-columns: repeat(2, 1fr); }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-visual { display: none; }
    .site-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .site-nav {
        display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
        background: var(--white); flex-direction: column; align-items: center; justify-content: center;
        gap: 8px; z-index: 999; padding: 24px;
    }
    .site-nav.active { display: flex; }
    .site-nav__link { font-size: 18px; padding: 12px 24px; }

    .mobile-toggle { display: flex; z-index: 1001; }

    .site-header__actions .btn { display: none; }
    .site-header__actions .lang-toggle { display: none; }

    .hero { padding: 130px 0 70px; }
    .hero__title { font-size: 32px; }
    .hero__stats { flex-direction: column; align-items: flex-start; gap: 16px; }
    .hero__stat-divider { display: none; }

    .section { padding: 60px 0; }
    .plans__grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
    .features__grid, .features__grid--4, .testimonials__grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr 1fr; gap: 16px; }

    .domain-search__form { flex-direction: column; }
    .domain-search__input { border-radius: var(--radius); }
    .domain-search__btn { border-radius: var(--radius); }
    [dir="rtl"] .domain-search__input { border-radius: var(--radius); }
    [dir="rtl"] .domain-search__btn { border-radius: var(--radius); }
    .domain-search__box { padding: 24px; }
    .domain-search__tlds { grid-template-columns: repeat(3, 1fr); }
    .tld-pricing-grid { grid-template-columns: 1fr; }

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

    .cta__inner { padding: 40px 24px; }
    .site-footer__grid { grid-template-columns: 1fr; gap: 32px; }

    .auth-card { padding: 28px; margin: 0 16px; }
    .page-header { padding: 120px 0 40px; }
}

@media (max-width: 480px) {
    .domain-search__tlds { grid-template-columns: repeat(2, 1fr); }
    .hero__actions { flex-direction: column; align-items: flex-start; }
    .hero__actions .btn { width: 100%; }
}


/* =============================================================
   CLIENT ORDERING PAGES
   Step indicator, pricing toggle, package cards, domain search,
   order summary, cart, configure
   ============================================================= */

/* -- Step Indicator ------------------------------------------ */
.order-steps {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 32px;
    padding: 16px 24px;
    background: var(--surface, #fff);
    border: 1px solid var(--border, #E2E3EF);
    border-radius: var(--radius, 12px);
    overflow-x: auto;
}
.order-step {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    font-size: .875rem;
    font-weight: 500;
    color: var(--text-tertiary, #8E8FA3);
    white-space: nowrap;
}
.order-step--active {
    color: var(--primary, #E8366D);
    font-weight: 600;
}
.order-step--done {
    color: var(--success, #0ABF53);
}
.order-step__number {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .75rem;
    font-weight: 700;
    border: 2px solid currentColor;
    flex-shrink: 0;
}
.order-step--active .order-step__number {
    background: var(--primary, #E8366D);
    color: #fff;
    border-color: var(--primary, #E8366D);
}
.order-step--done .order-step__number {
    background: var(--success, #0ABF53);
    color: #fff;
    border-color: var(--success, #0ABF53);
}
.order-step__sep {
    width: 40px;
    height: 2px;
    background: var(--border, #E2E3EF);
    margin: 0 4px;
    flex-shrink: 0;
}
.order-step--done + .order-step__sep {
    background: var(--success, #0ABF53);
}

/* -- Pricing Toggle ------------------------------------------ */
.pricing-toggle {
    display: inline-flex;
    background: var(--surface-muted, #F0F0F7);
    border-radius: 9999px;
    padding: 4px;
    gap: 2px;
}
.pricing-toggle__btn {
    padding: 8px 24px;
    border-radius: 9999px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: .875rem;
    font-weight: 500;
    font-family: inherit;
    color: var(--text-secondary, #4A4B65);
    transition: all .2s ease;
}
.pricing-toggle__btn.active {
    background: var(--primary, #E8366D);
    color: #fff;
    box-shadow: 0 2px 8px rgba(232,54,109,.25);
}
.pricing-toggle__save {
    font-size: .6875rem;
    color: var(--success, #0ABF53);
    font-weight: 700;
    margin-inline-start: 4px;
}

/* -- Package Cards (Client Ordering) ------------------------- */
.pkg-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}
.pkg-card {
    background: var(--surface, #fff);
    border: 2px solid var(--border, #E2E3EF);
    border-radius: var(--radius-lg, 16px);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all .3s ease;
}
.pkg-card:hover {
    border-color: var(--primary, #E8366D);
    box-shadow: 0 8px 30px rgba(232,54,109,.1);
    transform: translateY(-4px);
}
.pkg-card--popular {
    border-color: var(--primary, #E8366D);
    position: relative;
}
.pkg-card--popular::before {
    content: 'Most Popular';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary, #E8366D);
    color: #fff;
    padding: 4px 16px;
    font-size: .6875rem;
    font-weight: 700;
    border-radius: 0 0 8px 8px;
    text-transform: uppercase;
    letter-spacing: .5px;
    z-index: 1;
}
[dir="rtl"] .pkg-card--popular::before {
    left: auto;
    right: 50%;
    transform: translateX(50%);
}
.pkg-card__header {
    padding: 32px 24px 20px;
    text-align: center;
}
.pkg-card__name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text, #14141F);
    margin-bottom: 12px;
}
.pkg-card__price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary, #E8366D);
    line-height: 1;
}
.pkg-card__cycle {
    font-size: .8125rem;
    color: var(--text-tertiary, #8E8FA3);
    margin-top: 4px;
}
.pkg-card__alt-price {
    font-size: .8rem;
    color: var(--text-tertiary, #8E8FA3);
    margin-top: 4px;
}
.pkg-card__setup {
    font-size: .75rem;
    color: var(--text-tertiary, #8E8FA3);
    margin-top: 4px;
}
.pkg-card__features {
    padding: 20px 24px;
    flex: 1;
}
.pkg-card__feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    font-size: .875rem;
    color: var(--text-secondary, #4A4B65);
}
.pkg-card__feature svg {
    color: var(--success, #0ABF53);
    flex-shrink: 0;
}
.pkg-card__desc {
    font-size: .8rem;
    color: var(--text-tertiary, #8E8FA3);
    margin-top: 16px;
    line-height: 1.5;
}
.pkg-card__footer {
    padding: 20px 24px;
    border-top: 1px solid var(--border, #E2E3EF);
}
.pkg-card__footer .btn {
    width: 100%;
    justify-content: center;
}

/* -- Order Hero (shared between hosting & domain) ------------ */
.order-hero {
    text-align: center;
    padding: 8px 0 32px;
}
.order-hero__title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text, #14141F);
    margin-bottom: 8px;
}
.order-hero__subtitle {
    font-size: 1rem;
    color: var(--text-tertiary, #8E8FA3);
    max-width: 500px;
    margin: 0 auto;
}
.order-hero__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
    flex-wrap: wrap;
}

/* -- Domain Hero Search -------------------------------------- */
.domain-hero {
    text-align: center;
    padding: 8px 0 32px;
}
.domain-hero__title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text, #14141F);
    margin-bottom: 8px;
}
.domain-hero__subtitle {
    font-size: 1rem;
    color: var(--text-tertiary, #8E8FA3);
    margin-bottom: 24px;
}
.domain-hero__search {
    max-width: 640px;
    margin: 0 auto;
    display: flex;
    gap: 0;
}
.domain-hero__input {
    flex: 1;
    height: 52px;
    padding: 0 20px;
    border: 2px solid var(--border, #E2E3EF);
    border-right: none;
    border-radius: var(--radius, 12px) 0 0 var(--radius, 12px);
    font-size: 1rem;
    font-family: inherit;
    background: var(--surface, #fff);
    color: var(--text, #14141F);
    outline: none;
    transition: border-color .2s;
}
[dir="rtl"] .domain-hero__input {
    border-right: 2px solid var(--border, #E2E3EF);
    border-left: none;
    border-radius: 0 var(--radius, 12px) var(--radius, 12px) 0;
}
.domain-hero__input:focus {
    border-color: var(--primary, #E8366D);
}
.domain-hero__select {
    height: 52px;
    padding: 0 16px;
    border: 2px solid var(--border, #E2E3EF);
    border-right: none;
    background: var(--surface-muted, #F0F0F7);
    font-family: inherit;
    font-size: .875rem;
    color: var(--text, #14141F);
    outline: none;
    cursor: pointer;
    min-width: 100px;
}
[dir="rtl"] .domain-hero__select {
    border-right: 2px solid var(--border, #E2E3EF);
    border-left: none;
}
.domain-hero__btn {
    height: 52px;
    padding: 0 32px;
    border-radius: 0 var(--radius, 12px) var(--radius, 12px) 0;
    border: none;
    font-family: inherit;
}
[dir="rtl"] .domain-hero__btn {
    border-radius: var(--radius, 12px) 0 0 var(--radius, 12px);
}

/* -- Domain Search Result ------------------------------------ */
.domain-result-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-radius: var(--radius-sm, 8px);
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}
.domain-result-card--available {
    background: var(--success-soft, #E6F9EE);
    border: 1px solid rgba(10,191,83,.2);
}
.domain-result-card--taken {
    background: var(--error-soft, #FEE2E2);
    border: 1px solid rgba(229,62,62,.2);
}
.domain-result-card__info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.domain-result-card__domain {
    font-weight: 700;
    font-size: 1rem;
}
.domain-result-card--available .domain-result-card__domain {
    color: var(--success, #0ABF53);
}
.domain-result-card--taken .domain-result-card__domain {
    color: var(--error, #e53e3e);
}
.domain-result-card__price {
    font-size: .875rem;
    color: var(--text-secondary, #4A4B65);
}

/* -- TLD Grid (Client domain page) --------------------------- */
.tld-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
}
.tld-grid__card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: var(--surface, #fff);
    border: 1px solid var(--border, #E2E3EF);
    border-radius: var(--radius-sm, 8px);
    transition: all .2s ease;
}
.tld-grid__card:hover {
    border-color: var(--primary, #E8366D);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,.06);
}
.tld-grid__ext {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary, #E8366D);
}
.tld-grid__old-price {
    font-size: .75rem;
    text-decoration: line-through;
    color: var(--text-tertiary, #8E8FA3);
}
.tld-grid__price {
    font-size: .9rem;
    font-weight: 700;
    color: var(--success, #0ABF53);
}
.tld-grid__price--normal {
    color: var(--text, #14141F);
}

/* -- Configure Page: Domain & Cycle Options ------------------- */
.config-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 24px;
    align-items: start;
}
.config-main {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.option-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border: 2px solid var(--border, #E2E3EF);
    border-radius: var(--radius-sm, 8px);
    cursor: pointer;
    transition: all .2s ease;
}
.option-card:hover {
    border-color: var(--primary-ring, rgba(232,54,109,.25));
}
.option-card:has(input:checked) {
    border-color: var(--primary, #E8366D);
    background: var(--primary-soft, #FFF0F4);
}
.option-card input[type="radio"] {
    accent-color: var(--primary, #E8366D);
    flex-shrink: 0;
}
.option-card__label {
    font-weight: 600;
    font-size: .9rem;
    color: var(--text, #14141F);
}
.option-card__desc {
    font-size: .8rem;
    color: var(--text-tertiary, #8E8FA3);
    margin-top: 2px;
}
.cycle-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border: 2px solid var(--border, #E2E3EF);
    border-radius: var(--radius-sm, 8px);
    cursor: pointer;
    transition: all .2s ease;
}
.cycle-option:hover {
    border-color: var(--primary-ring, rgba(232,54,109,.25));
}
.cycle-option:has(input:checked) {
    border-color: var(--primary, #E8366D);
    background: var(--primary-soft, #FFF0F4);
}
.cycle-option input[type="radio"] {
    accent-color: var(--primary, #E8366D);
    margin-inline-end: 10px;
}
.cycle-option__left {
    display: flex;
    align-items: center;
}
.cycle-option__label {
    font-weight: 500;
    font-size: .9rem;
}
.cycle-option__price {
    font-weight: 700;
    font-size: .9rem;
    color: var(--primary, #E8366D);
}

/* -- Order Summary (Sidebar) --------------------------------- */
.order-summary {
    background: var(--surface, #fff);
    border: 1px solid var(--border, #E2E3EF);
    border-radius: var(--radius, 12px);
    padding: 24px;
    position: sticky;
    top: 80px;
}
.order-summary__title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text, #14141F);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border, #E2E3EF);
}
.order-summary__items {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border, #E2E3EF);
}
.order-summary__row {
    display: flex;
    justify-content: space-between;
    padding: 4px 0;
    font-size: .875rem;
}
.order-summary__row--label {
    color: var(--text-tertiary, #8E8FA3);
}
.order-summary__total {
    display: flex;
    justify-content: space-between;
    font-size: 1.125rem;
    font-weight: 700;
    padding-top: 16px;
    margin-top: 4px;
}
.order-summary__total-value {
    color: var(--primary, #E8366D);
}
.order-summary__actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 20px;
}
.order-summary__actions .btn {
    width: 100%;
    justify-content: center;
}
.order-summary__note {
    font-size: .8rem;
    color: var(--text-tertiary, #8E8FA3);
    margin-top: 12px;
}

/* -- Promo Code Input ---------------------------------------- */
.promo-input {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--border, #E2E3EF);
}
.promo-input__label {
    font-size: .8rem;
    font-weight: 600;
    color: var(--text, #14141F);
    margin-bottom: 6px;
    display: block;
}
.promo-input__row {
    display: flex;
    gap: 8px;
}
.promo-input__field {
    flex: 1;
}
.promo-input__hint {
    font-size: .75rem;
    color: var(--text-tertiary, #8E8FA3);
    margin-top: 4px;
}

/* -- Cart Layout --------------------------------------------- */
.cart-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 24px;
    align-items: start;
}

/* -- Order Detail Layout ------------------------------------- */
.order-detail-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 24px;
    align-items: start;
}
.order-detail-main {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.order-detail-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* -- Linked Items -------------------------------------------- */
.linked-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    background: var(--surface-muted, #F0F0F7);
    border-radius: var(--radius-sm, 8px);
}
.linked-item__info {
    display: flex;
    align-items: center;
    gap: 8px;
}
.linked-item__name {
    font-weight: 500;
    font-size: .875rem;
}
.linked-item__meta {
    font-size: .8rem;
    color: var(--text-tertiary, #8E8FA3);
}

/* -- Card Section Header ------------------------------------- */
.card-section-header {
    padding: 16px 24px;
    border-bottom: 1px solid var(--border, #E2E3EF);
}
.card-section-header__title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text, #14141F);
}

/* -- Package Summary (configure page) ------------------------ */
.pkg-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}
.pkg-summary__name {
    font-weight: 600;
    color: var(--text, #14141F);
}
.pkg-summary__specs {
    font-size: .8rem;
    color: var(--text-tertiary, #8E8FA3);
    margin-top: 2px;
}

/* -- Empty State --------------------------------------------- */
.empty-state {
    padding: 60px 24px;
    text-align: center;
}
.empty-state__icon {
    margin: 0 auto 16px;
    opacity: .4;
}
.empty-state__text {
    font-size: .9rem;
    color: var(--text-tertiary, #8E8FA3);
    margin-bottom: 16px;
}
.empty-state__actions {
    display: flex;
    gap: 8px;
    justify-content: center;
}

/* -- Section Heading ----------------------------------------- */
.section-heading {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text, #14141F);
    margin-bottom: 16px;
}

/* -- Form Error (client pages) ------------------------------- */
.form-field-error {
    color: var(--error, #e53e3e);
    font-size: .8rem;
    margin-top: 4px;
    display: block;
}

/* -- Responsive Overrides for Ordering Pages ----------------- */
@media (max-width: 900px) {
    .config-layout,
    .cart-layout,
    .order-detail-layout {
        grid-template-columns: 1fr;
    }
    .order-summary {
        position: static;
    }
}

@media (max-width: 768px) {
    .pkg-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }
    .domain-hero__search {
        flex-direction: column;
        gap: 8px;
    }
    .domain-hero__input,
    .domain-hero__select,
    .domain-hero__btn {
        border-radius: var(--radius-sm, 8px);
        border: 2px solid var(--border, #E2E3EF);
        width: 100%;
    }
    [dir="rtl"] .domain-hero__input,
    [dir="rtl"] .domain-hero__select,
    [dir="rtl"] .domain-hero__btn {
        border-radius: var(--radius-sm, 8px);
        border: 2px solid var(--border, #E2E3EF);
    }
    .tld-grid {
        grid-template-columns: 1fr 1fr;
    }
    .order-hero__title,
    .domain-hero__title {
        font-size: 1.375rem;
    }
}

/* ═══════════════════════════════════════════════════════════════
   INTERACTIVE COMPONENTS (shared with admin)
   ═══════════════════════════════════════════════════════════════ */

/* Global Search Overlay */
.global-search-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 9999; display: none; align-items: flex-start; justify-content: center; padding-top: 12vh; backdrop-filter: blur(4px); }
.global-search-overlay.active { display: flex; }
.global-search { background: #fff; border-radius: 16px; width: 90%; max-width: 600px; box-shadow: 0 20px 60px rgba(0,0,0,.2); overflow: hidden; display: flex; flex-direction: column; max-height: 70vh; }
.global-search__header { display: flex; align-items: center; gap: 12px; padding: 16px 20px; border-bottom: 1px solid #E2E3EF; }
.global-search__icon { color: #8E8FA3; flex-shrink: 0; }
.global-search__input { flex: 1; border: none; outline: none; font-size: 1rem; background: transparent; color: #14141F; }
.global-search__input::placeholder { color: #8E8FA3; }
.global-search__results { flex: 1; overflow-y: auto; min-height: 100px; max-height: calc(70vh - 120px); }
.global-search__group { padding: 8px 0; }
.global-search__group-title { padding: 6px 20px; font-size: .6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: #8E8FA3; }
.global-search__result { display: block; padding: 10px 20px; text-decoration: none; color: #14141F; transition: background .12s; cursor: pointer; }
.global-search__result:hover, .global-search__result.focused { background: #FFF0F4; }
.global-search__result-title { font-weight: 600; font-size: .875rem; }
.global-search__result-sub { font-size: .75rem; color: #8E8FA3; margin-top: 2px; }
.global-search__footer { display: flex; gap: 16px; padding: 10px 20px; border-top: 1px solid #E2E3EF; font-size: .75rem; color: #8E8FA3; }
.global-search__loading { padding: 30px; text-align: center; color: #8E8FA3; }
.global-search__hint { padding: 30px; text-align: center; color: #8E8FA3; font-size: .875rem; }

/* Toast */
.toast-container { position: fixed; top: 20px; right: 20px; z-index: 10000; display: flex; flex-direction: column; gap: 8px; }
.toast { padding: 12px 20px; border-radius: 10px; color: #fff; font-size: .875rem; font-weight: 500; display: flex; align-items: center; gap: 10px; box-shadow: 0 10px 30px rgba(0,0,0,.12); animation: toastIn .3s ease; min-width: 280px; }
.toast--success { background: #0ABF53; }
.toast--error { background: #e53e3e; }
.toast--info { background: #3B82F6; }
.toast--warning { background: #F59E0B; }
@keyframes toastIn { from { opacity: 0; transform: translateX(50px); } to { opacity: 1; transform: none; } }

/* Confirm Dialog */
.confirm-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 9998; display: flex; align-items: center; justify-content: center; backdrop-filter: blur(4px); }
.confirm-dialog { background: #fff; border-radius: 16px; padding: 28px; max-width: 400px; width: 90%; box-shadow: 0 20px 60px rgba(0,0,0,.2); text-align: center; }

/* KBD */
.kbd { display: inline-flex; padding: 2px 6px; background: #F0F0F7; border: 1px solid #E2E3EF; border-radius: 4px; font-family: monospace; font-size: .6875rem; color: #8E8FA3; }

/* Spinner */
.spinner { width: 16px; height: 16px; border: 2px solid transparent; border-top-color: currentColor; border-radius: 50%; animation: spin .6s linear infinite; display: inline-block; }
@keyframes spin { to { transform: rotate(360deg); } }
