/* --- Variables --- */
:root {
    --font-primary: 'Inter', sans-serif;
    --font-serif: 'Cinzel', serif;
    
    /* Premium Colors */
    --color-bg: #FCFCFD;
    --color-text-main: #0b0f19;
    --color-text-muted: #6b7280;
    --color-text-light: #9ca3af;
    --color-border: rgba(11, 15, 25, 0.08);
    --color-blue-accent: #11182A; /* Deep navy replaced bright blue for premium feel */
    
    /* Layout */
    --height-header: 76px;
}

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

/* --- Global --- */
body {
    font-family: var(--font-primary);
    background-color: var(--color-bg);
    color: var(--color-text-main);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* --- Components --- */

/* Header */
.header {
    height: var(--height-header);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    border-bottom: 1px solid var(--color-border);
    position: relative;
    z-index: 1000;
    background-color: var(--color-bg);
}

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

.logo__image {
    display: block;
    height: 52px;
    width: auto;
    object-fit: contain;
}

.logo__text {
    display: flex;
    flex-direction: column;
}

.logo__title {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: 0.08em;
}

.logo__subtitle {
    font-size: 0.7rem;
    color: var(--color-text-muted);
    font-weight: 400;
}

.header__nav {
    display: flex;
    gap: 2rem;
    flex: 1;
    justify-content: center;
}

.nav__link {
    text-decoration: none;
    color: var(--color-text-main);
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s;
}

.nav__link:hover {
    color: var(--color-text-muted);
}

.nav__link--active {
    font-weight: 700;
}

.header__actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
    justify-content: flex-end;
}

.lang-switch {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: var(--font-primary);
}

.lang-switch__item {
    text-decoration: none;
    color: var(--color-text-muted);
    transition: color 0.2s;
}

.lang-switch__item:hover {
    color: var(--color-text-main);
}

.lang-switch__item--active {
    color: var(--color-text-main);
    pointer-events: none;
}

.lang-switch__sep {
    color: var(--color-border);
    font-weight: 400;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--color-text-main);
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

/* Hero Section */
.hero {
    display: flex;
    height: calc(100vh - var(--height-header));
    min-height: 700px;
}

.hero__left,
.hero__right {
    width: 50%;
    display: flex;
    flex-direction: column;
}

/* Hero Left Side */
.hero__left {
    border-right: 1px solid var(--color-border);
}

.hero__copy {
    height: 100%;
    padding: 2rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.copy__heading {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 3.5vw, 3.8rem);
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 1.25rem;
    max-width: 95%;
}

.copy__paragraph {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    max-width: 85%;
}

.hero__social-proof {
    margin-top: 2.5rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.social-proof__avatars {
    display: flex;
}

.avatar-sm {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 3px solid var(--color-bg);
    margin-left: -15px;
    object-fit: cover;
    z-index: 1;
    position: relative;
    background-color: #eee;
}

.avatar-sm:first-child {
    margin-left: 0;
    z-index: 5;
}
.avatar-sm:nth-child(2) { z-index: 4; }
.avatar-sm:nth-child(3) { z-index: 3; }
.avatar-sm:nth-child(4) { z-index: 2; }

.avatar-sm--more {
    background-color: var(--color-blue-accent);
    color: var(--color-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 1;
}

.social-proof__text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.stars {
    display: flex;
    gap: 0.15rem;
    color: #F59E0B;
}

.star-icon {
    font-size: 1.1rem;
}

.social-proof__text p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}
.social-proof__text p strong {
    color: var(--color-text-main);
    font-weight: 700;
}

.copy__scroll {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-text-muted);
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
    width: max-content;
}

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

/* Hero Right Side */
.hero__image-wrapper {
    height: 70%;
    position: relative;
    overflow: hidden;
    background-color: var(--color-blue-accent);
}

.reel-placeholder {
    background: url('hero.png') center/cover no-repeat, linear-gradient(135deg, var(--color-blue-accent) 0%, #0f131f 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.reel-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(17, 24, 42, 0.4);
    z-index: 1;
}

.reel-placeholder__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    color: var(--color-bg);
    opacity: 0.8;
    transition: opacity 0.3s ease, transform 0.3s ease;
    cursor: pointer;
    z-index: 2;
}

.reel-placeholder__content:hover {
    opacity: 1;
    transform: scale(1.05);
}

.reel-play-icon {
    font-size: 5rem;
    color: var(--color-bg);
}

.reel-text {
    font-family: var(--font-primary);
    font-weight: 600;
    letter-spacing: 0.05em;
    font-size: 1.1rem;
    text-transform: uppercase;
}

.image__label {
    position: absolute;
    top: 2rem;
    left: 2rem;
    z-index: 2;
    color: var(--color-blue-accent);
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: -0.01em;
}

.image__label i {
    font-style: italic;
}

.image__label sup {
    font-size: 0.6em;
    font-style: normal;
}

.hero__cards {
    height: 30%;
    display: flex;
    border-top: 1px solid var(--color-border);
}

/* Action Cards */
.card {
    width: 50%;
    display: flex;
    flex-direction: column;
    padding: 1.5rem 2rem;
    position: relative;
    cursor: pointer;
}

.card__icon {
    position: absolute;
    top: 2rem;
    right: 2rem;
    transition: transform 0.3s ease;
}

.card:hover .card__icon {
    transform: translateX(5px);
}

.card__content {
    margin-top: auto;
}

.card__title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.card__subtitle {
    font-size: 0.95rem;
}

/* Card Themes */
.card--light {
    background: var(--color-bg);
    color: var(--color-text-main);
    border-right: 1px solid var(--color-border);
}

.card--light .card__icon {
    color: #cccccc;
}

.card--light .card__subtitle {
    color: var(--color-text-muted);
}

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

.card--dark .card__icon {
    color: var(--color-text-muted);
}

.card--dark .card__subtitle {
    color: var(--color-text-light);
}

/* Shared Section Typography */
.section-title, .benefits__title, .pricing__title {
    font-family: var(--font-primary);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 700;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
    text-align: center;
}

/* Benefits Section */
.benefits {
    padding: 3rem 1.5rem;
    border-top: 1px solid var(--color-border);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto auto;
    gap: 1.25rem;
    max-width: 1200px;
    margin: 0 auto;
}

.bento-card {
    border: 1px solid var(--color-border);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
    cursor: default;
    background-color: var(--color-bg);
    min-height: 280px;
    border-radius: 4px;
}

.bento-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
    border-color: transparent;
}

/* Card variants */
.bento-card--light { background-color: var(--color-bg); color: var(--color-text-main); }
.bento-card--dark { background-color: var(--color-text-main); color: var(--color-bg); }
.bento-card--blue { background-color: var(--color-blue-accent); color: var(--color-bg); }

/* Grid Span setup */
.bento-card--large { 
    grid-column: span 2; 
    background: url('pet.png') center/cover no-repeat, var(--color-bg);
}
.bento-card--cs {
    background: url('cs.png') center/cover no-repeat, var(--color-bg);
}
.bento-card--mwl {
    background: url('te.png') center/cover no-repeat, var(--color-bg);
}
.bento-card--1week {
    background: url('1week.png') center/cover no-repeat, var(--color-bg);
}
.bento-card--emo {
    background: url('emo.png') center/cover no-repeat, var(--color-bg);
}
.bento-card--large::before,
.bento-card--cs::before,
.bento-card--mwl::before,
.bento-card--1week::before,
.bento-card--emo::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
    z-index: 1;
}
.bento-card--large h3, .bento-card--large p,
.bento-card--cs h3, .bento-card--cs p,
.bento-card--mwl h3, .bento-card--mwl p,
.bento-card--1week h3, .bento-card--1week p,
.bento-card--emo h3, .bento-card--emo p {
    color: white !important;
}

.bento-card--tall { grid-column: span 1; grid-row: span 2; }

/* Content styling inside cards */
.bento-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 2;
}

.bento-card p {
    font-size: 1rem;
    color: var(--color-text-muted);
    position: relative;
    z-index: 2;
}

.bento-card--dark p, .bento-card--blue p { color: var(--color-text-light); }

.bento-icon {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 4rem;
    opacity: 0.1;
}
.bento-card--dark .bento-icon { color: var(--color-bg); opacity: 0.15; }

.bento-card--center-logo {
    justify-content: center;
    align-items: center;
    text-align: center;
}

.bento-logo {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--color-text-main);
}



.bento-icon-large {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 10rem;
    opacity: 0.03;
    z-index: 1;
}

/* Chat styles */
.bento-card--chat {
    justify-content: center;
    gap: 1rem;
}
.chat-bubble {
    padding: 0.75rem 1.2rem;
    border-radius: 20px;
    font-size: 0.95rem;
    max-width: 90%;
    position: relative;
    z-index: 2;
}
.chat-bubble--left {
    align-self: flex-start;
    background-color: #333;
    color: #fff;
    border-bottom-left-radius: 4px;
}
.chat-bubble--right {
    align-self: flex-end;
    background-color: var(--color-blue-accent);
    color: #fff;
    border-bottom-right-radius: 4px;
}

/* Interactive tag */
.bento-card--interactive {
    align-items: center;
    justify-content: center;
}
.interactive-tag {
    background-color: rgba(255,255,255,0.1);
    padding: 0.5rem 1rem;
    border-radius: 40px;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(5px);
    position: relative;
    z-index: 2;
}
.avatar-group {
    display: flex;
    z-index: 2;
    position: relative;
}
.avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #555;
    border: 2px solid var(--color-blue-accent);
    margin-left: -15px;
    background-image: url('https://i.pravatar.cc/100?img=1');
    background-size: cover;
}
.avatar:nth-child(2) { background-image: url('https://i.pravatar.cc/100?img=2'); }
.avatar:nth-child(3) { background-image: url('https://i.pravatar.cc/100?img=3'); }
.avatar:first-child { margin-left: 0; }
.avatar--active {
    transform: scale(1.1);
    border-color: var(--color-bg);
    z-index: 3;
}

/* --- Animations --- */
.fade-up-element {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-up-element.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Pricing Section */
.pricing {
    padding: 3.5rem 1.5rem;
    background-color: var(--color-text-main);
    color: var(--color-bg);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    max-width: 1400px;
    margin: 0 auto;
}

.pricing-card {
    background-color: #0d121e;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.2);
}

.pricing-card--popular {
    border-color: rgba(59, 130, 246, 0.5);
    background: linear-gradient(180deg, #131b2f 0%, #0d121e 100%);
    box-shadow: 0 10px 40px rgba(17, 24, 42, 0.5);
    transform: translateY(-10px);
    z-index: 2;
}

.pricing-card--popular:hover {
    transform: translateY(-15px);
    border-color: #3b82f6;
    box-shadow: 0 20px 50px rgba(59, 130, 246, 0.15);
}

.pricing-card__badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    color: #fff;
    padding: 0.4rem 1.25rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
    pointer-events: none;
    animation: pulseGlow 2.5s infinite;
    white-space: nowrap;
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(59, 130, 246, 0); }
    100% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0); }
}

.pricing-card__name {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 400;
}

.pricing-card__price {
    font-size: 2.2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.pricing-card__price span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
}

.pricing-card__duration {
    text-align: center;
    font-size: 0.95rem;
    color: var(--color-bg);
    margin-bottom: 2rem;
}

.pricing-card__divider {
    border: 0;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.08);
    margin-bottom: 2rem;
}

.pricing-card__features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 3rem;
    flex-grow: 1;
}

.pricing-card__features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

.icon-check {
    color: #10B981;
    font-size: 1.25rem;
}

.icon-cross {
    color: rgba(255, 255, 255, 0.2);
    font-size: 1.25rem;
}

.pricing-card__button {
    text-decoration: none;
    display: block;
    text-align: center;
    padding: 1rem;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--color-bg);
    font-weight: 500;
    transition: background-color 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-card__button:hover {
    background-color: var(--color-bg);
    color: var(--color-text-main);
}

.pricing-pagination {
    display: none;
}

.pricing-pagination .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    transition: background-color 0.3s;
    cursor: pointer;
}

.pricing-pagination .dot.active {
    background-color: #3b82f6;
    box-shadow: 0 0 8px rgba(59, 130, 246, 0.6);
}



/* --- Process & FAQ (New Content) --- */
.process {
    padding: 3rem 1.5rem;
    background-color: #f7f9fc;
    border-top: 1px solid var(--color-border);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.process-step {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}

.step-number {
    width: 36px;
    height: 36px;
    background-color: var(--color-blue-accent);
    color: var(--color-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.step-content h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.step-content p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.faq {
    padding: 3rem 1.5rem;
    border-top: 1px solid var(--color-border);
    background-color: var(--color-bg);
}

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

.faq-item {
    border: 1px solid var(--color-border);
    border-radius: 6px;
    overflow: hidden;
}

.faq-item[open] .faq-question {
    border-bottom: 1px solid var(--color-border);
    font-weight: 600;
}

.faq-question {
    padding: 1.2rem;
    cursor: pointer;
    font-weight: 500;
    background-color: #fcfcfd;
    outline: none;
    display: block;
    position: relative;
    list-style: none; /* Hide default arrow */
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--color-text-muted);
}

.faq-item[open] .faq-question::after {
    content: '−';
}

.faq-answer {
    padding: 1.2rem;
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* --- Footer --- */
.footer {
    background-color: var(--color-bg);
    border-top: 1px solid var(--color-border);
    padding: 3rem 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer__logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.footer__title {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 600;
}

.footer__links {
    display: flex;
    gap: 2rem;
}

.footer__links a {
    text-decoration: none;
    color: var(--color-text-muted);
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s;
}

.footer__links a:hover {
    color: var(--color-text-main);
}

.footer__socials {
    display: flex;
    gap: 1.25rem;
}

.footer__socials a {
    color: var(--color-text-muted);
    font-size: 1.5rem;
    transition: color 0.2s;
    display: flex;
}

.footer__socials a:hover {
    color: var(--color-text-main);
}

.footer__bottom {
    width: 100%;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
    color: var(--color-text-light);
    font-size: 0.85rem;
}

/* --- Floating Socials --- */
.floating-socials {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 100;
}

.floating-social-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #27A7E7;
    color: var(--color-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.floating-social-btn--ig {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
}

.floating-social-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* --- Media Queries --- */

@media (max-width: 1200px) {
    .header { padding: 0 2rem; }
    .hero__copy { padding: 3rem 2rem; }
    .card { padding: 2rem; }
}

@media (max-width: 900px) {
    /* Stack components for mobile */
    .hero {
        flex-direction: column;
        height: auto;
    }
    
    .hero__left,
    .hero__right {
        width: 100%;
        min-height: 50vh;
    }
    
    .hero__left {
        border-right: none;
        border-bottom: 1px solid var(--color-border);
    }
    
    .benefits,
    .pricing {
        padding: 4rem 1.5rem;
    }
    
    .bento-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-top: 2rem;
        padding-bottom: 2rem;
        gap: 1.5rem;
        margin-left: -1.2rem;
        margin-right: -1.2rem;
        padding-left: 1.2rem;
        padding-right: 1.2rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    
    .pricing-grid::-webkit-scrollbar {
        display: none;
    }
    
    .pricing-card {
        min-width: 85vw;
        scroll-snap-align: center;
        flex: 0 0 auto;
    }

    .pricing-pagination {
        display: flex;
        justify-content: center;
        gap: 0.6rem;
        margin-top: 1.5rem;
    }

    .pricing-card--popular {
        transform: translateY(0);
    }
    
    .pricing-card--popular:hover {
        transform: translateY(-5px);
    }
    
    .bento-card--large,
    .bento-card--tall {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .hero__copy {
        padding: 3rem 2rem;
        min-height: 400px;
    }
    
    .copy__paragraph {
        max-width: 100%;
    }
    
    .hero__image-wrapper {
        height: 450px;
        order: -1; /* Keep the image at top if needed, or leave normal source order */
    }
    
    .hero__cards {
        height: auto;
        flex-direction: column;
    }
    
    .card {
        width: 100%;
        height: 250px;
    }
    
    .card--light {
        border-right: none;
        border-bottom: 1px solid var(--color-border);
    }
    
    .header {
        padding: 0 1.2rem;
    }
    
    .header__nav {
        display: none;
        position: absolute;
        top: var(--height-header);
        left: 0;
        width: 100%;
        background: var(--color-bg);
        border-bottom: 1px solid var(--color-border);
        flex-direction: column;
        gap: 0;
        z-index: 50;
    }

    .header__nav.open {
        display: flex;
    }

    .nav__link {
        padding: 1.2rem 2rem;
        border-bottom: 1px solid var(--color-border);
    }

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

    .hero__copy {
        padding: 2rem 1.5rem;
        min-height: auto;
    }
    
    .hero__image-wrapper {
        min-height: 350px;
        height: auto;
    }

    .card {
        padding: 1.5rem;
    }

    .benefits, .pricing, .process, .faq {
        padding: 3rem 1.2rem;
    }

    .footer {
        padding: 2.5rem 1.2rem 1.2rem;
    }
    
    .footer__content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .footer__links {
        flex-direction: column;
        gap: 1.5rem;
    }
}

@media (max-width: 600px) {
    .header {
        padding: 0 1rem;
    }
    
    .logo__image {
        height: 36px;
    }
    
    .logo__title {
        font-size: 1.1rem;
    }

    .hero__copy {
        padding: 2rem 1rem;
    }
    
    .copy__heading {
        font-size: 2.2rem;
    }
    
    .card {
        padding: 1.25rem;
    }
    
    .card__title {
        font-size: 1.4rem;
    }
    
    .bento-card {
        padding: 1.5rem;
        min-height: 220px;
    }
    
    .benefits, .pricing, .process, .faq {
        padding: 2.5rem 1rem;
    }
    
    .pricing-card {
        padding: 2rem 1.25rem;
    }
    
    .footer {
        padding: 2rem 1rem 1rem;
    }

    .social-proof__socials, .social-proof__avatars {
        transform: scale(0.9);
        transform-origin: left center;
    }

    .section-title, .benefits__title, .pricing__title {
        font-size: 1.8rem;
    }

    .floating-socials {
        bottom: 1rem;
        left: 1rem;
    }
    
    .floating-social-btn {
        width: 44px;
        height: 44px;
        font-size: 1.5rem;
    }
}

/* --- Modal --- */
.modal-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(11, 15, 25, 0.6);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 1rem;
}

.modal-overlay--open {
    opacity: 1;
    visibility: visible;
}

.modal {
    background-color: var(--color-bg);
    border-radius: 12px;
    width: 100%;
    max-width: 500px;
    padding: 2.5rem;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay--open .modal {
    transform: translateY(0);
}

.modal__close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: var(--color-text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
}

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

.modal__title {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--color-text-main);
}

.modal__subtitle {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.modal__form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text-main);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background-color: #f7f9fc;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    color: var(--color-text-main);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    background-color: var(--color-bg);
}

.modal__submit-btn {
    margin-top: 1rem;
    padding: 1.1rem;
    background-color: #27A7E7;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.modal__submit-btn:hover {
    background-color: #1e8bbd;
    transform: translateY(-2px);
}

@media (max-width: 600px) {
    .modal {
        padding: 1.5rem;
    }
    .modal__title {
        font-size: 1.5rem;
    }
}
