/* ==========================================
   Alpicapture Business Partner Landing Page
   Brand Colors: Red #E50000, Black, White
   ========================================== */

/* Font Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Open+Sans:wght@400;500;600&display=swap');

:root {
    /* Alpicapture Brand */
    --red: #E50000;
    --red-dark: #b30000;
    --red-light: #ff3333;
    --red-glow: rgba(229, 0, 0, 0.25);
    --red-subtle: rgba(229, 0, 0, 0.08);

    --black: #000000;
    --dark: #111111;
    --dark-2: #1a1a1a;
    --dark-3: #222222;
    --grey-dark: #333333;
    --grey: #555555;
    --grey-light: #f4f4f4;
    --grey-border: #e0e0e0;
    --light: #f5f5f5;
    --light-2: #f9f9f9;
    --white: #ffffff;

    /* Typography */
    --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --container: 1200px;
    --section-y: 100px;
    --radius: 16px;
    --radius-sm: 8px;
    --radius-full: 50px;

    /* Transitions */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --duration: 0.3s;
    --duration-slow: 0.8s;

    /* Creative Elements */
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-blur: blur(20px);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);

    --gradient-hero: linear-gradient(135deg, var(--white) 0%, #a1a1a1 100%);
    --gradient-red: linear-gradient(135deg, var(--red) 0%, #900000 100%);
}

/* ==========================================
   Reset & Base
   ========================================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    color: var(--dark-2);
    line-height: 1.7;
    background-color: var(--dark);
    /* Changed to dark for better glow blob visibility */
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    cursor: none;
    /* Hide real cursor to use custom one */
}

@media (max-width: 1024px) {
    body {
        cursor: auto;
        /* Show real cursor on mobile */
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--duration) var(--ease);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

/* ==========================================
   Creative Design Components
   ========================================== */

/* Custom Cursor */
.cursor-dot,
.cursor-outline {
    pointer-events: none;
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    transition: width 0.3s, height 0.3s, background-color 0.3s, opacity 0.3s;
}

.cursor-dot {
    width: 6px;
    height: 6px;
    background-color: var(--red);
}

.cursor-outline {
    width: 30px;
    height: 30px;
    border: 1px solid var(--red);
}

@media (max-width: 1024px) {

    .cursor-dot,
    .cursor-outline {
        display: none;
    }
}

/* Glow Blobs */
.glow-blob {
    position: fixed;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--red-glow) 0%, transparent 70%);
    filter: blur(80px);
    z-index: 1;
    pointer-events: none;
    opacity: 0.4;
    transition: transform 0.5s ease-out;
}

.blob-1 {
    top: -10%;
    left: -10%;
}

.blob-2 {
    bottom: -10%;
    right: -10%;
    background: radial-gradient(circle, rgba(229, 0, 0, 0.15) 0%, transparent 70%);
}

.blob-3 {
    top: 40%;
    left: 40%;
    width: 400px;
    height: 400px;
    opacity: 0.2;
}

/* Mask Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity var(--duration-slow) var(--ease), transform var(--duration-slow) var(--ease);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Gradient Text */
.gradient-text {
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* ==========================================
   Utility Classes
   ========================================== */
.text-accent {
    color: var(--red);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: var(--red-subtle);
    color: var(--red);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
    letter-spacing: 0.02em;
    font-family: var(--font-heading);
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--grey);
    line-height: 1.7;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.95rem;
    font-family: var(--font-heading);
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--duration) var(--ease);
    text-align: center;
    justify-content: center;
}

.btn-primary {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
    box-shadow: 0 4px 20px var(--red-glow);
}

.btn-primary:hover {
    background: var(--red-dark);
    border-color: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--red-glow);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--dark);
    border-color: var(--white);
}

.btn-ghost {
    background: transparent;
    color: var(--grey);
    border-color: var(--grey-border);
}

.btn-ghost:hover {
    color: var(--dark);
    border-color: var(--dark);
}

.btn-block {
    width: 100%;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1rem;
}

.btn-sm {
    padding: 10px 24px;
    font-size: 0.875rem;
}

/* Fade-up animation */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Cookie Consent Banner */
.consent-banner {
    position: fixed;
    bottom: 30px;
    right: 30px;
    max-width: 400px;
    background: #000000;
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 24px;
    z-index: 10000;
    box-shadow: var(--glass-shadow);
    transform: translateY(150%);
    transition: transform 0.6s var(--ease);
}

.consent-banner.visible {
    transform: translateY(0);
}

.consent-content p {
    font-size: 0.9rem;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.6;
}

.consent-buttons {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

@media (max-width: 576px) {
    .consent-banner {
        bottom: 20px;
        right: 20px;
        left: 20px;
        max-width: none;
    }
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--duration) var(--ease);
}

header.scrolled {
    background: rgba(0, 0, 0, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 76px;
}

.logo img {
    height: 46px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    font-family: var(--font-heading);
    position: relative;
}

.nav-link:hover {
    color: var(--white);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--red);
    transition: width var(--duration) var(--ease);
}

.nav-link:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.lang-switcher {
    display: flex;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.lang-btn {
    background: transparent;
    border: none;
    color: var(--white);
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 18px;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.lang-btn:hover {
    opacity: 1;
}

.lang-btn.active {
    background: var(--red);
    color: var(--white);
    opacity: 1;
    box-shadow: 0 4px 10px rgba(229, 0, 0, 0.3);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all var(--duration) var(--ease);
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ==========================================
   Section 1: Hero
   ========================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--dark);
    background-image: url('images/banner/bp.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    overflow: hidden;
    padding: 120px 0 80px;
}

.image-banner {
    position: relative;
    height: 500px;
    background-image: url('images/materials_2.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(229, 0, 0, 0.4) 0%, transparent 70%),
        linear-gradient(90deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.85) 100%);
    z-index: 1;
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 2;
    overflow: hidden;
}

.hero-container {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.hero-content {
    max-width: 700px;
}

.hero-tag {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(229, 0, 0, 0.15);
    border: 1px solid rgba(229, 0, 0, 0.3);
    color: var(--red-light);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: 24px;
    font-family: var(--font-heading);
    letter-spacing: 0.03em;
}

.hero h1 {
    font-size: 3.8rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero p {
    font-size: 1.25rem;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 36px;
    line-height: 1.7;
    max-width: 800px;
}

.hero-content.center-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 32px;
    padding-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    justify-content: center;
    width: 100%;
}

.hero-stat-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    padding: 35px 45px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 25px;
    transition: all var(--duration) var(--ease);
    min-width: 300px;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.hero-stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(229, 0, 0, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity var(--duration) var(--ease);
}

.hero-stat-card:hover::before {
    opacity: 1;
}

.hero-stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--red);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: var(--red-subtle);
    color: var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.hero-stat-card:hover .stat-icon {
    background: var(--red);
    color: var(--white);
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 4px;
    font-weight: 500;
}

.visual-card {
    position: relative;
    width: 400px;
    height: 500px;
    border-radius: 300px 300px 20px 20px;
    /* Creative arch shape */
    overflow: hidden;
    border: 1px solid var(--glass-border);
    transform: rotate(3deg);
    transition: all 0.8s var(--ease);
}

.visual-card:hover {
    transform: rotate(0deg) scale(1.05);
}

.visual-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.visual-floating-badge {
    position: absolute;
    bottom: 40px;
    left: -20px;
    padding: 16px 24px;
    background: var(--glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    font-weight: 600;
    box-shadow: var(--glass-shadow);
    animation: float 4s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@media (max-width: 991px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-visual {
        display: none;
    }

    .hero-actions {
        justify-content: center;
    }
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 4px;
}

/* ==========================================
   Section 2: Why Work With Us
   ========================================== */
.why-section {
    position: relative;
    padding: var(--section-y) 0;
    background-color: var(--white);
    background-image: radial-gradient(var(--red-subtle) 2px, transparent 2px);
    background-size: 40px 40px;
    color: var(--dark);
    overflow: hidden;
}

.why-visual-bg {
    position: absolute;
    top: 50%;
    right: -10%;
    width: 60%;
    height: 100%;
    background-image: url('images/Assets/p-alpicapture-swiss_map_light.jpg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center right;
    opacity: 0.15;
    pointer-events: none;
    transform: translateY(-50%);
    z-index: 0;
}

.why-section .section-header h2 {
    color: var(--black);
}

.why-section .section-header p {
    color: var(--grey-dark);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.benefit-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.5s var(--ease);
    transform-style: preserve-3d;
    perspective: 1000px;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.benefit-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--red);
}

.benefit-card:hover::before {
    opacity: 1;
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: var(--red-subtle);
    color: var(--red);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 24px;
    transform: translateZ(30px);
    transition: all var(--duration) var(--ease);
}

.benefit-card:hover .benefit-icon {
    background: var(--red);
    color: var(--white);
}

.benefit-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--black);
    font-weight: 700;
}

.benefit-card p {
    font-size: 0.95rem;
    color: var(--grey-dark);
    line-height: 1.6;
}

/* Compensation Sub-section */
.compensation-details {
    margin-top: 60px;
    padding: 48px;
    background: var(--dark-2);
    border: 1px solid var(--grey-border);
    border-radius: var(--radius);
}

.compensation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.compensation-item h4 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 20px;
}

.compensation-details .section-header h4 {
    color: var(--white);
    font-size: 2.2rem;
    font-weight: 800;
}

.compensation-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.7;
}

.compensation-item ul {
    margin-top: 15px;
    list-style: none;
}

.compensation-item ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.7);
}

.compensation-item ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--red);
}

/* ==========================================
   Section 3: Partnership Models
   ========================================== */
.models-section {
    position: relative;
    padding: var(--section-y) 0;
    background-color: var(--dark);
    background-image:
        radial-gradient(circle at 10% 10%, rgba(229, 0, 0, 0.08) 0%, transparent 40%),
        url('images/Assets/p-alpicapture-cervin_wireframe7_black.png');
    background-position: right center;
    background-repeat: no-repeat;
    background-size: cover;
    color: var(--white);
    overflow: hidden;
}

.models-section .section-header h2 {
    color: var(--white);
}

.models-section .section-header p {
    color: rgba(255, 255, 255, 0.7);
}

.models-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: stretch;
}

.model-card {
    background: var(--glass);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 40px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.5s var(--ease);
    transform-style: preserve-3d;
    box-shadow: var(--glass-shadow);
}

.model-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--red);
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.4);
}

.model-card--popular {
    border: 2px solid var(--red) !important;
    background: rgba(229, 0, 0, 0.05);
    box-shadow: 0 12px 40px var(--red-glow);
}

.model-card--popular::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius);
    background: radial-gradient(circle at top right, var(--red-glow), transparent);
    z-index: -1;
}

.model-card--popular:hover {
    box-shadow: 0 24px 64px var(--red-glow);
}

.popular-badge {
    position: absolute;
    top: -1px;
    right: 32px;
    background: var(--red);
    color: var(--white);
    padding: 6px 20px;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    font-family: var(--font-heading);
    letter-spacing: 0.02em;
}

.model-header {
    text-align: center;
    margin-bottom: 24px;
}

.model-icon {
    width: 72px;
    height: 72px;
    background: var(--red-subtle);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    font-size: 1.8rem;
    margin: 0 auto 16px;
}

.model-card--popular .model-icon {
    background: var(--red);
    color: var(--white);
}

.model-header h3 {
    font-size: 1.4rem;
    margin-bottom: 4px;
    color: var(--white);
    /* Ensure it's white on dark */
}

.model-subtitle {
    font-size: 0.85rem;
    color: var(--grey-light);
    font-weight: 500;
}

.model-price {
    text-align: center;
    padding: 16px 0;
    margin-bottom: 16px;
    border-top: 1px solid var(--grey-border);
    border-bottom: 1px solid var(--grey-border);
}

.price-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--red);
}

.price-desc {
    font-size: 0.85rem;
    color: var(--grey-light);
}

.model-desc {
    font-size: 0.93rem;
    color: var(--grey-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.model-features {
    flex: 1;
    margin-bottom: 28px;
}

.model-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.93rem;
    color: rgba(255, 255, 255, 0.8);
}

.model-features li i {
    color: var(--red);
    font-size: 1rem;
    margin-top: 3px;
    flex-shrink: 0;
    width: 24px;
    text-align: center;
}

.models-note {
    text-align: center;
    margin-top: 40px;
    color: var(--white);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.models-note i {
    color: var(--red);
}

.models-training-note {
    text-align: center;
    max-width: 800px;
    margin: 30px auto 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.7;
    padding: 24px;
    background: linear-gradient(135deg, rgba(229, 0, 0, 0.05) 0%, transparent 100%);
    border: 1px dashed rgba(229, 0, 0, 0.3);
    border-radius: var(--radius);
}

.models-training-note strong {
    color: var(--white);
    font-weight: 700;
}

/* ==========================================
   Section 3.5: Equipment & Starter Kits
   ========================================== */
.starter-kits-section {
    padding: var(--section-y) 0;
    background-color: var(--light);
    color: var(--dark);
    position: relative;
    overflow: hidden;
}

.starter-kits-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.starter-kits-image {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.kits-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform var(--duration-slow) var(--ease);
}

.starter-kits-image:hover .kits-img {
    transform: scale(1.05);
}

.starter-kits-content h2 {
    font-size: 2.8rem;
    margin-bottom: 8px;
    color: var(--black);
    font-weight: 800;
    line-height: 1.1;
}

.banner-subtitle {
    font-size: 1.25rem;
    color: var(--grey-dark);
    font-weight: 600;
    margin-bottom: 24px;
    opacity: 0.9;
}

.kits-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 32px 0;
}

.kit-feature-card {
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius-sm);
    display: flex;
    gap: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    transition: all 0.4s var(--ease);
}

.kit-feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--red);
    box-shadow: 0 12px 24px rgba(229, 0, 0, 0.08);
}

.kit-icon {
    width: 48px;
    height: 48px;
    background: var(--red-subtle);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.kit-feature-card:hover .kit-icon {
    background: var(--red);
    color: var(--white);
    transform: rotate(10deg);
}

.kit-info h4 {
    font-size: 1.05rem;
    margin-bottom: 4px;
    color: var(--black);
    font-weight: 700;
}

.kit-info p {
    font-size: 0.85rem;
    color: var(--grey-dark);
    line-height: 1.5;
    margin-bottom: 0;
}

.kits-footer {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--grey);
    margin-top: 24px;
    padding-left: 5px;
    border-left: 3px solid var(--red);
}

@media (max-width: 600px) {
    .kits-feature-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .starter-kits-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .starter-kits-image {
        order: 2;
    }
}

/* ==========================================
   Section 3.6: AC Academy
   ========================================== */
.academy-section {
    padding: var(--section-y) 0;
    background: linear-gradient(135deg, #050505 0%, #111111 100%);
    position: relative;
    overflow: hidden;
}

.academy-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(229, 0, 0, 0.05) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1;
}

.academy-container {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.academy-section .section-header {
    text-align: left;
    margin-bottom: 32px;
}

.academy-section .section-header h2 {
    color: var(--white);
    font-size: 2.8rem;
    font-weight: 800;
}

.academy-section .section-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
}

.academy-image-box {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.academy-image-box img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.academy-image-box:hover img {
    transform: scale(1.05);
}

.academy-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.6));
    pointer-events: none;
}

.academy-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 32px;
}

.academy-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 3px solid transparent;
    border-radius: var(--radius-sm);
    padding: 24px;
    text-align: left;
    transition: all 0.4s var(--ease);
}

.academy-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    border-bottom-color: var(--red);
    transform: translateX(10px);
}

.academy-level {
    font-weight: 800;
    color: var(--red);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 6px;
    display: block;
}

.academy-card h3 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 0;
}

.academy-footer {
    text-align: left;
    max-width: 100%;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    padding-left: 20px;
    border-left: 2px solid var(--red);
}

@media (max-width: 1100px) {
    .academy-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .academy-image-content {
        max-width: 600px;
        margin: 0 auto;
    }

    .academy-section .section-header,
    .academy-footer {
        text-align: center;
    }

    .academy-footer {
        border-left: none;
        padding-left: 0;
        border-top: 2px solid var(--red);
        padding-top: 20px;
        display: inline-block;
    }

    .academy-card {
        text-align: center;
    }

    .academy-card:hover {
        transform: translateY(-5px);
    }
}


/* ==========================================
   Section 4: 3 Easy Steps
   ========================================== */
.steps-section {
    padding: var(--section-y) 0;
    background-color: var(--light-2) !important;
    color: var(--dark);
    position: relative;
    z-index: 2;
}

.steps-section .section-header h2 {
    color: var(--dark);
}

.steps-section .section-header p {
    color: var(--grey);
}

.steps-section .section-tag {
    background: var(--red-subtle);
    border: 1px solid rgba(229, 0, 0, 0.1);
    color: var(--red);
}

/* Split Text Animation */
.split {
    font-size: clamp(2rem, 5rem, 3vw);
    text-align: center;
    will-change: transform;
}

.split .line {
    overflow: hidden;
    display: block;
}

.split .line>div {
    display: inline-block;
}

.steps-grid {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 0;
}

.step-card {
    text-align: center;
    padding: 40px 32px;
    border-radius: var(--radius);
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    flex: 1;
    max-width: 320px;
    position: relative;
    transition: all var(--duration) var(--ease);
    display: flex;
    flex-direction: column;
    z-index: 2;
}

.step-card:hover {
    background: var(--white);
    border-color: var(--red);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(229, 0, 0, 0.08);
}

.step-number {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 36px;
    background: var(--red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1rem;
    box-shadow: 0 4px 15px var(--red-glow);
}

.step-icon {
    width: 64px;
    height: 64px;
    background: rgba(229, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red-light);
    font-size: 1.6rem;
    margin: 16px auto 20px;
}

.step-card h3 {
    color: var(--dark);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.step-card p {
    color: var(--grey);
    font-size: 0.95rem;
    line-height: 1.6;
}

.step-connector {
    color: rgba(0, 0, 0, 0.1);
    font-size: 1.5rem;
    padding: 0 16px;
    flex-shrink: 0;
    align-self: center;
}

/* ==========================================
   Section 5: Video
   ========================================== */
.video-section {
    padding: var(--section-y) 0;
    background: var(--white);
}

.video-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.video-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--dark);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.15);
}

.video-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(ellipse at center, rgba(229, 0, 0, 0.1) 0%, transparent 60%),
        linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
    cursor: pointer;
    transition: all var(--duration) var(--ease);
    z-index: 2;
}

.video-placeholder:hover {
    background:
        radial-gradient(ellipse at center, rgba(229, 0, 0, 0.2) 0%, transparent 60%),
        linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
}

.video-play-btn {
    width: 80px;
    height: 80px;
    background: var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 20px;
    box-shadow: 0 8px 30px var(--red-glow);
    transition: all var(--duration) var(--ease);
}

.video-play-btn i {
    margin-left: 4px;
}

.video-placeholder:hover .video-play-btn {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(229, 0, 0, 0.4);
}

.video-caption h3 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.video-caption p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.video-container iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* ==========================================
   Section 6: FAQ
   ========================================== */
.faq-section {
    padding: var(--section-y) 0;
    background: var(--light);
    background-image: url('images/Assets/p-alpicapture-cervin_wireframe5.png');
    background-position: left center;
    background-repeat: no-repeat;
    background-size: contain;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    border: 1px solid var(--grey-border);
    overflow: hidden;
    transition: all var(--duration) var(--ease);
}

.faq-item:hover {
    border-color: rgba(229, 0, 0, 0.2);
}

.faq-item.active {
    border-color: var(--red);
    box-shadow: 0 4px 20px var(--red-subtle);
}

.faq-question {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    color: var(--dark);
    transition: color var(--duration) var(--ease);
    gap: 16px;
}

.faq-question:hover {
    color: var(--red);
}

.faq-question i {
    color: var(--red);
    font-size: 0.9rem;
    transition: transform var(--duration) var(--ease);
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease);
}

.faq-answer p {
    padding: 0 24px 20px;
    color: var(--grey);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ==========================================
   Section 7: Contact Form
   ========================================== */
.contact-section {
    padding: var(--section-y) 0;
    background: var(--white);
    position: relative;
    background-image: url('images/Assets/p-alpicapture-cervin_wireframe6.png');
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 300px;
    background: linear-gradient(180deg, var(--light) 0%, var(--white) 100%);
    z-index: 0;
}

.contact-section .container {
    position: relative;
    z-index: 1;
}

.form-wrapper {
    max-width: 680px;
    margin: 0 auto;
    background: var(--white);
    padding: 48px 40px;
    border-radius: var(--radius);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--grey-border);
}

/* Progress Bar */
.progress-bar {
    display: flex;
    justify-content: space-between;
    margin-bottom: 48px;
    position: relative;
}

.progress-line {
    position: absolute;
    top: 18px;
    left: 60px;
    right: 60px;
    height: 2px;
    background: var(--grey-border);
    z-index: 0;
}

.progress-line-fill {
    height: 100%;
    width: 0%;
    background: var(--red);
    transition: width 0.5s var(--ease);
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 1;
}

.step-dot {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--grey-border);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--grey-light);
    transition: all var(--duration) var(--ease);
}

.progress-step.active .step-dot {
    background: var(--red);
    border-color: var(--red);
    color: var(--white);
    box-shadow: 0 4px 15px var(--red-glow);
}

.progress-step.completed .step-dot {
    background: var(--white);
    border-color: var(--red);
    color: var(--red);
}

.step-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--grey-light);
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.progress-step.active .step-label,
.progress-step.completed .step-label {
    color: var(--red);
}

/* Form Steps */
.form-step {
    display: none;
    animation: fadeSlideIn 0.4s var(--ease);
}

.form-step.active {
    display: block;
}

@keyframes fadeSlideIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.form-step h3 {
    font-size: 1.3rem;
    margin-bottom: 28px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--grey-border);
}

.input-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--dark-2);
    font-family: var(--font-heading);
}

.input-group input,
.input-group select,
.input-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--grey-border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--dark-2);
    background: var(--light-2);
    transition: all var(--duration) var(--ease);
}

.input-group input::placeholder,
.input-group textarea::placeholder {
    color: var(--grey-light);
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
    border-color: var(--red);
    outline: none;
    box-shadow: 0 0 0 3px var(--red-subtle);
    background: var(--white);
}

.input-group textarea {
    resize: vertical;
    min-height: 100px;
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-weight: 400;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
    flex-shrink: 0;
    accent-color: var(--red);
}

.checkbox-group span {
    font-size: 0.88rem;
    color: var(--grey);
    line-height: 1.5;
}

.checkbox-group a {
    color: var(--red);
    text-decoration: underline;
}

.btn-container {
    display: flex;
    justify-content: space-between;
    margin-top: 32px;
    gap: 12px;
}

/* Form Success */
.form-success {
    text-align: center;
    padding: 40px 0;
}

.success-icon {
    font-size: 4rem;
    color: #22c55e;
    margin-bottom: 20px;
}

.form-success h3 {
    border: none;
    font-size: 1.6rem;
    margin-bottom: 16px;
    text-align: center;
}

.form-success p {
    color: var(--grey);
    font-size: 1rem;
    max-width: 400px;
    margin: 0 auto 28px;
}

/* ==========================================
   Footer
   ========================================== */
.footer {
    background-color: var(--black);
    color: var(--white);
    padding: 80px 0 40px;
    border-top: 1px solid var(--dark-3);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 40px;
}

.footer-logo {
    height: 62px;
    width: auto;
    margin-bottom: 16px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    max-width: 300px;
    line-height: 1.6;
}

.footer-links h4 {
    color: var(--white);
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.footer-links a,
.footer-links p {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.88rem;
    padding: 4px 0;
    transition: color var(--duration) var(--ease);
}

.footer-links a:hover {
    color: var(--red-light);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.85rem;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    transition: all var(--duration) var(--ease);
}

.footer-social a:hover {
    background: var(--red);
    border-color: var(--red);
    color: var(--white);
}

/* ==========================================
   Responsive
   ========================================== */
@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .models-grid,
    .academy-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .compensation-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-y: 70px;
    }

    /* Mobile Nav */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--dark);
        flex-direction: column;
        padding: 100px 32px 32px;
        gap: 0;
        transition: right var(--duration) var(--ease);
        border-left: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
        z-index: 999;
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links .nav-link {
        padding: 16px 0;
        font-size: 1.1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        width: 100%;
    }

    .nav-links .nav-link::after {
        display: none;
    }

    .nav-links .btn {
        margin-top: 16px;
        width: 100%;
    }

    .hamburger {
        display: flex;
    }

    /* Hero */
    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .hero h1 {
        font-size: 2.4rem;
    }

    .hero p {
        font-size: 1.05rem;
    }

    .hero-stats {
        gap: 24px;
        flex-wrap: wrap;
    }

    .stat-number {
        font-size: 1.6rem;
    }

    /* Sections */
    .section-header h2 {
        font-size: 1.9rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    /* Steps */
    .steps-grid {
        flex-direction: column;
        gap: 32px;
    }

    .step-connector {
        transform: rotate(90deg);
        padding: 0;
    }

    .step-card {
        max-width: 100%;
        width: 100%;
    }

    /* Form */
    .form-wrapper {
        padding: 32px 24px;
    }

    .input-row {
        grid-template-columns: 1fr;
    }

    .btn-container {
        flex-direction: column-reverse;
    }

    .progress-line {
        left: 40px;
        right: 40px;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-stats {
        gap: 16px;
    }

    .progress-line {
        left: 24px;
        right: 24px;
    }

    .step-label {
        font-size: 0.65rem;
    }
}