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

:root {
    --cyan: #00d4ff;
    --blue: #4a69ff;
    --purple: #d946ef;
    --dark: #0a0a0a;
    --gray: #86868b;
    --light-gray: #f5f5f7;
    --cream: #FAF6F0;
    --cream-mid: #F5EDE0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #ffffff;
    color: var(--dark);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.logo-img {
    height: 48px;
    width: auto;
    display: block;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--cyan), var(--blue), var(--purple));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
}

.logo img {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    color: var(--dark);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
    opacity: 0.8;
}

.nav-links a:hover {
    opacity: 1;
    background: linear-gradient(135deg, var(--cyan), var(--purple));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-button {
    position: relative;
    background: transparent;
    color: var(--dark);
    padding: 10px 24px;
    border-radius: 100px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border: 1.5px solid transparent;
    background-clip: padding-box;
    box-shadow: inset 0 0 0 1.5px transparent;
    outline: 1.5px solid;
    outline-color: transparent;
    background-image: none;
    transition: opacity 0.3s ease;
    /* gradient border via pseudo */
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, var(--cyan), var(--blue), var(--purple)) border-box;
    border: 1.5px solid transparent;
}

.cta-button:hover {
    opacity: 0.75;
}

/* Hero Section */
.hero {
    margin-top: 72px;
    min-height: calc(100vh - 72px);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, #FAF2E6 0%, #F5EDE0 50%, #EFE8DC 100%);
}

/* Hero side images */
.hero-img {
    position: absolute;
    top: 0;
    height: 100%;
    width: 52%;
    overflow: hidden;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    opacity: 0;
    transition: opacity 1.8s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-img-left {
    left: 0;
    -webkit-mask-image: linear-gradient(to right, black 0%, black 45%, transparent 88%);
    mask-image: linear-gradient(to right, black 0%, black 45%, transparent 88%);
}

.hero-img-right {
    right: 0;
    -webkit-mask-image: linear-gradient(to left, black 0%, black 45%, transparent 88%);
    mask-image: linear-gradient(to left, black 0%, black 45%, transparent 88%);
}

@media (max-width: 768px) {
    .hero-img { display: none; }
}


.hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 24px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-eyebrow {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.hero-title {
    font-size: clamp(56px, 10vw, 110px);
    font-weight: 800;
    line-height: 1.0;
    margin-bottom: 16px;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.15s forwards, colorShift 6s ease infinite 1s;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, var(--cyan), var(--blue), var(--purple), var(--cyan));
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

@keyframes colorShift {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-subtitle {
    font-size: clamp(17px, 2vw, 21px);
    font-weight: 400;
    color: var(--gray);
    max-width: 580px;
    margin: 0 auto 36px;
    line-height: 1.65;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.3s forwards;
}

.gradient-text {
    background: linear-gradient(135deg, var(--cyan), var(--blue), var(--purple));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}


.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 1s ease 0.6s forwards;
}

.primary-button {
    background: linear-gradient(135deg, var(--cyan), var(--blue), var(--purple));
    border: none;
    color: #fff;
    padding: 16px 40px;
    border-radius: 100px;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.primary-button:hover {
    opacity: 0.75;
    transform: translateY(-2px);
}

.secondary-button {
    background: transparent;
    color: var(--gray);
    padding: 16px 40px;
    border-radius: 100px;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    border: 2px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.secondary-button:hover {
    border-color: rgba(0,0,0,0.25);
    color: var(--dark);
}

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

/* Hero trust chips */
.hero-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 32px;
    opacity: 0;
    animation: fadeInUp 1s ease 0.9s forwards;
}

.trust-chip {
    font-size: 13px;
    font-weight: 500;
    color: var(--gray);
    background: rgba(255,255,255,0.7);
    border: 1px solid rgba(0,0,0,0.07);
    border-radius: 100px;
    padding: 6px 16px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

/* Hero floating badges */
.hero-badge {
    position: absolute;
    background: white;
    border-radius: 18px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08), 0 1px 3px rgba(0,0,0,0.06);
    z-index: 2;
    animation: fadeInUp 0.9s ease 1.1s both;
}

.hero-badge-left {
    left: 4%;
    top: 52%;
    transform: translateY(-50%);
}

.hero-badge-right {
    right: 4%;
    top: 36%;
    transform: translateY(-50%);
}

.badge-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.badge-green {
    background: #D6F0DC;
    color: #2E8B57;
}

.badge-warm {
    background: #fae8fd;
    color: var(--purple);
}

.badge-number {
    font-size: 18px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.1;
}

.badge-label {
    font-size: 12px;
    color: var(--gray);
    margin-top: 2px;
}

@media (max-width: 1000px) {
    .hero-badge { display: none; }
}

/* Stats Section */

/* Services Section */
.services {
    background: var(--light-gray);
    padding: 120px 24px;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.section-eyebrow {
    font-size: 16px;
    font-weight: 600;
    background: linear-gradient(135deg, var(--cyan), var(--purple));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.section-title {
    font-size: clamp(36px, 6vw, 56px);
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.section-description {
    font-size: 20px;
    color: var(--gray);
    line-height: 1.6;
}

.services-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.services-left {
    display: flex;
    flex-direction: column;
}

.services-list {
    display: flex;
    flex-direction: column;
}

.service-row {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 28px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.service-row:first-child {
    border-top: 1px solid rgba(0, 0, 0, 0.07);
}

.service-number {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    background: linear-gradient(135deg, var(--cyan), var(--blue), var(--purple));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    min-width: 32px;
    padding-top: 4px;
}

.service-body {
    flex: 1;
}

.service-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dark);
}

.service-description {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.7;
}

/* Bubble images */
.services-right {
    position: relative;
    height: 520px;
}

.bubble {
    position: absolute;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid white;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.bubble img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.bubble-large {
    width: 280px;
    height: 280px;
    top: 20px;
    left: 40px;
    border: 5px solid white;
    box-shadow: 0 24px 70px rgba(74, 105, 255, 0.15);
}

.bubble-medium {
    width: 200px;
    height: 200px;
    top: 0;
    right: 20px;
    box-shadow: 0 20px 60px rgba(217, 70, 239, 0.15);
}

.bubble-offset {
    top: 60px;
}

.bubble-small {
    width: 150px;
    height: 150px;
    box-shadow: 0 16px 50px rgba(0, 212, 255, 0.15);
}

.bubble-low {
    bottom: 40px;
    left: 120px;
}

@media (max-width: 768px) {
    .services-layout {
        grid-template-columns: 1fr;
    }
    .services-right {
        height: 340px;
    }
    .bubble-large { width: 180px; height: 180px; }
    .bubble-medium { width: 140px; height: 140px; }
    .bubble-small { width: 110px; height: 110px; }
}

/* Partners Section */
.partners {
    background: linear-gradient(180deg, var(--light-gray) 0%, #ffffff 100%);
    padding: 120px 24px;
}

.partners-grid {
    max-width: 1100px;
    margin: 64px auto 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.partner-card {
    background: white;
    border-radius: 16px;
    text-align: center;
    transition: all 0.35s ease;
    border: 1px solid rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
}

.partner-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 1.5px;
    background: linear-gradient(135deg, var(--cyan), var(--blue), var(--purple));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.partner-card:hover {
    box-shadow: 0 20px 56px rgba(74, 105, 255, 0.12);
    transform: translateY(-6px);
    border-color: transparent;
}

.partner-card:hover::after {
    opacity: 1;
}

.partner-img-wrap {
    width: 100%;
    height: 150px;
    background: #fafafa;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.partner-img-wrap img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.partner-card:hover .partner-img-wrap img {
    transform: scale(1.06);
}

.partner-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
    padding: 14px 16px;
    line-height: 1.4;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* About Section */
.about {
    background: linear-gradient(180deg, var(--light-gray) 0%, white 100%);
    padding: 120px 24px;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-year {
    font-size: 72px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--cyan), var(--blue), var(--purple));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

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

/* Contact Section */
.contact {
    background: var(--dark);
    color: white;
    padding: 120px 24px;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
}

.contact-info h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.contact-info p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    line-height: 1.6;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-method {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-label {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-value {
    font-size: 18px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-value:hover {
    background: linear-gradient(135deg, var(--cyan), var(--purple));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Contact Form */
.contact-form-wrap {
    background: white;
    border-radius: 24px;
    padding: 40px 44px 36px;
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 8px 40px rgba(0,0,0,0.06);
}

.form-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
}

.form-subtitle {
    font-size: 15px;
    color: var(--gray);
    margin-bottom: 32px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 20px;
    flex: 1;
}

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

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
    letter-spacing: 0.3px;
}

.form-group input,
.form-group select {
    padding: 12px 16px;
    border: 1.5px solid rgba(0,0,0,0.12);
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    color: var(--dark);
    background: white;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2386868b' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
    cursor: pointer;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(74, 105, 255, 0.1);
}

.form-group input::placeholder {
    color: #c0c0c5;
}

.form-submit-btn {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--cyan), var(--blue), var(--purple));
    color: white;
    font-size: 16px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    margin-top: 8px;
    transition: opacity 0.3s ease, transform 0.2s ease;
}

.form-submit-btn:hover {
    opacity: 0.88;
    transform: translateY(-1px);
}

.form-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.form-success {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px 20px 0;
    gap: 12px;
    margin: 0;
}

.success-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cyan), var(--blue), var(--purple));
    color: white;
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.form-success h4 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
}

.form-success p {
    font-size: 15px;
    color: var(--gray);
}

@media (max-width: 600px) {
    .form-row { grid-template-columns: 1fr; }
    .contact-form-wrap { padding: 32px 24px; }
}

/* Footer */
footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.5);
    padding: 40px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

footer p {
    font-size: 14px;
}

/* Mobile Menu */
.mobile-menu-button {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--dark);
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-button {
        display: block;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .primary-button,
    .secondary-button {
        width: 100%;
        max-width: 300px;
    }

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

    .contact-container {
        grid-template-columns: 1fr;
    }
}

/* Scroll Animations */
.fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-section.visible {
    opacity: 1;
    transform: translateY(0);
}
