/* ═══════════════════════════════════════════════════
   Mailada — Premium Landing Page
   ═══════════════════════════════════════════════════ */

/* ── Reset & Tokens ─────────────────────────────── */
:root {
    --primary: #7c3aed;
    --primary-light: #a78bfa;
    --primary-dark: #5b21b6;
    --primary-glow: rgba(124, 58, 237, 0.3);
    --accent: #06d6a0;
    --accent-glow: rgba(6, 214, 160, 0.25);

    --bg-deep: #050608;
    --bg-surface: #0d0f15;
    --bg-card: #12151e;
    --bg-elevated: #1a1e2e;

    --glass-border: rgba(255, 255, 255, 0.06);
    --glass-strong: rgba(255, 255, 255, 0.08);

    --text-main: #f0f0f5;
    --text-secondary: #b0b3c6;
    --text-muted: #6b7094;
    --text-accent: #a78bfa;

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 999px;

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.4);
    --shadow-xl: 0 24px 64px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 0 60px var(--primary-glow);
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background: var(--bg-deep);
    color: var(--text-main);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 99px;
}

/* ── Container ─────────────────────────────────── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ── Animated Mesh BG ──────────────────────────── */
.mesh-bg {
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(ellipse at 25% 30%, rgba(124, 58, 237, 0.10) 0%, transparent 50%),
        radial-gradient(ellipse at 75% 60%, rgba(6, 214, 160, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 15%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
    animation: meshFloat 30s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes meshFloat {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(2%, -1.5%) rotate(0.5deg);
    }

    66% {
        transform: translate(-1.5%, 2%) rotate(-0.5deg);
    }
}

/* ── Navbar ────────────────────────────────────── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1rem 0;
    background: rgba(5, 6, 8, 0.7);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.nav-logo img {
    height: 32px;
    width: auto;
}

.nav-logo span {
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.2s;
}

.nav-links a:hover {
    color: white;
}

.nav-actions {
    display: flex;
    gap: 0.75rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.65rem 1.5rem;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.25s ease;
    border: none;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), #9333ea);
    color: white;
    box-shadow: 0 4px 20px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(124, 58, 237, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--glass-border);
}

.btn-outline:hover {
    background: var(--glass-strong);
    border-color: rgba(255, 255, 255, 0.15);
}

.btn-lg {
    padding: 0.9rem 2.2rem;
    font-size: 1rem;
}

.btn-accent {
    background: linear-gradient(135deg, var(--accent), #04bf8b);
    color: #0a0a0a;
    box-shadow: 0 4px 20px var(--accent-glow);
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(6, 214, 160, 0.5);
}

/* ── Hero ──────────────────────────────────────── */
.hero {
    position: relative;
    z-index: 1;
    padding: 10rem 0 6rem;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: rgba(124, 58, 237, 0.12);
    border: 1px solid rgba(124, 58, 237, 0.25);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-light);
    margin-bottom: 1.5rem;
    animation: fadeDown 0.6s ease both;
}

.hero-badge span {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.04em;
    margin-bottom: 1.5rem;
    animation: fadeUp 0.7s ease both;
    animation-delay: 0.1s;
}

.hero h1 .gradient-text {
    background: linear-gradient(135deg, var(--primary-light), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
    animation: fadeUp 0.7s ease both;
    animation-delay: 0.2s;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    animation: fadeUp 0.7s ease both;
    animation-delay: 0.3s;
}

/* Provider badges */
.hero-providers {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeUp 0.7s ease both;
    animation-delay: 0.4s;
}

.provider-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.9rem;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.provider-badge svg {
    width: 16px;
    height: 16px;
}

/* Dashboard Preview */
.hero-preview {
    position: relative;
    max-width: 1000px;
    margin: 4rem auto 0;
    animation: fadeUp 0.8s ease both;
    animation-delay: 0.5s;
}

.hero-preview-frame {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow:
        var(--shadow-xl),
        0 0 120px rgba(124, 58, 237, 0.08);
}

.preview-toolbar {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.2rem;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid var(--glass-border);
}

.preview-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.preview-dot.red {
    background: #ff5f57;
}

.preview-dot.yellow {
    background: #febc2e;
}

.preview-dot.green {
    background: #28c840;
}

.preview-url {
    flex: 1;
    margin-left: 1rem;
    padding: 0.3rem 0.8rem;
    background: rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    color: var(--text-muted);
}

.preview-body {
    display: flex;
    height: 420px;
}

.preview-sidebar {
    width: 200px;
    background: rgba(0, 0, 0, 0.2);
    border-right: 1px solid var(--glass-border);
    padding: 1rem;
}

.preview-sidebar-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.6rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.preview-sidebar-item.active {
    background: rgba(124, 58, 237, 0.15);
    color: var(--primary-light);
}

.preview-sidebar-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
}

.preview-inbox {
    flex: 1;
    border-right: 1px solid var(--glass-border);
    overflow: hidden;
}

.preview-inbox-header {
    padding: 0.8rem 1rem;
    border-bottom: 1px solid var(--glass-border);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.preview-mail-item {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    transition: background 0.2s;
    cursor: default;
}

.preview-mail-item:nth-child(2) {
    background: rgba(124, 58, 237, 0.08);
    border-left: 2px solid var(--primary);
}

.preview-mail-from {
    font-size: 0.78rem;
    font-weight: 600;
}

.preview-mail-subject {
    font-size: 0.72rem;
    color: var(--text-secondary);
}

.preview-mail-snippet {
    font-size: 0.68rem;
    color: var(--text-muted);
}

.preview-thread {
    flex: 1.5;
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.preview-thread-header {
    font-size: 0.85rem;
    font-weight: 600;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid var(--glass-border);
}

.preview-message-bubble {
    padding: 0.7rem 0.9rem;
    border-radius: var(--radius-md);
    font-size: 0.72rem;
    line-height: 1.5;
    max-width: 85%;
}

.preview-message-bubble.inbound {
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-secondary);
    align-self: flex-start;
}

.preview-message-bubble.outbound {
    background: rgba(124, 58, 237, 0.12);
    color: var(--primary-light);
    align-self: flex-end;
}

/* Floating glow */
.hero-preview::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    height: 80%;
    transform: translate(-50%, -50%);
    background: radial-gradient(ellipse, rgba(124, 58, 237, 0.15), transparent 70%);
    z-index: -1;
    filter: blur(60px);
}

/* ── Section Base ──────────────────────────────── */
.section {
    position: relative;
    z-index: 1;
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary-light);
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ── Social Proof ──────────────────────────────── */
.social-proof {
    padding: 3rem 0;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    text-align: center;
}

.social-proof-label {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
}

.social-proof-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    opacity: 0.4;
}

.social-proof-logos span {
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-secondary);
}

/* ── Features ──────────────────────────────────── */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(124, 58, 237, 0.2);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.15), rgba(6, 214, 160, 0.1));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary-light);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.feature-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    letter-spacing: -0.02em;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ── How it Works ──────────────────────────────── */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--accent), transparent);
    opacity: 0.3;
}

.step-card {
    text-align: center;
    position: relative;
}

.step-number {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.5rem;
    background: var(--bg-card);
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary-light);
    position: relative;
    z-index: 1;
    box-shadow: 0 0 30px var(--primary-glow);
}

.step-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.step-card p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ── Comparison Table ──────────────────────────── */
.comparison-wrapper {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--glass-border);
}

.comparison-table th,
.comparison-table td {
    padding: 1rem 1.25rem;
    text-align: center;
    border-bottom: 1px solid var(--glass-border);
    font-size: 0.88rem;
}

.comparison-table th {
    background: var(--bg-elevated);
    font-weight: 700;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
}

.comparison-table th:first-child {
    text-align: left;
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--text-main);
}

.comparison-table td {
    background: var(--bg-card);
    color: var(--text-secondary);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

/* Highlight Mailada column */
.comparison-table th.highlight {
    background: rgba(124, 58, 237, 0.15);
    color: var(--primary-light);
}

.comparison-table td.highlight {
    background: rgba(124, 58, 237, 0.06);
    color: var(--text-main);
}

.check {
    color: var(--accent);
    font-weight: 700;
}

.cross {
    color: #ef4444;
    opacity: 0.6;
}

.price-tag {
    font-weight: 700;
    font-size: 0.85rem;
}

.price-tag.best {
    color: var(--accent);
}

/* ── Pricing ───────────────────────────────────── */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 960px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 2.5rem 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
    border-color: var(--primary);
    box-shadow: 0 0 60px rgba(124, 58, 237, 0.12);
}

.pricing-popular {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.3rem 1.2rem;
    background: linear-gradient(135deg, var(--primary), #9333ea);
    border-radius: var(--radius-full);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-name {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.pricing-price {
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    margin-bottom: 0.3rem;
}

.pricing-price span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-muted);
}

.pricing-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 0;
    font-size: 0.88rem;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li svg {
    width: 16px;
    height: 16px;
    stroke: var(--accent);
    fill: none;
    stroke-width: 2.5;
    flex-shrink: 0;
}

.pricing-card .btn {
    width: 100%;
}

/* ── CTA ───────────────────────────────────────── */
.cta-section {
    position: relative;
    z-index: 1;
    padding: 8rem 0;
    text-align: center;
}

.cta-box {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.12), rgba(6, 214, 160, 0.06));
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: var(--radius-xl);
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(124, 58, 237, 0.08), transparent 60%);
    animation: meshFloat 20s ease-in-out infinite;
}

.cta-box h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
    position: relative;
}

.cta-box p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    position: relative;
}

/* ── Footer ────────────────────────────────────── */
.footer {
    position: relative;
    z-index: 1;
    border-top: 1px solid var(--glass-border);
    padding: 3rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.footer-brand p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-top: 1rem;
    max-width: 280px;
}

.footer-col h4 {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.footer-col a {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    padding: 0.3rem 0;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: white;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-logo img {
    height: 24px;
    width: auto;
}

.footer-logo span {
    font-size: 1.1rem;
    font-weight: 700;
}

/* ── Animations ────────────────────────────────── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll-triggered fade-in */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Responsive: iPhone SE & small phones (≤375px) ── */
@media (max-width: 375px) {
    .container {
        padding: 0 1rem;
    }

    .hero {
        padding: 7rem 0 3rem;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .hero-actions {
        flex-direction: column;
        gap: 0.6rem;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .btn-lg {
        padding: 0.75rem 1.2rem;
        font-size: 0.88rem;
    }

    .hero-providers {
        gap: 0.4rem;
    }

    .provider-badge {
        padding: 0.3rem 0.6rem;
        font-size: 0.7rem;
    }

    .nav-links {
        display: none;
    }

    .nav-actions .btn-outline {
        display: none;
    }

    .navbar .container {
        padding: 0 1rem;
    }

    .nav-logo span {
        font-size: 1.1rem;
    }

    .preview-body {
        height: 200px;
    }

    .preview-sidebar {
        width: 100px;
        font-size: 0.65rem;
    }

    .preview-sidebar-item {
        padding: 0.35rem 0.4rem;
        font-size: 0.65rem;
    }

    .preview-thread {
        display: none;
    }

    .preview-inbox-header {
        font-size: 0.7rem;
    }

    .preview-mail-from {
        font-size: 0.68rem;
    }

    .preview-mail-subject {
        font-size: 0.62rem;
    }

    .preview-mail-snippet {
        display: none;
    }

    .section {
        padding: 3.5rem 0;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-subtitle {
        font-size: 0.88rem;
    }

    .section-tag {
        font-size: 0.7rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .feature-card {
        padding: 1.25rem 1rem;
    }

    .feature-card h3 {
        font-size: 1rem;
    }

    .feature-card p {
        font-size: 0.82rem;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
    }

    .feature-icon svg {
        width: 20px;
        height: 20px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .steps-grid::before {
        display: none;
    }

    .step-number {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }

    .step-card h3 {
        font-size: 1rem;
    }

    .step-card p {
        font-size: 0.82rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.5rem 0.35rem;
        font-size: 0.65rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card {
        padding: 1.75rem 1.25rem;
    }

    .pricing-price {
        font-size: 2.2rem;
    }

    .pricing-features li {
        font-size: 0.82rem;
    }

    .cta-section {
        padding: 4rem 0;
    }

    .cta-box {
        padding: 2rem 1.25rem;
    }

    .cta-box h2 {
        font-size: 1.3rem;
    }

    .cta-box p {
        font-size: 0.88rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .social-proof-logos {
        gap: 1.5rem;
    }

    .social-proof-logos span {
        font-size: 1rem;
    }
}

/* ── Responsive: Large phones (376px–480px) ── */
@media (min-width: 376px) and (max-width: 480px) {
    .container {
        padding: 0 1.25rem;
    }

    .hero {
        padding: 7.5rem 0 3.5rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-actions {
        flex-direction: column;
        gap: 0.6rem;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .nav-links {
        display: none;
    }

    .nav-actions .btn-outline {
        display: none;
    }

    .preview-body {
        height: 240px;
    }

    .preview-sidebar {
        width: 120px;
    }

    .preview-thread {
        display: none;
    }

    .preview-mail-snippet {
        display: none;
    }

    .section {
        padding: 4rem 0;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .steps-grid::before {
        display: none;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.5rem 0.4rem;
        font-size: 0.7rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .cta-box {
        padding: 2.5rem 1.5rem;
    }

    .cta-box h2 {
        font-size: 1.4rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

/* ── Responsive: Small tablets (481px–768px) ── */
@media (min-width: 481px) and (max-width: 768px) {
    .hero {
        padding: 8rem 0 4rem;
    }

    .hero h1 {
        font-size: 2.4rem;
    }

    .nav-links {
        display: none;
    }

    .preview-body {
        height: 300px;
    }

    .preview-sidebar {
        width: 150px;
    }

    .preview-thread {
        display: none;
    }

    .section {
        padding: 5rem 0;
    }

    .features-grid {
        grid-template-columns: 1fr 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .steps-grid::before {
        display: none;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.6rem 0.5rem;
        font-size: 0.78rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* ── Responsive: Tablets landscape (769px–1024px) ── */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero {
        padding: 9rem 0 5rem;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .nav-links {
        gap: 1.2rem;
    }

    .nav-links a {
        font-size: 0.82rem;
    }

    .preview-body {
        height: 360px;
    }

    .preview-sidebar {
        width: 170px;
    }

    .features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.25rem;
    }

    .steps-grid {
        gap: 1.5rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

/* ── Responsive: Large desktops (1440px+) ── */
@media (min-width: 1440px) {
    .container {
        max-width: 1320px;
    }

    .hero {
        padding: 12rem 0 7rem;
    }

    .hero h1 {
        font-size: 5rem;
    }

    .hero-subtitle {
        font-size: 1.35rem;
        max-width: 700px;
    }

    .hero-preview {
        max-width: 1100px;
    }

    .preview-body {
        height: 480px;
    }

    .section {
        padding: 7rem 0;
    }

    .section-title {
        font-size: 3.2rem;
    }

    .features-grid {
        gap: 2rem;
    }

    .feature-card {
        padding: 2.5rem 2rem;
    }
}