/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    font-family: var(--font);
    font-weight: 700;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, background 0.2s;
}

.btn:hover { transform: scale(1.03); }

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

.btn-primary:hover { background: var(--accent-hover); color: var(--white); }

.btn-lg { font-size: 1.15rem; padding: 0.9rem 2.25rem; }
.btn-block { width: 100%; }
.btn .btn-icon { display: inline-block; line-height: 1; }
.btn:has(.btn-icon) { display: inline-flex; align-items: center; gap: 0.35em; }

/* Hero */
.hero {
    background: var(--hero-bg);
    padding: 3rem 0 4rem;
    overflow: hidden;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    color: var(--primary);
    margin: 0 0 0.5rem;
}

.hero-subtitle,
.hero-tagline {
    font-size: clamp(1.25rem, 2.5vw, 2rem);
    font-weight: 700;
    color: var(--primary);
    margin: 0.25rem 0;
}

.hero-line {
    font-size: clamp(1rem, 1.5vw, 1.35rem);
    margin: 0.5rem 0;
}

.hero-content .btn { margin-top: 1.5rem; }

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

.hero-image img { max-width: 420px; }

.hero {
    position: relative;
}

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

.hero-bg-layer {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-bg-layer--image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-bg-layer--video .hero-bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.hero-bg-layer--video .hero-bg-video.is-active {
    opacity: 1;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(
        135deg,
        color-mix(in srgb, var(--primary) 35%, transparent),
        color-mix(in srgb, var(--heading) 25%, transparent)
    );
}

.hero--bg-image .hero-content,
.hero--bg-video .hero-content,
.hero--v05.hero--has-bg-image .hero-content {
    position: relative;
    z-index: 2;
}

.hero--bg-image .hero-title,
.hero--bg-image .hero-subtitle,
.hero--bg-image .hero-tagline,
.hero--bg-image .hero-line,
.hero--bg-video .hero-title,
.hero--bg-video .hero-subtitle,
.hero--bg-video .hero-tagline,
.hero--bg-video .hero-line {
    color: var(--white);
    text-shadow: 0 2px 12px color-mix(in srgb, var(--heading) 45%, transparent);
}

.hero--v02 .hero-inner { direction: rtl; }
.hero--v02 .hero-content,
.hero--v02 .hero-image { direction: ltr; }

.hero--v03 .hero-inner,
.hero--v04 .hero-inner,
.hero--v07 .hero-inner,
.hero--v11 .hero-inner,
.hero--v12 .hero-inner,
.hero--v17 .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
}

.hero--v03 .hero-image,
.hero--v12 .hero-image { display: none; }

.hero--v04 .hero-image,
.hero--v13 .hero-inner,
.hero--v14 .hero-inner {
    grid-template-columns: 1fr;
}

.hero--v04 .hero-image { order: 2; margin-top: 1rem; }

.hero--v05.hero--has-bg-image {
    position: relative;
    color: var(--white);
    background:
        linear-gradient(135deg, color-mix(in srgb, var(--primary) 72%, transparent), color-mix(in srgb, var(--accent) 55%, transparent)),
        var(--hero-bg-image) center/cover no-repeat;
}

.hero--v05.hero--has-bg-image .hero-title,
.hero--v05.hero--has-bg-image .hero-subtitle,
.hero--v05.hero--has-bg-image .hero-tagline,
.hero--v05.hero--has-bg-image .hero-line { color: var(--white); }

.hero--v06 { padding: 2rem 0 2.5rem; }

.hero--v07 .hero-title { font-size: clamp(3rem, 6vw, 5rem); }

.hero--v08 .hero-inner { grid-template-columns: 0.9fr 1.1fr; }
.hero--v09 .hero-inner { grid-template-columns: 1.1fr 0.9fr; }

.hero--v10 .hero-content,
.hero--v16 .hero-inner {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.hero--v10 .hero-content { padding: 2rem; }
.hero--v16 .hero-inner { padding: 2rem; }

.hero--v11 .hero-tagline {
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hero--v12 .hero-subtitle { margin-bottom: 1rem; }
.hero--v12 .hero-line,
.hero--v12 .hero-tagline { display: none; }

.hero--v13 .hero-image { order: -1; }
.hero--v14 .hero-image { order: -1; }

.hero--v15 {
    border-top: 6px solid var(--accent);
    border-bottom: 1px solid color-mix(in srgb, var(--primary) 10%, transparent);
}

.hero--v17 .hero-inner { gap: 3rem; }

.hero--v18 .hero-image img {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.hero--v19:not([style*="background"]) {
    background: var(--primary);
    color: var(--white);
}

.hero--v19:not([style*="background"]) .hero-title,
.hero--v19:not([style*="background"]) .hero-subtitle,
.hero--v19:not([style*="background"]) .hero-tagline,
.hero--v19:not([style*="background"]) .hero-line { color: var(--white); }

.hero--v20:not([style*="background"]) {
    background: color-mix(in srgb, var(--accent) 14%, var(--hero-bg));
}

@media (max-width: 900px) {
    .hero-inner,
    .hero--v08 .hero-inner,
    .hero--v09 .hero-inner {
        grid-template-columns: 1fr;
    }

    .hero--v02 .hero-inner { direction: ltr; }
    .hero--v14 .hero-image { order: -1; }
    .hero-image { order: -1; }
}

/* Sections */
.section { padding: 3.5rem 0; }
.section-intro { padding-top: 2rem; }

.intro-text {
    font-size: 1.1rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.section-title {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    margin-bottom: 1rem;
}

.section-desc { max-width: 900px; margin: 0 auto 2.5rem; }
.section-label {
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary);
    margin-bottom: 2rem;
}

.subsection-title {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

/* Pricing */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-top: 2rem;
    align-items: stretch;
}

.pricing-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow);
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.pricing-card--featured {
    border: 2px solid var(--accent);
    box-shadow: 0 10px 32px color-mix(in srgb, var(--accent) 22%, transparent);
    transform: translateY(-6px);
    position: relative;
    z-index: 1;
}

.pricing-card--featured .pricing-header {
    background: var(--accent);
}

.pricing-card--featured .check-icon {
    color: var(--accent);
}

.pricing-card:hover { transform: translateY(-4px); }

.pricing-card--featured:hover {
    transform: translateY(-8px);
}

.pricing-header {
    background: var(--primary);
    color: var(--white);
    padding: 1.5rem 1rem;
    text-align: center;
}

.pricing-name {
    margin: 0;
    font-size: 1.25rem;
    color: var(--white);
}

.pricing-badge {
    margin: 0.35rem 0 1rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

.pricing-price {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: center;
    gap: 0.15rem;
}

.pricing-price .currency { font-size: 1.25rem; }
.pricing-price .amount { font-size: 2.75rem; font-weight: 800; line-height: 1; }
.pricing-price .duration { width: 100%; font-size: 0.8rem; opacity: 0.85; }

.pricing-features {
    list-style: none;
    margin: 0;
    padding: 1rem;
    flex: 1;
    font-size: 0.82rem;
}

.pricing-features li {
    display: flex;
    gap: 0.5rem;
    padding: 0.35rem 0;
    border-bottom: 1px solid var(--light);
}

.pricing-feature-text strong,
.pricing-feature-text b {
    font-weight: 700;
}

.check-icon {
    color: var(--primary);
    width: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

.check-icon svg { width: 100%; height: 100%; }

.pricing-card-footer {
    padding: 0 1rem 1rem;
    margin-top: auto;
}

.pricing-card-footer .btn {
    width: 100%;
    margin: 0;
    border-radius: 8px;
    box-sizing: border-box;
}

/* Feature boxes */
.feature-card p ul,
.section-text ul,
.cms-ve-editable ul {
    margin: 0.5rem 0 0.75rem 1.25rem;
    padding-left: 1rem;
}

.feature-card p li,
.section-text li,
.cms-ve-editable li {
    margin-bottom: 0.25rem;
}

.features-grid {
    display: grid;
    gap: 1.5rem;
}

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

@media (max-width: 1024px) {
    .features-grid-3,
    .features-grid-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .features-grid-2,
    .features-grid-3,
    .features-grid-4 {
        grid-template-columns: 1fr;
    }

    .section-heading--v02 .section-title,
    .section-heading--v05 .section-title,
    .section-heading--v11 .section-title,
    .section-heading--v20 .section-title,
    .section-heading--v03 .section-title {
        text-align: center;
    }

    .section-heading--v05 {
        border-left: none;
        padding-left: 0;
    }
}

.text-right { text-align: right; }

/* Heading variants */
.section-heading { padding: 2.5rem 0; }
.section-heading--v02 .section-title,
.section-heading--v05 .section-title,
.section-heading--v11 .section-title,
.section-heading--v20 .section-title { text-align: left; }
.section-heading--v03 .section-title { text-align: right; }
.section-heading--v04 .section-title::after,
.section-heading--v10 .section-title::after {
    content: '';
    display: block;
    width: 4rem;
    height: 3px;
    margin: 0.75rem auto 0;
    background: var(--accent);
}
.section-heading--v05 { border-left: 4px solid var(--accent); padding-left: 1.25rem; }
.section-heading--v06 .section-title { font-size: clamp(2rem, 5vw, 3.5rem); }
.section-heading--v08 .container { background: color-mix(in srgb, var(--light) 80%, transparent); border-radius: var(--radius); padding: 2rem 1.5rem; }
.section-heading--v09 { background: var(--primary); }
.section-heading--v09 .section-title { color: var(--white); }
.section-heading--v11 .section-title::before {
    content: '';
    display: inline-block;
    width: 2.5rem;
    height: 3px;
    background: var(--accent);
    vertical-align: middle;
    margin-right: 0.75rem;
}
.section-heading--v12 { padding: 1.5rem 0; }
.section-heading--v14 .section-title { font-size: clamp(2.25rem, 5vw, 4rem); }
.section-heading--v15 .section-title {
    display: inline-block;
    padding: 0.35rem 1rem;
    border-radius: 999px;
    background: color-mix(in srgb, var(--accent) 15%, transparent);
}
.section-heading--v16 .section-title { border-bottom: 2px solid var(--border); padding-bottom: 0.75rem; }
.section-heading--v17 .section-title {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 1rem 0;
}
.section-heading--v18 .section-title {
    background: linear-gradient(90deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.section-heading--v19 { background: color-mix(in srgb, var(--accent) 12%, var(--white)); }
.section-heading--v20 .container {
    border-left: 3px solid var(--primary);
    padding-left: 1.25rem;
}

/* Text content variants (text 01–15) */
.text-content--v01 .text-block,
.text-content--v03 .text-block,
.text-content--v08 .text-block,
.text-content--v15 .text-block {
    max-width: 820px;
    margin-inline: auto;
}

.text-block.text-center,
.text-block.text-center .text-block-inner {
    text-align: center;
}

.text-block.text-right,
.text-block.text-right .text-block-inner {
    text-align: right;
}

.text-content--v08 .text-lead,
.text-content--v08 .text-block-inner:first-child {
    font-size: 1.25rem;
    line-height: 1.65;
}

.text-content--v09 .text-quote,
.text-content--v09 blockquote.text-quote {
    margin: 0;
    padding: 1.25rem 1.5rem;
    border-left: 4px solid var(--accent);
    background: color-mix(in srgb, var(--light) 70%, transparent);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-size: 1.1rem;
    font-style: italic;
}

.text-content--v13 {
    border-left: 4px solid var(--accent);
    padding-left: 1.25rem;
}

.text-content--v14 .text-block {
    background: color-mix(in srgb, var(--primary) 6%, var(--white));
    border-radius: var(--radius);
    padding: 1.5rem 1.75rem;
}

.text-content--v15 .text-subtitle {
    font-size: 1.15rem;
    color: color-mix(in srgb, var(--primary) 55%, #334155);
    margin: -0.35rem 0 1rem;
}

.text-content--v05 .text-block-inner,
.text-content--v06 .text-block-inner,
.text-content--v07 .text-block-inner {
    font-size: 1.05rem;
    line-height: 1.7;
}

.text-content--v10 {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}

.text-content--v11 .text-block-inner p + p {
    margin-top: 1rem;
}

.text-content--v12 .section-label {
    margin-bottom: 1rem;
}

/* Multi descriptor variants (grid 01–10) */
.multi--v04 .feature-box {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.multi--v05 .feature-box { text-align: left; }
.multi--v05 .feature-icon { margin: 0; }
.multi--v06 .feature-box { padding: 1rem 0.75rem; }
.multi--v07 .feature-icon { width: 100px; height: 100px; font-size: 2.75rem; }
.multi--v08 .feature-box { border-top: 3px solid var(--accent); padding-top: 1.25rem; }
.multi--v09 .features-grid { align-items: start; }
.multi--v09 .feature-box:nth-child(even) { margin-top: 1.5rem; }
.multi--v10 .feature-box {
    background: color-mix(in srgb, var(--primary) 8%, var(--white));
    border-radius: var(--radius);
}

/* Multi descriptor variants (split 11–20) */
.multi--v12 .features-split { direction: rtl; }
.multi--v12 .features-image,
.multi--v12 .features-list { direction: ltr; }
.multi--v13 .features-split,
.multi--v14 .features-split { grid-template-columns: 1fr; }
.multi--v14 .features-image { order: 2; }
.multi--v15 .features-split { grid-template-columns: 0.75fr 1.25fr; }
.multi--v16 .features-split { grid-template-columns: 1.25fr 0.75fr; }
.multi--v17 .features-split {
    background: color-mix(in srgb, var(--light) 70%, transparent);
    border-radius: var(--radius);
    padding: 1.5rem;
}
.multi--v18 { background: color-mix(in srgb, var(--primary) 8%, var(--white)); }
.multi--v19 .feature-row {
    border-left: 3px solid var(--accent);
    padding-left: 0.75rem;
}
.multi--v20 .feature-row { margin-bottom: 0.75rem; }
.multi--v20 .feature-row .feature-icon { width: 56px; height: 56px; }

/* Text + image variants */
.cta-split--image-left .register-split { direction: rtl; }
.cta-split--image-left .register-content,
.cta-split--image-left .register-image { direction: ltr; }
.cta-split--v03 .register-split,
.cta-split--v04 .register-split,
.cta-split--v07 .register-split,
.cta-split--v13 .register-split,
.cta-split--image-top .register-split,
.cta-split--image-bottom .register-split { grid-template-columns: 1fr; }
.cta-split--v03 .register-image,
.cta-split--image-top .register-image { order: -1; }
.cta-split--v04 .register-image,
.cta-split--image-bottom .register-image { order: 2; }
.cta-split--v05 .register-split { position: relative; }
.cta-split--v05 .register-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: color-mix(in srgb, var(--primary) 35%, transparent);
    border-radius: var(--radius);
    pointer-events: none;
}
.cta-split--v05 .register-image { position: relative; }
.cta-split--v06 { padding: 1.5rem 0; }
.cta-split--v07 .register-content { text-align: center; }
.cta-split--v08 .register-split {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow);
}
.cta-split--v09 { background: color-mix(in srgb, var(--primary) 8%, var(--white)); }
.cta-split--v10 .register-content {
    border: 2px solid var(--accent);
    border-radius: var(--radius);
    padding: 1.25rem;
}
.cta-split--v11 .register-split { grid-template-columns: 0.85fr 1.15fr; }
.cta-split--v12 .register-split { grid-template-columns: 1.15fr 0.85fr; }
.cta-split--v13 .register-content { text-align: center; max-width: 640px; margin: 0 auto; }
.cta-split--v14 .register-split { grid-template-columns: 1.2fr 0.8fr; }
.cta-split--v15 .register-split { grid-template-columns: 0.8fr 1.2fr; }
.cta-split--v16 .register-image img { border-radius: 1.25rem; }
.cta-split--v17 .register-image img { box-shadow: 0 12px 32px color-mix(in srgb, var(--primary) 25%, transparent); }
.cta-split--v18 .register-content .btn { margin-top: 0.5rem; }
.cta-split--v19 .register-image img { border-radius: 0; width: 100%; }
.cta-split--v20 .register-content {
    background: color-mix(in srgb, var(--accent) 12%, var(--white));
    border-radius: var(--radius);
    padding: 1.5rem;
}

@media (max-width: 768px) {
    .features-grid-2,
    .features-grid-3,
    .features-grid-4,
    .features-split,
    .register-split,
    .multi--v15 .features-split,
    .multi--v16 .features-split,
    .cta-split--v11 .register-split,
    .cta-split--v12 .register-split,
    .cta-split--v14 .register-split,
    .cta-split--v15 .register-split {
        grid-template-columns: 1fr;
    }

    .multi--v12 .features-split,
    .cta-split--image-left .register-split { direction: ltr; }
}


.feature-box,
.stat-box {
    text-align: center;
    padding: 1.5rem 1rem;
}

.feature-box h4,
.stat-box .stat-value {
    color: var(--primary);
    margin: 0.75rem 0 0.5rem;
}

.stat-value { font-size: 2rem; font-weight: 800; }

.feature-icon,
.stat-icon {
    width: 86px;
    height: 86px;
    margin: 0 auto;
    border-radius: 50%;
    border: 2px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.34rem;
    line-height: 1;
    color: var(--primary);
}

.feature-icon--emoji,
.stat-icon--emoji,
button.feature-icon.cms-ve-icon-picker,
button.stat-icon.cms-ve-icon-picker {
    font-size: 2.76rem;
}

.feature-icon[class*="feature-icon-"]:not(.feature-icon--emoji):not(.feature-icon--image)::before,
.stat-icon[class*="stat-icon-"]:not(.stat-icon--emoji):not(.stat-icon--image)::before {
    font-size: 2.76rem;
    line-height: 1;
}

.feature-icon-briefcase::before { content: '💼'; }
.feature-icon-comments::before { content: '💬'; }
.feature-icon-tablet::before { content: '📱'; }
.feature-icon-dollar::before { content: '💲'; }
.feature-icon-speed::before { content: '⚡'; }
.feature-icon-lock::before { content: '🔒'; }
.feature-icon-support::before { content: '👥'; }
.stat-icon-trophy::before { content: '🏆'; }
.stat-icon-speedometer::before { content: '📊'; }
.stat-icon-badge::before { content: '🎖️'; }
.stat-icon-happy::before { content: '😊'; }

.feature-icon--image,
.stat-icon--image {
    padding: 0.2rem;
    overflow: hidden;
}

.feature-icon--image img,
.stat-icon--image img {
    width: 94%;
    height: 94%;
    max-width: 54px;
    max-height: 54px;
    object-fit: contain;
}

.feature-icon--image::before,
.stat-icon--image::before,
.feature-icon--emoji::before,
.stat-icon--emoji::before {
    content: none !important;
}

/* Features split */
.features-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
}

.feature-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.feature-row .feature-icon {
    flex-shrink: 0;
    margin: 0;
    width: 72px;
    height: 72px;
    font-size: 2.13rem;
}

.feature-row .feature-icon--emoji,
.feature-row button.feature-icon.cms-ve-icon-picker {
    font-size: 2.42rem;
}

.feature-row .feature-icon--image img {
    max-width: 44px;
    max-height: 44px;
}

/* Accordion */
.accordion { margin-bottom: 3rem; }

.accordion-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: var(--light);
    border: none;
    font-family: var(--font);
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    text-align: left;
    cursor: pointer;
}

.accordion-icon::before { content: '+'; font-size: 1.25rem; }
.accordion-item.is-open .accordion-icon::before { content: '−'; }

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.accordion-item.is-open .accordion-body { max-height: 1200px; }

.accordion-content {
    padding: 1rem 1.25rem 1.25rem;
}

.accordion-content ul { padding-left: 1.25rem; }

.stats-title { margin-top: 2rem; }

/* Register CTA */
.register-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.register-image img { border-radius: var(--radius); }

/* Partners */
.partners-title { margin-bottom: 2rem; color: var(--heading); }

.partners-carousel { overflow: hidden; }

.partners-track {
    display: flex;
    gap: 2rem;
    animation: scroll-partners 25s linear infinite;
    width: max-content;
}

.partners-track:hover { animation-play-state: paused; }

.partner-logo {
    flex-shrink: 0;
    width: 160px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
}

.partner-logo img {
    max-height: 60px;
    width: auto;
    object-fit: contain;
    filter: grayscale(30%);
    opacity: 0.85;
}

@keyframes scroll-partners {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Domain hero */
.domain-hero {
    padding: clamp(3rem, 8vw, 6rem) 0;
    background: var(--hero-bg, #f6f4ff);
    position: relative;
    overflow: hidden;
}

.domain-hero--v03 {
    background: linear-gradient(135deg, rgba(66, 27, 134, 0.08) 0%, rgba(99, 102, 241, 0.12) 50%, rgba(236, 72, 153, 0.08) 100%);
}

.domain-hero-inner {
    display: flex;
    align-items: center;
    gap: clamp(2rem, 5vw, 4rem);
}

.domain-hero--v01 .domain-hero-inner,
.domain-hero--v03 .domain-hero-inner {
    flex-direction: column;
    text-align: center;
}

.domain-hero-content {
    flex: 1;
    min-width: 0;
    max-width: 820px;
}

.domain-hero--v01 .domain-hero-content,
.domain-hero--v03 .domain-hero-content {
    width: 100%;
}

.domain-hero-title {
    margin-bottom: 0.75rem;
    color: var(--heading);
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    line-height: 1.1;
}

.domain-hero-subtitle {
    margin-bottom: 1.75rem;
    color: var(--text-muted);
    font-size: clamp(1rem, 2vw, 1.2rem);
    max-width: 36rem;
}

.domain-hero--v01 .domain-hero-subtitle,
.domain-hero--v03 .domain-hero-subtitle {
    margin-left: auto;
    margin-right: auto;
}

.domain-hero-extension-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.domain-hero-extension-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    background: rgba(66, 27, 134, 0.08);
    border: 1px solid rgba(66, 27, 134, 0.12);
}

.domain-hero-extension-pill.is-active {
    color: #fff;
    background: var(--gradient-primary, linear-gradient(135deg, #421b86, #6366f1));
    border-color: transparent;
}

.domain-hero-form {
    width: 100%;
}

.domain-hero-form--card {
    padding: clamp(1rem, 3vw, 1.5rem);
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: calc(var(--radius, 12px) + 4px);
    box-shadow: var(--shadow-lg, 0 20px 50px rgba(15, 23, 42, 0.12));
    backdrop-filter: blur(12px);
}

.domain-hero-search {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 0.75rem;
    width: 100%;
}

.domain-hero--v01 .domain-hero-search,
.domain-hero--v03 .domain-hero-search {
    justify-content: center;
}

.domain-hero-field {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    min-width: 0;
}

.domain-hero-field--domain {
    flex: 1 1 220px;
    max-width: 100%;
}

.domain-hero-field--tld {
    flex: 0 0 auto;
}

.domain-hero-input,
.domain-hero-select {
    height: 3.25rem;
    padding: 0 1rem;
    border: 1px solid rgba(15, 23, 42, 0.12);
    border-radius: var(--radius, 12px);
    background: #fff;
    color: var(--text);
    font-size: 1rem;
    box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.04);
}

.domain-hero-input:focus,
.domain-hero-select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.18);
}

.domain-hero-select {
    min-width: 7rem;
    padding-right: 2rem;
    cursor: pointer;
}

.domain-hero-submit {
    flex: 0 0 auto;
    align-self: stretch;
    white-space: nowrap;
}

.domain-hero-image {
    flex: 0 1 420px;
    display: flex;
    justify-content: center;
}

.domain-hero-image img {
    width: 100%;
    max-width: 420px;
    height: auto;
    border-radius: calc(var(--radius, 12px) + 6px);
    box-shadow: var(--shadow-md, 0 12px 32px rgba(15, 23, 42, 0.12));
}

.domain-hero--v02 .domain-hero-inner {
    flex-direction: row-reverse;
}

@media (max-width: 768px) {
    .domain-hero-inner,
    .domain-hero--v02 .domain-hero-inner {
        flex-direction: column;
        text-align: center;
    }

    .domain-hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .domain-hero-search {
        flex-direction: column;
    }

    .domain-hero-submit {
        width: 100%;
    }

    .domain-hero-image {
        width: 100%;
    }
}

/* Site forms */
.site-form {
    padding: clamp(2.5rem, 6vw, 4rem) 0;
}

.site-form-inner {
    max-width: 720px;
    margin: 0 auto;
}

.site-form-title {
    margin-bottom: 0.75rem;
    color: var(--heading);
}

.site-form-subtitle {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

.site-form-alert {
    padding: 1rem 1.25rem;
    border-radius: var(--radius, 12px);
    margin-bottom: 1.5rem;
}

.site-form-alert--success {
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.25);
    color: #166534;
}

.site-form-alert--error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.25);
    color: #991b1b;
}

.site-form-fields {
    display: grid;
    gap: 1rem;
}

.site-form-field {
    display: grid;
    gap: 0.4rem;
}

.site-form-label {
    font-weight: 600;
    color: var(--heading);
}

.site-form-required {
    color: var(--accent, #eb1189);
}

.site-form-control {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid rgba(15, 23, 42, 0.12);
    border-radius: var(--radius, 12px);
    background: #fff;
    font: inherit;
}

.site-form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
}

.site-form-field--error .site-form-label {
    color: #b91c1c;
}

.site-form-control--error,
.site-form-field--error .site-form-control {
    border-color: rgba(239, 68, 68, 0.65);
    background: rgba(254, 242, 242, 0.65);
}

.site-form-control--error:focus,
.site-form-field--error .site-form-control:focus {
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.18);
}

.site-form-field-error {
    margin: 0;
    font-size: 0.875rem;
    color: #b91c1c;
}

.site-form-checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    cursor: pointer;
}

.site-form-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.site-form-actions {
    margin-top: 0.5rem;
}

.site-form-block .site-form-inner {
    padding: clamp(1.25rem, 3vw, 2rem);
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: calc(var(--radius, 12px) + 4px);
    box-shadow: var(--shadow-md, 0 12px 32px rgba(15, 23, 42, 0.08));
}

.section-photo-gallery { padding: clamp(2.5rem, 5vw, 4rem) 0; }
.photo-gallery-title { margin: 0 0 1.5rem; }
.photo-gallery-grid { display: grid; gap: 0.85rem; }
.photo-gallery-grid--cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.photo-gallery-grid--cols-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (min-width: 768px) {
    .photo-gallery-grid--cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
.photo-gallery-item, .photo-gallery-slide {
    margin: 0; position: relative; overflow: hidden;
    border-radius: var(--radius-lg, 1rem);
    background: color-mix(in srgb, var(--primary, #0f172a) 4%, #fff);
    border: 1px solid var(--border, #e2e8f0); aspect-ratio: 4 / 3;
}
.photo-gallery-image { display: block; width: 100%; height: 100%; object-fit: cover; }
.photo-gallery-slider { position: relative; overflow: hidden; border-radius: var(--radius-lg, 1rem); }
.photo-gallery-slider-track { display: flex; transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1); }
.photo-gallery-slide { flex: 0 0 100%; aspect-ratio: 16 / 9; border: none; }
.photo-gallery-slider-btn {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 2.5rem; height: 2.5rem; border: none; border-radius: 999px;
    background: rgba(15, 23, 42, 0.72); color: #fff; font-size: 1.5rem; line-height: 1; cursor: pointer; z-index: 2;
}
.photo-gallery-slider-btn--prev { left: 0.75rem; }
.photo-gallery-slider-btn--next { right: 0.75rem; }
.photo-gallery-slider-dots { display: flex; justify-content: center; gap: 0.45rem; margin-top: 0.85rem; }
.photo-gallery-slider-dot {
    width: 0.55rem; height: 0.55rem; border: none; border-radius: 999px;
    background: color-mix(in srgb, var(--accent, #2563eb) 25%, #cbd5e1); cursor: pointer; padding: 0;
}
.photo-gallery-slider-dot.is-active { background: var(--accent, #2563eb); transform: scale(1.15); }
