@font-face {
    font-family: 'Chronicle Display';
    src: url('../fonts/ChronicleDisplay/ChronicleDisplay-Roman.woff2') format('woff2'),
         url('../fonts/ChronicleDisplay/ChronicleDisplay-Roman.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Chronicle Display';
    src: url('../fonts/ChronicleDisplay/ChronicleDisplay-Italic.woff2') format('woff2'),
         url('../fonts/ChronicleDisplay/ChronicleDisplay-Italic.woff') format('woff');
    font-weight: 400;
    font-style: italic;
}

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

body {
    font-family: 'Bricolage Grotesque', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    overflow-x: hidden;
}

.hero-section {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #1a4d5e 0%, #2d6d82 50%, #5a9db5 100%);
    overflow: hidden;
}

.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    z-index: 1;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 77, 94, 0.85) 0%, rgba(45, 109, 130, 0.75) 50%, rgba(90, 157, 181, 0.65) 100%);
    z-index: 2;
}

.container {
    position: relative;
    z-index: 3;
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 60px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.logo {
    margin-bottom: 80px;
    max-width: 180px;
}

.content-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-bottom: 60px;
}

.badge {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding-bottom: 8px;
    border-bottom: 2px solid #ffffff;
    margin-bottom: 40px;
    width: fit-content;
}

.headline {
    font-family: 'Chronicle Display', serif;
    font-size: 64px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 30px;
    max-width: 1100px;
}

.headline-italic {
    font-style: italic;
}

.subheadline {
    font-size: 18px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 60px;
    max-width: 800px;
    opacity: 0.95;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 60px;
    max-width: 900px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-item:nth-child(1) { animation-delay: 0.1s; }
.feature-item:nth-child(2) { animation-delay: 0.2s; }
.feature-item:nth-child(3) { animation-delay: 0.3s; }
.feature-item:nth-child(4) { animation-delay: 0.4s; }
.feature-item:nth-child(5) { animation-delay: 0.5s; border-bottom: none; }
.feature-item:nth-child(6) { animation-delay: 0.6s; border-bottom: none; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
    stroke: #ffffff;
    fill: none;
    stroke-width: 2;
}

.feature-text {
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.4;
}

.cta-section {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.gift-box {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    padding: 20px 28px;
    border-radius: 60px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.gift-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.gift-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.gift-text-main {
    font-size: 15px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.3;
}

.gift-text-highlight {
    font-size: 16px;
    font-weight: 700;
    color: #EE7133;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #1a1a1a;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 24px 48px;
    border-radius: 60px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: sweep 3s infinite;
}

@keyframes sweep {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.cta-button:hover {
    background: #000000;
    transform: translateX(5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.arrow-icon {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.cta-button:hover .arrow-icon {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 1550px) {
    .headline {
        font-size: 55px;
    }
    .container {
        max-width: 1200px;
    }
    .subheadline {
        margin-bottom: 30px;
    }
    .features-grid {
        margin-bottom: 36px;
    }
}
@media (max-width: 1440px) {
    .subheadline {
        display: none;
    }
}

@media (max-width: 1200px) {
    .headline {
        font-size: 60px;
    }
}

@media (max-width: 992px) {
    .container {
        padding: 30px 40px;
    }

    .logo {
        font-size: 36px;
        margin-bottom: 60px;
    }

    .headline {
        font-size: 52px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
    .subheadline {
        display: none;
    }
}

@media (max-width: 768px) {
    .background-image {
        content: url('../images/bg-mob.jpg');
    }

    .container {
        padding: 24px 24px;
    }

    .logo {
        font-size: 32px;
        margin-bottom: 30px;
        letter-spacing: 2px;
    }

    .badge {
        margin-bottom: 20px;
    }

    .headline {
        font-size: 29px !important;
        margin-bottom: 20px;
    }

    .subheadline {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .feature-text {
        font-size: 15px;
    }

    .features-grid {
        gap: 5px;
        margin-bottom: 15px;
        grid-template-columns: 1fr;
    }

    .feature-item:nth-child(5) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .cta-section {
        flex-direction: column-reverse;
        align-items: stretch;
    }

    .gift-box {
        justify-content: center;
    }

    .cta-button {
        justify-content: center;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 28px;
    }

    .headline {
        font-size: 36px;
    }

    .badge {
        font-size: 11px;
    }

    .feature-text {
        font-size: 14px;
    }

    .cta-button {
        padding: 20px 16px;
        font-size: 12px;
    }
    .gift-text-highlight {
        font-size: 12px;
    }
    .feature-icon img {
        max-width: 18px;
    }
    .feature-item {
        padding-bottom: 5px;
    }
}