/* CSS Variables */
:root {
    --primary-color: #4338ca;
    --primary-dark: #312e81;
    --text-dark: #111827;
    --text-gray: #374151;
    --text-light: #dfdfdf;
    --white: #ffffff;
    --light-bg: #f9fafb;
    --border-color: #d1d5db;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --gradient: linear-gradient(90deg, #818cf8, #4f46e5);
}

@font-face {
    font-family: 'Recoleta';
    src: url('../fonts/Recoleta Alt Bold.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-VariableFont_opsz,wght.ttf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-gray);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Recoleta', serif;
    color: var(--text-dark);
    line-height: 1.2;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

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

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

/* Top Label */
.top-label {
    background: var(--gradient);
    color: var(--white);
    text-align: center;
    padding: 11px 8px;
    margin: 0;
    font-weight: 500;
    font-size: 0.9rem;
}

.top-label a {
    display: inline-block;
    padding: 4px 13px;
    background: rgba(0, 0, 0, 0.19);
    border-radius: 50px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.09);
    backdrop-filter: blur(10px);
    color: var(--white);
    font-weight: 400;
    font-size: 0.8rem;
    margin-left: 8px;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    position: relative;
}

.navbar-brand {
    font-family: 'Recoleta', serif;
    font-size: 1.8rem;
    font-weight: 700;
    display: flex;
    align-items: start;
    color: var(--text-dark);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-btns {
    display: flex;
    gap: 15px;
}

.request-btn,
.start-btn {
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.request-btn {
    color: var(--text-dark);
    box-shadow: var(--shadow);
}

.request-btn:hover {
    background-color: rgba(253, 253, 253, 0.352);
}

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

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

.menu-toggle {
    display: none;
    cursor: pointer;
}

.menu-toggle i {
    font-size: 2rem;
}

/* Hero Section */
.hero-section {
    background-image: url('https://emailbrevo.com/assets/images/landing/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 0px 0 110px;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 85px 0 110px;
}

.introducing-label {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.337);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #312e81;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 25px;
}

.introducing-label span {
    background-color: var(--white);
    color: var(--primary-color);
    padding: 3px 12px;
    border-radius: 50px;
    margin-right: 10px;
    font-size: 0.8rem;
    font-weight: 600;
}

.hero-title {
    font-family: 'Recoleta', serif;
    font-size: 3.5rem;
    margin-bottom: 25px;
}

.hero-description {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

.hero-description span {
    background: linear-gradient(90deg, #eb25d7, #bd63f1, #9333ea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: var(--primary-dark);
}

.cta-button:hover span {
    transform: translateX(5px);
}

/* Demo Section */
.demo-section {
    /* margin-top: 50px; */
    position: relative;
}

.demo-container {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 14px;
    border: 19px solid rgba(255, 255, 255, 0.3);
    padding: 0;
    position: relative;
    overflow: hidden;
}

.mac-frame {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: -80px;
    z-index: 1;
}

.demo-content {
    display: flex;
    position: relative;
}

.demo-text {
    position: absolute;
    top: 50%;
    left: 4%;
    transform: translateY(-140%);
    width: 45%;
    z-index: 2;
}

.demo-text h1 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.demo-text h1 span {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    color: var(--white);
    margin-right: 10px;
    border-radius: 100%;
    background-color: var(--text-dark);
}

.demo-text h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.demo-text p {
    margin-bottom: 25px;
    width: 80%;
}

.demo-button {
    display: inline-block;
    padding: 12px 28px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.2s ease-in-out;
}

.demo-button:hover {
    transform: scale(1.05);
    background-color: var(--primary-dark);
    box-shadow: var(--shadow-lg);
}

.demo-image {
    position: absolute;
    top: 50%;
    right: -55px;
    transform: translateY(-99%);
    width: 65%;
    display: flex;
    justify-content: flex-end;
    padding-right: 2%;
}

.demo-image img {
    border-radius: 20px 0 0 0;
    box-shadow: var(--shadow-lg);
}

/* Audience Section */
.audience-section {
    padding: 100px 0;
    /* background-color: var(--light-bg); */
    /* background-color: #081019; */
    background: linear-gradient(135deg, #0f172a 0%, #312e81 50%, #6d28d9 100%);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-badge {
    display: inline-block;
    background: var(--gradient);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.section-title {
    font-family: 'Recoleta', serif;
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--white);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--white);
}

.audience-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.audience-card {
    /* background: var(--white); */
    background: #0e122e;
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.audience-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient);
}

.audience-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.card-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 28px;
    color: var(--white);
}

.card-1 .card-icon {
    background: linear-gradient(135deg, #ff242d, #ff7e83);
}

.card-2 .card-icon {
    background: linear-gradient(135deg, #146dff, #a8c9ff);
}

.card-3 .card-icon {
    background: linear-gradient(135deg, #f93e00, #ffb8a1);
}

.card-4 .card-icon {
    background: linear-gradient(135deg, #b900fd, #fab0ff);
}

.card-5 .card-icon {
    background: linear-gradient(135deg, #f78406, #f0cfabcc);
}

.card-6 .card-icon {
    background: linear-gradient(135deg, #0c82bb, #59c9ff);
}

.card-title {
    font-size: 1.7rem;
    margin-bottom: 15px;
    color: var(--text-light);
    font-family: 'Recoleta', serif;
}

.card-description {
    margin-bottom: 25px;
    color: var(--text-light);
}

.card-features {
    margin-bottom: 25px;
}

.card-features li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    gap: 10px;
    color: var(--text-light);
}

.card-features li i {
    color: #00d600;
}

.card-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 600;
    transition: all 0.3s ease;
}

.card-link:hover {
    color: var(--primary-dark);
}

.card-link i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.card-link:hover i {
    transform: translateX(4px);
}

.audience-section .stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    background: #0e122e;
    /* background: var(--white); */
    border-radius: 16px;
    /* box-shadow: var(--shadow); */
    box-shadow: 0px 1px 20px rgb(134 0 161 / 95%), 0 2px 4px -1px rgb(45 44 252);
    padding: 40px;
    border: 3px solid var(--gradient);
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    /* color: var(--text-dark); */
    color: var(--white);
    margin-bottom: 10px;
}

.stat-label {
    /* color: var(--primary-dark); */
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Email Templates Section */
.email-templates-section {
    padding: 100px 0;
    /* background: #fee8ffe0; */
    background: linear-gradient(180deg, #ede9fe 0%, #dbeafe 100%);
}

.templates-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.templates-title {
    font-family: 'Recoleta', serif;
    font-size: 3rem;
    margin-bottom: 20px;
}

.templates-subtitle {
    font-size: 1.125rem;
    color: var(--text-gray);
}

.templates-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.templates-features {
    flex: 1;
}

.feature-list {
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    border: 2px solid #a0a0a0b5;
    border-radius: 30px 0px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    /* background: linear-gradient(90deg, #b2c1fd, #e1adffa8); */
    background: linear-gradient(90deg, #00036c, #000445f5);
    color: white;
}

.feature-item:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow);
}

.feature-item i {
    color: var(--primary-color);
}

.feature-item p {
    font-weight: 500;
}

.templates-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.templates-image img {
    border-radius: 15px;
    border: 2px solid #00000085;
    padding: 11px;
    box-shadow: 0px 10px 18px #00000085;
    /* box-shadow: var(--shadow-lg); */
}


.feature-item {
    cursor: pointer;
    transition: all 0.3s ease;
}

.feature-item.active {
    border-color: #6366f1;
    background: linear-gradient(90deg, #4f46e5, #4338ca);
    transform: scale(1.03);
}

.templates-image img {
    transition: opacity 0.3s ease;
}


/* Mobile Navigation */
.nav-mobile {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    border-radius: 10px;
    background: var(--white);
    padding: 20px;
    box-shadow: var(--shadow-lg);
    z-index: 100;
}



.nav-mobile .nav-links {
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.nav-mobile .nav-btns {
    flex-direction: column;
    gap: 10px;
}



/* Warmup satrt */
.email-warmup-section {
    padding: 100px 0;
    /* background: linear-gradient(180deg, #ede9fe 0%, #dbeafe 100%); */
    /* background: linear-gradient(135deg, #c7d2fe 0%, #e0abff 50%, #fbcfe8 100%); */
    background: linear-gradient(135deg, #0f172a 0%, #312e81 50%, #6d28d9 100%);

}

.email-warmup-section header {
    text-align: center;
    margin-bottom: 3rem;
}

.badge {
    display: inline-block;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.email-warmup-section header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--white);
    font-weight: 700;
    line-height: 1.2;
}

.subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 900px;
    margin: 0 auto 2rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.step-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.step-number {
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    border-bottom-left-radius: 1rem;
}

.step-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: white;
}

.step-1 .step-icon {
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
}

.step-2 .step-icon {
    background: linear-gradient(135deg, #8b5cf6, #a78bfa);
}

.step-3 .step-icon {
    background: linear-gradient(135deg, #10b981, #34d399);
}

.step-4 .step-icon {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
}

.step-5 .step-icon {
    background: linear-gradient(135deg, #38cd00, #0d8800);
}

.step-6 .step-icon {
    background: linear-gradient(135deg, #f5340b, #fbbf24);
}

.step-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.step-card p {
    color: #64748b;
    margin-bottom: 1rem;
}

.cta-section {
    text-align: center;
    background: white;
    border-radius: 1rem;
    padding: 3rem 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    margin-top: 2rem;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.cta-section p {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(59, 130, 246, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.4);
}


/* Warmup end */

/* Pricing Start */
.pricingSection {
    background: linear-gradient(180deg, #ede9fe 0%, #dbeafe 100%);
    /* background: linear-gradient(135deg, #0f172a 0%, #312e81 50%, #6d28d9 100%); */
    color: #202124;
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.pricingBgAnimation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.pricingCircle {
    position: absolute;
    border-radius: 50%;
    background: rgba(26, 115, 232, 0.1);
    animation: pricingFloat 15s infinite linear;
}

.pricingCircle:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.pricingCircle:nth-child(2) {
    width: 120px;
    height: 120px;
    top: 70%;
    left: 80%;
    animation-delay: 2s;
}

.pricingCircle:nth-child(3) {
    width: 60px;
    height: 60px;
    top: 40%;
    left: 85%;
    animation-delay: 4s;
}

.pricingCircle:nth-child(4) {
    width: 100px;
    height: 100px;
    top: 80%;
    left: 15%;
    animation-delay: 6s;
}

.pricingCircle:nth-child(5) {
    width: 70px;
    height: 70px;
    top: 15%;
    left: 75%;
    animation-delay: 8s;
}

@keyframes pricingFloat {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 0.7;
    }

    100% {
        transform: translateY(0) rotate(360deg);
        opacity: 1;
    }
}

.pricingContainer {
    max-width: 1200px;
    width: 100%;
    z-index: 1;
}

.pricingHeader {
    text-align: center;
    margin-bottom: 50px;
}

.pricingTitle {
    font-size: 2.8rem;
    margin-bottom: 15px;
    font-weight: 700;
    background: linear-gradient(90deg, #1a73e8, #4285f4);
    -webkit-background-clip: text;
    background-clip: text;
    /* color: transparent; */
    color: var(--text-dark);
    display: inline-block;
}

.pricingSubtitle {
    font-size: 1.2rem;
    /* color: #5f6368; */
    color: var(--text-gray);
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.6;
    font-family: "Inter", serif;
}

.pricingToggleContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
    gap: 15px;
    background: rgba(255, 255, 255, 0.7);
    padding: 15px 30px;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(5px);
}

.pricingToggleLabel {
    font-weight: 500;
    color: #5f6368;
    transition: all 0.3s ease;
    font-family: "Recoleta", serif;
}

.pricingToggleLabel.pricingActive {
    color: #1a73e8;
    font-weight: 600;
}

.pricingToggle {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

.pricingToggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.pricingSlider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #dadce0;
    transition: all 0.3s ease;
    border-radius: 34px;
}

.pricingSlider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: all 0.3s ease;
    border-radius: 50%;
}

.pricingToggle input:checked+.pricingSlider {
    background-color: #1a73e8;
}

.pricingToggle input:checked+.pricingSlider:before {
    transform: translateX(30px);
}

/* ---------------------------- */
.currencySwitch {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 25px;
}

.currencyLabel {
    font-weight: 500;
    color: #5f6368;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: "Recoleta", serif;
}

.currencyLabel.currencyActive {
    color: #1a73e8;
    font-weight: 600;
}

/* ---------------------------- */
.pricingCards {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.pricingCard {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 30px;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    flex-direction: column;
    /* REMOVED FIXED HEIGHT - Let content determine height */
}

.pricingCard::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #1a73e8, #4285f4);
}

.pricingCard:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.pricingCard.pricingPopular {
    border: 2px solid #1a73e8;
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 15px 40px rgba(26, 115, 232, 0.2);
}

.pricingCard.pricingPopular::before {
    height: 8px;
    background: linear-gradient(90deg, #1a73e8, #34a853);
}

.pricingCard.pricingPopular:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 20px 40px rgba(26, 115, 232, 0.3);
}

.pricingPopularBadge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: linear-gradient(90deg, #1a73e8, #34a853);
    color: white;
    padding: 8px 40px;
    font-size: 0.8rem;
    font-weight: 600;
    transform: rotate(45deg);
    box-shadow: 0 2px 10px rgba(26, 115, 232, 0.3);
    z-index: 2;
}

.pricingCardHeader {
    margin-bottom: 25px;
    text-align: center;
}

.pricingPlanName {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #202124;
}

.pricingPrice {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 5px;
    font-family: 'Inter', serif;
}

.pricingCurrency {
    font-size: 1.2rem;
    font-weight: 600;
    color: #202124;
}

.pricingAmount {
    font-size: 2.8rem;
    font-weight: 700;
    color: #202124;
    margin: 0 5px;
}

.pricingPeriod {
    font-size: 1rem;
    color: #5f6368;
}

.pricingYearlySavings {
    color: #34a853;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 20px;
    display: none;
    text-align: center;
    background: rgba(52, 168, 83, 0.1);
    padding: 5px 10px;
    border-radius: 20px;
    width: fit-content;
    margin: 0 auto 20px;
    font-family: 'Inter', serif;
}

.pricingYearlyActive .pricingYearlySavings {
    display: block;
}

.pricingFeatures {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.pricingFeatures li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
}

.pricingFeatures li:last-child {
    border-bottom: none;
}

.pricingFeatureAvailable {
    font-family: 'Inter', serif;
}

.pricingFeatureAvailable::before {
    content: "✓";
    color: #1a73e8;
    font-weight: bold;
    margin-right: 10px;
    font-size: 1.1rem;
    background: rgba(26, 115, 232, 0.1);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}


.pricingFeatureUnavailable {
    color: #9aa0a6;
    font-family: 'Inter', serif;
}

.pricingFeatureUnavailable::before {
    content: "✕";
    color: #9aa0a6;
    font-weight: bold;
    margin-right: 10px;
    font-size: 1.1rem;
    background: rgba(154, 160, 166, 0.1);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricingBtnContainer {
    margin-top: auto;
    padding-top: 20px;
}

.pricingBtn {
    display: block;
    width: 100%;
    padding: 16px;
    text-align: center;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-family: 'Inter', serif;
}

.pricingBtn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.pricingBtn:hover::before {
    left: 100%;
}

.pricingBtn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(26, 115, 232, 0.3);
}

.pricingCard.pricingPopular .pricingBtn {
    background: linear-gradient(90deg, #1a73e8, #34a853);
    font-family: 'Inter', serif;
}


/* Pricing End */


/* Footer Start */
/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #1e293b, #334155);
    color: #e2e8f0;
    padding: 3rem 0 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
}

.footer-section {
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.footer-logo i {
    font-size: 2rem;
    color: #3b82f6;
    margin-right: 0.75rem;
}

.footer-logo-text {
    font-size: 1.75rem;
    font-weight: 700;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-description {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: #cbd5e1;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #e2e8f0;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #3b82f6;
    transform: translateY(-3px);
}

.footer-heading {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #f8fafc;
    position: relative;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 3px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-links a:hover {
    color: #3b82f6;
    transform: translateX(5px);
}

.footer-links i {
    margin-right: 0.5rem;
    font-size: 0.9rem;
    width: 20px;
}

.contact-info {
    list-style: none;
}

.contact-info li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
}

.contact-info i {
    margin-right: 0.75rem;
    color: #3b82f6;
    margin-top: 0.25rem;
}

.contact-text {
    color: #cbd5e1;
}

.newsletter-form {
    display: flex;
    margin-top: 1rem;
}

.newsletter-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 0.5rem 0 0 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    color: #f8fafc;
    outline: none;
}

.newsletter-input::placeholder {
    color: #94a3b8;
}

.newsletter-button {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    border: none;
    padding: 0 1.5rem;
    border-radius: 0 0.5rem 0.5rem 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-button:hover {
    background: linear-gradient(135deg, #2563eb, #7c3aed);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem 2rem;
    margin-top: 2rem;
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    color: #94a3b8;
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #3b82f6;
}

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

.payment-methods i {
    font-size: 1.5rem;
    color: #cbd5e1;
}

/* Footer End */

/* Comparison Section Start */
.email-comparison-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f172a 0%, #312e81 50%, #6d28d9 100%);
}

.email-comparison-section header {
    text-align: center;
    margin-bottom: 3rem;
}

.badge {
    display: inline-block;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.email-comparison-section header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    /* color: #1e293b; */
    color: var(--white);
    font-weight: 700;
    line-height: 1.2;
}

.subtitle {
    font-size: 1.25rem;
    /* color: #64748b; */
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 2rem;
}

.comparison-section {
    margin-bottom: 4rem;
}

.comparison-table {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border: 1rem solid rgba(255, 255, 255, 0.3);
}

.table-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    background: linear-gradient(135deg, #1e293b, #334155);
    color: white;
    padding: 1.5rem 1rem;
    text-align: center;
    align-items: center;
}

.platform-name {
    font-weight: 700;
    font-size: 1.2rem;
    /* margin-bottom: 0.5rem; */
}

.platform-price {
    font-size: 0.9rem;
    opacity: 0.9;
}

.featured-column {
    position: relative;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 0.5rem;
    padding: 1rem;
    margin: -0.5rem;
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.3);
}

.featured-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #f59e0b;
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.table-body {
    display: flex;
    flex-direction: column;
}

.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    padding: 1.5rem 1rem;
    align-items: center;
    border-bottom: 1px solid #e2e8f0;
}

.feature-row:nth-child(even) {
    background-color: #f8fafc;
}

.feature-name {
    font-weight: 600;
    color: #1e293b;
}

.feature-value {
    text-align: center;
    font-weight: 500;
}

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

.cross {
    color: #ef4444;
    font-size: 1.25rem;
}

.limited {
    color: #f59e0b;
    font-size: 1rem;
    font-weight: 600;
}

.highlight {
    background: linear-gradient(135deg, #dbeafe, #ede9fe);
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-weight: 600;
}

.cta-section {
    text-align: center;
    background: white;
    border-radius: 1rem;
    padding: 3rem 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    margin-top: 2rem;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.cta-section p {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(59, 130, 246, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.4);
}

/* @media (max-width: 768px) {
    .container {
        padding: 1.5rem;
    }

    h1 {
        font-size: 2rem;
    }


} */

/* Comparison Section End */


/* ---------------------------------- */

/* 🌟 Modernized Feature Section */
.feature-section {
    padding: 120px 20px;
    /* background: radial-gradient(circle at top left, #eef3ff 0%, #f9fbff 35%, #ffffff 100%); */
    /* background: radial-gradient(circle at top left, #d890e5b8 0%, #9eb5e1 35%, #443fc394 100%); */
    background: linear-gradient(180deg, #ede9fe 0%, #dbeafe 100%);
    position: relative;
    overflow: hidden;
}

/* Decorative blurred gradient orbs */
.feature-section::before,
.feature-section::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.15), rgba(0, 255, 255, 0.1));
    filter: blur(120px);
    z-index: 0;
}

.feature-section::before {
    top: -100px;
    left: -100px;
}

.feature-section::after {
    bottom: -80px;
    right: -100px;
}

.feature-section .section-header {
    max-width: 900px;
    margin: 0 auto 70px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.feature-section .section-title {
    font-size: 2.8rem;
    font-weight: 800;
    /* background: linear-gradient(90deg, #007bff, #00c6ff); */
    /* -webkit-background-clip: text; */
    /* -webkit-text-fill-color: transparent; */
    margin-bottom: 15px;
    letter-spacing: -0.5px;
    color: #000;
}

.feature-section .section-subtitle {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.8;
}

.feature-btn {
    display: inline-block;
    background: linear-gradient(90deg, #007bff, #00b4d8);
    color: white;
    padding: 14px 34px;
    border-radius: 60px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.4s ease;
    box-shadow: 0 10px 25px rgba(0, 123, 255, 0.25);
}

.feature-btn:hover {
    background: linear-gradient(90deg, #0056d6, #0096c7);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 123, 255, 0.35);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    position: relative;
    z-index: 2;
}

.feature-card {
    position: relative;
    /* background: rgba(255, 255, 255, 0.75); */
    background: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 24px;
    padding: 40px 25px;
    text-align: center;
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(40px);
    overflow: hidden;
}

/* Smooth reveal on scroll */
.feature-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.feature-card::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 123, 255, 0.08), transparent 70%);
    transform: rotate(25deg);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 20px 50px rgba(0, 123, 255, 0.12);
}

/* Icon Styles */
.icon-box {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    border-radius: 20px;
    background: linear-gradient(135deg, #e3f2ff, #f4faff);
    color: #007bff;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.15);
    transition: all 0.4s ease;
}

.feature-card:hover .icon-box {
    transform: rotate(8deg) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.25);
}

.icon-box i {
    width: 34px;
    height: 34px;
}

/* Card Title & Text */
.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #0d1117;
    font-family: "Recoleta", serif;
}

.feature-card p {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.7;
}

/* ✨ Subtle floating animation for icons */
@keyframes floatIcon {

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

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

.feature-card .icon-box i {
    animation: floatIcon 3s ease-in-out infinite;
}


/* ----------------------------- -----*/
/* Moving Elements */



.moving-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.moving-element {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    opacity: 0.7;
}

.moving-element i {
    color: var(--white);
}

.element1 {
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    top: 44%;
    left: 22%;
    animation: float 8s ease-in-out infinite;
}

.element2 {
    background: linear-gradient(135deg, #8b5cf6, #a78bfa);
    top: 25%;
    left: 9%;
    animation: float 10s ease-in-out infinite 1s;
}

.element3 {
    background: linear-gradient(135deg, #10b981, #34d399);
    top: 77%;
    left: 15%;
    animation: float 9s ease-in-out infinite 0.5s;
}

.element4 {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    top: 70%;
    left: 75%;
    animation: float 11s ease-in-out infinite 1.5s;
}

.element5 {
    background: linear-gradient(135deg, #ec4899, #f472b6);
    top: 24%;
    left: 59%;
    animation: float 7s ease-in-out infinite 2s;
}

.element6 {
    background: linear-gradient(135deg, #6366f1, #818cf8);
    top: 43%;
    left: 77%;
    animation: float 12s ease-in-out infinite 0.7s;
}

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

    50% {
        transform: translateY(-20px) rotate(10deg);
    }

    100% {
        transform: translateY(0) rotate(0deg);
    }
}

/* ---------------------------------- */

/* Privacy-Policy Start */
.privacy-policy-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 10px 0 1px;
}

.privacy-policy-section {
    background-image: url('https://emailbrevo.com/assets/images/landing/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 0px 0 10px;
}

.privacy-policy-content {
    font-family: 'Recoleta', serif;
    font-size: 3.5rem;
    margin-bottom: 25px;
}

:root {
    --primary: #3a86ff;
    --primary-dark: #2667cc;
    --secondary: #8338ec;
    --dark: #1e293b;
    --light: #f8fafc;
    --gray: #64748b;
    --gray-light: #cbd5e1;
    --border: #e2e8f0;
    --success: #10b981;
}



/* Content Section */
.content-section {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 50px;
    margin-bottom: 60px;
}

.content-section h2 {
    color: var(--primary);
    margin-bottom: 30px;
    font-size: 1.8rem;
    border-bottom: 2px solid var(--border);
    padding-bottom: 15px;
}

.content-section h3 {
    color: var(--dark);
    margin: 25px 0 15px;
    font-size: 1.3rem;
}

.content-section p {
    margin-bottom: 15px;
    color: var(--gray);
}

.content-section ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.content-section li {
    margin-bottom: 10px;
    color: var(--gray);
}

.highlight-box {
    background-color: rgba(58, 134, 255, 0.05);
    border-left: 4px solid var(--primary);
    padding: 20px;
    margin: 25px 0;
    border-radius: 0 5px 5px 0;
}

.last-updated {
    background-color: rgba(16, 185, 129, 0.1);
    border-left: 4px solid #10b981;
    padding: 15px 20px;
    margin-bottom: 30px;
    border-radius: 0 5px 5px 0;
    display: flex;
    align-items: center;
}

.last-updated i {
    color: var(--success);
    margin-right: 10px;
    font-size: 1.2rem;
}

/* Privacy-Policy End */

/* Responsive Styles */
@media (max-width: 1024px) {
    .moving-elements {
        display: none;
    }

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

    .hero-content {
        padding: 6px 0 44px;
    }

    .section-title,
    .templates-title {
        font-size: 2.5rem;
    }

    .demo-text {
        top: 50%;
        left: 4%;
        transform: translateY(-111%);
        width: 45%;
    }

    .demo-text h1 {
        font-size: 1.8rem;
        margin-bottom: 5px;
    }

    .demo-text h2 {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }

    .demo-text p {
        margin-bottom: 14px;
    }


    .demo-image {
        width: 65%;
    }

    .dashboard-container {
        flex-direction: column;
        margin-top: 35px;
    }

    .sidebar {
        width: 100%;
        padding: 15px;
    }

    .nav-menu {
        display: flex;
        overflow-x: auto;
        padding-bottom: 10px;
    }

    .nav-item {
        margin-bottom: 0;
        margin-right: 10px;
    }

    .nav-link {
        white-space: nowrap;
    }
}

/* USED */
/* @media (max-width: 768px) { */
@media screen and (max-width: 768.98px) {

    /* .nav-links,
    .nav-btns {
        display: none;
    } */
    .nav-mobile.active {
        display: block;
    }

    .nav-desktop {
        display: none;
    }

    #desktop-navbtn {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .request-btn {
        border: 2px solid #5a5ef7;
        background-color: #7e83fe2e;
    }

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

    .hero-content {
        padding: 13px 0 30px;
    }

    .hero-section {
        padding: 0px 0 26px;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .demo-container {
        border: 15px solid rgba(255, 255, 255, 0.3);
    }

    .demo-content {
        flex-direction: column;
    }


    .demo-text,
    .demo-image {
        position: static;
        transform: none;
        width: 100%;
        padding: 10px 0px 0px 0px;
    }

    .demo-text {
        text-align: center;
        margin-bottom: 30px;
    }

    .demo-text p {
        width: 100%;
        margin: 0 auto 20px;
    }

    .demo-image {
        justify-content: center;
    }

    .demo-image img {
        border-radius: 10px;
    }

    .mac-frame {
        display: none;
    }

    .section-title,
    .templates-title {
        font-size: 2rem;
    }

    .templates-content {
        flex-direction: column;
        gap: 10px;
    }

    .audience-section {
        padding: 30px 0;
    }

    .audience-section .section-header {
        margin: 0 auto 14px;
    }

    .templates-header {
        margin: 0;
    }

    .audience-cards {
        grid-template-columns: 1fr;
        margin-bottom: 40px;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .background-frame {
        display: none;
    }

    .email-templates-section {
        padding: 30px 0;
    }

    .feature-section {
        padding: 30px 0px;
    }

    .email-comparison-section {
        padding: 30px 0px;
    }

    /* ''''' */
    .main-content {
        padding: 20px;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .chart-bar {
        width: 40px;
    }

    .chart-label {
        width: 40px;
    }

    /* Warmup Start*/
    .subtitle {
        font-size: 1rem;
    }

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

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

    /* Warmup End */

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

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

    .newsletter-input {
        border-radius: 0.5rem 0.5rem 0 0;
        margin-bottom: 0.5rem;
    }

    .newsletter-button {
        border-radius: 0 0 0.5rem 0.5rem;
        padding: 0.75rem;
    }


    .table-header,
    .feature-row {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
    }

    .featured-column {
        transform: none;
        margin: 0;
    }

    .feature-name {
        padding-bottom: 0.5rem;
        border-bottom: 1px dashed #e2e8f0;
    }

    .pricingFeatures {
        padding-left: 0;
    }

    .pricingCards {
        flex-direction: column;
        align-items: center;
    }

    .pricingCard {
        max-width: 100%;
        min-width: 200px;
    }

    .pricingCard.pricingPopular {
        transform: scale(1);
    }

    .pricingCard.pricingPopular:hover {
        transform: translateY(-10px);
    }

    .pricingTitle {
        font-size: 2.2rem;
    }

    .pricingSection {
        padding: 30px 0px;
    }

    .email-warmup-section {
        padding: 30px 0;
    }

    .email-warmup-section header h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .introducing-label {
        font-size: 0.79rem;
    }

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

    .hero-description {
        font-size: 1rem;
    }

    .cta-button {
        padding: 12px 17px;
        font-size: 0.9rem;
    }

    .demo-text h1 {
        font-size: 1.8rem;
    }

    .demo-text h2 {
        font-size: 1.2rem;
    }

    .demo-text p {
        font-size: 0.88rem;
    }

    .email-warmup-section header h1 {
        font-size: 1.7rem;
    }

    .subtitle {
        font-size: 1rem;
        margin: 0 auto 1rem;
    }

    .steps-grid {
        gap: 1rem;
    }

    .cta-section h2 {
        font-size: 1.5rem;
    }

    .cta-section p {
        font-size: 1rem;
    }

    .templates-subtitle {
        font-size: 1rem;
    }

    .features-grid {
        gap: 1.6rem;
    }

    .feature-item {
        padding: 15px;
        margin-bottom: 10px;
    }

    .feature-list {
        margin-top: 15px;
    }

    .feature-item p {
        font-size: 1rem;
    }

    .feature-section .section-title {
        font-size: 1.7rem;
    }

    .feature-section .section-subtitle {
        font-size: 1rem;
        margin-bottom: 12px;
    }

    .feature-section .section-header {
        margin: 0 auto 30px;
    }

    .email-comparison-section header h1 {
        font-size: 1.7rem;
    }

    .pricingHeader {
        margin-bottom: 25px;
    }

    .pricingTitle {
        font-size: 1.7rem;
    }

    .pricingSubtitle {
        font-size: 1rem;
    }

    .pricingToggleContainer {
        /* padding: 6px 10px; */
        padding: 8px 4px;
        gap: 5px;
    }

    .pricingSlider:before {
        height: 15px;
        width: 15px;
        /* left: -8px; */
        bottom: 4px;
    }

    .pricingToggle {
        width: 40px;
        height: 22px;
    }

    .pricingToggle input:checked+.pricingSlider:before {
        transform: translateX(19px);
    }

    .currencySwitch {
        gap: 5px;
    }

    .pricingToggleLabel {
        font-size: 0.8rem;
    }

    .section-title,
    .templates-title {
        font-size: 1.7rem;
    }

    .stats-container {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .background-frame {
        display: none;
    }

    .stats-container {
        grid-template-columns: 1fr;
    }

    .filter-form {
        grid-template-columns: 1fr;
    }

    .chart-bar {
        width: 30px;
    }

    .chart-label {
        width: 30px;
    }

    .content-section {
        padding: 5px;
    }
}

/* TOP LOGO */
.form-top-logo {
    max-width: 12rem !important;
}

/* FOOTER LOGO */
.footer-logo img {
    width: 12rem !important;
}

@media (min-width: 577px) and (max-width: 992px) {
    .form-top-logo {
        width: 10rem !important;
    }

    .footer-logo img {
        width: 10rem !important;
    }

}


@media (max-width: 576px) {
    .form-top-logo {
        width: 9rem !important;
    }

    .footer-logo img {
        width: 12rem !important;
    }
}