/* =====================================================
   1. PROFESSIONAL EMAIL HERO SECTION
   ===================================================== */

.pe-hero {
    background-color: #0d1117;
    padding: 80px 24px 120px 24px;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.pe-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}


/* =====================================================
   TYPOGRAPHY & COPY
   ===================================================== */

.pe-pre-title {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
    display: inline-block;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.pe-title {
    font-family: var(--font-heading);
    font-size: clamp(44px, 5.5vw, 68px);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.05;
    letter-spacing: -2px;
    margin: 0 0 24px 0;
}

.pe-desc {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.6;
    color: #8b949e;
    margin: 0 0 40px 0;
    max-width: 95%;
}


/* =====================================================
   CTA AND PRICING
   ===================================================== */

.pe-cta-wrapper {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.pe-cta-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: #9D00FF;
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    padding: 16px 40px;
    border-radius: 0;
    text-decoration: none;
    border: 2px solid #111827;
    box-shadow: 6px 6px 0px #111827;
    transition:
        transform 0.1s ease,
        box-shadow 0.1s ease,
        background-color 0.2s ease;
}

.pe-cta-btn:hover {
    transform: translate(-2px, -2px);
    box-shadow: 8px 8px 0px #111827;
    background-color: #7b00cc;
}

.pe-pricing-info {
    display: flex;
    flex-direction: column;
}

.pe-price-label {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 4px;
}

.pe-hero .pe-price-amount {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    color: #ffffff !important;
    line-height: 1;
}


/* =====================================================
   RIGHT SIDE — EMAIL MASCOT IMAGE
   ===================================================== */

.pe-hero-vector {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.email-hero-image {
    display: block;
    width: 100%;
    max-width: 560px;
    height: auto;
    object-fit: contain;
}


/* =====================================================
   RESPONSIVE
   ===================================================== */

@media (max-width: 1024px) {

    .pe-hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
    }

    .pe-desc {
        max-width: 100%;
        margin: 0 auto 40px auto;
    }

    .pe-cta-wrapper {
        justify-content: center;
    }

    .pe-hero-vector {
        margin: 0 auto;
    }

    .email-hero-image {
        max-width: 560px;
    }
}


@media (max-width: 600px) {

    .pe-hero {
        padding: 50px 20px 70px 20px;
    }

    .pe-cta-wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .pe-cta-btn {
        width: 100%;
        box-sizing: border-box;
    }

    .email-hero-image {
        width: 105%;
        max-width: none;
        margin-left: -2.5%;
    }
}

/* =====================================================
   2. PROFESSIONAL EMAIL PRICING SECTION
   ===================================================== */
.pe-pricing-section {
    background-color: #ffffff; 
    padding: 100px 24px 120px 24px;
    width: 100%;
    box-sizing: border-box;
}

.pe-pricing-container {
    max-width: 1100px;
    margin: 0 auto;
}

.pe-pricing-main-heading {
    font-family: var(--font-heading);
    font-size: clamp(40px, 5vw, 56px);
    font-weight: 700;
    color: #111827;
    text-align: center;
    line-height: 1.1;
    letter-spacing: -2px;
    margin: 0 0 80px 0;
}

.pe-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    align-items: stretch;
}

/* Card Styles - Sharp Brutalist Shape */
.pe-card {
    background-color: #ffffff;
    border: 1px solid #E5E7EB; 
    border-right: 4px solid #111827; 
    border-bottom: 4px solid #111827;
    border-radius: 0; 
    padding: 40px 32px; 
    display: flex;
    flex-direction: column;
    position: relative; 
    box-shadow: 8px 8px 0px rgba(17, 24, 39, 0.05); 
}

.pe-card-header {
    margin-bottom: 24px;
}

.pe-plan-name {
    font-family: var(--font-heading);
    font-size: clamp(20px, 2vw, 24px);
    font-weight: 700;
    color: #111827;
    margin: 0 0 16px 0;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

/* Audience Tag replacing the blue blocks */
.pe-audience-tag {
    background-color: #111827;
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    padding: 8px 12px;
    margin-bottom: 16px;
    border: 1px solid #111827;
    border-radius: 0;
    box-shadow: 3px 3px 0px #D1D5DB;
    line-height: 1.4;
}

.pe-audience-purple {
    background-color: #9D00FF;
    border-color: #9D00FF;
    box-shadow: 3px 3px 0px #111827;
}

.pe-badge {
    display: inline-block;
    color: #4B5563;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    margin-top: 8px;
    border-radius: 0;
}

.pe-price-wrap {
    display: flex;
    align-items: flex-start;
    margin-bottom: 24px;
}

.pe-price-currency {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    margin-top: 4px;
}

/* Kept the pricing section color to #111827 so they stand out here */
.pe-price-amount {
    font-family: var(--font-heading);
    font-size: 52px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -2px;
    color: #111827;
}

.pe-price-term {
    font-family: var(--font-body);
    font-size: 15px;
    color: #6B7280;
    margin-top: auto;
    margin-bottom: 8px;
    margin-left: 4px;
}

/* Card Button */
.pe-card-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 14px 0;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    margin-bottom: 32px; 
    background-color: #D1D5DB;
    color: #111827;
    border: 1px solid transparent; 
    box-shadow: 4px 4px 0px #111827;
    border-radius: 0;
    transition: all 0.2s ease;
}

.pe-card-btn:hover { 
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0px #111827;
    background-color: #ffffff; 
    border: 1px solid #111827; 
}

/* Upgraded Recommended Badge with Pulsing Dot - Zero Rounded Corners on the badge */
.Vagocat-badge-recommended {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #9D00FF; 
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 8px 24px;
    border-radius: 0; 
    white-space: nowrap;
    border: 1px solid #111827;
    box-shadow: 4px 4px 0px rgba(17, 24, 39, 0.1);
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 5;
}

/* Restored 50% border-radius specifically for the dot */
.Vagocat-badge-recommended::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #ffffff;
    border-radius: 50%; 
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7); }
    70% { box-shadow: 0 0 0 6px rgba(255, 255, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

.pe-card-recommended {
    border: 1px solid #E5E7EB;
    border-right: 4px solid #9D00FF;
    border-bottom: 4px solid #9D00FF;
    transform: translateY(-16px); 
    box-shadow: 12px 12px 0px rgba(157, 0, 255, 0.08);
}

.pe-card-recommended .pe-card-btn {
    background-color: #9D00FF;
    color: #ffffff;
    border: 1px solid transparent;
}

.pe-card-recommended .pe-card-btn:hover {
    background-color: #7b00cc;
    border: 1px solid #7b00cc;
}

/* Features List */
.pe-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    border-top: 2px solid #E5E7EB;
    padding-top: 24px;
}

.pe-features li {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.4;
    color: #4B5563;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.pe-features li i {
    margin-top: 3px;
    color: #D1D5DB; 
}

.pe-features strong {
    color: #111827;
    font-weight: 700;
}

/* =====================================================
   RESPONSIVE MEDIA QUERIES (Pricing)
   ===================================================== */
@media (max-width: 1024px) {
    .pe-grid-3 {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .pe-card-recommended {
        transform: translateY(0);
    }
}

/* =====================================================
   3. PROFESSIONAL EMAIL FEATURES BANNER
   ===================================================== */
.vps-features-banner {
    background-color: #ffffff; 
    padding: 60px 24px 100px 24px; 
    width: 100%;
    box-sizing: border-box;
}

.vps-features-container {
    max-width: 1200px;
    margin: 0 auto;
}

.vps-features-main-heading {
    font-family: var(--font-heading);
    font-size: clamp(40px, 5vw, 60px); 
    font-weight: 700;
    color: #111827;
    text-align: center;
    line-height: 1.1;
    letter-spacing: -2px;
    margin: 0 0 80px 0;
}

/* 4-Column Grid */
.vps-features-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.vps-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center; 
    text-align: center;
}

.vps-icon-box {
    width: 72px;
    height: 72px;
    background-color: #111827;
    border: 2px solid #111827;
    border-radius: 0; 
    box-shadow: 6px 6px 0px #D1D5DB; 
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 24px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.vps-feature-item:hover .vps-icon-box {
    transform: translate(-2px, -2px);
    box-shadow: 8px 8px 0px #9D00FF; 
}

.vps-icon-box svg {
    width: 32px;
    height: 32px;
}

.vps-feature-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 12px 0;
    letter-spacing: -0.5px;
}

.vps-feature-desc {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.6;
    color: #4B5563;
    margin: 0;
}

/* =====================================================
   RESPONSIVE MEDIA QUERIES (Features Banner)
   ===================================================== */
@media (max-width: 1024px) {
    .vps-features-grid-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 60px 40px;
    }
    .vps-features-main-heading {
        margin-bottom: 60px;
    }
}

@media (max-width: 600px) {
    .vps-features-grid-4 {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .vps-features-banner {
        padding: 40px 20px 80px 20px;
    }
}

/* =====================================================
   4. PROFESSIONAL EMAIL ADVANCED FEATURES
   ===================================================== */
.pe-advanced-features {
    background-color: #F8F9FA; 
    padding: 100px 24px 120px 24px;
    width: 100%;
    box-sizing: border-box;
    border-top: 2px solid #E5E7EB;
}

.pe-advanced-container {
    max-width: 1200px;
    margin: 0 auto;
}

.pe-advanced-heading {
    font-family: var(--font-heading);
    font-size: clamp(40px, 5vw, 60px); 
    font-weight: 700;
    color: #111827;
    text-align: center;
    line-height: 1.1;
    letter-spacing: -2px;
    margin: 0 0 20px 0;
}

.pe-advanced-subtext {
    font-family: var(--font-body);
    font-size: 18px;
    color: #4B5563;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px auto;
    line-height: 1.6;
}

/* =====================================================
   RESPONSIVE MEDIA QUERIES (Advanced Features)
   ===================================================== */
@media (max-width: 768px) {
    .pe-advanced-features {
        padding: 80px 24px;
    }
    .pe-advanced-heading {
        margin-bottom: 16px;
    }
    .pe-advanced-subtext {
        margin-bottom: 60px;
    }
}

@media (max-width: 600px) {
    .pe-advanced-features {
        padding: 60px 20px;
    }
}

/* =====================================================
   5. WHY CHOOSE US (ACCORDION & VECTORS)
   ===================================================== */
.pe-why-section {
    background-color: #ffffff;
    padding: 100px 24px 120px 24px;
    width: 100%;
    box-sizing: border-box;
}

.pe-why-container {
    max-width: 1200px;
    margin: 0 auto;
}

.pe-why-heading {
    font-family: var(--font-heading);
    font-size: clamp(36px, 5vw, 56px); 
    font-weight: 700;
    color: #111827;
    text-align: center;
    line-height: 1.1;
    letter-spacing: -2px;
    margin: 0 0 80px 0;
}

.pe-why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Vector Graphic Left Side */
.pe-why-visuals {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    aspect-ratio: 1 / 1;
}

.pe-vector-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s;
}

.pe-vector-img.active-vector {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Accordion Right Side */
.pe-why-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pe-acc-item {
    border-bottom: 2px solid #E5E7EB;
}

.pe-acc-btn {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 24px 0;
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: color 0.2s ease;
}

.pe-acc-icon {
    font-size: 20px;
    color: #111827;
    transition: transform 0.3s ease, color 0.2s ease;
}

.pe-acc-btn:hover {
    color: #9D00FF;
}

.pe-acc-btn:hover .pe-acc-icon {
    color: #9D00FF;
}

/* Content Hidden by Default */
.pe-acc-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.pe-acc-content p {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: #4B5563;
    margin: 0;
}

/* Active State */
.pe-acc-item.active-acc .pe-acc-btn {
    color: #9D00FF;
}

.pe-acc-item.active-acc .pe-acc-icon {
    color: #9D00FF;
    transform: rotate(90deg); /* Arrow points down */
}

.pe-acc-item.active-acc .pe-acc-content {
    max-height: 200px; /* Arbitrary high number for CSS transition */
    padding-bottom: 24px;
}

/* =====================================================
   6. ONBOARDING PROCESS (4 STEPS)
   ===================================================== */
.pe-steps-section {
    background-color: #F8F9FA; 
    padding: 100px 24px 120px 24px;
    width: 100%;
    box-sizing: border-box;
    border-top: 2px solid #E5E7EB;
}

.pe-steps-container {
    max-width: 1200px;
    margin: 0 auto;
}

.pe-steps-header {
    text-align: center;
    margin-bottom: 60px;
}

.pe-steps-heading {
    font-family: var(--font-heading);
    font-size: clamp(36px, 5vw, 56px); 
    font-weight: 700;
    color: #111827;
    line-height: 1.1;
    letter-spacing: -2px;
    margin: 0 0 20px 0;
}

.pe-steps-subtext {
    font-family: var(--font-body);
    font-size: 18px;
    color: #4B5563;
}

/* Visual Email Breakdown */
.pe-email-breakdown {
    text-align: center;
    margin-bottom: 80px;
}

.pe-eb-main {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    color: #111827;
    border-bottom: 4px solid #111827;
    display: inline-block;
    padding-bottom: 4px;
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.pe-eb-user {
    color: #9D00FF;
}

.pe-eb-at {
    color: #D1D5DB;
    margin: 0 4px;
}

.pe-eb-labels {
    display: flex;
    justify-content: center;
    gap: 40px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    color: #6B7280;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pe-eb-label-user {
    position: relative;
    padding-top: 8px;
}

.pe-eb-label-domain {
    position: relative;
    padding-top: 8px;
}

/* Step Labels connector lines */
.pe-eb-label-user::before, .pe-eb-label-domain::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 6px;
    background-color: #D1D5DB;
}

/* 4-Step Grid */
.pe-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.pe-step-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    border-left: 2px solid #D1D5DB; /* Replicates screenshot vertical line */
    padding-left: 16px;
}

.pe-step-number {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 800;
    color: #111827;
    line-height: 1;
    margin-top: -4px; /* Aligns visually with text */
}

.pe-step-text {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.6;
    color: #4B5563;
}

.pe-step-text strong {
    color: #111827;
    font-weight: 700;
}

/* =====================================================
   RESPONSIVE MEDIA QUERIES (Why Us & Steps)
   ===================================================== */
@media (max-width: 1024px) {
    .pe-why-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .pe-steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    .pe-step-item {
        border-left: none;
        border-top: 2px solid #D1D5DB;
        padding-left: 0;
        padding-top: 16px;
    }
}

@media (max-width: 600px) {
    .pe-steps-grid {
        grid-template-columns: 1fr;
    }
    .pe-acc-btn {
        font-size: 20px;
    }
    .pe-eb-labels {
        flex-direction: column;
        gap: 12px;
    }
    .pe-eb-label-user::before, .pe-eb-label-domain::before {
        display: none;
    }
}

/* =====================================================
   7. PROFESSIONAL EMAIL FAQ SECTION
   ===================================================== */
.Vagocat-faq-section {
    background-color: #ffffff; /* Alternating from the #F8F9FA of the steps section */
    padding: 100px 24px;
    width: 100%;
    box-sizing: border-box;
}

.faq-main-heading {
    font-family: var(--font-heading);
    font-size: clamp(48px, 6vw, 80px); 
    font-weight: 700;
    color: #111827;
    text-align: center;
    line-height: 1.05; 
    letter-spacing: -2px;
    margin: 0 0 20px 0;
}

.faq-subtext {
    font-family: var(--font-body);
    color: #4B5563;
    font-size: clamp(18px, 3vw, 24px);
    font-weight: 500;
    text-align: center;
    margin-bottom: 80px;
}

/* 2-Column Split */
.faq-text-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.faq-block h4 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 12px 0;
}

.faq-block p {
    font-family: var(--font-body);
    font-size: 16px;
    color: #4B5563;
    line-height: 1.6;
    margin: 0;
}

/* =====================================================
   RESPONSIVE MEDIA QUERIES (FAQ)
   ===================================================== */
@media (max-width: 900px) {
    .faq-text-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .Vagocat-faq-section {
        padding: 80px 24px;
    }
}

@media (max-width: 600px) {
    .faq-main-heading {
        margin: 0 0 16px 0;
    }
    .faq-subtext {
        margin-bottom: 60px;
    }
    .faq-block h4 {
        font-size: 20px;
    }
    .Vagocat-faq-section {
        padding: 60px 20px;
    }
}