/* =====================================================
   1. WORKSPACE HERO BANNER SECTION
   ===================================================== */

.gw-hero {
    background-color: #0d1117;
    padding: 60px 24px 100px 24px;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.gw-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}


/* =====================================================
   TYPOGRAPHY & COPY
   ===================================================== */

.gw-pre-title {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    display: inline-block;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.gw-title {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: clamp(44px, 5.5vw, 72px);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.05;
    letter-spacing: -2px;
    margin: 0 0 20px 0;
}

.gw-desc {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 18px;
    line-height: 1.6;
    color: #8b949e;
    margin: 0 0 32px 0;
    max-width: 90%;
}


/* =====================================================
   CTA BUTTON
   ===================================================== */

.gw-cta-btn {
    display: inline-block;
    background-color: #D1D5DB;
    color: #111827;
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 18px;
    font-weight: 700;
    padding: 16px 36px;
    border-radius: 0;
    text-decoration: none;
    border: 1px solid transparent;
    box-shadow: 6px 6px 0px #111827;
    transition:
        transform 0.1s ease,
        box-shadow 0.1s ease,
        background-color 0.2s ease,
        border 0.2s ease;
}

.gw-cta-btn:hover {
    transform: translate(-2px, -2px);
    box-shadow: 8px 8px 0px #111827;
    background-color: #ffffff;
    border: 1px solid #111827;
}


/* =====================================================
   RIGHT SIDE — GOOGLE WORKSPACE MASCOT
   ===================================================== */

.gw-hero-vector {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.google-hero-image {
    display: block;
    width: 100%;
    max-width: 560px;
    height: auto;
    object-fit: contain;
}


/* =====================================================
   RESPONSIVE
   ===================================================== */

@media (max-width: 1024px) {

    .gw-hero {
        padding: 50px 24px 80px 24px;
    }

    .gw-hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .gw-hero-text {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .gw-desc {
        max-width: 700px;
    }

    .gw-hero-vector {
        margin: 0 auto;
    }

    .google-hero-image {
        max-width: 560px;
    }
}


@media (max-width: 600px) {

    .gw-hero {
        padding: 40px 20px 60px 20px;
    }

    .gw-hero-container {
        gap: 30px;
    }

    .gw-title {
        font-size: clamp(40px, 10vw, 56px);
    }

    .gw-desc {
        font-size: 17px;
        max-width: 100%;
    }

    .google-hero-image {
        width: 105%;
        max-width: none;
        margin-left: -2.5%;
    }
}

/* =====================================================
   2. WORKSPACE POWER & FEATURES SECTION
   ===================================================== */
.gw-power-section {
    background-color: #ffffff;
    padding: 80px 24px 100px 24px; 
    width: 100%;
    box-sizing: border-box;
}

.gw-power-container {
    max-width: 1200px;
    margin: 0 auto;
}

.gw-power-main-heading {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: clamp(36px, 4.5vw, 56px);
    font-weight: 700;
    color: #111827;
    text-align: center;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin: 0 0 60px 0; 
}

/* Split Layout */
.gw-power-split {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr; 
    gap: 50px;
    align-items: center;
    margin-bottom: 70px; 
}

.gw-power-vector {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 580px; 
    margin: 0 auto;
}

.gw-sub-heading {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 28px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 16px 0;
    letter-spacing: -0.5px;
}

.gw-paragraph {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 16px;
    line-height: 1.6;
    color: #4B5563;
    margin: 0 0 16px 0;
}

/* Bottom 6-Grid Features */
.gw-features-6 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 32px; 
    padding-top: 20px;
}

.gw-feature-box {
    border-radius: 0; 
}

.gw-feature-box h4 {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 8px 0;
}

.gw-feature-box p {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 15px;
    line-height: 1.5;
    color: #4B5563;
    margin: 0;
}

/* =====================================================
   RESPONSIVE MEDIA QUERIES (Hero & Features)
   ===================================================== */
@media (max-width: 1024px) {
    .gw-hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    .gw-desc {
        max-width: 100%;
        margin: 0 auto 32px auto;
    }
    .gw-hero-text > div {
        justify-content: center;
    }
    
    .gw-power-split {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
        margin-bottom: 50px;
    }
    
    .gw-power-vector {
        order: -1; 
    }
    
    .gw-features-6 {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 30px;
    }
}

@media (max-width: 768px) {
    .gw-features-6 {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* =====================================================
   3. WORKSPACE + GEMINI AI SECTION
   ===================================================== */
.gw-ai-section {
    background-color: #F8F9FA; 
    padding: 50px 24px;
    width: 100%;
    box-sizing: border-box;
    border-top: 2px solid #E5E7EB;
}

.gw-ai-container {
    max-width: 1200px;
    margin: 0 auto;
}

.gw-ai-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.gw-ai-heading {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: clamp(36px, 4.5vw, 52px);
    font-weight: 700;
    color: #111827;
    margin: 0 0 20px 0;
    line-height: 1.1;
    letter-spacing: -1.5px;
}

.gw-ai-paragraph {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 17px;
    line-height: 1.6;
    color: #4B5563;
    margin: 0 0 16px 0;
}

.gw-ai-vector {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 540px;
    margin: 0 auto;
}

/* =====================================================
   RESPONSIVE MEDIA QUERIES (AI Section)
   ===================================================== */
@media (max-width: 1024px) {
    .gw-ai-split {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .gw-ai-vector {
        order: -1; 
    }
    
    .gw-ai-section {
        padding: 50px 24px;
    }
}

/* =====================================================
   4. WORKSPACE PRICING CARDS SECTION (UPDATED FOR 4 TIERS)
   ===================================================== */
.gw-pricing-section {
    background-color: #ffffff; 
    padding: 100px 24px 120px 24px;
    width: 100%;
    box-sizing: border-box;
}

.gw-pricing-container {
    max-width: 1200px;
    margin: 0 auto;
}

.gw-pricing-main-heading {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 700;
    color: #111827;
    text-align: center;
    line-height: 1.1;
    letter-spacing: -2px;
    margin: 0 0 80px 0;
}

/* Grid expanded to fit 4 cards instead of 3 */
.gw-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: start;
}

/* Card Styles - Sharp Brutalist Shape */
.gw-card {
    background-color: #ffffff;
    border: 1px solid #E5E7EB; 
    border-right: 4px solid #111827; 
    border-bottom: 4px solid #111827;
    border-radius: 0; 
    padding: 32px 24px; /* Reduced to fit 4 across */
    display: flex;
    flex-direction: column;
    position: relative; 
    box-shadow: 8px 8px 0px rgba(17, 24, 39, 0.05); 
}

.gw-card-header {
    margin-bottom: 24px;
}

.gw-plan-name {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: clamp(20px, 2vw, 24px);
    font-weight: 700;
    color: #111827;
    margin: 0 0 12px 0;
    letter-spacing: -0.5px;
}

.gw-plan-desc {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 14px;
    line-height: 1.5;
    color: #4B5563;
    margin: 0 0 16px 0;
    min-height: 42px; /* Keeps card heights aligned */
}

.gw-badge {
    display: inline-block;
    background-color: #D1D5DB;
    color: #111827;
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 13px;
    font-weight: 700;
    padding: 4px 12px;
    border: 2px solid #111827;
    border-radius: 0;
}

.badge-purple {
    background-color: #9D00FF;
    color: #ffffff;
    border-color: #111827;
}

.gw-price-wrap {
    display: flex;
    align-items: flex-start;
    margin-bottom: 8px;
}

.price-currency {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    margin-top: 4px;
}

/* Reduced slightly from 52px to 42px to fit 4 cards nicely */
.price-amount {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -2px;
    color: #111827;
}

.price-term {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 15px;
    color: #6B7280;
    margin-top: auto;
    margin-bottom: 8px;
    margin-left: 4px;
}

.gw-renews {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 13px;
    color: #6B7280;
    font-weight: 600;
    margin: 0 0 32px 0;
}

/* Card Button */
.gw-card-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 14px 0;
    font-family: var(--font-heading, 'Outfit', sans-serif);
    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;
}

.gw-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, 'Outfit', sans-serif);
    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;
}

.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); }
}

.gw-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);
}

.gw-card-recommended .gw-card-btn {
    background-color: #9D00FF;
    color: #ffffff;
    border: 1px solid transparent;
}

.gw-card-recommended .gw-card-btn:hover {
    background-color: #7b00cc;
    border: 1px solid #7b00cc;
}

/* Features List & Label */
.gw-features-label {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 15px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #E5E7EB;
    padding-bottom: 8px;
}

.gw-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.gw-features li {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 14px;
    line-height: 1.4;
    color: #4B5563;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.gw-features li i {
    margin-top: 3px;
}

.gw-features strong {
    color: #111827;
    font-weight: 700;
}

/* =====================================================
   RESPONSIVE MEDIA QUERIES (Pricing)
   ===================================================== */
@media (max-width: 1200px) {
    .gw-grid-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 48px;
    }
    .gw-card-recommended {
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .gw-grid-4 {
        grid-template-columns: 1fr;
    }
}

/* =====================================================
   5. WORKSPACE APPS ECOSYSTEM SECTION
   ===================================================== */
.gw-apps-section {
    background-color: #ffffff;
    padding: 100px 24px;
    width: 100%;
    box-sizing: border-box;
}

.gw-apps-container {
    max-width: 1200px;
    margin: 0 auto;
}

.gw-apps-tier {
    margin-bottom: 80px;
}

.gw-apps-heading {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 700;
    color: #111827;
    text-align: center;
    margin: 0 0 48px 0;
    letter-spacing: -1px;
}

/* Grids */
.gw-apps-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    align-items: stretch;
}

.gw-apps-grid-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    align-items: stretch;
}

/* App Card - Static Brutalist Style */
.gw-app-card {
    background-color: #ffffff;
    border-top: none;
    border-left: none;
    border-right: 2px solid #111827;
    border-bottom: 2px solid #111827;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 8px 8px 0px rgba(209, 213, 219, 0.4); 
}

/* Brutalist Icon Box */
.gw-app-icon {
    width: 48px;
    height: 48px;
    background-color: #111827;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    border: 2px solid #111827;
    box-shadow: 5px 5px 0px rgba(209, 213, 219, 0.4); 
}

.gw-app-card h4 {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 10px 0;
}

.gw-app-card p {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 14px;
    line-height: 1.5;
    color: #4B5563;
    margin: 0;
}

/* =====================================================
   RESPONSIVE MEDIA QUERIES (Apps Ecosystem)
   ===================================================== */
@media (max-width: 1024px) {
    .gw-apps-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    .gw-apps-grid-5 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .gw-apps-grid-5 {
        grid-template-columns: repeat(2, 1fr);
    }
    .gw-apps-section {
        padding: 60px 24px;
    }
    .gw-apps-tier {
        margin-bottom: 60px;
    }
}

@media (max-width: 480px) {
    .gw-apps-grid-4, .gw-apps-grid-5 {
        grid-template-columns: 1fr;
    }
}

/* =====================================================
   SECTION 8: 24/7 SUPPORT (Unified Monochromatic)
   ===================================================== */
.Vagocat-support-section {
    background-color: #ffffff; 
    padding: 100px 24px; 
    width: 100%;
    box-sizing: border-box;
}

.support-massive-heading {
    font-family: var(--font-heading);
    font-size: clamp(40px, 6vw, 72px); 
    font-weight: 700;
    color: #111827;
    text-align: center;
    line-height: 1.1;
    letter-spacing: -2px;
    margin: 0 0 80px 0;
}

/* 4-Column Grid */
.support-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.support-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Unified Monochromatic Icon Box */
.support-geo-icon {
    width: 64px;
    height: 64px;
    background-color: #ffffff;
    border: 3px solid #111827;
    border-radius: 0; 
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 4px 4px 0px #111827;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.support-item:hover .support-geo-icon {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0px #111827;
}

.support-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 8px 0;
}

.support-link {
    font-family: var(--font-body);
    font-size: 16px;
    color: #4B5563; 
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.support-link:hover {
    color: #111827;
}

/* =====================================================
   SECTION 9: FAQ
   ===================================================== */
.Vagocat-faq-section {
    background-color: #F8F9FA; 
    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 80px 0;
}

.faq-subtext {
    color: #4B5563;
    font-size: clamp(20px, 3vw, 24px);
    font-weight: 500;
    letter-spacing: normal;
}

/* 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 (Support & FAQ)
   ===================================================== */
@media (max-width: 900px) {
    .support-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 60px 40px;
    }
    .faq-text-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .Vagocat-support-section, .Vagocat-faq-section {
        padding: 80px 24px;
    }
}

@media (max-width: 600px) {
    .support-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .support-massive-heading, .faq-main-heading {
        margin: 0 0 60px 0;
    }
    .faq-block h4 {
        font-size: 20px;
    }
    .Vagocat-support-section, .Vagocat-faq-section {
        padding: 60px 20px;
    }
}