/* ===================================
   Cloudynorth Custom Styles
   Mobile-First Approach
   =================================== */


:root {
    
    --primary-deep-blue: #1E3A5F;
    --primary-electric-coral: #FF6B6B;
    --primary-sage-green: #8FBC8F;
    
    
    --accent-golden-amber: #FFB84D;
    --accent-sky-azure: #4A90E2;
    --accent-lavender-mist: #B19CD9;
    
    
    --neutral-cloud-white: #F8F9FA;
    --neutral-slate-gray: #495057;
    --neutral-charcoal: #2D3748;
    --neutral-off-white: #FEFEFE;
    
    
    --gradient-primary: linear-gradient(135deg, #1E3A5F 0%, #4A90E2 100%);
    --gradient-accent: linear-gradient(135deg, #FF6B6B 0%, #FFB84D 100%);
    --gradient-overlay: linear-gradient(180deg, rgba(30, 58, 95, 0.85) 0%, rgba(74, 144, 226, 0.75) 100%);
    
    
    --font-primary: 'Lato', sans-serif;
    --font-secondary: 'Crimson Text', serif;
    
    
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2.5rem;
    --spacing-xl: 4rem;
    
    
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--neutral-charcoal);
    background-color: var(--neutral-off-white);
    line-height: 1.6;
    overflow-x: hidden;
}


h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
}

h1 {
    font-size: 2rem;
}

h2 {
    font-size: 1.75rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: var(--spacing-sm);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}


.btn-primary,
.btn-secondary,
.btn-text {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-normal);
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-accent);
    color: white;
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-deep-blue);
    border: 2px solid var(--primary-deep-blue);
}

.btn-secondary:hover {
    background: var(--primary-deep-blue);
    color: white;
}

.btn-text {
    background: transparent;
    color: var(--neutral-slate-gray);
    padding: 0.5rem 1rem;
}

.btn-text:hover {
    color: var(--primary-deep-blue);
}

.btn-full {
    width: 100%;
}


.navigation-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-logo {
    width: 40px;
    height: 40px;
}

.brand-name {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-deep-blue);
}

.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-deep-blue);
    transition: var(--transition-normal);
    border-radius: 3px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-menu {
    position: fixed;
    top: 73px;
    left: -100%;
    width: 100%;
    background: white;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.nav-menu.active {
    left: 0;
}

.nav-link {
    color: var(--neutral-charcoal);
    font-weight: 500;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-sky-azure);
    border-bottom-color: var(--accent-sky-azure);
}

.nav-cta {
    background: var(--gradient-accent);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-align: center;
}


.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 1rem 4rem;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-overlay);
    z-index: -1;
}

.hero-content {
    max-width: 1200px;
    width: 100%;
    z-index: 1;
}

.hero-text {
    text-align: center;
    color: white;
    margin-bottom: 3rem;
}

.hero-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    opacity: 0.95;
}

.hero-cta-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.hero-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--accent-sky-azure);
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: var(--primary-deep-blue);
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: var(--neutral-slate-gray);
    margin: 0;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    text-align: center;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.scroll-indicator i {
    font-size: 1.5rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}


.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 1rem;
}

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

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

.section-label {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--gradient-accent);
    color: white;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-title {
    color: var(--primary-deep-blue);
    margin-bottom: 1rem;
}

.section-intro,
.section-description {
    color: var(--neutral-slate-gray);
    font-size: 1.125rem;
    max-width: 800px;
}

.section-header.centered .section-intro {
    margin: 0 auto;
}


.platform-section {
    padding: 5rem 0;
}

.instat-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.wyscout-section {
    background: white;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.content-text {
    order: 2;
}

.content-media {
    order: 1;
}

.content-grid.reverse .content-text {
    order: 1;
}

.content-grid.reverse .content-media {
    order: 2;
}

.media-frame {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.media-image {
    width: 100%;
    height: auto;
    display: block;
}

.media-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(30, 58, 95, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-normal);
}

.media-frame:hover .media-overlay {
    opacity: 1;
}

.media-overlay i {
    font-size: 4rem;
    color: white;
}

.stats-overlay {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    display: flex;
    gap: 2rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 1.5rem;
    border-radius: 12px;
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-sky-azure);
    font-family: var(--font-secondary);
}

.stat-label {
    display: block;
    font-size: 0.875rem;
    color: var(--neutral-slate-gray);
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-item i {
    color: var(--primary-sage-green);
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.feature-item h4 {
    color: var(--primary-deep-blue);
    margin-bottom: 0.25rem;
}

.feature-item p {
    color: var(--neutral-slate-gray);
    margin: 0;
}

.info-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.info-card {
    background: var(--neutral-cloud-white);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--accent-sky-azure);
}

.info-card i {
    font-size: 2rem;
    color: var(--accent-sky-azure);
    margin-bottom: 1rem;
}

.info-card h4 {
    color: var(--primary-deep-blue);
    margin-bottom: 0.5rem;
}

.info-card p {
    color: var(--neutral-slate-gray);
    margin: 0;
}

.cta-group {
    margin-top: 2rem;
}


.youtube-section {
    background: var(--gradient-primary);
    color: white;
}

.youtube-section .section-label {
    background: rgba(255, 255, 255, 0.2);
}

.youtube-section .section-title {
    color: white;
}

.youtube-section .section-intro {
    color: rgba(255, 255, 255, 0.9);
}

.youtube-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.youtube-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition-normal);
}

.youtube-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.youtube-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--accent-golden-amber);
}

.youtube-card h3 {
    color: white;
    margin-bottom: 1rem;
}

.youtube-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.channel-features {
    list-style: none;
    padding: 0;
}

.channel-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: rgba(255, 255, 255, 0.85);
}

.channel-features li:before {
    content: "▸";
    position: absolute;
    left: 0;
    color: var(--accent-golden-amber);
}


.tactics-section {
    background: white;
}

.tactics-showcase {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.tactics-visual {
    order: 1;
}

.tactics-content {
    order: 2;
}

.tactics-image {
    width: 100%;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.formation-card {
    background: var(--neutral-cloud-white);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.formation-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(10px);
}

.formation-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.formation-header h3 {
    color: var(--primary-deep-blue);
    margin: 0;
}

.formation-badge {
    padding: 0.375rem 0.875rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    background: var(--primary-electric-coral);
    color: white;
}

.formation-badge.balanced {
    background: var(--primary-sage-green);
}

.formation-badge.defensive {
    background: var(--accent-sky-azure);
}

.formation-details {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #dee2e6;
}

.detail-item {
    margin-bottom: 0.75rem;
}

.detail-item:last-child {
    margin-bottom: 0;
}

.detail-item strong {
    color: var(--primary-deep-blue);
}


.metrics-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.metrics-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.metric-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.metric-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.metric-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.metric-icon i {
    font-size: 1.75rem;
    color: white;
}

.metric-card h3 {
    color: var(--primary-deep-blue);
    margin-bottom: 1rem;
}

.metric-description {
    color: var(--neutral-slate-gray);
    margin-bottom: 1.5rem;
}

.metric-example {
    background: var(--neutral-cloud-white);
    padding: 1rem;
    border-radius: 8px;
    border-left: 3px solid var(--accent-sky-azure);
}

.metric-example strong {
    color: var(--primary-deep-blue);
}

.metrics-visual {
    margin-top: 3rem;
}

.full-width-image {
    width: 100%;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}


.heatmap-section {
    background: white;
}

.heatmap-insights {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.insight-item {
    padding: 1.5rem;
    background: var(--neutral-cloud-white);
    border-radius: 12px;
    border-left: 4px solid var(--primary-sage-green);
}

.insight-item h4 {
    color: var(--primary-deep-blue);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.insight-item h4 i {
    color: var(--primary-sage-green);
}

.insight-item p {
    color: var(--neutral-slate-gray);
    margin: 0;
}

.visualization-note {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(74, 144, 226, 0.1);
    border-radius: 8px;
    border-left: 3px solid var(--accent-sky-azure);
}

.visualization-note p {
    margin: 0;
    color: var(--neutral-charcoal);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.visualization-note i {
    color: var(--accent-sky-azure);
    margin-top: 0.25rem;
    flex-shrink: 0;
}


.passing-network-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.network-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.network-feature {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.feature-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.feature-content h4 {
    color: var(--primary-deep-blue);
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: var(--neutral-slate-gray);
    margin: 0;
}


.resources-section {
    background: white;
}

.resources-showcase {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.resource-category {
    background: var(--neutral-cloud-white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.resource-category:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

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

.category-header i {
    font-size: 2.5rem;
    color: var(--accent-sky-azure);
}

.category-header h3 {
    color: var(--primary-deep-blue);
    margin: 0;
}

.resource-category p {
    color: var(--neutral-slate-gray);
    margin-bottom: 1.5rem;
}

.resource-list {
    list-style: none;
    padding: 0;
}

.resource-list li {
    padding: 0.75rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: var(--neutral-charcoal);
    border-bottom: 1px solid #e9ecef;
}

.resource-list li:last-child {
    border-bottom: none;
}

.resource-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-sage-green);
    font-weight: 700;
}

.resources-image {
    margin-top: 3rem;
}


.blog-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.blog-slider-wrapper {
    position: relative;
    padding: 0 0 3rem;
}

.blog-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.blog-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--gradient-accent);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.blog-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-content h3 {
    color: var(--primary-deep-blue);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.blog-content p {
    color: var(--neutral-slate-gray);
    flex: 1;
    margin-bottom: 1rem;
}

.blog-meta {
    display: flex;
    gap: 1.5rem;
    font-size: 0.875rem;
    color: var(--neutral-slate-gray);
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}


.swiper-button-prev,
.swiper-button-next {
    color: var(--accent-sky-azure);
    background: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    box-shadow: var(--shadow-md);
}

.swiper-button-prev:after,
.swiper-button-next:after {
    font-size: 1.25rem;
}

.swiper-pagination-bullet {
    background: var(--accent-sky-azure);
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
}


.survey-section {
    background: white;
}

.survey-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.survey-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.survey-form {
    background: var(--neutral-cloud-white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-deep-blue);
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid #dee2e6;
    border-radius: 8px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition-fast);
    color: var(--primary-deep-blue);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-sky-azure);
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    padding: 0.75rem;
    border-radius: 8px;
    transition: var(--transition-fast);
}

.checkbox-label:hover {
    background: rgba(74, 144, 226, 0.1);
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    cursor: pointer;
}


.contact-section {
    background: linear-gradient(135deg, #1E3A5F 0%, #4A90E2 100%);
    color: white;
}

.contact-section .section-label {
    background: rgba(255, 255, 255, 0.2);
}

.contact-section .section-title {
    color: white;
}

.contact-section .contact-description {
    color: rgba(255, 255, 255, 0.9);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-item i {
    font-size: 1.75rem;
    color: var(--accent-golden-amber);
    flex-shrink: 0;
}

.contact-item h4 {
    color: white;
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-form .form-group label {
    color: white;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}


.iti {
    width: 100%;
}

.iti__flag-container {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}


.site-footer {
    background: var(--neutral-charcoal);
    color: white;
    padding: 3rem 0 1.5rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    width: 50px;
    height: 50px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--accent-golden-amber);
}

.footer-contact li {
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.footer-contact i {
    color: var(--accent-golden-amber);
    margin-top: 0.25rem;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1rem;
}

.footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

.footer-legal-links a:hover {
    color: var(--accent-golden-amber);
}


.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.15);
    padding: 1.5rem;
    z-index: 10000;
    transform: translateY(100%);
    transition: var(--transition-normal);
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-content h3 {
    color: var(--primary-deep-blue);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.cookie-content p {
    color: var(--neutral-slate-gray);
    margin-bottom: 1.5rem;
}

.cookie-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}


.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    padding: 1rem;
    overflow-y: auto;
}

.modal-overlay.show {
    display: flex;
}

.modal-container {
    background: white;
    border-radius: 16px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
    margin: auto;
}

.modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid #dee2e6;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    color: var(--primary-deep-blue);
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--neutral-slate-gray);
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition-fast);
}

.modal-close:hover {
    background: var(--neutral-cloud-white);
}

.modal-body {
    padding: 1.5rem;
}

.modal-intro {
    color: var(--neutral-slate-gray);
    margin-bottom: 2rem;
}

.cookie-category {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--neutral-cloud-white);
    border-radius: 12px;
}

.category-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.cookie-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 28px;
    flex-shrink: 0;
}

.cookie-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: var(--transition-fast);
    border-radius: 28px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: var(--transition-fast);
    border-radius: 50%;
}

input:checked + .slider {
    background-color: var(--accent-sky-azure);
}

input:checked + .slider:before {
    transform: translateX(22px);
}

input:disabled + .slider {
    opacity: 0.5;
    cursor: not-allowed;
}

.category-header h4 {
    color: var(--primary-deep-blue);
    margin-bottom: 0.25rem;
}

.required-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--primary-sage-green);
    color: white;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.cookie-category p {
    color: var(--neutral-slate-gray);
    margin: 0;
}

.modal-footer {
    padding: 1.5rem;
    border-top: 1px solid #dee2e6;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}


.legal-page {
    padding-top: 5rem;
    min-height: 100vh;
    background: var(--neutral-cloud-white);
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 1rem;
}

.legal-container h1 {
    color: var(--primary-deep-blue);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.last-updated {
    color: var(--neutral-slate-gray);
    font-style: italic;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #dee2e6;
}

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

.legal-section h2 {
    color: var(--primary-deep-blue);
    font-size: 1.75rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-section h3 {
    color: var(--accent-sky-azure);
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-section p {
    color: var(--neutral-charcoal);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.legal-section ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.legal-section li {
    color: var(--neutral-charcoal);
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

.legal-section a {
    color: var(--accent-sky-azure);
    text-decoration: underline;
}

.legal-section a:hover {
    color: var(--primary-deep-blue);
}

.contact-details-legal {
    background: var(--neutral-cloud-white);
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 1rem;
    border-left: 4px solid var(--accent-sky-azure);
}

.contact-details-legal p {
    margin-bottom: 0.5rem;
}

.contact-details-legal p:last-child {
    margin-bottom: 0;
}

.cookie-settings-cta {
    background: var(--gradient-primary);
    color: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    margin-top: 3rem;
}

.cookie-settings-cta h3 {
    color: white;
    margin-bottom: 1rem;
}

.cookie-settings-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}


.thanks-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 1rem 4rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.thanks-container {
    max-width: 700px;
    width: 100%;
}

.thanks-content {
    background: white;
    padding: 3rem 2rem;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.thanks-icon {
    font-size: 5rem;
    color: var(--primary-sage-green);
    margin-bottom: 2rem;
}

.thanks-content h1 {
    color: var(--primary-deep-blue);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.thanks-message {
    color: var(--neutral-charcoal);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.thanks-submessage {
    color: var(--neutral-slate-gray);
    margin-bottom: 2rem;
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

.thanks-info {
    background: var(--neutral-cloud-white);
    padding: 2rem;
    border-radius: 16px;
    margin-top: 2rem;
}

.thanks-info h3 {
    color: var(--primary-deep-blue);
    margin-bottom: 1.5rem;
}

.info-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.step-item p {
    color: var(--neutral-slate-gray);
    margin: 0;
}


@media (min-width: 768px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.25rem;
    }
    
    .mobile-menu-toggle {
        display: none;
    }
    
    .nav-menu {
        position: static;
        width: auto;
        background: transparent;
        box-shadow: none;
        padding: 0;
        flex-direction: row;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .hero-cta-group {
        flex-direction: row;
    }
    
    .hero-features {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .content-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .content-text {
        order: 1;
    }
    
    .content-media {
        order: 2;
    }
    
    .content-grid.reverse .content-text {
        order: 2;
    }
    
    .content-grid.reverse .content-media {
        order: 1;
    }
    
    .info-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .youtube-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tactics-showcase {
        grid-template-columns: 1fr 1fr;
    }
    
    .tactics-visual {
        order: 1;
    }
    
    .tactics-content {
        order: 2;
    }
    
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .resources-showcase {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cookie-buttons {
        flex-direction: row;
    }
    
    .modal-footer {
        flex-direction: row;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .thanks-actions {
        flex-direction: row;
        justify-content: center;
    }
    
    .info-steps {
        flex-direction: row;
    }
}


@media (min-width: 1024px) {
    .section-container {
        padding: 6rem 2rem;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .youtube-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .info-cards {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .resources-showcase {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .footer-column:first-child {
        grid-column: span 2;
    }
}


@media (min-width: 1440px) {
    .hero-title {
        font-size: 4.5rem;
    }
}


@media print {
    .navigation-bar,
    .cookie-consent,
    .modal-overlay,
    .scroll-indicator,
    .swiper-button-prev,
    .swiper-button-next,
    .swiper-pagination {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
    }
    
    a {
        text-decoration: underline;
    }
}