/* MARLIE Landing Page — askmarlie.ai */

:root {
    --navy: #1a2744;
    --navy-light: #243352;
    --teal: #2a9d8f;
    --teal-light: #40b5a6;
    --teal-dark: #1f7a6f;
    --white: #ffffff;
    --off-white: #f8f9fa;
    --grey-100: #f1f3f5;
    --grey-200: #e9ecef;
    --grey-400: #adb5bd;
    --grey-600: #6c757d;
    --grey-800: #343a40;
    --accent: #e76f51;
    --shadow: 0 2px 12px rgba(26, 39, 68, 0.1);
    --shadow-lg: 0 8px 30px rgba(26, 39, 68, 0.15);
    --radius: 12px;
    --radius-sm: 8px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--grey-800);
    line-height: 1.6;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--teal);
    text-decoration: none;
}

a:hover {
    color: var(--teal-dark);
}

/* --- Navigation --- */

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    background: var(--white);
    border-bottom: 1px solid var(--grey-200);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -0.5px;
}

.nav-logo span {
    color: var(--teal);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: var(--grey-600);
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--navy);
}

.nav-cta {
    background: var(--teal);
    color: var(--white) !important;
    padding: 0.6rem 1.4rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    transition: background 0.2s;
}

.nav-cta:hover {
    background: var(--teal-dark);
    color: var(--white) !important;
}

/* --- Hero --- */

.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 5rem 2rem 4rem;
    background: linear-gradient(170deg, var(--navy) 0%, var(--navy-light) 100%);
    color: var(--white);
}

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.15;
    max-width: 700px;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero h1 span {
    color: var(--teal-light);
}

.hero p {
    font-size: 1.25rem;
    max-width: 600px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
    margin-bottom: 1.5rem;
}

.hero-sub {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}

.btn {
    display: inline-block;
    padding: 0.9rem 2rem;
    border-radius: var(--radius-sm);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: background 0.2s, transform 0.1s;
}

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

.btn-primary {
    background: var(--teal);
    color: var(--white);
}

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

.btn-secondary {
    background: transparent;
    color: var(--teal);
    border: 2px solid var(--teal);
}

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

/* --- Section shared --- */

.section {
    padding: 5rem 2rem;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.75rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--grey-600);
    max-width: 600px;
    margin: 0 auto 3rem;
}

/* --- Team --- */

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.team-card {
    background: var(--white);
    border: 1px solid var(--grey-200);
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: box-shadow 0.2s, transform 0.2s;
}

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

.team-card.planned {
    opacity: 0.65;
}

.team-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin: 0 auto 1rem;
}

.team-card h3 {
    font-size: 1.1rem;
    color: var(--navy);
    margin-bottom: 0.25rem;
}

.team-card .role {
    font-size: 0.85rem;
    color: var(--teal);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.team-card p {
    font-size: 0.9rem;
    color: var(--grey-600);
    line-height: 1.5;
}

.team-card .price-tag {
    display: inline-block;
    margin-top: 0.75rem;
    padding: 0.3rem 0.8rem;
    background: var(--grey-100);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy);
}

.team-card .status-badge {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-badge.live {
    background: #d3f9d8;
    color: #2b8a3e;
}

.status-badge.planned {
    background: var(--grey-200);
    color: var(--grey-600);
}

/* --- Pricing --- */

.pricing-section {
    background: var(--off-white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto 2.5rem;
}

.pricing-card {
    background: var(--white);
    border: 1px solid var(--grey-200);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
}

.pricing-card.highlight {
    border-color: var(--teal);
    box-shadow: var(--shadow);
}

.pricing-card h3 {
    font-size: 1.1rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.pricing-card .price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 0.25rem;
}

.pricing-card .price-period {
    font-size: 0.9rem;
    color: var(--grey-600);
    margin-bottom: 1.5rem;
}

.pricing-card ul {
    list-style: none;
    text-align: left;
    margin-bottom: 1.5rem;
}

.pricing-card li {
    padding: 0.4rem 0;
    font-size: 0.9rem;
    color: var(--grey-600);
}

.pricing-card li::before {
    content: "\2713";
    color: var(--teal);
    font-weight: 700;
    margin-right: 0.5rem;
}

.discount-table {
    max-width: 600px;
    margin: 0 auto;
    border-collapse: collapse;
    width: 100%;
}

.discount-table th,
.discount-table td {
    padding: 0.75rem 1rem;
    text-align: left;
    border-bottom: 1px solid var(--grey-200);
}

.discount-table th {
    font-size: 0.85rem;
    color: var(--grey-600);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.discount-table td {
    font-size: 0.95rem;
    color: var(--grey-800);
}

/* --- CTA --- */

.cta-section {
    text-align: center;
    padding: 5rem 2rem;
    background: linear-gradient(170deg, var(--navy) 0%, var(--navy-light) 100%);
    color: var(--white);
}

.cta-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 500px;
    margin: 0 auto 2rem;
}

/* --- Footer --- */

.footer {
    text-align: center;
    padding: 2rem;
    color: var(--grey-600);
    font-size: 0.85rem;
    border-top: 1px solid var(--grey-200);
}

/* --- Chat Widget --- */

.chat-toggle {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--teal);
    color: var(--white);
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    z-index: 1000;
    transition: background 0.2s, transform 0.15s;
}

.chat-toggle:hover {
    background: var(--teal-dark);
    transform: scale(1.05);
}

.chat-panel {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 380px;
    height: 560px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    display: none;
    flex-direction: column;
    z-index: 1001;
    overflow: hidden;
}

.chat-panel.open {
    display: flex;
}

.chat-header {
    background: var(--navy);
    color: var(--white);
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chat-header-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.chat-header-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
}

.chat-header h3 {
    font-size: 1rem;
    font-weight: 600;
}

.chat-header .subtitle {
    font-size: 0.75rem;
    opacity: 0.7;
}

.chat-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.4rem;
    cursor: pointer;
    padding: 0.25rem;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.chat-close:hover {
    opacity: 1;
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.chat-bubble {
    max-width: 85%;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    line-height: 1.5;
    word-wrap: break-word;
}

.chat-bubble.assistant {
    background: var(--grey-100);
    color: var(--grey-800);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

.chat-bubble.user {
    background: var(--teal);
    color: var(--white);
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.chat-phase-indicator {
    text-align: center;
    font-size: 0.75rem;
    color: var(--grey-400);
    padding: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.typing-indicator {
    display: flex;
    gap: 4px;
    align-items: center;
    padding: 0.75rem 1rem;
    background: var(--grey-100);
    border-radius: var(--radius-sm);
    border-bottom-left-radius: 4px;
    align-self: flex-start;
    max-width: 60px;
}

.typing-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--grey-400);
    animation: typing-bounce 1.2s infinite ease-in-out;
}

.typing-dot:nth-child(2) {
    animation-delay: 0.15s;
}

.typing-dot:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes typing-bounce {
    0%, 60%, 100% { transform: translateY(0); }
    30% { transform: translateY(-4px); }
}

.chat-input-area {
    display: flex;
    align-items: flex-end;
    padding: 0.75rem;
    border-top: 1px solid var(--grey-200);
    gap: 0.5rem;
}

.chat-input {
    flex: 1;
    border: 1px solid var(--grey-200);
    border-radius: var(--radius-sm);
    padding: 0.6rem 0.8rem;
    font-size: 0.9rem;
    outline: none;
    font-family: inherit;
    transition: border-color 0.2s;
    resize: none;
    max-height: 120px;
    overflow-y: auto;
    line-height: 1.4;
}

.chat-input:focus {
    border-color: var(--teal);
}

.chat-send {
    background: var(--teal);
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    padding: 0.6rem 1rem;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background 0.2s;
}

.chat-send:hover {
    background: var(--teal-dark);
}

.chat-send:disabled {
    background: var(--grey-400);
    cursor: not-allowed;
}

.chat-contact-form {
    background: var(--grey-100);
    padding: 1rem;
    border-radius: var(--radius-sm);
    margin-top: 0.5rem;
}

.chat-form-input {
    width: 100%;
    border: 1px solid var(--grey-200);
    border-radius: var(--radius-sm);
    padding: 0.6rem 0.8rem;
    font-size: 0.9rem;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s;
}

.chat-form-input:focus {
    border-color: var(--teal);
}

.chat-form-input:disabled {
    background: var(--grey-200);
    color: var(--grey-600);
}

.chat-form-submit {
    display: block;
    width: 100%;
    padding: 0.75rem;
    background: var(--accent);
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.chat-form-submit:hover {
    background: #d4593e;
}

.chat-form-submit:disabled {
    background: var(--grey-400);
    cursor: not-allowed;
}

.chat-error {
    text-align: center;
    font-size: 0.8rem;
    color: var(--accent);
    padding: 0.5rem;
}

.chat-disclaimer {
    text-align: center;
    font-size: 0.7rem;
    color: var(--grey-400);
    padding: 0.4rem 0.75rem;
    border-top: 1px solid var(--grey-200);
    line-height: 1.4;
}

.chat-legal-links {
    display: block;
    margin-top: 2px;
}

.chat-legal-links a {
    color: var(--grey-400);
    text-decoration: underline;
    font-size: 0.7rem;
}

.chat-legal-links a:hover {
    color: var(--grey-600);
}

/* --- WhatsApp Mockup (Hero) --- */

.whatsapp-mockup {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius);
    padding: 1.25rem;
    max-width: 420px;
    width: 100%;
    margin: 0 auto 2rem;
    text-align: left;
}

.wa-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 0.75rem;
}

.wa-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--teal);
    overflow: hidden;
    flex-shrink: 0;
}

.wa-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wa-name {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--white);
}

.wa-status {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
}

.wa-bubble {
    padding: 0.6rem 0.8rem;
    border-radius: var(--radius-sm);
    margin-bottom: 0.5rem;
    font-size: 0.82rem;
    line-height: 1.5;
    max-width: 90%;
    position: relative;
}

.wa-incoming {
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.9);
    border-bottom-left-radius: 3px;
}

.wa-outgoing {
    background: rgba(42, 157, 143, 0.3);
    color: rgba(255,255,255,0.9);
    margin-left: auto;
    border-bottom-right-radius: 3px;
}

.wa-time {
    display: block;
    text-align: right;
    font-size: 0.65rem;
    color: rgba(255,255,255,0.35);
    margin-top: 0.25rem;
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.15rem;
}

/* --- Problem Section --- */

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

.problem-card {
    background: var(--off-white);
    border: 1px solid var(--grey-200);
    border-radius: var(--radius);
    padding: 2rem;
}

.problem-card .p-icon {
    font-size: 1.8rem;
    display: block;
    margin-bottom: 0.75rem;
}

.problem-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.problem-card p {
    font-size: 0.9rem;
    color: var(--grey-600);
    line-height: 1.6;
}

/* --- How it works --- */

.how-section {
    background: linear-gradient(170deg, var(--navy) 0%, var(--navy-light) 100%);
    color: var(--white);
}

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

.step {
    text-align: center;
}

.step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--teal);
    color: var(--white);
    font-weight: 800;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.step h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.step p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.6;
}

/* --- Meet MARLIE --- */

.meet-section {
    background: var(--off-white);
}

.meet-layout {
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.meet-photo {
    flex-shrink: 0;
    width: 240px;
    height: 300px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.meet-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.meet-bio h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.meet-role {
    display: inline-block;
    background: var(--teal);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    margin-bottom: 1rem;
}

.meet-bio p {
    font-size: 0.95rem;
    color: var(--grey-600);
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.meet-tagline {
    font-style: italic;
    color: var(--grey-400) !important;
    font-size: 0.9rem !important;
    margin-bottom: 1.25rem !important;
}

/* --- Features --- */

.features-list {
    max-width: 700px;
    margin: 0 auto;
}

.feature-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--grey-200);
}

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

.feature-item .f-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    width: 40px;
    text-align: center;
}

.feature-item h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.25rem;
}

.feature-item p {
    font-size: 0.9rem;
    color: var(--grey-600);
    line-height: 1.6;
}

/* --- Social Proof --- */

.proof-section {
    background: var(--off-white);
}

.proof-inner {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.proof-inner blockquote {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--grey-800);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.proof-inner cite {
    font-style: normal;
    font-weight: 600;
    color: var(--grey-600);
    font-size: 0.95rem;
}

.proof-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.stat-num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--teal);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--grey-400);
    margin-top: 0.25rem;
}

/* --- Verticals --- */

.verticals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.25rem;
    max-width: 900px;
    margin: 0 auto;
}

.v-card {
    padding: 1.75rem;
    border: 1px solid var(--grey-200);
    border-radius: var(--radius);
    text-align: center;
    transition: box-shadow 0.2s, transform 0.2s;
}

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

.v-card.active {
    border-color: var(--teal);
    background: #f0faf8;
}

.v-card .v-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.75rem;
}

.v-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.25rem;
}

.v-card p {
    font-size: 0.85rem;
    color: var(--grey-600);
}

.v-badge {
    display: inline-block;
    margin-top: 0.5rem;
    background: var(--teal);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* --- Waitlist (CTA section) --- */

.waitlist-area {
    margin-top: 2rem;
}

.waitlist-or {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 1rem;
}

.waitlist-form {
    display: flex;
    gap: 0.75rem;
    max-width: 420px;
    margin: 0 auto;
}

.waitlist-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.08);
    color: var(--white);
    font-size: 0.95rem;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s;
}

.waitlist-form input::placeholder {
    color: rgba(255,255,255,0.35);
}

.waitlist-form input:focus {
    border-color: var(--teal);
}

.waitlist-form button {
    background: var(--accent);
    color: var(--white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.2s;
    white-space: nowrap;
}

.waitlist-form button:hover {
    background: #d4593e;
}

.waitlist-success {
    display: none;
    padding: 1rem;
    background: rgba(42, 157, 143, 0.2);
    border-radius: var(--radius-sm);
    font-weight: 600;
    color: var(--teal-light);
    max-width: 420px;
    margin: 0 auto;
}

.waitlist-note {
    margin-top: 0.75rem;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.35);
}

/* --- Responsive --- */

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

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1.05rem;
    }

    .section {
        padding: 3rem 1.25rem;
    }

    .team-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

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

    .meet-layout {
        flex-direction: column;
        text-align: center;
    }

    .meet-photo {
        width: 180px;
        height: 220px;
    }

    .waitlist-form {
        flex-direction: column;
    }

    .chat-panel {
        width: calc(100vw - 1.5rem);
        height: calc(100vh - 6rem);
        bottom: 1rem;
        right: 0.75rem;
    }
}

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

    .hero {
        padding: 3rem 1.25rem 2.5rem;
    }

    .hero h1 {
        font-size: 1.75rem;
    }

    .whatsapp-mockup {
        padding: 1rem;
    }

    .wa-bubble {
        font-size: 0.78rem;
    }
}
