/* ===================================================
   VIRTUAL OFFICE LAYOUT & UTILITIES
=================================================== */
.vo-container {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.vo-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.vo-section-dark {
    background-color: var(--color-dark-teal);
    color: #fff;
}

.vo-badge {
    display: inline-block;
    padding: 8px 16px;
    background-color: rgba(23, 198, 79, 0.1);
    color: var(--color-signal-green);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
    border: 1px solid rgba(23, 198, 79, 0.2);
}

.btn-vo-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    background-color: var(--color-signal-green);
    color: var(--color-dark-teal);
    border-radius: 100px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-vo-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(23, 198, 79, 0.3);
}

.btn-vo-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-vo-secondary:hover {
    background-color: #fff;
    color: var(--color-dark-teal);
    transform: translateY(-2px);
}

/* ===================================================
   HERO SECTION
=================================================== */
.vo-hero {
    min-height: 90vh;
    /* Full viewport height minus header roughly */
    padding-top: 180px;
    /* Accounts for header + bar + extra breathing room */
    padding-bottom: 100px;
    background-color: var(--color-dark-teal);
    position: relative;
    display: flex;
    align-items: center;
    color: #fff;
}

.vo-hero-bg {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(23, 198, 79, 0.15) 0%, transparent 50%),
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 100% 100%, 60px 60px, 60px 60px;
    z-index: 0;
}

.vo-hero .vo-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.vo-hero-title {
    font-size: clamp(48px, 5vw, 72px);
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.vo-hero-subtitle {
    font-size: 20px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 500px;
}

.vo-hero-actions {
    display: flex;
    gap: 20px;
}

.vo-hero-image {
    position: relative;
}

.vo-section-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    /* aspect-ratio: 4/3; */
}

.vo-section-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease;
}

.vo-section-image:hover img {
    transform: scale(1.03);
}

.doodle-placeholder {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    border: 2px dashed rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

/* ===================================================
   INTRO & FEATURES (GRID LAYOUTS)
=================================================== */
.vo-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
}

.vo-text-content h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
    color: var(--color-dark-teal);
}

.vo-section-dark .vo-text-content h2 {
    color: #fff;
}

.vo-text-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 24px;
}

.vo-section-dark .vo-text-content p {
    color: rgba(255, 255, 255, 0.8);
}

.vo-intro-list h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--color-dark-teal);
}

.checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.checklist li {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    font-size: 18px;
    font-weight: 500;
    color: var(--color-dark-teal);
}

.vo-section-dark .checklist li {
    color: #fff;
}

.checklist li svg {
    color: var(--color-signal-green);
    flex-shrink: 0;
}

/* ===================================================
   FEATURES CARDS (Visibility Section)
=================================================== */
.vo-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.vo-feature-card {
    background: #fff;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.vo-feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-signal-green);
}

.vo-feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(23, 198, 79, 0.1);
    color: var(--color-signal-green);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 16px;
}

.vo-feature-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--color-dark-teal);
}

.vo-feature-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.vo-tagline-centered {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-dark-teal);
    margin-top: 20px;
    display: block;
}

/* ===================================================
   MAIL HANDLING
=================================================== */
.vo-mail-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.vo-subtext {
    font-size: 16px;
    opacity: 0.7;
    margin-top: 20px;
    border-left: 2px solid var(--color-signal-green);
    padding-left: 20px;
}

/* ===================================================
   PRICING
=================================================== */
.vo-pricing {
    padding: 120px 0;
    background: #f4f6f6;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 42px;
    color: var(--color-dark-teal);
    margin-bottom: 16px;
    font-weight: 700;
}

.section-header p {
    font-size: 20px;
    color: #444;
    font-weight: 600;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    border: 2px solid var(--color-signal-green);
    background: #fff;
}

@media (min-width: 768px) {
    .pricing-card.featured {
        transform: scale(1.05);
        z-index: 2;
        box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    }

    .pricing-card.featured:hover {
        transform: scale(1.08);
        /* slightly more on hover */
    }
}

.tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--color-signal-green);
    color: var(--color-dark-teal);
    padding: 6px 12px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.pricing-header {
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.pricing-header h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--color-dark-teal);
}

.pricing-header .price {
    font-size: 48px;
    font-weight: 700;
    color: var(--color-dark-teal);
    line-height: 1;
    margin-bottom: 12px;
}

.pricing-header .period {
    font-size: 16px;
    font-weight: 500;
    color: #888;
}

.plan-desc {
    font-size: 16px;
    color: #666;
    line-height: 1.5;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    flex-grow: 1;
}

.features-list li {
    font-size: 16px;
    margin-bottom: 16px;
    padding-left: 28px;
    position: relative;
    color: #444;
}

.features-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-signal-green);
    font-weight: 800;
}

.features-list li.highlight {
    color: var(--color-dark-teal);
    font-weight: 600;
}

.btn-pricing {
    display: block;
    width: 100%;
    padding: 16px;
    text-align: center;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    background: rgba(7, 42, 48, 0.05);
    color: var(--color-dark-teal);
}

.btn-pricing.primary {
    background: var(--color-dark-teal);
    color: #fff;
}

.btn-pricing:hover {
    background: var(--color-dark-teal);
    color: #fff;
}

.btn-pricing.primary:hover {
    background: var(--color-signal-green);
    color: var(--color-dark-teal);
}

/* ===================================================
   CLOSING SECTION
=================================================== */
/* ===================================================
   CLOSING SECTION
=================================================== */
.vo-closing {
    padding: 100px 0;
    position: relative;
    background-color: var(--color-dark-teal);
    color: #fff;
    overflow: hidden;
}

/* Background Elements for Engagement */
.vo-closing::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(23, 198, 79, 0.08) 0%, transparent 70%);
    z-index: 0;
}

.vo-closing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.vo-closing-text {
    text-align: left;
}

.vo-closing h2 {
    font-size: clamp(32px, 4vw, 56px);
    font-weight: 700;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 24px;
}

.vo-closing p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    line-height: 1.6;
}

.closing-address h4 {
    font-size: 20px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 8px;
}

.closing-address p {
    font-size: 16px;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.6);
}

.closing-address a {
    color: var(--color-signal-green);
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.closing-address a::after {
    content: "→";
    transition: transform 0.3s ease;
}

.closing-address a:hover::after {
    transform: translateX(4px);
}

/* Form Styles - Glassmorphism Dark */
.vo-closing-form-wrapper {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: relative;
}

/* Engaging details */
.vo-closing-form-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.vo-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.vo-form input,
.vo-form textarea {
    width: 100%;
    padding: 18px 24px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    font-family: inherit;
    font-size: 16px;
    color: #fff;
    transition: all 0.3s ease;
}

.vo-form input::placeholder,
.vo-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.vo-form input:focus,
.vo-form textarea:focus {
    outline: none;
    background: rgba(0, 0, 0, 0.3);
    border-color: var(--color-signal-green);
    box-shadow: 0 0 0 4px rgba(23, 198, 79, 0.1);
}

.btn-vo-primary.full-width {
    width: 100%;
    padding: 20px;
    font-size: 18px;
    margin-top: 10px;
    border: none;
    cursor: pointer;
    background: var(--color-signal-green);
    color: var(--color-dark-teal);
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(23, 198, 79, 0.15);
}

.btn-vo-primary.full-width:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(23, 198, 79, 0.25);
    background-color: #15b345;
}

@media (max-width: 1024px) {

    .vo-hero .vo-container,
    .vo-intro-grid,
    .vo-closing-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .vo-intro-grid {
        text-align: left;
    }

    .vo-closing-text {
        text-align: center;
    }

    /* Exceptions for order on mobile (Image first or text first) */
    .vo-intro-grid .vo-section-image {
        order: -1;
    }

    .vo-text-content {
        margin: 0 auto;
        max-width: 600px;
    }

    .vo-features-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: none;
    }
}

@media (max-width: 768px) {
    .vo-hero {
        padding-top: 170px;
        padding-bottom: 60px;
        justify-content: center;
        text-align: center;
    }

    .vo-hero-actions {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
        gap: 16px;
    }

    .btn-vo-primary,
    .btn-vo-secondary {
        width: 100%;
        padding: 16px 20px;
        font-size: 15px;
    }

    .vo-section {
        padding: 60px 0;
    }

    .vo-hero-title {
        font-size: 40px;
    }

    .pricing-grid {
        gap: 20px;
        grid-template-columns: 1fr;
        padding: 0 10px;
    }

    .pricing-card {
        padding: 30px 20px;
        border-radius: 20px;
    }

    .pricing-header {
        position: relative;
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

    .pricing-header h3 {
        font-size: 20px;
        padding-right: 80px;
        /* Space for tag */
        line-height: 1.3;
    }

    .pricing-header .price {
        font-size: 36px;
        margin-top: 10px;
    }

    .tag {
        top: 0;
        right: 0;
        font-size: 10px;
        padding: 4px 10px;
    }

    .features-list li {
        font-size: 15px;
        margin-bottom: 12px;
    }

    .btn-pricing {
        padding: 14px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .vo-hero-title {
        font-size: 32px;
    }

    .vo-hero {
        padding-top: 160px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .pricing-header .price {
        font-size: 32px;
    }

    .pricing-card {
        padding: 24px 16px;
    }
}

/* ===================================================
   ANIMATIONS & UTILITIES
=================================================== */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-up {
    opacity: 0;
    /* JS handles the trigger but we need initial state if we want it hidden */
    animation: fadeUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes fadeLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-fade-left {
    opacity: 0;
    animation: fadeLeft 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

/* Stagger delays */
.animate-fade-up[style*="--delay: 0.1s"] {
    animation-delay: 0.1s;
}

.animate-fade-up[style*="--delay: 0.2s"] {
    animation-delay: 0.2s;
}

.animate-fade-up[style*="--delay: 0.3s"] {
    animation-delay: 0.3s;
}