/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Exact colors from screenshot */
    --bg-white: #ffffff;
    --text-black: #1a1a1a;
    --text-gray: #666666;
    --orange-primary: #ff8c42;
    --green-nav: #baff66;
    
    --ink: #18181b;
    --line: #e4e4e7;
    --soft: #f6f6f8;
    --white: #ffffff;
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-white);
    color: var(--text-black);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navbar - Pill Shape on top right */
.top-nav-wrapper {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10001;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.pill-nav {
    display: flex;
    align-items: center;
    background-color: #c1ff5b; /* Bright light green */
    border-radius: 50px;
    padding: 4px 4px 4px 14px;
    height: 38px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    will-change: width, padding;
    transition:
        width 260ms cubic-bezier(0.16, 1, 0.3, 1),
        padding 260ms cubic-bezier(0.16, 1, 0.3, 1),
        gap 260ms cubic-bezier(0.16, 1, 0.3, 1),
        background-color 160ms ease,
        box-shadow 160ms ease;
    overflow: hidden;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 12px;
    will-change: width, max-width, opacity;
    transition:
        max-width 260ms cubic-bezier(0.16, 1, 0.3, 1),
        width 260ms cubic-bezier(0.16, 1, 0.3, 1),
        opacity 160ms ease,
        padding 260ms cubic-bezier(0.16, 1, 0.3, 1),
        gap 260ms cubic-bezier(0.16, 1, 0.3, 1);
    max-width: 300px;
    opacity: 1;
    white-space: nowrap;
}

.nav-divider {
    width: 1px;
    height: 18px;
    background: rgba(0, 0, 0, 0.15);
    margin: 0 4px;
}

.nav-item {
    font-size: 0.85rem;
    font-weight: 500;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.nav-menu-btn {
    background: #61a80d; /* Dark green */
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-left: 12px;
    transition:
        margin 260ms cubic-bezier(0.16, 1, 0.3, 1);
    font-size: 0.95rem;
}

.nav-menu-btn:hover {
    transform: scale(1.05);
}

/* Scrolled state (shrinks to just the button) */
.top-nav-wrapper.scrolled .nav-links,
.top-nav-wrapper.menu-open .nav-links,
.top-nav-wrapper.scrolled .nav-welcome,
.top-nav-wrapper.menu-open .nav-welcome,
.top-nav-wrapper.scrolled .nav-divider,
.top-nav-wrapper.menu-open .nav-divider {
    min-width: 0;
    max-width: 0;
    width: 0;
    opacity: 0;
    gap: 0;
    padding: 0;
    margin: 0;
    pointer-events: none;
    overflow: hidden;
}

.top-nav-wrapper.scrolled .nav-menu-btn,
.top-nav-wrapper.menu-open .nav-menu-btn {
    margin-left: 0;
}
.top-nav-wrapper.scrolled .pill-nav {
    padding: 4px !important;
    gap: 0 !important;
}

/* Menu open state */
.top-nav-wrapper.menu-open .pill-nav {
    background-color: transparent;
    box-shadow: none;
}
.nav-menu-btn.is-active {
    background: #7bdc1c; /* Lighter green */
    border: 2px solid #b7f96a;
    color: #fff;
    transform: none; /* cancel hover scale so it stays stable */
    box-shadow: 0 4px 12px rgba(123, 220, 28, 0.3);
}

/* Hero Section */
.hero-section {
    padding-top: 80px;
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
}

.hero-header-top {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 10;
}

.greeting-badge {
    display: inline-block;
    border: 1.5px solid var(--text-black);
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 2rem;
    background: #fff;
}

.main-heading {
    font-size: 4.5rem;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

.text-orange {
    color: var(--orange-primary);
}

.sub-heading {
    font-size: 1.5rem;
    color: var(--text-gray);
    font-weight: 400;
}

/* 3-Column Layout */
.hero-main-layout {
    display: grid;
    grid-template-columns: 250px 1fr 250px;
    gap: 2rem;
    flex-grow: 1;
    align-items: end;
    padding-bottom: 4rem;
}

/* Side Columns */
.side-column {
    padding-bottom: 4rem;
}

.left-quote .quote-icon {
    font-size: 3rem;
    color: #444;
    margin-bottom: 1rem;
}

.left-quote .quote-text {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.right-experience .experience-badge {
    margin-bottom: 1rem;
}

.right-experience .exp-years {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.right-experience .exp-text {
    font-size: 1.25rem;
    font-weight: 600;
}

.right-experience .exp-desc {
    font-size: 0.85rem;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Center Mascot Image */
.center-column {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.image-wrapper {
    position: relative;
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mascot-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    z-index: 1;
    margin-top: -80px; /* Pull it up to overlap the text slightly */
}

/* Glassmorphism Action Bar */
.action-bar-glass {
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.7) 0%, rgba(100, 60, 20, 0.4) 100%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 50px;
    padding: 0.5rem;
    display: inline-flex;
    gap: 0.5rem;
    margin-top: -60px;
    z-index: 5;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border: 1px solid rgba(234, 88, 12, 0.3);
}

.action-link {
    color: white;
    font-weight: 600;
    font-size: 1.05rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    position: relative;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.action-link:hover {
    background: rgba(217, 119, 6, 0.9); /* Orange hover color like screenshot */
    color: white;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .hero-main-layout {
        grid-template-columns: 1fr;
        text-align: left;
    }
    
    .hero-main-layout > .left-quote {
        order: 1;
        text-align: left;
    }
    
    .hero-main-layout > .right-experience {
        order: 2;
        text-align: right;
    }
    
    .hero-main-layout > .center-column {
        order: 3;
        margin-top: 2rem;
    }
    
    .side-column {
        padding-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .main-heading {
        font-size: 3rem;
    }
    
    .sub-heading {
        font-size: 1.125rem;
    }
    
    .action-bar-glass {
        flex-direction: row;
        width: 90%;
        max-width: 400px;
        margin: -40px auto 0;
        justify-content: space-between;
        padding: 0.35rem;
    }
    
    .action-link {
        padding: 0.8rem 0.5rem;
        font-size: 0.85rem;
        flex: 1;
        text-align: center;
    }
    
    .partner-panel {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }
    
    .partner-header {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .partner-title {
        font-size: 1.75rem;
    }
    
    .partner-action {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        gap: 1.25rem;
        margin-top: 2.5rem;
        padding: 1.5rem 1.25rem;
        border-radius: 20px;
    }
    
    .partner-question {
        font-size: 1.1rem;
    }
    
    .partner-button {
        justify-content: center;
        width: 100%;
    }
}

/* Partner Section */
.partner-section {
    position: relative;
    z-index: 8;
    width: 100%;
    margin-top: -50px; /* Overlap with hero */
    padding: 0 2rem 6rem;
}

.partner-inner {
    max-width: 1160px;
    margin: 0 auto;
}

.partner-panel {
    position: relative;
    overflow: hidden;
    padding: 4rem;
    color: #fff;
    background: linear-gradient(135deg, rgba(25, 30, 42, 0.95), rgba(86, 40, 22, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 30px;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.partner-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.partner-title {
    margin: 0;
    max-width: 470px;
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 1.2;
}

.partner-title span {
    display: block;
}

.partner-title mark {
    display: block;
    color: var(--green-nav);
    background: transparent;
}

.partner-copy {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.125rem;
    line-height: 1.7;
}

.partner-logos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 2rem;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 56px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    color: #333;
    font-weight: 600;
    font-size: 0.85rem;
    gap: 0.5rem;
}

.partner-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 4rem;
    padding: 1.25rem 1.5rem 1.25rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
}

.partner-question {
    font-size: 1.25rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.partner-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 54px;
    padding: 0 1.5rem;
    color: #111;
    background: var(--green-nav);
    border-radius: 50px;
    font-weight: 600;
}

.partner-button:hover {
    background: #a9ea55;
    transform: translateY(-2px);
}

/* Katalog Section */
.katalog-section {
    padding: 6rem 2rem;
    background: #fff;
    color: var(--ink);
}

.katalog-inner {
    max-width: 900px;
    margin: 0 auto;
}

.katalog-section h2 {
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.katalog-section .divider {
    height: 4px;
    width: 60px;
    background: var(--orange-primary);
    margin: 0 auto 2rem;
    border-radius: 4px;
}

.katalog-section p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 4rem;
}

.publisher-marquee {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: 1rem 0;
}

.publisher-marquee::before,
.publisher-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
}
.publisher-marquee::before {
    left: 0;
    background: linear-gradient(to right, white, transparent);
}
.publisher-marquee::after {
    right: 0;
    background: linear-gradient(to left, white, transparent);
}

.marquee-track {
    display: inline-flex;
    gap: 1.5rem;
    animation: marquee 20s linear infinite;
}

@keyframes marquee {
    100% { transform: translateX(-50%); }
}

.publisher-carousel {
    overflow: hidden;
    width: 100%;
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}
.publisher-carousel:not(.flickity-enabled) {
    display: flex;
    flex-wrap: nowrap;
}

.pub-cell {
    width: 160px;
    height: 50px;
    display: inline-flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    margin-right: 40px;
}

.pub-cell img {
    max-height: 35px;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%) brightness(0);
    opacity: 0.5;
    transition: 0.3s ease;
}

.pub-cell img:hover {
    filter: grayscale(100%) brightness(0);
    opacity: 1;
}

/* Why Section */
.why-creates {
    width: 100%;
    padding: clamp(56px, 7vw, 92px) clamp(20px, 5vw, 72px);
    background: #ffffff;
}

.why-wrap {
    width: min(1180px, 100%);
    margin: 0 auto;
}

.why-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 40px;
}

.why-title {
    margin: 0;
    color: var(--ink);
    font-size: clamp(24px, 2.25vw, 32px);
    font-weight: 500;
    line-height: 1.2;
}

.why-title span {
    color: #6fbd25;
}

.why-copy {
    margin: 0;
    max-width: 520px;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.why-card {
    position: relative;
    min-height: 292px;
    padding: 24px 22px 26px;
    background: #fff;
    border: 1px solid #e4e4e7;
    border-radius: 20px;
    transition: transform 0.3s ease;
}
.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.nav-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(186, 255, 102, 0.4);
}

/* Offcanvas Menu */
.offcanvas-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(15, 23, 42, 0.3); /* Subtle dark overlay */
    backdrop-filter: blur(5px); /* Soft glass effect on the page background */
    -webkit-backdrop-filter: blur(5px);
    z-index: 9999;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, backdrop-filter 0.3s ease;
    padding: 85px 20px 20px 20px !important;
    box-sizing: border-box !important;
}

.offcanvas-overlay.is-active {
    opacity: 1;
    pointer-events: auto;
}

.offcanvas-overlay.is-active .offcanvas-content {
    transform: translateX(0);
}

.offcanvas-content {
    position: relative;
    background: #2b3040; /* Match screenshot offcanvas bg */
    width: 90%;
    max-width: 280px; /* Narrower width matching screenshot */
    border-radius: 14px;
    padding: 16px 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    transform: translateX(50px);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin-right: 20px;
    max-height: 80vh !important;
    overflow-y: auto !important;
    scrollbar-width: thin !important;
    scrollbar-color: rgba(255, 255, 255, 0.15) transparent !important;
}

.offcanvas-content::-webkit-scrollbar {
    width: 4px;
}

.offcanvas-content::-webkit-scrollbar-track {
    background: transparent;
}

.offcanvas-content::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 4px;
}
    margin-top: 70px;
}

.offcanvas-overlay.is-active .offcanvas-content {
    transform: translateX(0);
}

.offcanvas-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 6px 14px;
    margin: 2px 0;
    border-radius: 8px;
    text-decoration: none;
    color: #fff; /* Restore white text color to prevent blue link issue */
    transition: all 0.2s ease;
}

.offcanvas-item:hover {
    background: rgba(255, 255, 255, 0.08);
    opacity: 1;
}

.offcanvas-item.is-active {
    background: transparent !important;
    border-left: none !important;
    padding-left: 12px !important; /* Force alignment to match other items */
}

.offcanvas-item.is-active .offcanvas-icon {
    color: #2994ff !important; /* Active blue color for icon */
}

.offcanvas-item.is-active .offcanvas-text strong {
    color: #2994ff !important; /* Active blue color for title */
}

.offcanvas-item.is-active .offcanvas-text span {
    color: rgba(41, 148, 255, 0.8) !important; /* Active blue color for description */
}

.offcanvas-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0; /* Prevent layout from squeezing the SVG icon */
    color: #a0a5b1;
    margin-top: 2px; /* Nudge down slightly to align perfectly with the first line of text */
}

.offcanvas-item .logout-icon {
    color: #ef4444 !important; /* Force red icon for logout */
}

.offcanvas-item .logout-text {
    color: #ef4444 !important; /* Force red text for logout */
}

.offcanvas-text strong {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: #e2e8f0;
    margin-bottom: 2px;
    transition: color 0.2s ease;
}

.offcanvas-text span {
    display: block;
    font-size: 0.65rem;
    color: #8892b0;
    transition: color 0.2s ease;
}

/* Logged-in Header Pill Style */
.pill-nav.logged-in-pill {
    background: #bbf7d0 !important; /* Lime green background */
    color: #1a1a1a !important;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 4px 4px 4px 14px !important;
    height: 38px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 12px rgba(10, 255, 157, 0.15) !important;
    border-radius: 50px;
}

/* Override logged-in pill when scrolled — must appear AFTER .pill-nav.logged-in-pill to win cascade */
.top-nav-wrapper.scrolled .pill-nav.logged-in-pill {
    padding: 4px !important;
    gap: 0 !important;
}

.nav-welcome {
    display: flex;
    align-items: center;
    color: #111 !important;
    font-family: 'Outfit', sans-serif;
    max-width: 200px;
    opacity: 1;
    overflow: hidden;
    white-space: nowrap;
    will-change: max-width, opacity;
    transition:
        max-width 260ms cubic-bezier(0.16, 1, 0.3, 1),
        opacity 160ms ease,
        padding 260ms cubic-bezier(0.16, 1, 0.3, 1);
    font-weight: 700;
    font-size: 0.85rem;
}

.wave-emoji {
    font-size: 1.1rem;
    animation: wave-animation 2.5s infinite;
    transform-origin: 70% 70%;
    display: inline-block;
}

@keyframes wave-animation {
    0% { transform: rotate( 0.0deg) }
    10% { transform: rotate(14.0deg) }
    20% { transform: rotate(-8.0deg) }
    30% { transform: rotate(14.0deg) }
    40% { transform: rotate(-4.0deg) }
    50% { transform: rotate(10.0deg) }
    60% { transform: rotate( 0.0deg) }
    100% { transform: rotate( 0.0deg) }
}

.nav-menu-btn.logged-in-menu-btn {
    background: #22c55e !important; /* Circular darker green button */
    border: none !important;
    color: #ffffff !important;
    width: 30px !important;
    height: 30px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    margin: 0 !important;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.nav-menu-btn.logged-in-menu-btn:hover {
    background: #16a34a !important;
}

.nav-menu-btn.logged-in-menu-btn i {
    font-size: 0.75rem !important;
}

/* Offcanvas User Card */
.offcanvas-user-card {
    background: #363c50; /* Same as the reference screenshot */
    border-radius: 12px;
    padding: 14px 16px;
    margin: -8px -4px 16px -4px;
    display: flex;
    align-items: center;
    gap: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: background 0.2s;
    text-decoration: none;
}

.offcanvas-user-card:hover {
    background: #40475e;
}

.user-card-avatar {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 50%;
    background: #9ca3af;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.user-card-avatar .avatar-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-card-avatar .avatar-placeholder svg {
    width: 28px;
    height: 28px;
    color: #ffffff;
    margin-top: 4px;
}

.user-card-avatar .avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.user-card-meta {
    display: flex;
    flex-direction: column;
    gap: 3px;
    overflow: hidden;
    min-width: 0;
}

.user-card-meta strong {
    color: #ffffff;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: -0.2px;
}

.user-card-meta span {
    color: #a1a1aa;
    font-size: 0.75rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

.offcanvas-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.06);
    margin: 8px 16px;
}

.offcanvas-brand {
    padding-top: 6px;
}

.brand-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #e2e8f0;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.brand-title i {
    color: #8892b0;
    font-size: 1rem;
}

.offcanvas-brand p {
    font-size: 0.58rem;
    color: #8892b0;
    line-height: 1.5;
    margin: 0;
}

.why-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    color: var(--ink);
    background: var(--soft);
    border-radius: 14px;
}
.why-icon svg {
    width: 23px;
    height: 23px;
}

.why-number {
    position: absolute;
    top: 28px;
    right: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    color: var(--white);
    background: var(--ink);
    border-radius: 50%;
    font-size: 14px;
    font-weight: 600;
}

.why-content {
    display: flex;
    min-height: 188px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 18px;
    text-align: center;
}

.why-card h3 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(18px, 1.45vw, 22px);
    font-weight: 500;
    line-height: 1.16;
}

.why-card p {
    margin: 18px 0 0;
    color: #666;
    font-size: 14.5px;
    line-height: 1.55;
}

/* FAQ Section */
.creates-faq-section {
    --faq-ink: #15161b;
    --faq-muted: #666a76;
    --faq-line: rgba(21, 22, 27, 0.10);
    --faq-card: #ffffff;
    --faq-soft: #f7f8fb;
    --faq-green: #b9ff66;
    --faq-orange: #ff8c42;
    --faq-blue-gray: #6f8299;
    
    width: 100%;
    padding: clamp(28px, 5vw, 72px) 0;
    background: #fff;
    color: var(--faq-ink);
}

.creates-faq-head {
    width: min(1120px, calc(100% - 36px));
    margin: 0 auto clamp(22px, 4vw, 38px);
}

.creates-faq-kicker {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    color: var(--faq-ink);
    background: var(--faq-green);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
}

.creates-faq-head h2 {
    max-width: 720px;
    margin: 14px 0 0;
    font-size: clamp(30px, 4.8vw, 56px);
    font-weight: 500;
    line-height: 1.1;
}

.creates-faq-head p {
    max-width: 610px;
    margin: 14px 0 0;
    color: var(--faq-muted);
    font-size: 1.1rem;
    line-height: 1.5;
}

.creates-faq-grid {
    width: min(1120px, calc(100% - 36px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    align-items: start;
}

.creates-faq-card {
    --faq-accent: var(--faq-green);
    --faq-accent-contrast: #15161b;
    padding: clamp(18px, 2vw, 24px);
    background: var(--faq-card);
    border: 1px solid var(--faq-line);
    border-radius: 24px;
    box-shadow: 0 14px 38px rgba(21, 22, 27, 0.04);
}

.creates-faq-card-general {
    --faq-accent: var(--faq-orange);
    --faq-accent-contrast: #ffffff;
    background: linear-gradient(180deg, rgba(255, 140, 66, 0.1), rgba(255, 255, 255, 0) 42%), #ffffff;
    border-color: rgba(255, 140, 66, 0.3);
}

.creates-faq-card-ctm {
    --faq-accent: var(--faq-green);
    --faq-accent-contrast: #15161b;
    background: linear-gradient(180deg, rgba(185, 255, 102, 0.2), rgba(255, 255, 255, 0) 42%), #ffffff;
    border-color: rgba(185, 255, 102, 0.4);
}

.creates-faq-card-dmd {
    --faq-accent: var(--faq-blue-gray);
    --faq-accent-contrast: #ffffff;
    background: linear-gradient(180deg, rgba(111, 130, 153, 0.1), rgba(255, 255, 255, 0) 42%), #ffffff;
    border-color: rgba(111, 130, 153, 0.2);
}

.creates-faq-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 20px;
}

.creates-faq-card-head span {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--faq-accent-contrast);
    background: var(--faq-accent);
    border-radius: 50%;
    font-size: 13px;
    font-weight: 700;
}

.creates-faq-card-head h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
}

.creates-faq-item {
    border-top: 1px solid var(--faq-line);
}

.creates-faq-item summary {
    position: relative;
    min-height: 58px;
    display: flex;
    align-items: center;
    padding: 15px 42px 15px 0;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    list-style: none;
}
.creates-faq-item summary::-webkit-details-marker {
    display: none;
}

.creates-faq-item summary::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--faq-soft);
    border: 1px solid var(--faq-line);
    border-radius: 50%;
    font-size: 1.25rem;
}

.creates-faq-item[open] summary::after {
    content: "-";
    background: var(--faq-accent);
    color: var(--faq-accent-contrast);
    border-color: var(--faq-accent);
}

.creates-faq-item p {
    margin: -4px 0 16px;
    padding-right: 18px;
    color: var(--faq-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

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

@media (max-width: 900px) {
    .creates-faq-grid {
        grid-template-columns: 1fr;
    }
    
    .why-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Creates Footer */
footer.creates-footer {
    position: relative;
    width: 100%;
    background: #1C1C1E;
    border-top: 1px solid #3A3A3C;
    color: #EBEBF5;
    font-family: -apple-system,BlinkMacSystemFont,"SF Pro Text","Inter",sans-serif;
    padding: 60px 24px 30px;
    overflow: hidden;
    z-index: auto;
}

.creates-footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    grid-template-columns: 2fr 1.5fr 1fr;
    display: grid;
    align-items: start;
    gap: 25px 35px;
    position: relative;
    z-index: 1;
}

.footer-column h4 {
    font-size: .9rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 12px;
    letter-spacing: .3px;
    text-transform: none;
    opacity: 1;
}

.footer-column p,
.footer-column a:not(.contact-button) {
    font-size: .85rem;
    color: #A1A1A6;
    line-height: 1.7;
    text-decoration: none;
    display: block;
    transition: color .2s ease;
    font-weight: 400;
    margin-bottom: 8px;
}

.footer-column p {
    color: #EBEBF5;
}

.footer-column a:not(.contact-button):hover {
    color: #0A84FF !important;
    text-decoration: none;
    transform: none;
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-top: 10px;
}

.contact-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 16px;
    height: 38px; 
    box-sizing: border-box;
    border-radius: 9999px;
    background: #0A84FF; 
    border: none;
    color: #FFFFFF !important; 
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.3), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
    transition: all .2s ease;
}

.contact-button:hover {
    background: #0077E6; 
    box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.35), 0 1px 10px 0 rgba(0, 0, 0, 0.2);
    transform: translateY(-2px); 
    color: #FFFFFF !important; 
}

.contact-button svg {
    width: 16px;
    height: 16px;
    fill: currentColor; 
    margin-bottom: 0px;
}

.work-hours {
    margin-top: 16px;
    font-size: .8rem; 
    color: #A1A1A6;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 400;
}

.work-hours svg {
    width: 12px;
    height: 12px;
    fill: currentColor;
    opacity: .8;
}

.footer-bottom {
    margin-top: 35px;
    padding-top: 15px;
    text-align: center;
    font-size: .75rem;
    color: #A1A1A6;
    border-top: 1px solid #3A3A3C;
    position: relative;
    z-index: 1;
}

@media (max-width: 1080px) {
    .creates-footer-inner {
        grid-template-columns: 2fr 1.5fr;
        gap: 25px 30px;
    }
}

@media (max-width: 900px) {

    .partner-header {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .partner-action {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
        border-radius: 20px;
    }
}

@media (max-width: 768px) {
    footer.creates-footer {
        padding: 40px 20px 20px;
    }
    .creates-footer-inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .footer-column p,
    .footer-column a:not(.contact-button) {
        font-size: .88rem;
    }
}
