:root {
    --primary-color: #ff006e;
    --primary-light: #ffe6f2;
    --primary-dark: #b8004f;
    --secondary-color: #8338ec;
    --secondary-light: #e6d5ff;
    --tertiary-color: #ffbe0b;
    --tertiary-light: #fff3cc;
    --accent-color: #fb5607;
    --accent-light: #ffe5db;
    --neutral-color: #6c757d;
    --neutral-light: #f8f9fa;
    --info-color: #3a86ff;
    --warning-color: #ff006e;
    --success-color: #06ffa5;
    --dark-bg: #1a1a1a;
    --darker-bg: #0d1117;
    --card-bg: #21262d;
    --text-light: #f0f6fc;
    --text-muted: #8b949e;
    --border-color: #30363d;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    background-color: var(--darker-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.topnavigation {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(13, 17, 23, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.navigation-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-container {
    display: flex;
    align-items: center;
}

.company-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-light);
}

.company-logo img {
    width: 42px;
    height: 42px;
    margin-right: 12px;
    border-radius: 6px;
}

.brand-text {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.main-navigation {
    display: flex;
    list-style: none;
    gap: 32px;
    margin: 0;
    padding: 0;
}

.nav-link {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    font-size: 16px;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
    background-color: rgba(255, 0, 110, 0.1);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-light);
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mainblock {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.topsection-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(13, 17, 23, 0.9));
    z-index: 1;
}

.slide-content.active {
    opacity: 1;
}

.slide-content[data-bg] {
    background-image: url('');
}

.content-wrapper {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    width: 100%;
    padding: 0 20px;
    margin: 0 auto;
}

.text-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
}

.primary-content {
    text-align: center;
    max-width: 800px;
    animation: slideUp 0.8s ease-out;
}

.subtitle-text {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
    opacity: 0.9;
}

.main-title {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 700;
    color: var(--text-light);
    line-height: 1.2;
    margin-bottom: 24px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.description-text {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    text-decoration: none;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 0, 110, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 0, 110, 0.4);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 100%;
    padding: 0 40px;
    pointer-events: none;
}

.prev-slide,
.next-slide {
    position: absolute;
    background: rgba(255, 0, 110, 0.8);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prev-slide {
    left: 0;
}

.next-slide {
    right: 0;
}

.prev-slide:hover,
.next-slide:hover {
    background: var(--primary-color);
    transform: scale(1.1);
}

.slide-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 3;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .main-navigation {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--darker-bg);
        flex-direction: column;
        gap: 0;
        padding: 20px;
        border-top: 1px solid var(--border-color);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
    }
    
    .main-navigation.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .nav-link {
        padding: 12px 0;
        border-bottom: 1px solid var(--border-color);
    }
    
    .main-title {
        font-size: 42px;
    }
    
    .subtitle-text {
        font-size: 16px;
    }
    
    .description-text {
        font-size: 16px;
    }
    
    .slider-controls {
        padding: 0 20px;
    }
    
    .prev-slide,
    .next-slide {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 36px;
    }
    
    .navigation-wrapper {
        padding: 0 15px;
    }
    
    .brand-text {
        font-size: 20px;
    }
    
    .company-logo img {
        width: 36px;
        height: 36px;
    }
}


















/* Warning Block (Antihero Section) */
.warning-block {
    background: linear-gradient(135deg, var(--darker-bg) 0%, #1a1a1a 50%, var(--darker-bg) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.warning-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(255, 0, 110, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.content-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.warning-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: center;
}

.section-header {
    margin-bottom: 48px;
    text-align: left;
}

.warning-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
    margin-bottom: 16px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.warning-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    font-weight: 400;
    line-height: 1.5;
}

.scenarios-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: 48px;
}

.scenario-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: rgba(33, 38, 45, 0.6);
    border-radius: 12px;
    border-left: 4px solid var(--warning-color);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.scenario-item:hover {
    transform: translateX(8px);
    background: rgba(33, 38, 45, 0.8);
    box-shadow: 0 6px 25px rgba(255, 0, 110, 0.15);
}

.scenario-icon {
    font-size: 24px;
    min-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 0, 110, 0.1);
    border-radius: 8px;
    margin-top: 2px;
}

.scenario-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 8px;
    line-height: 1.3;
}

.scenario-content p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.reality-check {
    background: linear-gradient(135deg, rgba(255, 0, 110, 0.1), rgba(251, 86, 7, 0.1));
    border-radius: 16px;
    padding: 36px;
    border: 1px solid rgba(255, 0, 110, 0.2);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.reality-check::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.check-question {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.4;
}

.check-description {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 28px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.action-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--warning-color), #d63384);
    color: white;
    text-decoration: none;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 0, 110, 0.3);
    position: relative;
    overflow: hidden;
}

.action-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 0, 110, 0.4);
    background: linear-gradient(135deg, #d63384, var(--warning-color));
}

.image-section {
    position: relative;
}

.warning-image-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.warning-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    filter: grayscale(20%) brightness(0.8);
    transition: all 0.3s ease;
}

.warning-image-container:hover .warning-image {
    filter: grayscale(0%) brightness(0.9);
    transform: scale(1.02);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 40px 24px 24px;
    color: white;
}

.overlay-text {
    text-align: center;
}

.overlay-stat {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-family: 'Playfair Display', serif;
}

.overlay-text p {
    font-size: 16px;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .warning-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .section-header {
        text-align: center;
    }
    
    .image-section {
        order: -1;
    }
    
    .warning-image-container {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .warning-block {
        padding: 60px 0;
    }
    
    .warning-title {
        font-size: 32px;
    }
    
    .warning-subtitle {
        font-size: 16px;
    }
    
    .scenario-item {
        padding: 20px;
        gap: 16px;
    }
    
    .scenario-content h3 {
        font-size: 18px;
    }
    
    .scenario-content p {
        font-size: 15px;
    }
    
    .reality-check {
        padding: 28px 20px;
    }
    
    .check-question {
        font-size: 20px;
    }
    
    .warning-image {
        height: 300px;
    }
    
    .overlay-stat {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .content-container {
        padding: 0 15px;
    }
    
    .scenario-item {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .scenario-icon {
        align-self: center;
    }
    
    .warning-title {
        font-size: 28px;
    }
    
    .action-button {
        padding: 14px 24px;
        font-size: 14px;
    }
}




















/* Solution Block */
.solution-block {
    background: linear-gradient(135deg, var(--dark-bg) 0%, rgba(13, 17, 23, 0.95) 50%, var(--dark-bg) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.solution-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(6, 255, 165, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.solution-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.solution-grid {
    display: grid;
    grid-template-columns: 450px 1fr;
    gap: 70px;
    align-items: center;
}

.solution-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(6, 255, 165, 0.15);
}

.solution-image {
    width: 100%;
    height: 550px;
    object-fit: cover;
    filter: brightness(1.1) saturate(1.1);
    transition: all 0.4s ease;
}

.solution-image-container:hover .solution-image {
    transform: scale(1.03);
    filter: brightness(1.2) saturate(1.2);
}

.success-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    background: linear-gradient(135deg, var(--success-color), #00d084);
    padding: 16px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    backdrop-filter: blur(10px);
    box-shadow: 0 6px 20px rgba(6, 255, 165, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.badge-icon {
    font-size: 20px;
}

.badge-text strong {
    display: block;
    color: white;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
}

.badge-text p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 12px;
    line-height: 1.2;
}

.solution-header {
    margin-bottom: 48px;
}

.breakthrough-indicator {
    display: inline-block;
    background: linear-gradient(135deg, var(--success-color), var(--info-color));
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(6, 255, 165, 0.2);
}

.solution-title {
    font-family: 'Playfair Display', serif;
    font-size: 44px;
    font-weight: 700;
    color: var(--text-light);
    line-height: 1.2;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--text-light), var(--success-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.solution-subtitle {
    font-size: 20px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 0;
}

.future-vision {
    display: grid;
    gap: 24px;
    margin-bottom: 50px;
}

.vision-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: rgba(33, 38, 45, 0.4);
    border-radius: 16px;
    border-left: 4px solid var(--success-color);
    transition: all 0.4s ease;
    backdrop-filter: blur(8px);
}

.vision-item:hover {
    transform: translateX(10px);
    background: rgba(33, 38, 45, 0.7);
    box-shadow: 0 8px 30px rgba(6, 255, 165, 0.15);
    border-left-width: 6px;
}

.vision-icon {
    font-size: 28px;
    min-width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(6, 255, 165, 0.2), rgba(58, 134, 255, 0.2));
    border-radius: 12px;
    margin-top: 2px;
}

.vision-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 10px;
    line-height: 1.3;
}

.vision-content p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.webinar-connection {
    background: linear-gradient(135deg, rgba(58, 134, 255, 0.1), rgba(6, 255, 165, 0.1));
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(58, 134, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.webinar-connection::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.03), transparent);
    animation: shimmerSlow 4s infinite;
}

@keyframes shimmerSlow {
    0% { left: -100%; }
    100% { left: 100%; }
}

.connection-title {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 600;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 32px;
    line-height: 1.4;
}

.webinar-highlight {
    text-align: center;
    margin-bottom: 36px;
}

.webinar-label {
    display: block;
    color: var(--info-color);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.webinar-name h4 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.3;
}

.webinar-promise p {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

.transformation-preview {
    display: grid;
    gap: 16px;
    margin-bottom: 36px;
}

.preview-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: rgba(58, 134, 255, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(58, 134, 255, 0.2);
}

.preview-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--info-color), var(--success-color));
    color: white;
    font-size: 14px;
    font-weight: 700;
    border-radius: 8px;
    min-width: 32px;
}

.preview-item p {
    font-size: 16px;
    color: var(--text-light);
    margin: 0;
    font-weight: 500;
}

.webinar-cta {
    display: block;
    background: linear-gradient(135deg, var(--info-color), var(--success-color));
    color: white;
    text-decoration: none;
    padding: 20px 40px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 6px 25px rgba(58, 134, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.webinar-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(58, 134, 255, 0.4);
}

.webinar-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.webinar-cta:hover::before {
    left: 100%;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .solution-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .image-section {
        text-align: center;
    }
    
    .solution-image-container {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .solution-header {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .solution-block {
        padding: 70px 0;
    }
    
    .solution-title {
        font-size: 34px;
    }
    
    .solution-subtitle {
        font-size: 18px;
    }
    
    .vision-item {
        padding: 20px;
        gap: 16px;
    }
    
    .vision-content h3 {
        font-size: 20px;
    }
    
    .vision-content p {
        font-size: 15px;
    }
    
    .webinar-connection {
        padding: 30px 24px;
    }
    
    .connection-title {
        font-size: 22px;
    }
    
    .webinar-name h4 {
        font-size: 24px;
    }
    
    .webinar-promise p {
        font-size: 16px;
    }
    
    .solution-image {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .solution-container {
        padding: 0 15px;
    }
    
    .vision-item {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .vision-icon {
        align-self: center;
    }
    
    .webinar-cta {
        padding: 16px 32px;
        font-size: 16px;
    }
    
    .transformation-preview {
        gap: 12px;
    }
    
    .preview-item {
        padding: 14px 16px;
        gap: 12px;
    }
}

















/* Benefits Block */
.benefits-block {
    background: linear-gradient(135deg, var(--darker-bg) 0%, #161b22 50%, var(--darker-bg) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.benefits-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(58, 134, 255, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.benefits-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 70px;
    align-items: start;
}

.section-header {
    text-align: left;
    margin-bottom: 50px;
}

.benefits-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--text-light);
    line-height: 1.2;
    margin-bottom: 16px;
}

.benefits-subtitle {
    font-size: 20px;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 600px;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 50px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 28px;
    background: rgba(33, 38, 45, 0.5);
    border-radius: 16px;
    border: 1px solid rgba(58, 134, 255, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--info-color), var(--primary-color));
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.4s ease;
}

.benefit-item:hover {
    background: rgba(33, 38, 45, 0.8);
    border-color: rgba(58, 134, 255, 0.3);
    transform: translateX(8px);
    box-shadow: 0 8px 30px rgba(58, 134, 255, 0.12);
}

.benefit-item:hover::before {
    transform: scaleY(1);
}

.benefit-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--info-color), var(--primary-color));
    color: white;
    font-size: 18px;
    font-weight: 700;
    border-radius: 12px;
    min-width: 48px;
    box-shadow: 0 4px 15px rgba(58, 134, 255, 0.3);
}

.benefit-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--text-light);
    line-height: 1.3;
    margin-bottom: 12px;
}

.benefit-content p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

.results-guarantee {
    background: linear-gradient(135deg, rgba(58, 134, 255, 0.08), rgba(255, 0, 110, 0.08));
    border-radius: 20px;
    padding: 36px;
    border: 1px solid rgba(58, 134, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.results-guarantee::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.02), transparent);
    animation: guaranteeShimmer 5s infinite;
}

@keyframes guaranteeShimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.guarantee-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 600;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 16px;
}

.guarantee-content > p {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.6;
    text-align: center;
    margin-bottom: 28px;
}

.guarantee-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(58, 134, 255, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(58, 134, 255, 0.2);
}

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: var(--info-color);
    margin-bottom: 8px;
    font-family: 'Playfair Display', serif;
}

.stat-item p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.4;
    margin: 0;
}

.benefits-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    margin-bottom: 30px;
}

.benefits-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    filter: brightness(1.1) saturate(1.1);
    transition: all 0.4s ease;
}

.benefits-image-container:hover .benefits-image {
    transform: scale(1.03);
    filter: brightness(1.2) saturate(1.2);
}

.value-indicator {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
}

.value-amount {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: var(--success-color);
    margin-bottom: 6px;
    font-family: 'Playfair Display', serif;
}

.value-indicator p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.3;
}

.additional-benefits {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.bonus-item {
    padding: 20px;
    background: rgba(33, 38, 45, 0.6);
    border-radius: 12px;
    border: 1px solid rgba(58, 134, 255, 0.1);
    transition: all 0.3s ease;
}

.bonus-item:hover {
    background: rgba(33, 38, 45, 0.8);
    border-color: rgba(58, 134, 255, 0.3);
    transform: translateY(-2px);
}

.bonus-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--info-color);
    margin-bottom: 6px;
    line-height: 1.3;
}

.bonus-item p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .section-header {
        text-align: center;
    }
    
    .image-section {
        order: -1;
        text-align: center;
    }
    
    .benefits-image-container {
        max-width: 500px;
        margin: 0 auto 30px;
    }
    
    .additional-benefits {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .benefits-block {
        padding: 70px 0;
    }
    
    .benefits-title {
        font-size: 32px;
    }
    
    .benefits-subtitle {
        font-size: 18px;
    }
    
    .benefit-item {
        padding: 24px;
        gap: 20px;
    }
    
    .benefit-number {
        width: 40px;
        height: 40px;
        font-size: 16px;
        min-width: 40px;
    }
    
    .benefit-content h3 {
        font-size: 20px;
    }
    
    .benefit-content p {
        font-size: 15px;
    }
    
    .results-guarantee {
        padding: 28px 24px;
    }
    
    .guarantee-content h3 {
        font-size: 22px;
    }
    
    .guarantee-content > p {
        font-size: 16px;
    }
    
    .guarantee-stats {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .benefits-image {
        height: 300px;
    }
    
    .value-amount {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .benefits-container {
        padding: 0 15px;
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
        gap: 16px;
        padding: 20px;
    }
    
    .benefit-number {
        align-self: center;
    }
    
    .benefits-title {
        font-size: 28px;
    }
    
    .additional-benefits {
        gap: 12px;
    }
    
    .bonus-item {
        padding: 16px;
    }
    
    .stat-number {
        font-size: 30px;
    }
}













/* Audience Block */
.audience-block {
    background: linear-gradient(135deg, var(--darker-bg) 0%, #0f1419 50%, var(--darker-bg) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.audience-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(255, 0, 110, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(58, 134, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.audience-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.audience-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--text-light);
    line-height: 1.2;
    margin-bottom: 16px;
}

.audience-subtitle {
    font-size: 20px;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 28px;
    margin-bottom: 80px;
}

.audience-card {
    background: rgba(33, 38, 45, 0.6);
    border-radius: 20px;
    padding: 32px 28px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.audience-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 0, 110, 0.05), rgba(58, 134, 255, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.audience-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 0, 110, 0.3);
    box-shadow: 0 12px 40px rgba(255, 0, 110, 0.15);
}

.audience-card:hover::before {
    opacity: 1;
}

.card-icon {
    font-size: 48px;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.audience-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}

.audience-card p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.card-highlight {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 2;
}

/* Pricing Section */
.pricing-section {
    margin-top: 80px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 50px;
}

.pricing-title {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    font-weight: 700;
    color: var(--text-light);
    line-height: 1.2;
    margin-bottom: 16px;
}

.pricing-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-bottom: 50px;
}

.pricing-card {
    background: rgba(33, 38, 45, 0.8);
    border-radius: 24px;
    padding: 36px 28px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    overflow: hidden;
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
    box-shadow: 0 16px 50px rgba(255, 0, 110, 0.2);
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-6px);
}

.plan-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.basic .plan-badge {
    background: rgba(108, 117, 125, 0.2);
    color: var(--neutral-color);
}

.premium .plan-badge {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
}

.premium .plan-badge.popular::after {
    content: ' 🔥';
}

.vip .plan-badge {
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    color: #1a1a1a;
}

.plan-name {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 16px;
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 12px;
    gap: 4px;
}

.currency {
    font-size: 24px;
    color: var(--text-muted);
    font-weight: 600;
}

.amount {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-light);
    font-family: 'Playfair Display', serif;
}

.period {
    font-size: 14px;
    color: var(--text-muted);
    align-self: flex-end;
    margin-bottom: 8px;
}

.plan-description {
    font-size: 16px;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 28px;
    line-height: 1.5;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
}

.plan-features li {
    padding: 8px 0;
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.5;
    position: relative;
    padding-left: 24px;
}

.plan-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 8px;
    color: var(--success-color);
    font-weight: 700;
    font-size: 14px;
}

.plan-button {
    width: 100%;
    padding: 16px 24px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.basic-btn {
    background: linear-gradient(135deg, var(--neutral-color), #495057);
    color: white;
}

.premium-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
}

.vip-btn {
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    color: #1a1a1a;
}

.plan-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.savings-badge {
    position: absolute;
    top: -8px;
    right: 20px;
    background: var(--success-color);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    transform: rotate(15deg);
}

.guarantee-footer {
    text-align: center;
    padding: 40px;
    background: rgba(58, 134, 255, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(58, 134, 255, 0.2);
}

.guarantee-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 12px;
}

.guarantee-content p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .audience-block {
        padding: 70px 0;
    }
    
    .audience-title {
        font-size: 32px;
    }
    
    .audience-subtitle {
        font-size: 18px;
    }
    
    .audience-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 60px;
    }
    
    .audience-card {
        padding: 28px 24px;
    }
    
    .card-icon {
        font-size: 40px;
        margin-bottom: 16px;
    }
    
    .audience-card h3 {
        font-size: 22px;
    }
    
    .pricing-title {
        font-size: 30px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .pricing-card.featured {
        transform: none;
        order: -1;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-6px);
    }
    
    .plan-name {
        font-size: 24px;
    }
    
    .amount {
        font-size: 40px;
    }
    
    .guarantee-footer {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .audience-container {
        padding: 0 15px;
    }
    
    .audience-title {
        font-size: 28px;
    }
    
    .audience-card {
        padding: 24px 20px;
    }
    
    .pricing-card {
        padding: 28px 20px;
    }
    
    .plan-price {
        flex-direction: column;
        gap: 0;
    }
    
    .currency {
        font-size: 20px;
    }
    
    .amount {
        font-size: 36px;
    }
}










/* Contact Block */
.contact-block {
    background: linear-gradient(135deg, var(--darker-bg) 0%, #161b22 50%, var(--darker-bg) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.contact-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 0, 110, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--text-light);
    line-height: 1.2;
    margin-bottom: 16px;
}

.contact-subtitle {
    font-size: 20px;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Info Section */
.contact-info-section {
    margin-bottom: 80px;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.info-card {
    background: rgba(33, 38, 45, 0.6);
    border-radius: 16px;
    padding: 28px 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.info-card:hover {
    background: rgba(33, 38, 45, 0.8);
    border-color: rgba(255, 0, 110, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(255, 0, 110, 0.1);
}

.info-icon {
    font-size: 32px;
    min-width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 0, 110, 0.2), rgba(58, 134, 255, 0.2));
    border-radius: 12px;
}

.info-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 6px;
    line-height: 1.3;
}

.info-content p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

.info-content a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-content a:hover {
    color: var(--accent-color);
}

/* Contact Form Section */
.contact-form-section {
    display: flex;
    justify-content: center;
}

.form-container {
    background: rgba(33, 38, 45, 0.8);
    border-radius: 24px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 700px;
}

.form-header {
    text-align: center;
    margin-bottom: 36px;
}

.form-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 12px;
}

.form-header p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.5;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    background: rgba(13, 17, 23, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 14px 16px;
    font-size: 16px;
    color: var(--text-light);
    font-family: 'Source Sans Pro', sans-serif;
    transition: all 0.3s ease;
    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 0, 110, 0.1);
    background: rgba(13, 17, 23, 0.95);
}

.form-group textarea {
    min-height: 120px;
    line-height: 1.6;
}

.form-privacy {
    margin: 8px 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    min-width: 20px;
    height: 20px;
    background: rgba(13, 17, 23, 0.8);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
    margin-top: 2px;
}

.checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: 700;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    opacity: 1;
}

.form-privacy a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.form-privacy a:hover {
    color: var(--accent-color);
}

.submit-button {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border: none;
    border-radius: 12px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 0, 110, 0.3);
    position: relative;
    overflow: hidden;
}

.submit-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 0, 110, 0.4);
}

.submit-button:hover::before {
    left: 100%;
}

.submit-button:active {
    transform: translateY(0);
}

.button-icon {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.submit-button:hover .button-icon {
    transform: translateX(4px);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .contact-block {
        padding: 70px 0;
    }
    
    .contact-title {
        font-size: 32px;
    }
    
    .contact-subtitle {
        font-size: 18px;
    }
    
    .contact-info-section {
        margin-bottom: 60px;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .info-card {
        padding: 24px 20px;
        gap: 16px;
    }
    
    .info-icon {
        font-size: 28px;
        min-width: 40px;
        height: 40px;
    }
    
    .info-content h3 {
        font-size: 16px;
    }
    
    .info-content p {
        font-size: 14px;
    }
    
    .form-container {
        padding: 32px 24px;
    }
    
    .form-header h3 {
        font-size: 24px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .contact-form {
        gap: 20px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 12px 14px;
        font-size: 15px;
    }
    
    .submit-button {
        padding: 14px 28px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .contact-container {
        padding: 0 15px;
    }
    
    .contact-title {
        font-size: 28px;
    }
    
    .form-container {
        padding: 28px 20px;
    }
    
    .info-card {
        flex-direction: column;
        text-align: center;
        gap: 12px;
        padding: 20px;
    }
    
    .info-content h3 {
        margin-bottom: 4px;
    }
    
    .checkbox-label {
        gap: 8px;
        font-size: 13px;
    }
    
    .checkmark {
        min-width: 18px;
        height: 18px;
    }
}
















/* Footer (Bottom Block) */
.bottomblock {
    background: linear-gradient(135deg, #0d1117 0%, #161b22 50%, #0d1117 100%);
    border-top: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.bottomblock::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 0%, rgba(255, 0, 110, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 20px 20px;
    position: relative;
    z-index: 2;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-color);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.brand-logo img {
    width: 40px;
    height: 40px;
    border-radius: 6px;
}

.brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
}

.brand-description {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 300px;
    margin: 0;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.links-section h4 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.3;
}

.links-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.links-section li {
    line-height: 1.5;
}

.links-section a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
}

.links-section a:hover {
    color: var(--primary-color);
    transform: translateX(4px);
}

.contact-item {
    color: var(--text-muted);
    font-size: 15px;
    display: inline-block;
    line-height: 1.5;
}

.contact-item:hover {
    color: var(--primary-color);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    flex-wrap: wrap;
    gap: 16px;
}

.copyright-section p {
    color: var(--text-muted);
    font-size: 14px;
    margin: 0;
    line-height: 1.4;
}

.legal-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.legal-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    line-height: 1.4;
}

.legal-links a:hover {
    color: var(--primary-color);
}

.separator {
    color: var(--border-color);
    font-size: 14px;
    user-select: none;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-brand {
        align-items: center;
        text-align: center;
    }
    
    .brand-description {
        max-width: 500px;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .footer-container {
        padding: 50px 20px 20px;
    }
    
    .footer-content {
        gap: 32px;
        margin-bottom: 32px;
        padding-bottom: 32px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 28px;
        text-align: left;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .legal-links {
        justify-content: center;
    }
    
    .brand-logo {
        justify-content: center;
    }
    
    .footer-brand {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer-container {
        padding: 40px 15px 15px;
    }
    
    .footer-content {
        gap: 24px;
        margin-bottom: 24px;
        padding-bottom: 24px;
    }
    
    .brand-name {
        font-size: 20px;
    }
    
    .brand-description {
        font-size: 15px;
    }
    
    .links-section h4 {
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .links-section a,
    .contact-item {
        font-size: 14px;
    }
    
    .legal-links {
        flex-direction: column;
        gap: 8px;
    }
    
    .separator {
        display: none;
    }
    
    .copyright-section p {
        font-size: 13px;
    }
    
    .legal-links a {
        font-size: 13px;
    }
}



















/* Simple Cookie Alert */
.cookie-alert {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(13, 17, 23, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 16px 20px;
    z-index: 9999;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s ease;
}

.cookie-alert.show {
    transform: translateY(0);
    opacity: 1;
}

.cookie-content {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.cookie-alert p {
    color: var(--text-light);
    font-size: 14px;
    margin: 0;
    flex: 1;
    min-width: 200px;
}

.cookie-alert a {
    color: var(--primary-color);
    text-decoration: none;
}

.cookie-alert a:hover {
    text-decoration: underline;
}

.accept-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.accept-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

@media (max-width: 480px) {
    .cookie-alert {
        bottom: 10px;
        left: 10px;
        right: 10px;
        padding: 14px 16px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .accept-btn {
        width: 100%;
        padding: 10px;
    }
}















/* About Page Specific Styles */

.about-main {
    padding-top: 80px;
    background: var(--darker-bg);
    min-height: 100vh;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--darker-bg) 0%, #161b22 50%, var(--darker-bg) 100%);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 30%, rgba(255, 0, 110, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--text-light);
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--text-light), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Program Overview Section */
.program-overview {
    background: linear-gradient(135deg, var(--dark-bg) 0%, rgba(13, 17, 23, 0.95) 50%, var(--dark-bg) 100%);
    padding: 80px 0;
    position: relative;
}

.program-overview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(58, 134, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.overview-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.overview-grid {
    display: grid;
    grid-template-columns: 1fr 450px;
    gap: 60px;
    align-items: center;
}

.overview-title {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    font-weight: 700;
    color: var(--text-light);
    line-height: 1.2;
    margin-bottom: 24px;
}

.overview-description {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 40px;
}

.overview-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.stat-item {
    text-align: center;
    padding: 24px 16px;
    background: rgba(33, 38, 45, 0.6);
    border-radius: 16px;
    border: 1px solid rgba(58, 134, 255, 0.1);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(33, 38, 45, 0.8);
    border-color: rgba(58, 134, 255, 0.3);
    transform: translateY(-4px);
}

.stat-number {
    display: block;
    font-size: 40px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-family: 'Playfair Display', serif;
}

.stat-item p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.4;
    margin: 0;
}

.overview-image {
    position: relative;
}

.structure-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    filter: brightness(1.1) saturate(1.1);
    transition: all 0.4s ease;
}

.overview-image:hover .structure-image {
    transform: scale(1.02);
    filter: brightness(1.2) saturate(1.2);
}

/* Program Schedule Section */
.program-schedule {
    background: linear-gradient(135deg, var(--darker-bg) 0%, #161b22 50%, var(--darker-bg) 100%);
    padding: 100px 0;
    position: relative;
}

.program-schedule::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(255, 0, 110, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.schedule-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.schedule-header {
    text-align: center;
    margin-bottom: 60px;
}

.schedule-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--text-light);
    line-height: 1.2;
    margin-bottom: 16px;
}

.schedule-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.schedule-timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.schedule-timeline::before {
    content: '';
    position: absolute;
    left: 80px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--primary-color), var(--info-color));
    z-index: 1;
}

.timeline-item {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.timeline-time {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(33, 38, 45, 0.8);
    border: 2px solid var(--primary-color);
    border-radius: 16px;
    padding: 16px 12px;
    text-align: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(255, 0, 110, 0.2);
}

.time-start,
.time-end {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-light);
    font-family: 'Source Sans Pro', sans-serif;
}

.time-separator {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 14px;
}

.timeline-content {
    background: rgba(33, 38, 45, 0.6);
    border-radius: 20px;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color), var(--info-color));
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.4s ease;
}

.timeline-item:hover .timeline-content {
    background: rgba(33, 38, 45, 0.8);
    border-color: rgba(255, 0, 110, 0.2);
    transform: translateX(8px);
    box-shadow: 0 8px 30px rgba(255, 0, 110, 0.1);
}

.timeline-item:hover .timeline-content::before {
    transform: scaleY(1);
}

.timeline-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--text-light);
    line-height: 1.3;
    margin-bottom: 16px;
}

.timeline-content p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.content-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.highlight-tag {
    display: inline-block;
    background: linear-gradient(135deg, rgba(58, 134, 255, 0.2), rgba(255, 0, 110, 0.2));
    color: var(--info-color);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(58, 134, 255, 0.3);
}

/* Program Benefits Section */
.program-benefits {
    background: linear-gradient(135deg, var(--dark-bg) 0%, rgba(13, 17, 23, 0.95) 50%, var(--dark-bg) 100%);
    padding: 80px 0;
    position: relative;
}

.program-benefits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(6, 255, 165, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.benefits-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.benefits-header {
    text-align: center;
    margin-bottom: 60px;
}

.benefits-title {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    font-weight: 700;
    color: var(--text-light);
    line-height: 1.2;
    margin-bottom: 16px;
}

.benefits-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}

.benefit-card {
    background: rgba(33, 38, 45, 0.6);
    border-radius: 20px;
    padding: 32px 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(58, 134, 255, 0.05), rgba(6, 255, 165, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.benefit-card:hover {
    background: rgba(33, 38, 45, 0.8);
    border-color: rgba(58, 134, 255, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(58, 134, 255, 0.1);
}

.benefit-card:hover::before {
    opacity: 1;
}

.benefit-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}

.benefit-card p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 2;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--darker-bg) 0%, #0f1419 50%, var(--darker-bg) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 0, 110, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.cta-content {
    text-align: center;
    background: rgba(33, 38, 45, 0.8);
    border-radius: 24px;
    padding: 50px 40px;
    border: 1px solid rgba(255, 0, 110, 0.2);
    backdrop-filter: blur(15px);
}

.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--text-light);
    line-height: 1.3;
    margin-bottom: 16px;
}

.cta-description {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 32px;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    text-decoration: none;
    padding: 18px 36px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 6px 25px rgba(255, 0, 110, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(255, 0, 110, 0.4);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.cta-button:hover::before {
    left: 100%;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .overview-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .overview-image {
        order: -1;
        text-align: center;
    }
    
    .structure-image {
        max-width: 500px;
        height: 300px;
    }
    
    .timeline-item {
        grid-template-columns: 140px 1fr;
        gap: 30px;
    }
    
    .schedule-timeline::before {
        left: 70px;
    }
}

@media (max-width: 768px) {
    .about-main {
        padding-top: 70px;
    }
    
    .hero-section {
        padding: 60px 0 40px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .program-overview,
    .program-schedule,
    .program-benefits {
        padding: 60px 0;
    }
    
    .overview-title {
        font-size: 30px;
    }
    
    .overview-description {
        font-size: 16px;
    }
    
    .overview-stats {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .schedule-title {
        font-size: 32px;
    }
    
    .schedule-subtitle {
        font-size: 16px;
    }
    
    .timeline-item {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .schedule-timeline::before {
        display: none;
    }
    
    .timeline-time {
        width: fit-content;
        margin: 0 auto;
    }
    
    .timeline-content {
        padding: 24px;
    }
    
    .timeline-content h3 {
        font-size: 20px;
    }
    
    .timeline-content p {
        font-size: 15px;
    }
    
    .benefits-title {
        font-size: 30px;
    }
    
    .benefits-subtitle {
        font-size: 16px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .benefit-card {
        padding: 24px 20px;
    }
    
    .benefit-card h3 {
        font-size: 20px;
    }
    
    .benefit-card p {
        font-size: 15px;
    }
    
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-content {
        padding: 40px 30px;
    }
    
    .cta-title {
        font-size: 28px;
    }
    
    .cta-description {
        font-size: 16px;
    }
    
    .cta-button {
        padding: 16px 28px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .hero-container,
    .overview-container,
    .schedule-container,
    .benefits-container,
    .cta-container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 30px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .overview-title {
        font-size: 26px;
    }
    
    .structure-image {
        height: 250px;
    }
    
    .stat-item {
        padding: 20px 12px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .schedule-title {
        font-size: 28px;
    }
    
    .timeline-time {
        padding: 12px 10px;
    }
    
    .time-start,
    .time-end {
        font-size: 14px;
    }
    
    .timeline-content {
        padding: 20px;
    }
    
    .timeline-content h3 {
        font-size: 18px;
    }
    
    .content-highlights {
        gap: 6px;
    }
    
    .highlight-tag {
        padding: 4px 8px;
        font-size: 11px;
    }
    
    .benefits-title {
        font-size: 26px;
    }
    
    .benefit-card {
        padding: 20px 16px;
    }
    
    .benefit-card h3 {
        font-size: 18px;
    }
    
    .cta-content {
        padding: 30px 20px;
    }
    
    .cta-title {
        font-size: 24px;
    }
    
    .cta-button {
        padding: 14px 24px;
        font-size: 15px;
    }
}
















/* Cookies Page Specific Styles */

.cookies-main {
    padding-top: 80px;
    background: var(--darker-bg);
    min-height: 100vh;
}

/* Hero Section */
.cookies-hero {
    background: linear-gradient(135deg, var(--darker-bg) 0%, #161b22 50%, var(--darker-bg) 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.cookies-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(255, 0, 110, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.hero-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    font-weight: 700;
    color: var(--text-light);
    line-height: 1.2;
    margin-bottom: 16px;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 24px;
}

.last-updated {
    display: inline-block;
    background: rgba(33, 38, 45, 0.8);
    border: 1px solid rgba(255, 0, 110, 0.2);
    border-radius: 20px;
    padding: 8px 20px;
    backdrop-filter: blur(10px);
}

.last-updated span {
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 600;
}

/* Content Section */
.cookies-content {
    background: linear-gradient(135deg, var(--dark-bg) 0%, rgba(13, 17, 23, 0.95) 50%, var(--dark-bg) 100%);
    padding: 80px 0;
    position: relative;
}

.cookies-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(58, 134, 255, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.content-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.section-block {
    background: rgba(33, 38, 45, 0.6);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.section-block:hover {
    background: rgba(33, 38, 45, 0.8);
    border-color: rgba(255, 0, 110, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(255, 0, 110, 0.1);
}

.section-block h2 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--text-light);
    line-height: 1.3;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.section-block h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--info-color));
}

.section-block p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 0;
}

.section-block p:not(:last-child) {
    margin-bottom: 16px;
}

/* Cookie Types */
.cookie-type {
    background: rgba(13, 17, 23, 0.6);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.cookie-type:hover {
    background: rgba(13, 17, 23, 0.8);
    border-color: rgba(58, 134, 255, 0.2);
}

.cookie-type:last-child {
    margin-bottom: 0;
}

.cookie-type h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--info-color);
    margin-bottom: 12px;
    line-height: 1.3;
}

.cookie-type p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 12px;
}

.cookie-details {
    display: flex;
    gap: 8px;
    align-items: center;
}

.detail-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-light);
}

.cookie-details span:last-child {
    font-size: 14px;
    color: var(--text-muted);
}

/* Management Options */
.management-options {
    display: grid;
    gap: 20px;
    margin-top: 24px;
}

.option-item {
    background: rgba(13, 17, 23, 0.6);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.option-item:hover {
    background: rgba(13, 17, 23, 0.8);
    border-color: rgba(58, 134, 255, 0.2);
    transform: translateX(8px);
}

.option-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 8px;
    line-height: 1.3;
}

.option-item p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Contact Info */
.contact-info {
    background: linear-gradient(135deg, rgba(255, 0, 110, 0.1), rgba(58, 134, 255, 0.1));
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 0, 110, 0.2);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.03), transparent);
    animation: shimmer 4s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.contact-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.3;
    position: relative;
}

.contact-info h2::after {
    display: none;
}

.contact-info p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 24px;
    position: relative;
}

.contact-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    text-decoration: none;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 0, 110, 0.3);
    position: relative;
    overflow: hidden;
}

.contact-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 0, 110, 0.4);
}

.contact-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.contact-button:hover::before {
    left: 100%;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .cookies-main {
        padding-top: 70px;
    }
    
    .cookies-hero {
        padding: 40px 0;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .cookies-content {
        padding: 60px 0;
    }
    
    .content-wrapper {
        gap: 40px;
    }
    
    .section-block {
        padding: 30px 24px;
    }
    
    .section-block h2 {
        font-size: 24px;
    }
    
    .section-block p {
        font-size: 15px;
    }
    
    .cookie-type {
        padding: 20px;
    }
    
    .cookie-type h3 {
        font-size: 18px;
    }
    
    .cookie-type p {
        font-size: 14px;
    }
    
    .option-item {
        padding: 16px;
    }
    
    .option-item h4 {
        font-size: 16px;
    }
    
    .option-item p {
        font-size: 14px;
    }
    
    .contact-info {
        padding: 30px 24px;
    }
    
    .contact-info h2 {
        font-size: 20px;
    }
    
    .contact-info p {
        font-size: 15px;
    }
    
    .contact-button {
        padding: 12px 24px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .content-container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .section-block {
        padding: 24px 20px;
    }
    
    .section-block h2 {
        font-size: 22px;
    }
    
    .cookie-type {
        padding: 16px;
    }
    
    .management-options {
        gap: 16px;
    }
    
    .option-item {
        padding: 14px;
    }
    
    .contact-info {
        padding: 24px 20px;
    }
    
    .contact-info h2 {
        font-size: 18px;
    }
    
    .last-updated {
        padding: 6px 16px;
    }
    
    .last-updated span {
        font-size: 13px;
    }
}















/* Privacy Page Specific Styles */

.privacy-main {
    padding-top: 80px;
    background: var(--darker-bg);
    min-height: 100vh;
}

/* Hero Section */
.privacy-hero {
    background: linear-gradient(135deg, var(--darker-bg) 0%, #161b22 50%, var(--darker-bg) 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.privacy-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(58, 134, 255, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.hero-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    font-weight: 700;
    color: var(--text-light);
    line-height: 1.2;
    margin-bottom: 16px;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 24px;
}

.effective-date {
    display: inline-block;
    background: rgba(33, 38, 45, 0.8);
    border: 1px solid rgba(58, 134, 255, 0.2);
    border-radius: 20px;
    padding: 8px 20px;
    backdrop-filter: blur(10px);
}

.effective-date span {
    font-size: 14px;
    color: var(--info-color);
    font-weight: 600;
}

/* Content Section */
.privacy-content {
    background: linear-gradient(135deg, var(--dark-bg) 0%, rgba(13, 17, 23, 0.95) 50%, var(--dark-bg) 100%);
    padding: 80px 0;
    position: relative;
}

.privacy-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(255, 0, 110, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 50px;
    align-items: start;
}

.main-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.main-content > div {
    background: rgba(33, 38, 45, 0.6);
    border-radius: 20px;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.main-content > div:hover {
    background: rgba(33, 38, 45, 0.8);
    border-color: rgba(58, 134, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(58, 134, 255, 0.08);
}

.main-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 600;
    color: var(--text-light);
    line-height: 1.3;
    margin-bottom: 16px;
    position: relative;
    padding-bottom: 8px;
}

.main-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--info-color));
}

.main-content p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 0;
}

.main-content p:not(:last-child) {
    margin-bottom: 16px;
}

/* Collection Types */
.collection-types {
    display: grid;
    gap: 16px;
    margin-top: 20px;
}

.type-card {
    background: rgba(13, 17, 23, 0.6);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.type-card:hover {
    background: rgba(13, 17, 23, 0.8);
    border-color: rgba(255, 0, 110, 0.2);
    transform: translateX(8px);
}

.type-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
    line-height: 1.3;
}

.type-card p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Usage List */
.usage-list {
    display: grid;
    gap: 16px;
    margin-top: 20px;
}

.usage-item {
    background: rgba(13, 17, 23, 0.6);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.usage-item:hover {
    background: rgba(13, 17, 23, 0.8);
    border-color: rgba(58, 134, 255, 0.2);
    transform: translateX(8px);
}

.usage-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--info-color);
    margin-bottom: 6px;
    line-height: 1.3;
}

.usage-item p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Protection Measures */
.protection-measures {
    display: grid;
    gap: 12px;
    margin-top: 20px;
}

.measure-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(13, 17, 23, 0.6);
    border-radius: 8px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.measure-item:hover {
    background: rgba(13, 17, 23, 0.8);
    border-color: rgba(6, 255, 165, 0.2);
}

.measure-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--success-color);
}

.measure-desc {
    font-size: 13px;
    color: var(--text-muted);
    text-align: right;
}

/* Rights Grid */
.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 20px;
}

.right-card {
    background: rgba(13, 17, 23, 0.6);
    border-radius: 12px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    text-align: center;
}

.right-card:hover {
    background: rgba(13, 17, 23, 0.8);
    border-color: rgba(255, 0, 110, 0.2);
    transform: translateY(-4px);
}

.right-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 8px;
    line-height: 1.3;
}

.right-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

/* Sidebar */
.sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.quick-summary,
.contact-section {
    background: rgba(33, 38, 45, 0.8);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.quick-summary h3,
.contact-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.3;
}

.summary-points {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.point {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 12px;
    background: rgba(13, 17, 23, 0.6);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.point-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
}

.point-text {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.4;
}

.contact-section p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 16px;
}

.contact-link {
    display: inline-block;
    background: linear-gradient(135deg, var(--info-color), var(--primary-color));
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 10px rgba(58, 134, 255, 0.3);
}

.contact-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(58, 134, 255, 0.4);
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .rights-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
}

@media (max-width: 768px) {
    .privacy-main {
        padding-top: 70px;
    }
    
    .privacy-hero {
        padding: 40px 0;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .privacy-content {
        padding: 60px 0;
    }
    
    .main-content {
        gap: 30px;
    }
    
    .main-content > div {
        padding: 24px;
    }
    
    .main-content h2 {
        font-size: 22px;
    }
    
    .main-content p {
        font-size: 15px;
    }
    
    .type-card,
    .usage-item {
        padding: 16px;
    }
    
    .type-card h3 {
        font-size: 16px;
    }
    
    .type-card p,
    .usage-item p {
        font-size: 14px;
    }
    
    .rights-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .right-card {
        padding: 16px;
    }
    
    .sidebar {
        grid-template-columns: 1fr;
    }
    
    .quick-summary,
    .contact-section {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .content-container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .main-content > div {
        padding: 20px;
    }
    
    .main-content h2 {
        font-size: 20px;
    }
    
    .collection-types,
    .usage-list {
        gap: 12px;
    }
    
    .type-card,
    .usage-item {
        padding: 14px;
    }
    
    .measure-item {
        flex-direction: column;
        gap: 4px;
        text-align: center;
    }
    
    .measure-desc {
        text-align: center;
    }
    
    .effective-date {
        padding: 6px 16px;
    }
    
    .effective-date span {
        font-size: 13px;
    }
    
    .quick-summary,
    .contact-section {
        padding: 16px;
    }
}










/* Thank You Page Specific Styles */

.thankyou-main {
    padding-top: 80px;
    background: var(--darker-bg);
    min-height: 100vh;
}

/* Hero Section */
.thankyou-hero {
    background: linear-gradient(135deg, var(--darker-bg) 0%, #161b22 50%, var(--darker-bg) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.thankyou-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 30%, rgba(6, 255, 165, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.hero-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.hero-content {
    text-align: center;
}

.success-indicator {
    margin-bottom: 32px;
}

.success-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--success-color), #00d084);
    border-radius: 50%;
    box-shadow: 0 8px 30px rgba(6, 255, 165, 0.3);
    animation: successPulse 2s infinite;
}

@keyframes successPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.check-mark {
    font-size: 32px;
    color: white;
    font-weight: 700;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--text-light);
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--text-light), var(--success-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.confirmation-details {
    display: inline-block;
    background: rgba(33, 38, 45, 0.8);
    border: 1px solid rgba(6, 255, 165, 0.2);
    border-radius: 16px;
    padding: 24px 32px;
    backdrop-filter: blur(10px);
    text-align: left;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    margin-bottom: 8px;
}

.detail-item:last-child {
    margin-bottom: 0;
}

.detail-label {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 600;
}

.detail-value {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 600;
}

.detail-value.success {
    color: var(--success-color);
}

/* Next Steps Section */
.next-steps {
    background: linear-gradient(135deg, var(--dark-bg) 0%, rgba(13, 17, 23, 0.95) 50%, var(--dark-bg) 100%);
    padding: 80px 0;
    position: relative;
}

.next-steps::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(58, 134, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.steps-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--text-light);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.step-card {
    background: rgba(33, 38, 45, 0.6);
    border-radius: 20px;
    padding: 32px 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(58, 134, 255, 0.05), rgba(6, 255, 165, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.step-card:hover {
    background: rgba(33, 38, 45, 0.8);
    border-color: rgba(58, 134, 255, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(58, 134, 255, 0.15);
}

.step-card:hover::before {
    opacity: 1;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--info-color), var(--primary-color));
    color: white;
    font-size: 20px;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(58, 134, 255, 0.3);
}

.step-content {
    position: relative;
    z-index: 2;
}

.step-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 12px;
    line-height: 1.3;
}

.step-content p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
}

.step-time {
    display: inline-block;
    background: rgba(58, 134, 255, 0.2);
    color: var(--info-color);
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* While You Wait Section */
.while-you-wait {
    background: linear-gradient(135deg, var(--darker-bg) 0%, #161b22 50%, var(--darker-bg) 100%);
    padding: 80px 0;
    position: relative;
}

.while-you-wait::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(255, 0, 110, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.wait-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.wait-content {
    text-align: center;
}

.wait-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--text-light);
    line-height: 1.2;
    margin-bottom: 40px;
}

.wait-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.option-card {
    background: rgba(33, 38, 45, 0.6);
    border-radius: 20px;
    padding: 32px 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
    text-align: center;
}

.option-card:hover {
    background: rgba(33, 38, 45, 0.8);
    border-color: rgba(255, 0, 110, 0.2);
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(255, 0, 110, 0.1);
}

.option-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.3;
}

.option-card p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 24px;
}

.option-link {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 0, 110, 0.3);
}

.option-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 0, 110, 0.4);
}

/* Commitment Section */
.commitment-section {
    background: linear-gradient(135deg, var(--dark-bg) 0%, rgba(13, 17, 23, 0.95) 50%, var(--dark-bg) 100%);
    padding: 80px 0;
    position: relative;
}

.commitment-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(6, 255, 165, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.commitment-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.commitment-content {
    text-align: center;
}

.commitment-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--text-light);
    line-height: 1.2;
    margin-bottom: 40px;
}

.commitment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.commitment-item {
    background: rgba(33, 38, 45, 0.6);
    border-radius: 16px;
    padding: 24px 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
    text-align: center;
}

.commitment-item:hover {
    background: rgba(33, 38, 45, 0.8);
    border-color: rgba(6, 255, 165, 0.3);
    transform: translateY(-4px);
}

.commitment-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--success-color);
    margin-bottom: 12px;
    line-height: 1.3;
}

.commitment-item p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .thankyou-main {
        padding-top: 70px;
    }
    
    .thankyou-hero {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .success-circle {
        width: 60px;
        height: 60px;
    }
    
    .check-mark {
        font-size: 24px;
    }
    
    .confirmation-details {
        padding: 20px 24px;
    }
    
    .detail-item {
        gap: 16px;
    }
    
    .next-steps,
    .while-you-wait,
    .commitment-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .step-card {
        padding: 24px 20px;
    }
    
    .step-content h3 {
        font-size: 20px;
    }
    
    .step-content p {
        font-size: 14px;
    }
    
    .wait-title {
        font-size: 26px;
    }
    
    .wait-options {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .option-card {
        padding: 24px 20px;
    }
    
    .option-card h3 {
        font-size: 20px;
    }
    
    .option-card p {
        font-size: 15px;
    }
    
    .commitment-title {
        font-size: 26px;
    }
    
    .commitment-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 16px;
    }
    
    .commitment-item {
        padding: 20px 16px;
    }
    
    .commitment-item h4 {
        font-size: 16px;
    }
    
    .commitment-item p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .hero-container,
    .steps-container,
    .wait-container,
    .commitment-container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .confirmation-details {
        padding: 16px 20px;
    }
    
    .detail-item {
        flex-direction: column;
        gap: 4px;
        text-align: center;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .wait-title {
        font-size: 22px;
    }
    
    .commitment-title {
        font-size: 22px;
    }
    
    .option-link {
        padding: 10px 20px;
        font-size: 14px;
    }
}