@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Gloock&display=swap');

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

:root {
    --bg--acc-color: #5C4B10;
    --text--acc-color: #EABE0D;
    --bg--primary-color: #f0eee6;
    --text-color: #ffff;
}

body {
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
}

/* ============================================ */
/* HERO SECTION */
/* ============================================ */

#hero {
    position: relative;
    height: 100vh;
    background: linear-gradient(#3d330890, rgb(234 190 13 / 0%)),
                url('https://images.unsplash.com/photo-1555396273-367ea4eb4db5?w=1920&h=1080&fit=crop') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 75px;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(92, 75, 16, 0.7) 0%, rgba(234, 190, 13, 0.6) 100%);
}

.hero-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: #fff;
    top: -100px;
    right: 10%;
    animation: float 20s infinite ease-in-out;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: #fff;
    bottom: -50px;
    left: 5%;
    animation: float 15s infinite ease-in-out reverse;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: #fff;
    top: 50%;
    right: -50px;
    animation: float 18s infinite ease-in-out;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(50px, 50px); }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: #fff;
    padding: 40px;
    max-width: 900px;
    margin-top: -150px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.25);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-content h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-family: 'Lora', serif;
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-btn {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 15px 40px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.hero-btn.primary {
    background: var(--text--acc-color);
    color: #000;
}

.hero-btn.primary:hover {
    background: #d4ab0a;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(234, 190, 13, 0.4);
}

.hero-btn.secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.hero-btn.secondary:hover {
   background: #fff;
    color: black;
    transform: translateY(-3px);
}

/* ============================================ */
/* SECTION HEADERS */
/* ============================================ */

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--bg--acc-color);
    margin-bottom: 15px;
    line-height: 1.2;
}

.section-header p {
    font-family: 'Lora', serif;
    font-size: 1.2rem;
    color: #555;
}

/* ============================================ */
/* FEATURES SECTION */
/* ============================================ */

#features {
    padding: 100px 0;
    background: var(--bg--primary-color);
}

.features-container {
    max-width: 1430px;
    margin: 0 auto;
    padding: 0 40px;
}

.features-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.features-image {
    position: relative;
    height: 600px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

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

.image-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    background: #fff;
    padding: 15px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.image-badge span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--bg--acc-color);
}

.features-text {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.feature-point {
    display: flex;
    gap: 25px;
}

.point-icon {
    flex-shrink: 0;
}

.point-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--bg--acc-color);
    margin-bottom: 12px;
}

.point-content p {
    font-family: 'Lora', serif;
    font-size: 1rem;
    color: #333;
    line-height: 1.8;
}

/* ============================================ */
/* SERVICES LIST SECTION */
/* ============================================ */

#services-list {
    padding: 100px 0;
    background: #fff;
}

.services-container {
    max-width: 1430px;
    margin: 0 auto;
    padding: 0 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-item {
    background: var(--bg--primary-color);
    padding: 35px 25px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-item:hover {
    transform: translateY(-10px);
    border-color: var(--text--acc-color);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.service-item h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--bg--acc-color);
    margin-bottom: 15px;
}

.service-item p {
    font-family: 'Lora', serif;
    font-size: 0.95rem;
    color: #333;
    line-height: 1.6;
}

/* ============================================ */
/* BENEFITS SECTION */
/* ============================================ */

#benefits {
    padding: 100px 0;
    background: #fff;
}

.benefits-container {
    max-width: 1430px;
    margin: 0 auto;
    padding: 0 40px;
}

.benefits-grid {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.benefit-card {
    display: grid;
    grid-template-columns: 80px 450px 1fr;
    gap: 40px;
    align-items: start;
}

.benefit-card.reverse {
    grid-template-columns: 1fr 450px 80px;
}

.benefit-card .benefit-number {
    order: 1;
}

.benefit-card .benefit-image {
    order: 2;
}

.benefit-card .benefit-content {
    order: 3;
}

.benefit-card.reverse .benefit-number {
    order: 3;
}

.benefit-card.reverse .benefit-image {
    order: 2;
}

.benefit-card.reverse .benefit-content {
    order: 1;
}

.benefit-number {
    width: 80px;
    height: 80px;
    background: var(--text--acc-color);
    color: #000;
    font-size: 2rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-image {
    width: 100%;
    height: 320px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.benefit-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.benefit-card:hover .benefit-image img {
    transform: scale(1.05);
}

.benefit-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--bg--acc-color);
    margin-bottom: 15px;
}

.benefit-content > p {
    font-family: 'Lora', serif;
    font-size: 1.05rem;
    color: #333;
    line-height: 1.8;
    margin-bottom: 25px;
}

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

.benefit-list li {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: #333;
    padding-left: 30px;
    margin-bottom: 10px;
    position: relative;
}

.benefit-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--text--acc-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.benefit-stats {
    display: flex;
    gap: 40px;
    margin-top: 25px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text--acc-color);
    line-height: 1;
}

.stat-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: #666;
    margin-top: 8px;
}

.compliance-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.badge {
    background: var(--bg--primary-color);
    color: var(--bg--acc-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* ============================================ */
/* HOW IT WORKS SECTION */
/* ============================================ */

#how-it-works {
    padding: 100px 0;
    background: var(--bg--primary-color);
}

.process-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
}

.process-steps {
    display: flex;
    flex-direction: column;
}

.step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 40px;
    position: relative;
}

.step:not(:last-child) {
    margin-bottom: 60px;
}

.step-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--text--acc-color);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(234, 190, 13, 0.3);
    position: relative;
    z-index: 2;
}

.step-line {
    width: 3px;
    flex: 1;
    background: linear-gradient(to bottom, var(--text--acc-color) 0%, transparent 100%);
    margin-top: 10px;
}

.step:last-child .step-line {
    display: none;
}

.step-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--bg--acc-color);
    margin-bottom: 15px;
}

.step-content p {
    font-family: 'Lora', serif;
    font-size: 1.05rem;
    color: #333;
    line-height: 1.8;
    margin-bottom: 20px;
}

.step-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.step-highlights span {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: var(--bg--acc-color);
    background: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
}

/* ============================================ */
/* CTA SECTION */
/* ============================================ */

#cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--bg--acc-color) 0%, #3d3308 100%);
    position: relative;
    overflow: hidden;
}

#cta::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(234, 190, 13, 0.1);
    border-radius: 50%;
    top: -100px;
    right: -100px;
}

.cta-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: 0 40px;
}

.cta-content {
    text-align: center;
}

.cta-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.cta-content > p {
    font-family: 'Lora', serif;
    font-size: 1.2rem;
    color: #fff;
    opacity: 0.9;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.cta-btn {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 15px 40px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-btn.primary {
    background: var(--text--acc-color);
    color: #000;
}

.cta-btn.primary:hover {
    background: #d4ab0a;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(234, 190, 13, 0.4);
}

.cta-btn.secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.cta-btn.secondary:hover {
    background: #fff;
    color: black;
    transform: translateY(-3px);
}

.cta-note {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: #fff;
    opacity: 0.8;
}

/* ============================================ */
/* RESPONSIVE DESIGN */
/* ============================================ */

@media (max-width: 1200px) {
    .benefit-card {
        grid-template-columns: 70px 400px 1fr;
        gap: 35px;
    }

    .benefit-card.reverse {
        grid-template-columns: 1fr 400px 70px;
    }

    .benefit-number {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }

    .benefit-image {
        height: 280px;
    }
}

@media (max-width: 1024px) {
    .hero-content {
        margin-top: -120px;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .features-content {
        gap: 60px;
    }

    .features-image {
        height: 500px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefit-card,
    .benefit-card.reverse {
        grid-template-columns: 70px 1fr;
        gap: 30px;
    }

    .benefit-card .benefit-number,
    .benefit-card.reverse .benefit-number {
        order: 1;
    }

    .benefit-card .benefit-content,
    .benefit-card.reverse .benefit-content {
        order: 2;
        grid-column: 1 / -1;
    }

    .benefit-card .benefit-image,
    .benefit-card.reverse .benefit-image {
        order: 3;
        grid-column: 1 / -1;
        max-width: 600px;
        margin: 0 auto;
    }

    .benefit-content h3 {
        font-size: 1.6rem;
    }

    .benefit-content > p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    #hero {
        height: 80vh;
        margin-top: 65px;
    }

    .hero-content {
        padding: 30px 25px;
        margin-top: -80px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    #features,
    #services-list,
    #benefits,
    #how-it-works,
    #cta {
        padding: 80px 0;
    }

    .features-container,
    .services-container,
    .benefits-container,
    .process-container,
    .cta-container {
        padding: 0 25px;
    }

    .features-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .features-image {
        height: 400px;
    }

    .feature-point {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .point-icon {
        margin: 0 auto;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .benefits-grid {
        gap: 60px;
    }

    .benefit-card,
    .benefit-card.reverse {
        grid-template-columns: 60px 1fr;
        gap: 25px;
        text-align: center;
    }

    .benefit-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin: 0 auto;
        grid-column: 1 / -1;
    }

    .benefit-card .benefit-number,
    .benefit-card.reverse .benefit-number {
        order: 1;
    }

    .benefit-image {
        height: 250px;
        max-width: 100%;
    }

    .benefit-content h3 {
        font-size: 1.5rem;
    }

    .benefit-stats {
        justify-content: center;
    }

    .compliance-badges {
        justify-content: center;
    }

    .step {
        grid-template-columns: 70px 1fr;
        gap: 25px;
    }

    .step-number {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    #hero {
        height: 70vh;
    }

    .hero-content {
        padding: 25px 20px;
        margin-top: -60px;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .hero-btn {
        width: 100%;
        padding: 13px 30px;
    }

    .section-header h2 {
        font-size: 1.7rem;
    }

    .features-image {
        height: 300px;
    }

    .point-content h3 {
        font-size: 1.3rem;
    }

    .service-item {
        padding: 30px 20px;
    }

    .benefit-image {
        height: 220px;
    }

    .benefit-content h3 {
        font-size: 1.3rem;
    }

    .benefit-stats {
        gap: 25px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .step {
        grid-template-columns: 60px 1fr;
        gap: 20px;
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .step-content h3 {
        font-size: 1.3rem;
    }

    .step-content p {
        font-size: 0.95rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-content > p {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .cta-btn {
        width: 100%;
    }
}