/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --purple-light: #a468e8;
    --purple-mid: #9d5ce5;
    --purple-dark: #111827;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --orange-glow: #f59e0b;
    --gradient-brand: linear-gradient(90deg, rgba(155, 92, 229, 1) 0%, rgba(67, 100, 236, 1) 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--gray-900);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    line-height: 1.2;
}

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

a {
    text-decoration: none;
    color: inherit;
}

/* Container */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 80px;
}

@media (max-width: 1024px) {
    .container {
        padding: 0 48px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 32px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 24px;
    }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: var(--white);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
}

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-link {
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-600);
    letter-spacing: 0.5px;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: var(--gray-900);
}

.btn-contact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-size: 13px;
    font-weight: 600;
    color: var(--white);
    background-color: var(--purple-mid);
    border-radius: 50px;
    transition: opacity 0.2s ease;
}

.btn-contact:hover {
    opacity: 0.9;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    color: var(--gray-900);
}

.nav-mobile {
    display: none;
    flex-direction: column;
    padding: 16px 32px;
    background-color: var(--white);
    border-bottom: 1px solid var(--gray-200);
}

.nav-link-mobile {
    display: block;
    padding: 14px 0;
    font-size: 15px;
    color: var(--gray-600);
    border-bottom: 1px solid var(--gray-100);
}

.btn-contact-mobile {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    background-color: var(--purple-mid);
    border-radius: 50px;
}

@media (max-width: 768px) {
    .nav-desktop {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-mobile.active {
        display: flex;
    }
}

.hidden {
    display: none !important;
}

/* Hero Section */
.hero {
    padding-top: 140px;
    padding-bottom: 0;
    background-color: var(--white);
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding-bottom: 100px;
}

.hero-content {
    animation: fadeInUp 0.6s ease-out;
}

.hero-title {
    font-size: 52px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 28px;
    line-height: 1.1;
}

.gradient-text {
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 17px;
    color: var(--gray-600);
    margin-bottom: 36px;
    max-width: 460px;
    line-height: 1.75;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    background-color: var(--purple-mid);
    border-radius: 50px;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.btn-primary:hover {
    opacity: 0.9;
}

.btn-primary:hover svg {
    transform: translateX(4px);
}

.btn-primary svg {
    transition: transform 0.2s ease;
}

.hero-image-wrapper {
    position: relative;
    animation: slideInRight 0.6s ease-out 0.2s both;
}

.hero-image-glow {
    position: absolute;
    top: -4px;
    right: -20px;
    width: 57px;
    height: 60px;
    background: var(--orange-glow);
    border-radius: 98%;
    filter: blur(40px);
    opacity: 0.7;
    z-index: 1;
}

.hero-image-bottom-glow {
    position: absolute;
    bottom: -2px;
    left: -20px;
    width: 500px;
    height: 110px;
    background: var(--purple-light);
    border-radius: 183%;
    filter: blur(40px);
    opacity: 0.7;
    z-index: -86;
}

.hero-image-container {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    z-index: 2;
}

.hero-image {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.hero-floating-card {
    position: absolute;
    bottom: 28px;
    left: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    background-color: rgb(180 180 182);
    backdrop-filter: blur(12px);
    border-radius: 14px;
    z-index: 3;
}

.floating-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background-color: var(--purple-mid);
    border-radius: 12px;
    flex-shrink: 0;
}

.floating-card-title {
    font-family: 'Outfit', sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 3px;
}

.floating-card-text {
    font-size: 14px;
    color: var(--white);
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 44px;
    }
    
    .hero-container {
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding-top: 120px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 48px;
        padding-bottom: 60px;
    }
    
    .hero-content {
        order: 2;
        text-align: center;
    }
    
    .hero-title {
        font-size: 38px;
    }
    
    .hero-description {
        margin-left: auto;
        margin-right: auto;
        font-size: 16px;
    }
    
    .hero-image-wrapper {
        order: 1;
        max-width: 380px;
        margin: 0 auto;
    }
    
    .hero-image-glow {
        width: 60px;
        height: 60px;
        filter: blur(30px);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }
    
    .hero-description {
        font-size: 15px;
    }
}

/* Wave Divider */
.wave-divider {
    margin-top: -2px;
    line-height: 0;
}

.wave-divider svg {
    width: 100%;
    height: 100px;
}

@media (max-width: 768px) {
    .wave-divider svg {
        height: 60px;
    }
}

/* Pillars Section */
.pillars {
    padding: 100px 0;
    background-color: var(--purple-dark);
}

.pillars-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: var(--purple-mid);
    letter-spacing: 2px;
    margin-bottom: 18px;
}

.section-title-light {
    font-size: 42px;
    font-weight: 700;
    color: var(--white);
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.pillar-card {
    padding: 36px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: background-color 0.2s ease;
}

.pillar-card:hover {
    background-color: rgba(255, 255, 255, 0.08);
}

.pillar-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background-color: rgba(157, 92, 229, 0.15);
    border-radius: 14px;
    margin-bottom: 24px;
    color: var(--purple-mid);
}

.pillar-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 14px;
}

.pillar-description {
    font-size: 15px;
    color: var(--gray-400);
    line-height: 1.75;
}

@media (max-width: 1024px) {
    .pillars-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pillars {
        padding: 70px 0;
    }
    
    .section-title-light {
        font-size: 34px;
    }
    
    .pillars-grid {
        grid-template-columns: 1fr;
    }
    
    .pillars-header {
        margin-bottom: 50px;
    }
}

/* About Section */
/* --- ABOUT SECTION --- */
.about {
    padding: 120px 0;
    background-color: var(--white);
    overflow: hidden;
}

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

.section-label-dark {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: var(--purple-mid);
    letter-spacing: 2px;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.section-title-dark {
    font-size: 46px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 28px;
    line-height: 1.15;
}

.about-text {
    font-size: 16px;
    color: var(--gray-600);
    margin-bottom: 22px;
    line-height: 1.8;
}

/* --- BENTO IMAGE GRID --- */
.about-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* Row 1: Top card height | Row 2: Middle gap | Row 3: Bottom card height */
    grid-template-rows: 180px 80px 180px;
    gap: 10px;
}

/* Common Styles for all 4 items */
.about-img,
.curated-quality-card,
.percent-card {
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    width: 100%;
    transition: all 0.3s ease;
}

/* 1. Top Left Image (Tall) */
.about-images .about-img:nth-of-type(1) {
    grid-column: 1;
    grid-row: 1 / 3; /* Ends halfway through row 2 */
    height: 93%;
    object-fit: cover;
    margin-top: 20px;
}

/* 2. Purple Card (Top Right) - Slightly larger than image top */
.curated-quality-card {
    grid-column: 2;
    grid-row: 1 / 2;
    background-color: var(--purple-mid);
    padding: 35px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--white);
    height: 100%;
}

.curated-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.curated-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

/* 3. Bottom Right Image (Tall) */
.about-images .about-img:nth-of-type(2) {
    grid-column: 2;
    grid-row: 2 / 4; /* Starts in row 2 gap, ends at bottom */
    height: 93%;
    object-fit: cover;
}

.percent-card {
    grid-column: 1;
    grid-row: 3 / 4;
    background-color: #decfee;
    border: 2px solid var(--purple-mid);
    padding: 35px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.percent-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--purple-light);
    line-height: 1;
    margin-bottom: 8px;
}

.percent-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-700);
    line-height: 1.4;
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .about-grid { gap: 50px; }
    .section-title-dark { font-size: 38px; }
}

@media (max-width: 768px) {
    .about { padding: 80px 0; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }

    .about-images {
        grid-template-columns: 1fr;
        grid-template-rows: auto; /* Stacks naturally on mobile */
    }

    .about-images .about-img:nth-of-type(1),
    .about-images .about-img:nth-of-type(2) {
        grid-row: auto;
        height: 300px;
    }

    .curated-quality-card, .percent-card {
        grid-row: auto;
        height: auto;
        padding: 40px 30px;
    }
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background-color: var(--purple-dark);
}

.contact-header {
    text-align: center;
    margin-bottom: 70px;
}

.contact-subtitle {
    font-size: 17px;
    color: var(--gray-400);
    margin-top: 14px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 48px;
    max-width: 960px;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 48px;
}

.contact-info-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 32px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 28px;
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background-color: transparent;
    border-radius: 12px;
    color: var(--purple-mid);
    flex-shrink: 0;
}

.contact-label {
    display: block;
    font-size: 13px;
    color: var(--gray-400);
    margin-bottom: 5px;
}

.contact-value {
    display: block;
    font-size: 15px;
    font-weight: 500;
    color: var(--white);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 16px 20px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: var(--white);
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--purple-mid);
    background-color: rgba(255, 255, 255, 0.08);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--gray-500);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    width: 100%;
    padding: 16px 32px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    background-color: var(--purple-mid);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.btn-submit:hover {
    opacity: 0.9;
}

@media (max-width: 768px) {
    .contact {
        padding: 70px 0;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        padding: 32px;
    }
    
    .contact-info {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 36px;
    }
    
    .contact-header {
        margin-bottom: 50px;
    }
}

/* Footer */
.footer {
    padding: 70px 0 48px;
    background-color: var(--purple-dark);
    text-align: center;
}

.footer-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 28px;
    filter: brightness(0) invert(1);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 36px;
    margin-bottom: 36px;
}

.footer-link {
    font-size: 15px;
    color: var(--gray-400);
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: var(--white);
}

.footer-registration,
.footer-address {
    font-size: 13px;
    color: var(--gray-500);
    margin-bottom: 10px;
}

.footer-copyright {
    font-size: 13px;
    color: var(--gray-500);
    margin-top: 28px;
}

@media (max-width: 768px) {
    .footer-links {
        flex-direction: column;
        gap: 18px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

#kom-flow-root .kom_container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
    width: 100% !important;
    color: #f3f4f6 !important;
}

.kom_contact-alert-success {
    color: #f3f4f6 !important;
}
