@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&family=Fredoka:wght@400;500;600;700&family=Baloo+2:wght@400;500;600;700;800&display=swap');

:root {
    --primary: #f0641e;
    --primary-hover: #d55618;
    --bg-cream: #fffcf7;
    --text-dark: #2d2d2d;
    --text-dark-brown: #4a3a2a;
    --text-muted: #666666;
    --white: #ffffff;
    --card-bg: #fff9f0;
    --btn-light: #fdf1e1;
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-cream);
    color: var(--text-dark);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Background Pattern */
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 40c-2.2 0-4 1.8-4 4s1.8 4 4 4 4-1.8 4-4-1.8-4-4-4zm15-5c-2.2 0-4 1.8-4 4s1.8 4 4 4 4-1.8 4-4-1.8-4-4-4zm15 0c-2.2 0-4 1.8-4 4s1.8 4 4 4 4-1.8 4-4-1.8-4-4-4zm15 5c-2.2 0-4 1.8-4 4s1.8 4 4 4 4-1.8 4-4-1.8-4-4-4zM50 65c-5.5 0-10-4.5-10-10s4.5-10 10-10 10 4.5 10 10-4.5 10-10 10z' fill='%23ff7d29' fill-opacity='0.03'/%3E%3C/svg%3E");
    z-index: -1;
}

header {
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    background: rgba(255, 252, 247, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

.logo img {
    height: 70px;
    object-fit: contain;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-menu ul li a {
    text-decoration: none;
    color: var(--text-dark-brown);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu ul li a.active {
    color: var(--primary);
}

.nav-menu ul li a.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary);
    border-radius: 10px;
}

.auth-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 0.75rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-icon {
    height: 24px;
    width: auto;
    object-fit: contain;
}

.btn:active {
    transform: scale(0.95);
}

.nav-actions .btn {
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-login {
    background-color: #fdf5eb;
    color: var(--text-dark-brown);
    border-radius: 50px !important;
}

.btn-register {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 10px 20px rgba(245, 48, 3, 0.15);
    border-radius: 50px !important;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 125, 41, 0.3);
}

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

.btn-light {
    background-color: var(--btn-light);
    color: var(--text-dark-brown);
}

.btn-light:hover {
    background-color: #f0e6d8;
    transform: translateY(-2px);
}

.hero {
    padding: 4rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    align-items: center;
    gap: 4rem;
}


.hero-content h1 .heart {
    font-size: 2.5rem;
    display: inline-block;
    vertical-align: middle;
}

.hero-content h1 span {
    color: var(--primary);
    vertical-align: middle;
    margin-left: 0.5rem;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 500px;
}

.hero .cta-group {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 2rem;
}

.hero .btn {
    padding: 0.85rem 2rem;
    font-size: 1.05rem;
    border-radius: 50px;
    height: auto;
    width: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.hero .btn img {
    width: 20px !important;
    height: 20px !important;
    object-fit: contain;
}

.register-footer {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.register-footer a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

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

.image-container {
    position: relative;
    z-index: 1;
}

.image-container img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.1));
}

.circle-bg {
    position: absolute;
    width: 90%;
    height: 90%;
    border: 2px solid #e8dfd0;
    border-radius: 50%;
    z-index: 0;
}

.floating-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.4rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    z-index: 3;
}

.icon-1 {
    top: 10%;
    left: -5%;
}

.icon-2 {
    bottom: 20%;
    left: -8%;
}

.icon-3 {
    top: 15%;
    right: -5%;
}

.icon-4 {
    bottom: 15%;
    right: 5%;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(-50%) translateX(0);
    }

    50% {
        transform: translateY(-60%) translateX(-10px);
    }
}

.features-bar {
    max-width: 1200px;
    margin: 2rem auto 4rem;
    background: var(--white);
    border-radius: 2rem;
    padding: 3rem 1.5rem;
    display: flex;
    justify-content: space-between;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    padding: 0 1rem;
    border-right: 1px solid #f2f2f2;
}

.feature-item:last-child {
    border-right: none;
}

.feature-text h3 {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-dark-brown);
}

.feature-text p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 2rem;
    max-width: 200px;
}

.feature-illustration {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: auto;
}

.feature-illustration img {
    max-width: 100%;
    height: 120px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.feature-item:hover .feature-illustration img {
    transform: scale(1.05);
}

@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 2rem;
    }

    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

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

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

    .features-bar {
        flex-direction: column;
        gap: 2rem;
        margin: 2rem 5%;
    }

    .feature-item {
        border-right: none;
        border-bottom: 1px solid #f0f0f0;
        padding-bottom: 1.5rem;
    }

    .feature-item:last-child {
        border-bottom: none;
    }
}

/* About Section */
.about-section {
    padding: 8rem 1.5rem;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 2rem;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease;
}

.about-image img:hover {
    transform: translateY(-10px);
}

.badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: #fff5eb;
    color: var(--primary);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content h2 {
    font-family: 'Fredoka', sans-serif;
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-dark-brown);
}

.about-content h2 span {
    color: var(--primary);
}

.about-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.why-join {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    margin-bottom: 3rem;
}

.why-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.why-icon {
    font-size: 1.5rem;
    background: var(--bg-cream);
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    flex-shrink: 0;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03);
}

.why-text h4 {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark-brown);
}

.why-text p {
    font-size: 1rem;
    margin-bottom: 0;
    line-height: 1.6;
    color: var(--text-muted);
}

@media (max-width: 1024px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }

    .about-image {
        order: 2;
    }

    .about-content {
        order: 1;
    }

    .why-join {
        gap: 1.5rem;
        margin-top: 2.5rem;
    }

    .why-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        background: #ffffff;
        padding: 2rem 1.5rem;
        border-radius: 24px;
        border: 1px solid rgba(240, 100, 30, 0.1);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.03);
    }

    .why-icon {
        margin-bottom: 1rem;
        background: #fff5eb;
        width: 64px;
        height: 64px;
        font-size: 1.8rem;
        border-radius: 20px;
    }

    .about-content h2 {
        font-size: 2.2rem;
        margin-bottom: 1.2rem;
    }

    .about-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .why-text h4 {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }

    .why-text p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
}

/* Footer */
.main-footer {
    background-color: #fcfcfc;
    padding: 6rem 1.5rem;
    border-top: 1px solid #f0f0f0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.footer-info {
    max-width: 500px;
}

.copyright {
    font-size: 1rem;
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.copyright strong {
    font-weight: 700;
}

.footer-tagline {
    font-size: 0.95rem;
    color: #718096;
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr 1.5fr;
    gap: 2rem;
}

.footer-col h4 {
    font-size: 0.75rem;
    font-weight: 800;
    color: #a0aec0;
    margin-bottom: 1.5rem;
    letter-spacing: 0.1em;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul li a {
    text-decoration: none;
    color: #2d3748;
    font-weight: 700;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--primary);
}

.office-col p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #4a5568;
    font-weight: 600;
}

.footer-right {
    display: flex;
    justify-content: flex-end;
}

.managed-by {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    border-left: 1px solid #f0f0f0;
    padding-left: 4rem;
}

.managed-by span {
    font-size: 0.7rem;
    font-weight: 800;
    color: #a0aec0;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.managed-by img {
    height: 50px;
    width: auto;
    margin: 1rem 0;
    transition: all 0.3s ease;
}

.managed-url {
    text-decoration: none;
    color: #a0aec0;
    font-size: 0.8rem;
    font-weight: 500;
}

@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 4rem;
    }

    .footer-left {
        align-items: center;
    }

    .footer-links {
        grid-template-columns: 1fr;
        width: 100%;
    }

    .footer-right {
        justify-content: center;
    }

    .managed-by {
        padding-left: 0;
        border-left: none;
        border-top: 1px solid #f0f0f0;
        padding-top: 3rem;
        width: 100%;
    }
}

.logo img {
    height: 80px;
    /* Logo size requested earlier */
    width: auto;
    display: block;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-menu ul li a {
    text-decoration: none;
    color: var(--text-dark-brown);
    font-weight: 600;
    font-size: 1rem;
    font-family: 'Fredoka', sans-serif;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-menu ul li a:hover,
.nav-menu ul li a.active {
    color: var(--primary);
}

.nav-menu ul li a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary);
    border-radius: 10px;
}

.desktop-auth {
    display: flex;
    gap: 1rem;
}

.mobile-auth {
    display: none;
}

.menu-toggle {
    display: none;
}

body {
    overflow-x: hidden;
    width: 100%;
}

/* Responsive Refinements */
@media (max-width: 1024px) {
    header {
        padding: 0.75rem 1.25rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .desktop-auth {
        display: none !important;
    }

    .logo img {
        height: 35px;
        max-width: 140px;
        width: auto;
    }

    .menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 6px;
        background: none;
        border: none;
        cursor: pointer;
        z-index: 3001;
        padding: 10px;
    }

    .menu-toggle span {
        display: block;
        width: 25px;
        height: 3px;
        background-color: var(--primary);
        border-radius: 3px;
        transition: all 0.3s ease;
    }

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

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

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

    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 75%;
        height: 100vh;
        background-color: var(--white);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateX(105%);
        visibility: hidden;
        transition: transform 0.4s ease, visibility 0.4s;
        box-shadow: -15px 0 45px rgba(0, 0, 0, 0.1);
        z-index: 3000;
        padding: 2rem;
    }

    .nav-menu.active {
        transform: translateX(0);
        visibility: visible;
    }

    /* Backdrop */
    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.4);
        backdrop-filter: blur(4px);
        z-index: 2999;
        display: none;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .menu-overlay.active {
        display: block;
        opacity: 1;
    }

    .nav-menu ul {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        margin-bottom: 3rem;
        width: 100%;
        padding: 0;
    }

    .nav-menu ul li a {
        font-size: 1.3rem;
    }

    .nav-menu ul li a.active::after {
        display: none;
    }

    .mobile-auth {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .mobile-auth .btn {
        width: 100%;
        justify-content: center;
        padding: 1rem;
    }

    /* Hero Responsive */
    .hero {
        padding: 3rem 1.5rem 4rem;
        gap: 2.5rem;
        text-align: center;
        grid-template-columns: 1fr;
    }

    .hero-content {
        order: 1;
    }

    .hero-image {
        order: 2;
        max-width: 280px;
        margin: 0 auto;
    }

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

@media (min-width: 1025px) {

    .menu-toggle,
    .mobile-auth {
        display: none;
    }
}

/* Final Mobile Width Fixes */
@media (max-width: 1024px) {

    html,
    body {
        overflow-x: hidden;
        width: 100%;
        position: relative;
    }

    .features-bar {
        flex-direction: column;
        margin: 2rem 1.5rem;
        width: auto;
        /* Allow margins to work */
        max-width: none;
        padding: 2rem 1rem;
        gap: 2rem;
    }

    .feature-item {
        border-right: none;
        border-bottom: 1px solid #f0f0f0;
        padding-bottom: 2rem;
        width: 100%;
    }

    .feature-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

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

    .feature-illustration {
        max-width: 150px;
        margin: 1.5rem auto 0;
    }

    .about-section {
        padding: 4rem 1.5rem;
    }

    .about-container {
        width: 100%;
        max-width: none;
        gap: 3rem;
    }

    .about-content h2 {
        font-size: 2.2rem;
    }

    .footer-container {
        padding: 0 1.5rem;
        width: 100%;
    }

    .footer-links {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .footer-col {
        width: 100%;
        text-align: center;
    }
}

/* Helper Classes */
.mobile-only {
    display: none;
}

@media (max-width: 1024px) {
    .mobile-only {
        display: block;
    }

    .desktop-only {
        display: none;
    }
}

/* Mobile Premium Hero Onboarding */
@media (max-width: 1024px) {
    header {
        display: none !important;
        /* Hide header for landing feel */
    }

    .hero {
        min-height: 100vh;
        background-color: #fdfaf3;
        /* Cream background */
        background-image: radial-gradient(#e5e7eb 0.5px, transparent 0.5px);
        /* Subtle pattern placeholder */
        background-size: 20px 20px;
        padding: 3rem 0 0;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        text-align: center;
        position: relative;
    }

    .hero-mobile-logo {
        margin-bottom: 2rem;
        z-index: 10;
    }

    .hero-mobile-logo img {
        height: 60px;
        width: auto;
    }

    .hero-content {
        padding: 0 1.5rem;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        flex: 1;
    }

    .hero-content h1 {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 1rem;
        max-width: 280px;
    }

    .hero-content p {
        font-size: 0.95rem;
        color: #718096;
        max-width: 300px;
        margin-bottom: 1em;
    }

    .hero-image {
        position: relative;
        width: 100%;
        max-width: 300px;
        margin-bottom: 4rem;
    }

    .mobile-action-card {
        background: var(--white);
        width: 100%;
        border-radius: 40px 40px 0 0;
        padding: 2.5rem 2rem 4rem;
        box-shadow: 0 -20px 50px rgba(0, 0, 0, 0.05);
        margin-top: auto;
        z-index: 20;
    }

    .carousel-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-bottom: 2rem;
    }

    .dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #e2e8f0;
    }

    .dot.active {
        background: var(--primary);
        width: 24px;
        border-radius: 10px;
    }

    .mobile-action-card .cta-group {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        margin-bottom: 1.5rem;
    }

    .mobile-action-card .btn {
        width: 100%;
        padding: 1.25rem;
        font-size: 1.1rem;
        border-radius: 20px;
        justify-content: center;
    }

    .mobile-action-card .btn-primary {
        box-shadow: 0 10px 20px rgba(240, 100, 30, 0.2);
    }

    .mobile-action-card .btn-primary img {
        margin-left: 10px;
        height: 20px;
    }

    .register-text {
        font-size: 0.9rem;
        color: #718096;
    }

    .register-text a {
        color: var(--primary);
        font-weight: 700;
        text-decoration: none;
    }
}


/* Final Responsive Fixes */
@media (max-width: 1024px) {
    header {
        display: flex !important;
        padding: 1.25rem 1.5rem;
        justify-content: center;
        align-items: center;
        position: fixed !important;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        background: rgba(255, 252, 247, 0.95) !important;
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(240, 100, 30, 0.05);
        box-shadow: 0 4px 25px rgba(0, 0, 0, 0.05);
    }

    .logo img {
        height: 65px;
        max-width: 220px;
    }

    .menu-toggle {
        display: none !important;
    }

    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 6rem 1.5rem 4rem;
        /* Increased top padding for fixed header */
        gap: 3rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
        margin-top: 1.2em;
    }

    .hero-content p {
        margin-top: -1em;
    }

    .cta-group {
        flex-direction: column;
        width: 100%;
    }

    .cta-group .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-image {
        max-width: 300px;
        margin: 0 auto;
    }

    .mobile-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 2rem;
    }

    .dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #e2e8f0;
    }

    .dot.active {
        background: var(--primary);
        width: 24px;
        border-radius: 10px;
    }

    .register-footer {
        margin-top: 2rem;
        font-size: 0.9rem;
        color: #718096;
    }

    .register-footer a {
        color: var(--primary);
        font-weight: 700;
        text-decoration: none;
    }
}

/* --- PAYPILOT-STYLE HERO CARD --- */
.hero-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 1.5rem;
    width: 100%;
}

.hero-card {
    display: flex;
    max-width: 1100px;
    width: 100%;
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 0 1px rgba(0, 0, 0, 0.1), 0 20px 40px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(26, 26, 0, 0.1);
}

.hero-left {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hero-right {
    width: 440px;
    background-color: #fff2f2;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    border-left: 1px solid rgba(26, 26, 0, 0.1);
}

.hero-title {
    font-family: 'Fredoka', sans-serif;
    font-size: 3.5rem;
    line-height: 1.1;
    color: var(--text-dark-brown);
    margin-bottom: 1.5rem;
}

.hero-title span {
    color: var(--primary);
}

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

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 440px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-actions .btn {
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
}

.hero-actions .btn img {
    width: 18px !important;
    height: 18px !important;
}

.hero-image-box {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.hero-image-box img {
    max-width: 120%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.08));
    transform: scale(1.1);
}

.register-footer {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.register-footer a {
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
}

/* Responsive Mobile */
@media (max-width: 1024px) {
    .hero-container {
        padding: 1rem;
    }

    .hero-card {
        flex-direction: column-reverse;
        border-radius: 16px;
    }

    .hero-left {
        padding: 2rem 1.5rem 3rem;
        text-align: center;
        align-items: center;
    }

    .hero-right {
        width: 100%;
        height: 300px;
        border-left: none;
        border-bottom: 1px solid rgba(26, 26, 0, 0.1);
    }

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

    .hero-subtitle {
        margin-bottom: 2rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        order: 4;
    }

    .hero-actions .btn {
        width: 100%;
    }
}

/* --- EXACT HERO DESIGN FROM REFERENCE --- */
.hero-container {
    background-color: #fef8f0;
    /* Soft cream background */
    padding: 5rem 2rem;
    min-height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Subtle paw print background pattern */
.hero-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../img/icon-kaki.png');
    background-size: 80px;
    opacity: 0.03;
    pointer-events: none;
}

.hero-wrapper {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
    gap: 2rem;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.6);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.hero-badge img {
    width: 18px;
    height: 18px;
}

.hero-badge span {
    font-size: 0.9rem;
    color: #4a4a4a;
}

.hero-badge strong {
    color: var(--primary);
    font-weight: 700;
}

.hero-title {
    font-family: 'Fredoka', sans-serif;
    font-size: 5.5rem;
    line-height: 1;
    color: #2d241e;
    margin-bottom: 2rem;
    font-weight: 700;
}

.hero-title span {
    color: var(--primary);
}

.hero-title .heart {
    font-size: 3.5rem;
    vertical-align: middle;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #6d6d6d;
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 550px;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    padding: 1.1rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-radius: 50px;
    min-width: 280px;
    box-shadow: 0 10px 20px rgba(245, 48, 3, 0.2);
}

.btn-primary img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

.btn-beige {
    background-color: #fcebd7;
    /* Darker, more visible beige */
    color: #2d241e;
    padding: 1.1rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    min-width: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.hero-footer {
    font-size: 1rem;
    color: #6d6d6d;
}

.hero-footer a {
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
}

.hero-image img {
    width: 110%;
    height: auto;
    transform: scale(1.05);
}

/* Mobile Adjustments */
@media (max-width: 1024px) {
    .hero-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .hero-content {
        display: contents;
    }

    .hero-title {
        font-size: 3.2rem;
        /* margin-top: 0 !important; */
        order: 1;
    }

    .hero-subtitle {
        order: 2;
        margin-bottom: 2rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        order: 4;
    }

    .hero-image {
        order: 3;
        margin-top: -1em;
        /* margin-bottom: 2.5rem; */
        width: 100%;
        max-width: 320px;
    }
}