/* International Clients — ulvlspace */
/* Строго по системному промпту: стриманий люкс, технологічне довір'я */

.international-page {
    padding-top: 0;
}

/* ===========================
   HERO SECTION
   =========================== */
.international-page .hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--bg-main);
    overflow: hidden;
}

.international-page .hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0E1117 0%, #1a1f2e 100%);
}

.international-page .hero-image {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?w=1200&q=80') center/cover no-repeat;
    opacity: 0.6;
}

.international-page .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(14,17,23,0.7) 0%, rgba(14,17,23,0.5) 50%, rgba(14,17,23,0.85) 100%);
}

.international-page .hero-content {
    position: relative;
    max-width: 700px;
    z-index: 2;
}

.international-page .hero-content h1 {
    font-family: var(--font-heading, 'Manrope'), sans-serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--text-main);
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.international-page .hero-subtitle {
    font-family: var(--font-body, 'Inter'), sans-serif;
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.7;
    max-width: 600px;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.international-page .hero-subtitle .subtitle-main {
    color: rgba(240,238,229,0.85);
    font-weight: 500;
}

.international-page .hero-subtitle .subtitle-detail {
    color: rgba(240,238,229,0.6);
    font-weight: 400;
    font-size: 0.9em;
}

.international-page .hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-gold);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

/* ===========================
   SECTIONS
   =========================== */
.section {
    padding: 100px 0;
}

.container {
    max-width: 1280px;
    margin: auto;
    padding: 0 24px;
}

.section-header {
    margin-bottom: 3rem;
}

.section-title {
    font-family: var(--font-heading, 'Manrope'), sans-serif;
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 600;
    letter-spacing: -0.015em;
    line-height: 1.2;
    color: var(--text-main);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-family: var(--font-body, 'Inter'), sans-serif;
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 700px;
}

.sub-section-title {
    font-family: var(--font-heading, 'Manrope'), sans-serif;
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 2rem;
}

/* ===========================
   ADVANTAGES GRID (Glassmorphism)
   =========================== */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 3rem;
}

.advantage-card {
    display: flex;
    flex-direction: column;
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    transition: transform 0.3s cubic-bezier(0.22, 0.61, 0.36, 1), border-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
    position: relative;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, rgba(200,169,110,0), rgba(200,169,110,0.6) 50%, rgba(200,169,110,0));
    border-radius: 20px 20px 0 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-5px);
    border-color: rgba(200,169,110,0.3);
    box-shadow: 0 20px 40px rgba(0,0,0,0.35);
}

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

.advantage-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(200,169,110,0.08);
    color: var(--accent-gold);
    margin-bottom: 1.25rem;
    flex-shrink: 0;
}

.advantage-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.advantage-header .advantage-icon {
    margin-bottom: 0;
    flex-shrink: 0;
}

.advantage-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: -0.01em;
    margin-bottom: 0.75rem;
}

.advantage-header h3 {
    margin-bottom: 0;
}

.advantage-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.65;
    flex: 1;
}

/* ===========================
   INCLUDES LIST
   =========================== */
.includes-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 3rem;
}

.include-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 20px;
    transition: border-color 0.3s ease;
}

.include-item:hover {
    border-color: rgba(200,169,110,0.3);
}

.include-heading {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.include-heading .include-number {
    font-size: 2rem;
    line-height: 1;
}

.include-heading h3 {
    margin-bottom: 0;
}

/* Style: gold circle */
.include-heading--circle {
    align-items: center;
}

.include-heading--circle .include-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(200,169,110,0.12);
    font-family: var(--font-heading, 'Manrope'), sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent-gold);
    opacity: 1;
    flex-shrink: 0;
}

/* Style: gold with accent line */
.include-heading--line {
    border-bottom: 1px solid rgba(200,169,110,0.15);
    padding-bottom: 0.75rem;
}

.include-heading--line .include-number {
    font-family: var(--font-display, 'Playfair Display'), serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--accent-gold);
    opacity: 0.7;
    line-height: 1;
    flex-shrink: 0;
}

.include-number {
    font-family: var(--font-display, 'Playfair Display'), serif;
    font-size: 2.5rem;
    color: var(--accent-gold);
    opacity: 0.4;
    line-height: 1;
    flex-shrink: 0;
}

/* Stage timeline heading */
.stage-heading {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.stage-heading .stage-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(200,169,110,0.15), rgba(200,169,110,0.05));
    font-family: var(--font-heading, 'Manrope'), sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent-gold);
    opacity: 1;
    margin-bottom: 0;
    flex-shrink: 0;
}

.stage-heading h3 {
    margin-bottom: 0;
}

.stage-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.include-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.include-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===========================
   STAGES TIMELINE
   =========================== */
.stages-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 3rem;
}

.stage-item {
    padding: 1.5rem;
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 20px;
    position: relative;
    transition: border-color 0.3s ease;
}

.stage-item:hover {
    border-color: rgba(200,169,110,0.3);
}

.stage-item p {
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 0.75rem;
}

.stage-result {
    display: inline-block;
    font-size: 0.8rem;
    color: var(--accent-gold);
    padding: 0.25rem 0.75rem;
    border: 1px solid rgba(200,169,110,0.3);
    border-radius: 20px;
    background: rgba(200,169,110,0.05);
}

.stages-note {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-top: 2rem;
    font-style: italic;
}

/* ===========================
   TARIFFS / PAYMENT METHODS
   =========================== */
.tariffs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 2rem;
}

.tariff-card {
    padding: 2rem;
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 20px;
    transition: transform 0.3s cubic-bezier(0.22, 0.61, 0.36, 1), border-color 0.3s ease;
    will-change: transform;
}

.tariff-card:hover {
    transform: translateY(-5px);
    border-color: rgba(200,169,110,0.3);
}

.tariff-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.tariff-price {
    font-size: 1.5rem;
    background: linear-gradient(135deg, #C8A96E 0%, #D4B87A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.tariff-target {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ===========================
   FAQ
   =========================== */
.faq-list {
    margin-top: 2rem;
}

.faq-item {
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-body, 'Inter'), sans-serif;
    transition: color 0.3s ease;
}

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

.faq-question svg {
    flex-shrink: 0;
    transition: transform 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
    color: var(--accent-gold);
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.22, 0.61, 0.36, 1), padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 600px;
    padding-bottom: 1.25rem;
}

.faq-answer p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===========================
   CTA SECTION
   =========================== */
.cta-section {
    background: linear-gradient(135deg, rgba(200, 169, 110, 0.05) 0%, transparent 100%);
}

.cta-content {
    text-align: center;
    padding: 3rem 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 1rem;
    letter-spacing: -0.015em;
}

.cta-content p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.alt-contact {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255,255,255,0.04);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.06);
}

.alt-contact p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.alt-contact a {
    color: var(--accent-gold);
    text-decoration: none;
}

.alt-contact a:hover {
    text-decoration: underline;
}

/* ===========================
   BUTTONS
   =========================== */


.btn-outline {
    background: rgba(255,255,255,0.04);
    color: var(--accent-gold);
    border: 1px solid rgba(200,169,110,0.4);
    backdrop-filter: blur(24px) saturate(180%);
    transition: all 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
    padding: 0.875rem 1.75rem;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-family: var(--font-body, 'Inter'), sans-serif;
    font-size: 1rem;
    text-decoration: none;
}

.btn-outline:hover {
    background: rgba(200,169,110,0.1);
    color: var(--text-main);
    border-color: rgba(200,169,110,0.6);
}

/* ===========================
   SEO TEXT
   =========================== */
.seo-text p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* ===========================
   SCROLL MARGIN (Fixed Header Offset)
   =========================== */
.international-page section[id] {
    scroll-margin-top: 100px;
}

/* ===========================
   FOCUS VISIBLE
   =========================== */
.faq-question:focus-visible,
.btn-outline:focus-visible,
.tariff-card:focus-visible {
    outline: 2px solid var(--accent-gold);
    outline-offset: 3px;
}

/* ===========================
   UTILITY CLASSES
   =========================== */
.international-page .sub-section-title--offset {
    margin-top: 3rem;
}

.international-page .include-item--stacked {
    flex-direction: column;
    gap: 1.5rem;
}

.international-page .portfolio-testimonial {
    margin-top: 1rem;
}

.international-page .hero-title {
    max-width: 700px;
}

/* ===========================
   ANIMATIONS
   =========================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
    .international-page .hero {
        min-height: 100dvh;
        padding: 130px 0 90px;
    }
}

@media (max-width: 768px) {
    .international-page .hero {
        min-height: 100dvh;
        padding: 90px 0 80px;
    }
    .international-page .hero-content h1 {
        font-size: clamp(36px, 5vw, 56px);
        letter-spacing: -0.02em;
    }

    .international-page .hero-subtitle {
        font-size: 1rem;
    }

    .hero-actions,
    .cta-buttons {
        flex-direction: column;
    }

    .hero-actions .btn,
    .cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .include-item {
        flex-direction: column;
        gap: 0.75rem;
    }

    .section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .international-page .hero {
        min-height: 100dvh;
        padding: 90px 0 70px;
    }

    .international-page .hero-content h1 {
        font-size: clamp(28px, 8vw, 36px);
    }

    .international-page .hero-subtitle {
        font-size: 0.9rem;
    }

    .hero-badge {
        font-size: 0.8rem;
    }

    .section {
        padding: 40px 0;
    }

    .section-title {
        font-size: clamp(24px, 6vw, 28px);
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

    .stages-timeline {
        grid-template-columns: 1fr;
    }

    .advantages-grid,
    .tariffs-grid {
        grid-template-columns: 1fr;
    }

    .include-item {
        padding: 1.25rem;
    }

    .advantage-card {
        padding: 1.25rem;
    }

    .advantage-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 1rem;
    }

    .advantage-icon svg {
        width: 22px;
        height: 22px;
    }

    .advantage-card h3 {
        font-size: 1.05rem;
    }

    .advantage-card p {
        font-size: 0.9rem;
    }

    .tariff-card {
        padding: 1.5rem;
    }

    .cta-content {
        padding: 2rem 1rem;
    }
}
