.page-hero {
    position: relative;
    padding: 200px 0 100px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(13, 13, 13, 0.93) 0%,
        rgba(26, 26, 26, 0.87) 50%,
        rgba(13, 13, 13, 0.92) 100%
    );
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 20px;
}

.page-breadcrumb a {
    color: var(--gold);
}

.page-breadcrumb a:hover {
    color: var(--gold-light);
    text-decoration: underline;
}

.page-breadcrumb .sep {
    color: rgba(255,255,255,0.3);
}

.page-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(201, 169, 110, 0.15);
    border: 1px solid rgba(201, 169, 110, 0.3);
    color: var(--gold);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.page-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
}

.page-hero h1 span {
    color: var(--gold);
    font-style: italic;
}

.page-hero-text {
    font-size: 18px;
    color: rgba(255,255,255,0.75);
    max-width: 600px;
    line-height: 1.8;
    margin-bottom: 32px;
}

.page-hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.page-hero-decor {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 300px;
    height: 300px;
    border: 2px solid rgba(201, 169, 110, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.page-hero-decor::before {
    content: '';
    width: 220px;
    height: 220px;
    border: 1px solid rgba(201, 169, 110, 0.1);
    border-radius: 50%;
}

.page-hero-decor i {
    position: absolute;
    font-size: 80px;
    color: rgba(201, 169, 110, 0.12);
}

.domain-intro {
    padding: 80px 0;
    background: var(--white);
}

.domain-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.domain-intro-img {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.domain-intro-img img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.domain-intro-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--blue));
}

.domain-intro-content h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--blue-dark);
    margin-bottom: 20px;
    line-height: 1.3;
}

.domain-intro-content h2 span {
    color: var(--gold);
}

.domain-intro-content p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 16px;
}

.domain-services {
    padding: 80px 0;
    background: var(--off-white);
}

.services-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 50px;
}

a.service-item {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.service-item {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

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

.service-num {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: linear-gradient(135deg, var(--blue), var(--blue-light));
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
}

.service-item:hover .service-num {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
}

.service-item h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--blue-dark);
    margin-bottom: 8px;
}

.service-item p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

.domain-process {
    padding: 80px 0;
    background: var(--white);
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 50px;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 60px;
    right: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--blue), var(--gold));
}

.process-step {
    text-align: center;
    flex: 1;
    position: relative;
    z-index: 1;
}

.process-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--white);
    border: 3px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--gold);
    transition: var(--transition);
}

.process-step:hover .process-icon {
    background: var(--gold);
    color: var(--white);
    transform: scale(1.1);
}

.process-step h3 {
    font-family: var(--font-heading);
    font-size: 17px;
    color: var(--blue-dark);
    margin-bottom: 8px;
}

.process-step p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    max-width: 200px;
    margin: 0 auto;
}

.domain-highlights {
    padding: 80px 0;
    background: var(--blue-dark);
    position: relative;
    overflow: hidden;
}

.domain-highlights::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1505664194779-8beaceb93744?w=1920&h=800&fit=crop') center/cover;
    opacity: 0.06;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.highlight-card {
    text-align: center;
    padding: 36px 24px;
    border: 1px solid rgba(201,169,110,0.2);
    border-radius: var(--radius);
    background: rgba(255,255,255,0.03);
    transition: var(--transition);
}

.highlight-card:hover {
    background: rgba(201,169,110,0.1);
    border-color: rgba(201,169,110,0.4);
    transform: translateY(-5px);
}

.highlight-icon {
    font-size: 36px;
    color: var(--gold);
    margin-bottom: 16px;
}

.highlight-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--white);
    margin-bottom: 10px;
}

.highlight-card p {
    font-size: 15px;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
}

.domain-faq {
    padding: 80px 0;
    background: var(--off-white);
}

.faq-list {
    max-width: 800px;
    margin: 50px auto 0;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius);
    margin-bottom: 12px;
    border: 1px solid var(--gray-200);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active {
    border-color: var(--gold);
    box-shadow: var(--shadow);
}

.faq-question {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    gap: 16px;
}

.faq-question h3 {
    font-family: var(--font-heading);
    font-size: 17px;
    color: var(--blue-dark);
    font-weight: 600;
}

.faq-item.active .faq-question h3 {
    color: var(--gold);
}

.faq-toggle {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 50%;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    font-size: 14px;
    transition: var(--transition);
}

.faq-item.active .faq-toggle {
    background: var(--gold);
    color: var(--white);
    transform: rotate(180deg);
}

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

.faq-answer-inner {
    padding: 0 24px 20px;
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
}

.page-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    text-align: center;
}

.page-cta h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    color: var(--white);
    margin-bottom: 16px;
}

.page-cta p {
    color: rgba(255,255,255,0.85);
    font-size: 17px;
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.page-cta .btn {
    background: var(--white);
    color: var(--gold-dark);
}

.page-cta .btn:hover {
    background: var(--blue-dark);
    color: var(--white);
}

.other-domains {
    padding: 60px 0;
    background: var(--white);
}

.other-domains-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-top: 40px;
}

.other-domain-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 24px 12px;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
    text-decoration: none;
}

.other-domain-link:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.other-domain-link i {
    font-size: 24px;
    color: var(--blue);
}

.other-domain-link:hover i {
    color: var(--gold);
}

.other-domain-link span {
    font-size: 14px;
    font-weight: 600;
    color: var(--blue-dark);
}

@media (max-width: 1024px) {
    .domain-intro-grid { grid-template-columns: 1fr; }
    .services-list { grid-template-columns: 1fr; }
    .highlights-grid { grid-template-columns: repeat(2, 1fr); }
    .other-domains-grid { grid-template-columns: repeat(3, 1fr); }
    .page-hero-decor { display: none; }
}

@media (max-width: 768px) {
    .page-hero { padding: 150px 0 70px; }
    .process-timeline {
        flex-direction: column;
        align-items: center;
    }
    .process-timeline::before {
        top: 0;
        bottom: 0;
        left: 40px;
        right: auto;
        width: 2px;
        height: auto;
    }
    .process-step {
        text-align: left;
        display: flex;
        align-items: flex-start;
        gap: 20px;
    }
    .process-icon {
        margin: 0;
        min-width: 80px;
    }
    .process-step p { margin: 0; max-width: none; }
    .highlights-grid { grid-template-columns: 1fr; }
    .other-domains-grid { grid-template-columns: repeat(2, 1fr); }
}
