
:root {
    --color-bg-cream: #FDF5F3;
    --color-dark-main: #1A1A1A;
    --color-dark-muted: #5A5A5A;
    --color-brand-red: #DD1A18;
    --color-brand-red-dark: #B81416;
    --color-brand-green: #1EC73F;
    --color-white: #FFFFFF;
    --color-dark-accent: #0A2520;

    --font-main: 'Poppins', sans-serif;

    --radius-pill: 50px;
    --radius-bento: 24px;
    --radius-card: 20px;

    --shadow-soft: 0 10px 30px rgba(26, 26, 26, 0.08);
    --shadow-hover: 0 20px 40px rgba(26, 26, 26, 0.15);
    --shadow-card: 0 8px 32px rgba(26, 26, 26, 0.06);

    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-bg-cream);
    color: var(--color-dark-main);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

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

h1,
h2,
h3,
h4 {
    line-height: 1.15;
    margin-bottom: 1rem;
    font-weight: 700;
}

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

.text-light {
    color: var(--color-bg-cream);
}

.text-dark {
    color: var(--color-dark-main);
}

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

.bg-brown {
    background-color: var(--color-dark-main);
}

.bg-orange {
    background-color: var(--color-brand-red);
    color: var(--color-white);
}

.bg-light {
    background-color: var(--color-white);
    border: 1px solid rgba(26, 26, 26, 0.06);
}

.bg-brand-red {
    background-color: var(--color-brand-red);
    color: white;
}

.bg-dark-main {
    background-color: var(--color-dark-main);
    color: white;
}

.bg-dark-accent {
    background-color: var(--color-dark-accent);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

.section-title-sm {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.highlight {
    color: var(--color-brand-red);
    font-style: italic;
    font-weight: 800;
}

button,
.btn-primary,
.btn-secondary {
    font-family: var(--font-main);
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    border-radius: var(--radius-pill);
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background-color: var(--color-brand-red);
    color: var(--color-white);
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
}

.btn-primary:hover {
    background-color: var(--color-dark-main);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-dark-main);
    border: 2px solid var(--color-dark-main);
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
}

.btn-secondary:hover {
    background-color: var(--color-dark-main);
    color: var(--color-white);
}

.large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.pill-nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.4rem 0.5rem 0.4rem 1.25rem;
    border-radius: var(--radius-pill);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(255, 255, 255, 0.5);
    z-index: 1000;
    width: 92%;
    max-width: 860px;
}

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

.logo-img {
    height: 90px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-links a:not(.btn-primary) {
    text-decoration: none;
    color: var(--color-dark-main);
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.2s;
    position: relative;
}

.nav-links a:not(.btn-primary)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-brand-red);
    transition: width 0.3s ease;
}

.nav-links a:not(.btn-primary):hover::after {
    width: 100%;
}

.nav-links a:not(.btn-primary):hover {
    color: var(--color-brand-red);
}

.nav-links a:not(.btn-primary).active {
    color: var(--color-brand-red);
}

.nav-links a:not(.btn-primary).active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-dark-main);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(253, 245, 243, 0.97);
    backdrop-filter: blur(20px);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.mobile-menu-content .btn-primary {
    background: none;
    color: var(--color-dark-main);
    padding: 0;
    font-size: 1.5rem;
    box-shadow: none;
    border-radius: 0;
}

.mobile-menu-content .btn-primary:hover {
    background: none;
    color: var(--color-brand-red);
    transform: none;
    box-shadow: none;
}

.mobile-menu-content a {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-dark-main);
    transition: color 0.2s;
}

.mobile-menu-content a:hover {
    color: var(--color-brand-red);
}

.mobile-menu-content a.active {
    color: var(--color-brand-red);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8rem 5% 4rem;
    max-width: 1400px;
    margin: 0 auto;
    gap: 4rem;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--color-dark-main);
    line-height: 1.08;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--color-dark-muted);
    margin-bottom: 2.5rem;
    max-width: 500px;
    line-height: 1.7;
}

.cta-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.floating-img {
    width: 100%;
    max-width: 500px;
    border-radius: var(--radius-bento);
    box-shadow: var(--shadow-hover);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

.split-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8rem 5%;
    max-width: 1400px;
    margin: 0 auto;
    gap: 4rem;
}

.split-content {
    flex: 1;
    max-width: 600px;
}

.split-content p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: var(--color-dark-muted);
    line-height: 1.75;
}

.split-image {
    flex: 1;
}

.split-image img {
    border-radius: var(--radius-bento);
    box-shadow: var(--shadow-soft);
    width: 100%;
    object-fit: cover;
}

.benefits-section {
    padding: 6rem 0;
    background: var(--color-white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.benefits-column {
    background: var(--color-bg-cream);
    border-radius: var(--radius-bento);
    padding: 2.5rem;
    border: 1px solid rgba(221, 26, 24, 0.08);
}

.benefits-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(26, 26, 26, 0.06);
}

.benefits-icon {
    font-size: 2rem;
}

.benefit-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem 0;
    transition: var(--transition-smooth);
}

.benefit-item:hover {
    transform: translateX(6px);
}

.benefit-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-white);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.benefit-item h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.benefit-item p {
    font-size: 0.9rem;
    color: var(--color-dark-muted);
    margin: 0;
    line-height: 1.5;
}

.partners-section {
    padding: 6rem 0;
    overflow: hidden;
    background: var(--color-bg-cream);
}

.partners-subtitle {
    text-align: center;
    color: var(--color-dark-muted);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.founding-partners {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    margin-bottom: 4rem;
}

.founding-title {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-dark-main);
    margin-bottom: 2rem;
}

.partners-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.partner-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem;
    background: var(--color-white);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-card);
    transition: var(--transition-smooth);
    position: relative;
    min-width: 140px;
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.partner-card.founder {
    border: 2px solid rgba(221, 26, 24, 0.15);
}

.partner-card img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.partner-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-dark-main);
    text-align: center;
}

.founder-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(135deg, #DD1A18, #FF6B6B);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: var(--radius-pill);
    box-shadow: 0 4px 12px rgba(221, 26, 24, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.placeholder-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-dark-main), #333);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 0.05em;
}

.other-partners {
    margin-top: 2rem;
}

.other-partners-title {
    text-align: center;
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-dark-muted);
    margin-bottom: 1.5rem;
}

.marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.marquee:before,
.marquee:after {
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    content: "";
    z-index: 2;
}

.marquee:before {
    left: 0;
    background: linear-gradient(to right, var(--color-bg-cream) 0%, transparent 100%);
}

.marquee:after {
    right: 0;
    background: linear-gradient(to left, var(--color-bg-cream) 0%, transparent 100%);
}

.marquee-content {
    display: inline-block;
    animation: scroll 20s linear infinite;
}

.marquee-content img {
    display: inline-block;
    height: 85px;
    width: 85px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 1.25rem;
    box-shadow: var(--shadow-soft);
    vertical-align: middle;
    transition: transform 0.3s ease;
}

.marquee-content img:hover {
    transform: scale(1.1);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-33.33%);
    }
}

.steps-section {
    padding: 6rem 0;
    background: var(--color-white);
}

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

.step-card {
    background: var(--color-bg-cream);
    padding: 2rem 1.5rem;
    border-radius: var(--radius-bento);
    box-shadow: var(--shadow-card);
    transition: var(--transition-smooth);
    text-align: center;
    position: relative;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.step-number {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-brand-red);
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(221, 26, 24, 0.3);
}

.step-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-top: 0.5rem;
}

.step-card p {
    font-size: 0.95rem;
    color: var(--color-dark-muted);
    line-height: 1.6;
}

.step-icon-wrapper {
    width: 120px;
    height: 120px;
    margin: 1.5rem auto;
    background: linear-gradient(135deg, rgba(221, 26, 24, 0.08), rgba(221, 26, 24, 0.18));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.step-card:hover .step-icon-wrapper {
    transform: scale(1.08);
    background: linear-gradient(135deg, rgba(221, 26, 24, 0.12), rgba(221, 26, 24, 0.25));
    box-shadow: 0 8px 25px rgba(221, 26, 24, 0.15);
}

.step-icon {
    font-size: 3.5rem;
    line-height: 1;
}

.map-mockup {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
    overflow: hidden;
    max-width: 100%;
}

.phone-frame {
    width: 240px;
    height: 480px;
    background: #111;
    border-radius: 36px;
    padding: 10px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35), inset 0 0 0 2px #333;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.phone-frame .phone-notch {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 22px;
    background: #111;
    border-radius: 0 0 14px 14px;
    z-index: 2;
}

.phone-frame img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 26px;
    background: #111;
}

.phone-mockup {
    width: 180px;
    height: 320px;
    margin: 1rem auto;
    background: #1a1a1a;
    border-radius: 28px;
    padding: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15), inset 0 0 0 2px #333;
    position: relative;
    overflow: hidden;
}

.phone-mockup .phone-notch {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 18px;
    background: #1a1a1a;
    border-radius: 0 0 12px 12px;
    z-index: 2;
}

.phone-mockup img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.phone-mockup-bento {
    width: 200px;
    height: 360px;
    background: #1a1a1a;
    border-radius: 28px;
    padding: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25), inset 0 0 0 2px #333;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.phone-mockup-bento .phone-notch {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 18px;
    background: #1a1a1a;
    border-radius: 0 0 12px 12px;
    z-index: 2;
}

.phone-mockup-bento img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.bento-section {
    padding: 4rem 5% 6rem;
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(350px, auto);
    gap: 1.5rem;
}

.bento-card {
    border-radius: var(--radius-bento);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    position: relative;
    transition: var(--transition-smooth);
}

.bento-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.bento-content h2 {
    font-size: 2.2rem;
    font-weight: 800;
}

.bento-content h3 {
    font-size: 1.6rem;
    font-weight: 700;
}

.bento-content p {
    font-size: 1.05rem;
    opacity: 0.9;
    line-height: 1.6;
}

.bento-large {
    grid-column: span 2;
    flex-direction: row;
    align-items: center;
}

.bento-large .bento-content {
    flex: 1;
    padding-right: 2rem;
}

.bento-visual {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.coupon-visual img,
.community-visual img {
    border-radius: 12px;
    max-height: 280px;
    object-fit: cover;
    box-shadow: var(--shadow-soft);
    transition: transform 0.5s ease;
}

.bento-card:hover .coupon-visual img,
.bento-card:hover .community-visual img {
    transform: scale(1.03);
}

.community-visual {
    flex-direction: column;
    gap: 0;
    margin-top: 1rem;
}

.community-photos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    width: 100%;
}

.community-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.community-img:first-child {
    grid-column: span 2;
    height: 420px;
    object-position: center 70%;
}

.community-img:hover {
    transform: scale(1.03);
}

.filter-pills {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    justify-content: center;
    padding-left: 2rem;
}

.filter-pill {
    padding: 10px 20px;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.filter-pill:hover {
    transform: translateX(8px);
}

.filter-pill.red {
    background: var(--color-brand-red);
    color: white;
}

.filter-pill.white {
    background: white;
    color: var(--color-dark-main);
}

.pillars-section {
    padding: 6rem 0;
    background: var(--color-bg-cream);
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.pillar-card {
    background: var(--color-white);
    padding: 2.5rem 1.5rem;
    border-radius: var(--radius-bento);
    text-align: center;
    transition: var(--transition-smooth);
    border: 1px solid rgba(26, 26, 26, 0.04);
    box-shadow: var(--shadow-card);
}

.pillar-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(221, 26, 24, 0.15);
}

.pillar-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.pillar-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.pillar-card p {
    font-size: 0.9rem;
    color: var(--color-dark-muted);
    line-height: 1.6;
}

.testimonials-section {
    padding: 6rem 0;
    background: var(--color-white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    text-align: left;
}

.testimonial-card {
    background: var(--color-bg-cream);
    padding: 2.5rem;
    border-radius: var(--radius-bento);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.quote {
    font-size: 1.05rem;
    font-style: italic;
    color: var(--color-dark-muted);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.author strong {
    display: block;
    color: var(--color-dark-main);
    font-size: 0.95rem;
}

.author span {
    font-size: 0.8rem;
    color: var(--color-dark-muted);
}

.faq-section {
    padding: 6rem 0;
    background: var(--color-bg-cream);
}

.faq-list {
    max-width: 800px;
    margin: 3rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--color-white);
    border-radius: 16px;
    box-shadow: var(--shadow-card);
    transition: var(--transition-smooth);
}

.faq-item:hover {
    box-shadow: var(--shadow-hover);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    cursor: default;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-dark-main);
    font-family: var(--font-main);
    text-align: left;
    transition: color 0.2s;
    border-radius: 0;
}

.faq-question:hover {
    color: var(--color-brand-red);
}

.faq-chevron {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
    color: var(--color-brand-red);
    display: none;
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    display: block;
    padding: 0 2rem 1.5rem;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    color: var(--color-dark-muted);
    font-size: 1rem;
    line-height: 1.7;
}

.faq-cta {
    display: inline-flex;
    margin-top: 1rem;
    font-size: 0.9rem;
}

@keyframes faqFadeIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

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

.cta-section {
    padding: 6rem 5%;
    background: var(--color-white);
    overflow: hidden;
}

.cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.cta-card {
    border-radius: var(--radius-bento);
    padding: 3rem;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.cta-card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cta-card h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.cta-card p {
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-partners {
    background: var(--color-dark-main);
    color: var(--color-white);
}

.cta-partners .cta-form input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.cta-partners .cta-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.cta-partners .btn-primary {
    background: var(--color-brand-red);
    color: white;
}

.cta-partners .btn-primary:hover {
    background: var(--color-white);
    color: var(--color-dark-main);
}

.cta-users {
    background: var(--color-brand-red);
    color: var(--color-white);
}

.cta-users .cta-form input,
.cta-users .cta-form select {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: white;
}

.cta-users .cta-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.cta-users .cta-form select {
    color: rgba(255, 255, 255, 0.7);
}

.cta-users .cta-form select option {
    color: var(--color-dark-main);
    background: white;
}

.cta-users .btn-primary {
    background: var(--color-dark-main);
    color: var(--color-white);
}

.cta-users .btn-primary:hover {
    background: var(--color-white);
    color: var(--color-dark-main);
}

.cta-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex: 1;
}

.cta-form input,
.cta-form select {
    font-family: var(--font-main);
    padding: 0.9rem 1.25rem;
    border-radius: var(--radius-pill);
    border: none;
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition-smooth);
    width: 100%;
}

.cta-form input:focus,
.cta-form select:focus {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
    transform: scale(1.01);
}

.cta-form .btn-primary {
    margin-top: auto;
    padding-top: 1rem;
    width: 100%;
}

.hidden-select {
    position: absolute;
    opacity: 0;
    height: 0;
    width: 0;
    pointer-events: none;
}

.custom-select-wrapper {
    position: relative;
    width: 100%;
}

.custom-select-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.9rem 1.25rem;
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    cursor: pointer;
    transition: var(--transition-smooth);
    font-family: var(--font-main);
    font-size: 0.95rem;
}

.custom-select-trigger:hover {
    border-color: rgba(255, 255, 255, 0.5);
}

.custom-select-wrapper.open .custom-select-trigger {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.custom-select-label {
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.custom-select-label.selected {
    color: var(--color-white);
}

.custom-select-arrow {
    flex-shrink: 0;
    margin-left: 1rem;
    color: rgba(255, 255, 255, 0.6);
    transition: transform 0.3s ease;
}

.custom-select-wrapper.open .custom-select-arrow {
    transform: rotate(180deg);
}

.custom-select-options {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: var(--color-dark-main);
    border-radius: 16px;
    list-style: none;
    padding: 0.5rem;
    margin: 0;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 50;
    max-height: 280px;
    overflow-y: auto;
}

.custom-select-wrapper.open .custom-select-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.custom-select-option {
    padding: 0.75rem 1.25rem;
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.93rem;
    font-family: var(--font-main);
    cursor: pointer;
    transition: all 0.2s ease;
}

.custom-select-option:hover {
    background: rgba(221, 26, 24, 0.15);
    color: var(--color-white);
    padding-left: 1.5rem;
}

.custom-select-option.active {
    background: var(--color-brand-red);
    color: var(--color-white);
    font-weight: 600;
}

.custom-select-options::-webkit-scrollbar {
    width: 5px;
}

.custom-select-options::-webkit-scrollbar-track {
    background: transparent;
}

.custom-select-options::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
}

.form-error {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--color-white);
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    font-size: 0.9rem;
    font-family: var(--font-main);
    text-align: center;
    animation: fadeInUp 0.3s ease;
}

.form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem 0;
    animation: fadeInUp 0.5s ease;
}

.form-success.show {
    display: flex;
}

.success-icon {
    font-size: 3rem;
}

.form-success p {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.footer {
    background-color: var(--color-dark-main);
    color: var(--color-white);
    text-align: center;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-logo {
    height: 90px;
    width: auto;
}

.footer p {
    font-size: 1rem;
    opacity: 0.7;
}

.footer-social {
    margin: 1rem 0;
}

.social-link {
    color: var(--color-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.5rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-pill);
    transition: var(--transition-smooth);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
}

.footer-links {
    margin-top: 2rem;
    opacity: 0.4;
    font-size: 0.85rem;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.12s;
}

.delay-2 {
    transition-delay: 0.24s;
}

.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 1000;
}

.fab {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: white;
    box-shadow: var(--shadow-hover);
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition-smooth);
    border: none;
}

.fab-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.fab-top {
    background: var(--color-dark-main);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.fab-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.fab:hover {
    transform: scale(1.1);
}

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

@media (max-width: 992px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }

    .bento-large {
        grid-column: span 1;
        flex-direction: column;
    }

    .bento-large .bento-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }

    .map-mockup {
        min-height: 510px;
        padding: 1rem 0;
        overflow: visible;
    }



    .split-section {
        flex-direction: column;
        text-align: center;
    }

    .split-content {
        max-width: 100%;
    }

    .steps-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 8rem;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-subtitle {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .cta-group {
        justify-content: center;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .cta-grid {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .filter-pills {
        padding-left: 0;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 2.2rem;
    }



    .bento-card {
        padding: 2rem 1.5rem;
    }

    .cta-section {
        padding: 4rem 2%;
    }

    .cta-card {
        padding: 2rem 1.25rem;
        max-width: 100%;
        overflow: hidden;
    }

    .cta-card h2 {
        font-size: 1.3rem;
    }

    .pillars-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .partners-grid {
        gap: 1rem;
    }

    .partner-card {
        min-width: 120px;
        padding: 1rem;
    }

    .partner-card img,
    .placeholder-logo {
        width: 60px;
        height: 60px;
    }

    .cta-card {
        padding: 2rem 1.5rem;
    }

    .phone-mockup {
        width: 150px;
        height: 270px;
    }

    .floating-img {
        max-width: 350px;
    }
}

@media (max-width: 480px) {
    .pill-nav {
        width: 95%;
        padding: 0.4rem 0.5rem 0.4rem 0.75rem;
    }

    .logo-img {
        height: 50px;
    }

    .hero {
        padding-top: 7rem;
        padding-bottom: 2rem;
    }

    .cta-section {
        padding: 3rem 1%;
    }

    .cta-card {
        padding: 1.5rem 1rem;
    }

    .partner-card {
        min-width: 100px;
    }



    .bento-section {
        padding: 3rem 4% 4rem;
    }
}