/* ===================================
   ITStudioSpace.ink - Stylesheet Unico
   Location Premium per Cinema & Fotografia
   =================================== */

/* === RESET & BASE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colori Unici */
    --primary-dark: #0a0e27;
    --primary-navy: #1a1f3a;
    --accent-gold: #d4af37;
    --accent-copper: #b87333;
    --text-white: #f8f9fa;
    --text-gray: #a8b2c1;
    --border-subtle: #2a3048;
    --bg-overlay: rgba(10, 14, 39, 0.85);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #d4af37 0%, #b87333 100%);
    --gradient-dark: linear-gradient(180deg, #0a0e27 0%, #1a1f3a 100%);
    
    /* Typography */
    --font-display: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --font-accent: 'Archivo Black', sans-serif;
    
    /* Spacing */
    --section-padding: 120px 0;
    --container-max: 1400px;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background: var(--primary-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 40px;
}

.container-wide {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
}

/* === PARTICLES BACKGROUND === */
.particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    background: radial-gradient(ellipse at top, #1a1f3a 0%, #0a0e27 100%);
}

.particles-canvas::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(184, 115, 51, 0.08) 0%, transparent 50%);
}

/* === HEADER & NAVIGATION === */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 14, 39, 0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    transition: all 0.4s ease;
}

.navbar {
    padding: 20px 0;
}

.nav-wrapper {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.brand-logo:hover {
    transform: translateY(-2px);
}

.logo-img {
    width: 48px;
    height: 48px;
}

.logo-text {
    font-size: 22px;
    color: var(--text-white);
    font-weight: 400;
}

.logo-text strong {
    font-family: var(--font-accent);
    font-weight: 900;
}

.logo-text .domain {
    color: var(--accent-gold);
    font-family: var(--font-display);
    font-style: italic;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 48px;
    list-style: none;
}

.nav-item {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.3px;
    position: relative;
    transition: color 0.3s ease;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-item:hover,
.nav-item.active {
    color: var(--accent-gold);
}

.nav-item:hover::after,
.nav-item.active::after {
    width: 100%;
}

.nav-btn {
    background: var(--gradient-primary);
    color: var(--primary-dark);
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.45);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger .line {
    width: 28px;
    height: 2px;
    background: var(--accent-gold);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* === HERO SECTION === */
.hero-cinema {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.95) 0%, rgba(26, 31, 58, 0.9) 100%);
    z-index: 1;
}

.hero-grid {
    position: relative;
    z-index: 10;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    margin-bottom: 32px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-gold);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.badge-text {
    color: var(--accent-gold);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.hero-headline {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 32px;
}

.headline-top,
.headline-bottom {
    font-family: var(--font-display);
    font-size: 52px;
    font-weight: 400;
    color: var(--text-gray);
    line-height: 1.2;
}

.headline-main {
    font-family: var(--font-accent);
    font-size: 72px;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.hero-lead {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-gray);
    max-width: 580px;
    margin-bottom: 48px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 64px;
}

.cta-primary,
.cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.cta-primary {
    background: var(--gradient-primary);
    color: var(--primary-dark);
    box-shadow: 0 6px 30px rgba(212, 175, 55, 0.35);
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.5);
}

.cta-secondary {
    background: rgba(212, 175, 55, 0.1);
    color: var(--accent-gold);
    border: 2px solid var(--accent-gold);
}

.cta-secondary:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: translateY(-3px);
}

.cta-icon {
    transition: transform 0.3s ease;
}

.cta-primary:hover .cta-icon {
    transform: translateX(4px);
}

.hero-metrics {
    display: flex;
    align-items: center;
    gap: 32px;
}

.metric-box {
    display: flex;
    flex-direction: column;
}

.metric-value {
    font-family: var(--font-accent);
    font-size: 48px;
    color: var(--accent-gold);
    line-height: 1;
    margin-bottom: 8px;
}

.metric-label {
    font-size: 14px;
    color: var(--text-gray);
    font-weight: 500;
}

.metric-separator {
    width: 1px;
    height: 60px;
    background: var(--border-subtle);
}

.hero-visual-block {
    position: relative;
    height: 600px;
}

.visual-frame {
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    transition: transform 0.4s ease;
}

.visual-frame:hover {
    transform: scale(1.05);
}

.visual-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.frame-1 {
    width: 400px;
    height: 480px;
    top: 0;
    left: 0;
    z-index: 2;
}

.frame-2 {
    width: 340px;
    height: 400px;
    bottom: 0;
    right: 0;
    z-index: 1;
}

.frame-label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(10, 14, 39, 0.92);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-gold);
}

.floating-icon {
    position: absolute;
    font-size: 48px;
    animation: float 4s ease-in-out infinite;
    opacity: 0.7;
}

.icon-1 {
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.icon-2 {
    bottom: 25%;
    left: 15%;
    animation-delay: 1.3s;
}

.icon-3 {
    top: 45%;
    right: 5%;
    animation-delay: 2.6s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

.scroll-prompt {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 10;
}

.scroll-text {
    font-size: 13px;
    color: var(--text-gray);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
}

.scroll-arrow {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, var(--accent-gold), transparent);
    animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
    0%, 100% {
        opacity: 0;
        height: 0;
    }
    50% {
        opacity: 1;
        height: 40px;
    }
}

/* === SECTIONS COMMON === */
section {
    position: relative;
    z-index: 10;
    padding: var(--section-padding);
}

.section-intro,
.section-intro.centered {
    margin-bottom: 80px;
}

.section-intro.centered {
    text-align: center;
}

.section-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-gold);
    margin-bottom: 20px;
    padding: 8px 18px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 6px;
}

.section-heading {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-white);
    margin-bottom: 24px;
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtext {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
}

/* === LOCATION CATEGORIES === */
.location-categories {
    background: linear-gradient(180deg, transparent 0%, rgba(26, 31, 58, 0.3) 100%);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.category-card {
    background: rgba(26, 31, 58, 0.5);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.category-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-gold);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.2);
}

.card-media {
    position: relative;
    height: 320px;
    overflow: hidden;
}

.card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-card:hover .card-media img {
    transform: scale(1.1);
}

.media-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
}

.location-count {
    background: rgba(10, 14, 39, 0.92);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    color: var(--accent-gold);
    border: 1px solid var(--accent-gold);
}

.card-body {
    padding: 36px;
}

.card-heading {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 16px;
}

.card-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 24px;
}

.card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
}

.feature-tag {
    font-size: 13px;
    padding: 8px 16px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    color: var(--accent-gold);
    font-weight: 600;
}

.card-action {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: gap 0.3s ease;
}

.card-action:hover {
    gap: 16px;
}

.card-action svg {
    stroke-width: 2.5;
}

.section-bottom-cta {
    text-align: center;
}

.btn-expand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 20px 44px;
    background: var(--gradient-primary);
    color: var(--primary-dark);
    text-decoration: none;
    font-weight: 700;
    font-size: 17px;
    border-radius: 12px;
    box-shadow: 0 8px 35px rgba(212, 175, 55, 0.4);
    transition: all 0.3s ease;
}

.btn-expand:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 45px rgba(212, 175, 55, 0.55);
}

/* === PRODUCTION SUPPORT === */
.production-support {
    background: rgba(26, 31, 58, 0.3);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.support-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.support-intro {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 48px;
}

.services-stack {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 40px;
}

.service-row {
    display: flex;
    gap: 24px;
}

.service-icon-box {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: rgba(212, 175, 55, 0.12);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.service-row:hover .service-icon-box {
    background: rgba(212, 175, 55, 0.2);
    border-color: var(--accent-gold);
    transform: scale(1.1);
}

.service-icon-box img {
    width: 36px;
    height: 36px;
}

.service-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 10px;
}

.service-desc {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-gray);
}

.btn-text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: gap 0.3s ease;
}

.btn-text-link:hover {
    gap: 16px;
}

.support-visuals {
    position: relative;
    height: 600px;
}

.visual-box {
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    transition: transform 0.4s ease;
}

.visual-box:hover {
    transform: scale(1.05);
}

.visual-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.box-1 {
    width: 420px;
    height: 500px;
    top: 0;
    left: 0;
    z-index: 2;
}

.box-2 {
    width: 360px;
    height: 420px;
    bottom: 0;
    right: 0;
    z-index: 1;
}

.box-caption {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: rgba(10, 14, 39, 0.92);
    backdrop-filter: blur(10px);
    padding: 14px 24px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    color: var(--accent-gold);
}

.stat-bubble {
    position: absolute;
    background: var(--gradient-primary);
    border-radius: 50%;
    padding: 24px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.4);
    animation: float 3s ease-in-out infinite;
}

.bubble-1 {
    width: 120px;
    height: 120px;
    top: 15%;
    right: 5%;
}

.bubble-2 {
    width: 110px;
    height: 110px;
    bottom: 20%;
    left: 10%;
    animation-delay: 1.5s;
}

.bubble-num {
    font-family: var(--font-accent);
    font-size: 32px;
    color: var(--primary-dark);
    line-height: 1;
    margin-bottom: 6px;
}

.bubble-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* === PORTFOLIO === */
.portfolio-section {
    background: linear-gradient(180deg, rgba(26, 31, 58, 0.3) 0%, transparent 100%);
}

.portfolio-slider {
    position: relative;
    overflow: hidden;
    padding: 20px 60px;
}

.slider-wrapper {
    display: flex;
    gap: 32px;
    transition: transform 0.5s ease;
}

.portfolio-slide {
    flex: 0 0 calc(50% - 16px);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    height: 480px;
}

.portfolio-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-slide:hover img {
    transform: scale(1.1);
}

.slide-details {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px;
    background: linear-gradient(to top, rgba(10, 14, 39, 0.95) 0%, transparent 100%);
}

.slide-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent-gold);
    margin-bottom: 12px;
    padding: 6px 14px;
    background: rgba(212, 175, 55, 0.2);
    border-radius: 6px;
}

.slide-title {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 8px;
}

.slide-location {
    font-size: 15px;
    color: var(--text-gray);
    font-weight: 500;
}

.slider-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    background: rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-control:hover {
    background: var(--accent-gold);
    transform: translateY(-50%) scale(1.1);
}

.slider-control.prev {
    left: 0;
}

.slider-control.next {
    right: 0;
}

.slider-control svg {
    stroke: var(--accent-gold);
}

.slider-control:hover svg {
    stroke: var(--primary-dark);
}

/* === REQUEST FORM === */
.request-form-section {
    background: rgba(26, 31, 58, 0.4);
    border-top: 1px solid var(--border-subtle);
}

.form-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}

.form-description {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 48px;
}

.contact-blocks {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-item {
    display: flex;
    gap: 20px;
}

.contact-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.12);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon svg {
    stroke: var(--accent-gold);
}

.contact-label {
    font-size: 13px;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    display: block;
    margin-bottom: 6px;
}

.contact-value {
    font-size: 19px;
    font-weight: 700;
    color: var(--accent-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-value:hover {
    color: var(--accent-copper);
}

.request-form {
    background: rgba(26, 31, 58, 0.6);
    border: 1px solid var(--border-subtle);
    border-radius: 24px;
    padding: 48px;
    backdrop-filter: blur(20px);
}

.progress-indicator {
    margin-bottom: 40px;
}

.progress-track {
    height: 6px;
    background: rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 12px;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-primary);
    transition: width 0.5s ease;
}

.progress-label {
    font-size: 13px;
    color: var(--accent-gold);
    font-weight: 700;
}

.form-stages {
    margin-bottom: 40px;
}

.form-stage {
    display: none;
}

.form-stage.active {
    display: block;
}

.stage-heading {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 32px;
}

.option-selector {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.option-box {
    position: relative;
    cursor: pointer;
}

.option-box input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.option-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 32px 20px;
    background: rgba(42, 48, 72, 0.5);
    border: 2px solid var(--border-subtle);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.option-box:hover .option-inner {
    border-color: var(--accent-gold);
    background: rgba(212, 175, 55, 0.08);
}

.option-box input[type="radio"]:checked + .option-inner {
    border-color: var(--accent-gold);
    background: rgba(212, 175, 55, 0.15);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.2);
}

.option-emoji {
    font-size: 48px;
    line-height: 1;
}

.option-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-white);
    text-align: center;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.input-group.span-full {
    grid-column: 1 / -1;
}

.input-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-white);
    letter-spacing: 0.3px;
}

.form-control,
.form-textarea {
    width: 100%;
    padding: 16px 20px;
    background: rgba(42, 48, 72, 0.5);
    border: 2px solid var(--border-subtle);
    border-radius: 10px;
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 15px;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    background: rgba(42, 48, 72, 0.7);
}

.form-control::placeholder,
.form-textarea::placeholder {
    color: rgba(168, 178, 193, 0.5);
}

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

.checkbox-wrapper {
    display: flex;
    gap: 12px;
    cursor: pointer;
}

.checkbox-wrapper input[type="checkbox"] {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    cursor: pointer;
}

.checkbox-text {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
}

.checkbox-text a {
    color: var(--accent-gold);
    text-decoration: underline;
}

.form-navigation {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.btn-form {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    border: none;
    border-radius: 10px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-forward,
.btn-submit {
    background: var(--gradient-primary);
    color: var(--primary-dark);
    box-shadow: 0 6px 30px rgba(212, 175, 55, 0.35);
}

.btn-forward:hover,
.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.5);
}

.btn-back {
    background: rgba(212, 175, 55, 0.1);
    color: var(--accent-gold);
    border: 2px solid var(--accent-gold);
}

.btn-back:hover {
    background: rgba(212, 175, 55, 0.2);
}

/* === TESTIMONIALS === */
.testimonials-section {
    background: linear-gradient(180deg, transparent 0%, rgba(26, 31, 58, 0.3) 100%);
}

.testimonials-masonry {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.testimonial-box {
    background: rgba(26, 31, 58, 0.5);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.3s ease;
}

.testimonial-box:hover {
    transform: translateY(-8px);
    border-color: var(--accent-gold);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.15);
}

.stars-rating {
    font-size: 20px;
    color: var(--accent-gold);
    margin-bottom: 24px;
    letter-spacing: 4px;
}

.testimonial-quote {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 32px;
    font-style: italic;
}

.author-profile {
    display: flex;
    gap: 16px;
    align-items: center;
}

.author-pic {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--accent-gold);
}

.author-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-white);
    display: block;
    margin-bottom: 4px;
}

.author-title {
    font-size: 14px;
    color: var(--text-gray);
    font-weight: 500;
}

/* === FOOTER === */
.site-footer {
    background: var(--primary-navy);
    border-top: 1px solid var(--border-subtle);
    padding: 80px 0 40px;
    position: relative;
    z-index: 10;
}

.footer-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(4, 1fr);
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    margin-bottom: 24px;
}

.footer-logo img {
    width: 42px;
    height: 42px;
}

.footer-logo-text {
    font-size: 20px;
    color: var(--text-white);
}

.footer-logo-text strong {
    font-family: var(--font-accent);
    font-weight: 900;
}

.footer-logo-text span {
    color: var(--accent-gold);
    font-family: var(--font-display);
    font-style: italic;
}

.footer-about {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 32px;
}

.footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-link-contact {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-gray);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-link-contact:hover {
    color: var(--accent-gold);
}

.footer-link-contact svg {
    stroke: var(--accent-gold);
}

.footer-col-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 20px;
}

.footer-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-menu a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color: var(--accent-gold);
}

.footer-bottom-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid var(--border-subtle);
}

.footer-copyright {
    font-size: 14px;
    color: var(--text-gray);
}

.footer-socials {
    display: flex;
    gap: 16px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--accent-gold);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

/* === RESPONSIVE === */
@media (max-width: 1200px) {
    .hero-grid,
    .support-layout,
    .form-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .hero-visual-block,
    .support-visuals {
        height: 400px;
    }
    
    .categories-grid,
    .testimonials-masonry {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .headline-main {
        font-size: 48px;
    }
    
    .headline-top,
    .headline-bottom {
        font-size: 36px;
    }
    
    .section-heading {
        font-size: 38px;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-metrics {
        flex-direction: column;
        gap: 24px;
    }
    
    .option-selector,
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-slide {
        flex: 0 0 100%;
    }
    
    .footer-bottom-bar {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
}
