/* =====================================================
   ILOGO V6.2 — MASTER MODULAR CSS
   CONSOLIDATED TOKENS + HERO + TRUST + BENEFITS
===================================================== */

/* -----------------------------------------------------
   BLOCK 1: ROOT TOKENS (FULL REUNION SYSTEM)
   ----------------------------------------------------- */
:root {
  --content-width: 1380px;

  /* Spacing Scale */
  --space-xs: 0.75rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4.5rem;
  --space-3xl: 6rem;

  /* Typography Scale */
  --text-sm: 0.9rem;
  --text-base: 1.05rem;
  --text-lg: 1.2rem;
  --text-xl: 1.45rem;
  --text-section: clamp(1.8rem, 3vw, 2.4rem);
  --text-display: clamp(2.2rem, 4vw, 3rem);
  --text-hero: clamp(2.4rem, 6vw, 4.2rem);

  /* Brand Color System */
  --brand-blue: #002a53;
  --brand-blue-dark: #001f3f;
  --brand-blue-light: #0b3d75;
  --brand-orange: #ff7a00;
  --brand-accent: #1c8ed6;
  --btn-cyan: #09f;

  /* Surface & Neutrals */
  --bg-page: #ffffff;
  --bg-cream: #f5f4ed;
  --text-dark: #111111;
  --text-muted: #666666;
  --border-light: #eeeeee;

  /* Shapes & Effects */
  --subtle-radius: 6px; /* CustomInk-style tighter corners */
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-hero: 28px;
  --shadow-soft: 0 20px 50px rgba(0,0,0,0.06);
}

/* -----------------------------------------------------
   BLOCK 2: BASE FRAMEWORK
   ----------------------------------------------------- */
*, ::after, ::before { box-sizing: border-box; }

.solution-page-v5 {
    background-color: var(--bg-page);
    font-family: Roboto-Regular, sans-serif;
    color: #3a4148;
}

.v2-wrapper {
    max-width: var(--content-width);
    margin: 0 auto;
    padding: 0 20px;
}

.v2-desktop-only { display: flex !important; }
.v2-mobile-only { display: none !important; }

@media (max-width: 990px) {
    .v2-desktop-only { display: none !important; }
    .v2-mobile-only { display: block !important; }
}
@media (max-width: 990px) {
    /* GLOBAL WRAPPER OVERRIDE */
    .v2-wrapper {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }
}
/* -----------------------------------------------------
   BLOCK 3: HERO SECTION (MODULAR) v2
   ----------------------------------------------------- */
.rv2-hero { padding: 2.5rem 0; background-color: var(--bg-page); }

.rv2-hero-inner {
    display: grid !important; 
    grid-template-columns: 1.05fr 1.25fr !important; 
    background-color: var(--bg-cream); 
    border-radius: var(--radius-hero);
    overflow: hidden;
    align-items: stretch;
}

.rv2-hero-content { padding: 3.5rem; display: flex; flex-direction: column; justify-content: center; }

.rv2-hero h1 {
    font-size: var(--text-hero) !important;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--brand-blue) !important;
    margin-bottom: var(--space-md);
    font-weight: normal !important;
}

.rv2-ai-label {
    display: inline-block !important;
    font-size: 0.75rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.1em !important;
    color: #ffffff !important;
    background: var(--brand-accent) !important;
    padding: 4px 10px !important;
    border-radius: 4px !important;
    margin-bottom: 12px !important;
    line-height: 1 !important;
    font-weight: normal !important;
}

.rv2-subline {
    font-size: var(--text-xl) !important; 
    color: var(--brand-blue) !important;  
    line-height: 1.3;
    margin-bottom: 1.2rem !important;
    display: block !important;
    font-weight: normal !important;
}

.rv2-subline span:not(:last-child)::after {
    content: " · ";
    color: #94a3b8;
    margin: 0 8px;
}

.rv2-btn-primary {
    background: var(--brand-orange) !important;
    color: #fff !important;
    padding: 1rem 6rem !important;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    width: fit-content;
    font-weight: 600 !important;
    line-height: 1.2 !important;
}

.rv2-hero-image img { width: 100%; height: 100%; object-fit: cover; display: block; }

@media (max-width: 990px) {
    .rv2-hero { padding-top: 80px; } 
    .rv2-hero-inner { display: flex !important; flex-direction: column-reverse !important; }
    .rv2-hero-content { padding: 2.5rem 1.5rem; text-align: center; align-items: center; }
}

/* =====================================================
   BLOCK 3: HERO SECTION V3 (CUSTOM INK REPLICATION)
   ===================================================== */
/* --- V3 TITANIUM: BRAND ORANGE WRAP --- */
.v3-custom-container {
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 40px;
}

.v3-hero-section {
    background: #ffffff;
    padding: 30px 0 80px; /* Compact top padding */
    overflow: visible;
}

.v3-hero-flex {
    display: flex;
    flex-direction: row-reverse; /* Image Right, Text Left */
    align-items: center;
    justify-content: space-between;
}

/* 1. Desktop 40/60 Split & Typography */
.v3-hero-content {
    flex: 0 0 40%;
    max-width: 520px;
}

.rv2-hero-h1 {
    font-size: var(--text-hero) !important;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--brand-blue) !important;
    margin-bottom: var(--space-md);
    font-weight: normal !important;
}

/* 2. Visual Logic: Orange Block & Sharper Edges */
.v3-hero-visual-wrapper {
    flex: 0 0 60%;
    display: flex;
    justify-content: flex-end;
}

.v3-hero-visual {
    position: relative;
    width: 100%;
    max-width: 780px;
    height: 520px; /* Increased to accommodate the expanded block */
    display: flex;
    align-items: center;
    justify-content: center;
}

.v3-contrast-block {
    position: absolute;
    background-color: #FF6D00; /* Vibrant Brand Orange */
    width: 100%;  /* Covers full width to contain products */
    height: 98%;  /* Expanded height (+20px top, +20px bottom) */
    right: 0;
    border-radius: 12px; /* Sharper 12px radius as requested */
    z-index: 1;
}

.v3-overlap-img {
    position: relative;
    z-index: 2;
    width: 88%; /* Sits safely inside the orange boundary */
    height: auto;
    display: block;
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.15));
}

/* 3. Mobile Stacking (Image TOP) */
@media (max-width: 990px) {
    .v3-hero-flex { 
        flex-direction: column; 
        text-align: center; 
    }
    
    .v3-hero-visual-wrapper {
        flex: 0 0 100%;
        width: 100%;
        margin-bottom: 40px;
    }

    .v3-hero-content {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .v3-hero-visual { height: 320px; }

    .v3-contrast-block {
        width: 100%;
        height: 240px; /* Matching the +40px logic for mobile scale */
        border-radius: 8px;
    }

    .v3-overlap-img {
        width: auto;
        height: 200px;
        margin: 0 auto;
    }

    .rv2-ai-summary-box { align-items: center; }
}
/* =====================================================
   BLOCK 4: TRUST DASHBOARD (V8.5 - PREMIUM B2B)
===================================================== */

.v2-trust-dashboard { padding: 30px 0; background: #ffffff; }

.dashboard-container { 
    display: flex; border: 1px solid var(--border-light); 
    border-radius: var(--radius-lg); overflow: hidden; background: #ffffff; 
}

/* DESKTOP ACTION COLUMN */
.db-action { 
    flex: 0 0 20%; background: #f8fafc; padding: 25px; text-align: center; 
    border-right: 1px solid var(--border-light); display: flex !important;
    flex-direction: column !important; justify-content: center; align-items: center; 
}
.db-action h3 { font-size: 1.1rem; font-weight: 800; color: var(--brand-blue); margin-bottom: 12px; }
.btn-check-price.thinner { 
    background: var(--btn-cyan) !important; color: #fff; padding: 10px 24px; 
    border-radius: 4px; text-decoration: none; font-weight: 700; display: inline-block;
}
.how-pricing { display: block; margin-top: 8px; font-size: 0.85rem; color: var(--brand-accent); text-decoration: underline; font-weight: 600; }

/* MAIN INFO WRAPPER */
.db-info { flex: 1; padding: 0 !important; display: flex; align-items: stretch; }

/* DESKTOP CENTER SECTION */
.db-main-info-row { 
    display: flex; align-items: center; gap: 30px; flex: 1 !important; 
    border-right: 1px solid var(--border-light); padding: 20px 60px; 
}
.v2-box-img { width: 150px !important; height: auto; display: block; }
.db-content-text { display: flex; flex-direction: row; gap: 40px; }

/* DESKTOP ENTERPRISE SECTION */
.db-enterprise-row { 
    flex: 0 0 auto !important; min-width: 320px; background: #f8fafc !important; 
    display: flex; align-items: center; gap: 20px; padding: 20px 60px !important; margin: 0 !important; 
}
.ent-visual-side svg { width: 100px !important; height: 100px !important; color: var(--brand-blue); flex-shrink: 0; display: block; }

/* UNIFIED TEXT SPACING */
.db-shipping-col, .db-urgent-col, .ent-content-text { display: flex; flex-direction: column; justify-content: center; }

.db-info strong { 
    font-size: 1.1rem !important; color: var(--brand-blue); 
    display: block; margin-bottom: 2px !important; font-weight: 800; white-space: nowrap; 
}

.ent-description-lines p, .db-shipping-col p, .db-urgent-col p { 
    font-size: 0.95rem; color: #333; margin: 0 !important; 
    padding: 0 !important; line-height: 1.3 !important; white-space: nowrap; 
}

.learn-more-link { display: block; font-size: 0.85rem; font-weight: 500; color: var(--brand-blue); text-decoration: underline; margin-top: 4px !important; }

/* MOBILE RESPONSIVE - PREMIUM B2B */
@media (max-width: 990px) {
	.v2-trust-dashboard { padding: 10px 0; }
    .db-action { display: none !important; }
    .v2-trust-dashboard .dashboard-container { border: none; background: transparent; display: block; }
    .v2-trust-dashboard .db-info { padding: 0; display: block; }
    .db-mobile-stack { display: flex; flex-direction: column; gap: 12px; padding: 0; }
    .db-mobile-strip { width: 100%; border-radius: 8px; padding: 20px; text-align: center; box-sizing: border-box; }

    .db-shipping-combined { 
        background: #ffffff; border: 1px solid #e2e8f0 !important; 
        box-shadow: 0 2px 4px rgba(0,0,0,0.02);
    }
    .db-enterprise-mobile { background: #f8fafc; border: 1px solid #e2e8f0 !important; }

    .mobile-strip-text { font-size: 1.3rem; color: #002a53; font-weight: 600; margin-bottom: 0; }
    .mobile-urgent-row { margin-top: 10px; padding-top: 10px; border-top: 1px solid #f1f5f9; }
    .mobile-urgent-link { color: #475569; text-decoration: none; font-size: 1.2rem; font-weight: 550; }
    .mobile-urgent-link i { color: #25d366; margin-left: 5px; }
	.db-info strong { 
    font-size: 1.3rem !important; font-weight: 600;
	}
}
/* -----------------------------------------------------
   BLOCK 5: BENEFITS STRIP (PREMIUM B2B FINISH)
   ----------------------------------------------------- */
.v2-utility-benefits { 
    padding: var(--space-sm) 0; 
    background: #ffffff; 
}

.benefits-row { 
    display: flex !important; 
    justify-content: space-between !important; 
    align-items: flex-start;
    gap: 15px;
}

.b-item { 
    text-align: center; 
    flex: 1; 
    padding: 10px; 
}

/* Icon Styling - Exact 510 weight & 0.8 Opacity */
.b-icon {
    margin-bottom: 15px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.b-icon i { 
    font-size: 32px !important; 
    color: var(--brand-blue); 
    font-weight: 510 !important; /* Your custom precision weight */
    opacity: 0.8;                /* Your preferred soft look */
}

/* Typography - Single Line Fix */
.b-item strong { 
    display: block; 
    font-size: 1.05rem; 
    font-weight: 700; 
    color: var(--brand-blue); 
    margin-bottom: 6px;
    letter-spacing: 0.01em;
}

.b-item span { 
    font-size: 0.88rem; 
    color: var(--text-muted); 
    line-height: 1.5;
    display: block;
    white-space: nowrap; /* Forces one line on desktop */
    margin: 0 auto;
}

/* MOBILE RESPONSIVE: 2x2 GRID */
@media (max-width: 990px) {
    .v2-utility-benefits { padding: var(--space-xs) 0; }
    
    .benefits-row { 
        display: grid !important; 
        grid-template-columns: 1fr 1fr !important; 
        gap: 35px 10px !important; 
    }
    
    .b-icon i { font-size: 28px !important; }
    
    /* Allow wrapping on mobile to prevent horizontal scroll */
    .b-item span { white-space: normal; } 
}
/* -----------------------------------------------------
   V2 QUICK QUOTE & NAVIGATION MENU
   ----------------------------------------------------- */
@media (max-width: 990px) {
    
    /* Main container styling */
    .v2-mobile-shipping-strip {
        background: #ffffff;
        padding: 30px 0 !important;
        border-bottom: 1px solid #eeeeee;
        display: block !important;
    }

    /* Container for the Quote Header and Button */
    .v2-shipping-box {
        padding: 0 15px;
        text-align: center;
        margin-bottom: 25px;
    }

    /* "Get An Exact Quote" Title */
    .v2-shipping-box h2 {
        font-size: 1.2rem !important;
        font-weight: 700 !important;
        margin-bottom: 15px !important;
        color: #334155 !important;
    }

    /* NEW: Styled Check Price Button */
   /* -----------------------------------------------------
   V2 QUICK QUOTE BUTTON (FORCED OVERRIDE)
   ----------------------------------------------------- */
@media (max-width: 990px) {
    
    /* We use the full path to ensure it beats custom.css */
    main.solution-page-v5 section.get-quote .v2-shipping-box a.btn-info {
        background-color: #f37021 !important; /* iLogo Brand Orange */
        background-image: none !important;    /* Removes any old gradients */
        border: none !important;
        color: #ffffff !important;
        padding: 12px 35px !important;
        font-size: 15px !important;
        font-weight: 700 !important;
        text-transform: uppercase !important;
        letter-spacing: 0.5px !important;
        border-radius: 6px !important;
        display: inline-block !important;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1) !important;
        text-shadow: none !important;         /* Removes old button shadows */
        width: auto !important;
    }

    /* Active state for the orange button */
    main.solution-page-v5 section.get-quote .v2-shipping-box a.btn-info:active {
        background-color: #e2661c !important;
        transform: scale(0.96) !important;
    }
}

    /* Original Vertical Menu Styling */
    .v2-product-info-list {
        list-style: none !important;
        padding: 0 !important;
        margin: 10px 15px 0 15px !important;
        border-top: 1px solid #e2e8f0;
    }

    .v2-product-info-list li {
        border-bottom: 1px solid #f1f5f9;
        padding: 0 !important;
    }

    .v2-product-info-list li a {
        display: block !important;
        padding: 12px 0 !important;
        text-decoration: none !important;
        color: #334155 !important;
        font-size: 14px !important;
        font-weight: 500 !important;
    }

    /* Adds a subtle arrow to each menu item for better UI */
    .v2-product-info-list li a::after {
        content: '›';
        float: right;
        color: #cbd5e1;
        font-size: 18px;
        line-height: 14px;
    }
}
/* -----------------------------------------------------
   BLOCK 8: STATIC PRODUCTS (MOBILE OPTIMIZED V12.0)
   ----------------------------------------------------- */
.v2-static-products {
    padding: 45px 0;
    background-color: #ffffff;
    clear: both;
}

/* 1. Header */
.v2-static-products .v2-section-header {
    text-align: center !important;
    width: 100%;
    margin-bottom: 10px;
}

.v2-static-products .v2-section-title {
    display: inline-block;
	float: none !important; /* Forces the theme to stop pulling it left */
    font-size: var(--text-section);
    font-weight: 700;
    color: var(--brand-blue);
	text-align: center !important;
}

/* 2. Grid Setup */
.v2-static-products .v2-product-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 30px 20px;
    align-items: start !important;
}

/* 3. USP Promo Block */
.v2-usp-promo-block {
    grid-column: span 2; 
    background: #334155 !important;
    border-radius: var(--subtle-radius);
    display: flex !important;
    flex-direction: column !important;
    color: #ffffff;
    box-sizing: border-box !important;
    align-self: start !important;
    padding: 40px 40px 90px 40px !important; 
}
/* Specific Button Styling Fix */
.v2-usp-promo-block .usp-btn {
    display: inline-block !important;
    background-color: var(--brand-orange) !important;
    color: #ffffff !important;
    padding: 10px 35px !important;
    border-radius: 6px !important;
    text-decoration: none !important;
    font-weight: 700 !important;
    width: fit-content !important;
    margin-top: 20px;
}
/* 4. Product Card - CustomInk Style */
.v2-product-card {
    background: transparent;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    border-radius: var(--subtle-radius);
    display: flex;
    flex-direction: column;
}

.v2-product-card:hover { 
    border-color: #eeeeee; 
    background: #ffffff; 
    transform: translateY(-4px); 
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

.v2-product-info { padding: 12px 0; text-align: left; flex-grow: 1; }
.v2-product-info h3 { font-size: 1.1rem; font-weight: 400; color: var(--brand-blue); margin: 0; }

.v2-product-img { 
    aspect-ratio: 1/1; 
    background: #f8fafc; 
    border-radius: var(--subtle-radius); 
    overflow: hidden; 
}
.v2-product-img img { width: 100%; height: 100%; object-fit: cover; }

/* 5. Desktop Hide */
@media (min-width: 991px) {
    .v2-footer-action { display: none !important; }
}

/* 6. Mobile "Full-Bleed" Adjustments */
@media (max-width: 990px) {
    /* THE FIX: Reclaiming side space from the wrapper */
    .v2-static-products .v2-wrapper {
        padding-left: 4px !important;
        padding-right: 4px !important;
		text-align: center !important;
        display: block !important;
        width: 100% !important;
    }

    .v2-static-products {
        padding: 40px 0 !important; 
    }

    .v2-static-products .v2-product-grid {
        grid-template-columns: 1fr 1fr !important;
        /* Tight gaps to keep images as large as possible */
        gap: 15px 8px !important; 
        width: 100% !important;
    }
    
    .v2-usp-promo-block {
        padding: 25px 20px !important;
        align-self: stretch !important;
    }
    
    .v2-product-info { text-align: center; } 
    
    .v2-footer-action {
        display: block !important;
        text-align: center !important;
        margin-top: 30px;
    }
}
/* =====================================================
   BLOCK 5: CUSTOMER LOGOS V2 (PREMIUM B2B GRID)
===================================================== */

.v2-customer-logos {
    padding: 45px 0;
    background: #ffffff;
}

/* The Curved Container - Modern UI */
.v2-customer-logos .logo-container {
    background: #f8fafc; 
    border-radius: 24px; 
    padding: 50px 40px;
    border: 1px solid #e2e8f0;
    text-align: center;
}

.v2-customer-logos .logo-header {
    margin-bottom: 40px;
}

.v2-customer-logos .logo-header span {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #64748b; 
}

.v2-customer-logos .logo-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px 60px; 
    margin-bottom: 40px;
}

/* Grayscale effect for Premium B2B feel */
.v2-customer-logos .logo-item {
    flex: 0 1 auto;
    max-width: 130px;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.v2-customer-logos .logo-item img {
    width: 100%;
    height: auto;
    display: block;
}

.v2-customer-logos .logo-item:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: translateY(-3px);
}

/* Minimalist View All Link */
.v2-customer-logos .logo-footer {
    margin-top: 20px;
}

.v2-view-all-link {
    font-size: 0.95rem;
    font-weight: 700;
    color: #002a53; /* Using a Premium Navy instead of Cyan for text links */
    text-decoration: none;
    padding-bottom: 2px;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.v2-view-all-link:hover {
    border-bottom-color: #002a53;
}

/* MOBILE RESPONSIVE V2 */
@media (max-width: 990px) {
    .v2-customer-logos { padding: 0px 0; }
    
    .v2-customer-logos .logo-container {
        padding: 40px 20px;
        border-radius: 16px;
        background: #ffffff; 
        border: 1px solid #f1f5f9;
    }
    
    .v2-customer-logos .logo-grid {
        gap: 30px 40px;
    }
    
    .v2-customer-logos .logo-item {
        max-width: 90px;
        opacity: 0.7;
    }
}
/* =====================================================
   BLOCK 6: CUSTOMER PICS V2.2 (MOBILE SLIDER + NUDGE)
===================================================== */

.v2-customer-pics {
    padding: 45px 0;
 /*   background: #f8fafc;*/
    overflow: hidden; 
}

.v2-customer-pics .pics-header {
    text-align: center;
    margin-bottom: 30px;
}

.v2-customer-pics .v2-section-title {
    font-size: 2rem;
    font-weight: 800;
    color: #002a53;
    margin-bottom: 10px;
}

.v2-section-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    font-weight: 500;
	text-align: center;
}

/* 1. DESKTOP GRID */
@media (min-width: 991px) {
    .v2-pics-grid {
        display: grid !important;
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 25px !important;
        margin-bottom: 30px !important;
        max-width: 1200px;
        margin: 0 auto 40px auto;
    }
}

.v2-pic-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.v2-pic-img-wrapper {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.v2-pic-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 2. MOBILE SLIDER + HINT ANIMATION */
@media (max-width: 990px) {
    .v2-pics-grid {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        gap: 20px !important;
        padding: 20px !important;
        margin-bottom: 20px !important;
        -webkit-overflow-scrolling: touch !important;
    }

    /* Hide scrollbar */
    .v2-pics-grid::-webkit-scrollbar { display: none !important; }

    .v2-pic-card {
        flex: 0 0 80vw !important; /* Large enough to see, small enough to peek next card */
        scroll-snap-align: center !important;
    }

    /* The "Nudge" Animation Logic */
    .v2-pic-card:first-child {
        animation: nudgeSlider 1.5s ease-in-out 1s;
    }

    @keyframes nudgeSlider {
        0% { transform: translateX(0); }
        30% { transform: translateX(-30px); } /* Pull left to show more of card 2 */
        60% { transform: translateX(5px); }
        100% { transform: translateX(0); }
    }

    /* Optional: Swipe hint text */
    .v2-pics-footer::before {
        content: "Swipe to see more →";
        display: block;
        font-size: 0.85rem;
        color: #94a3b8;
        margin-bottom: 20px;
        font-weight: 600;
    }
}

.v2-pic-info {
    padding: 20px;
    text-align: center;
}

.v2-pic-info h3 {
    font-size: 1rem;
    font-weight: 400;
    color: #002a53;
    margin: 0;
}

.v2-pics-footer {
    text-align: center;
}

.v2-btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid #002a53;
    border-radius: 12px;
    color: #002a53;
    font-weight: 700;
    text-decoration: none;
}
/* =====================================================
   BLOCK 7: GOOGLE REVIEWS V7.5 (THE ALIGNMENT LOCK)
===================================================== */

/* 1. GLOBAL BASE */
section.v2-google-reviews { 
    padding: 45px 0 !important; 
    background: #ffffff !important; 
    overflow: hidden !important; 
}

section.v2-google-reviews .reviews-container { 
    max-width: 1200px !important; 
    margin: 0 auto !important; 
    padding: 0 20px !important; 
}

/* HEADER CENTER FIX */
section.v2-google-reviews .reviews-header { 
    width: 100% !important; 
    text-align: center !important; 
    margin-bottom: 50px !important; 
}

section.v2-google-reviews .v2-section-title {
    font-size: 2.2rem !important;
    font-weight: 800 !important;
    color: #002a53 !important;
}

/* 2. THE NAVY CARD - HIERARCHY & STYLE */
section.v2-google-reviews .v2-card-navy {
    background: #002a53 !important;
    color: #ffffff !important;
    border-radius: 16px !important;
    padding: 25px !important; /* Sync with Review Card Padding */
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    box-sizing: border-box !important;
}

/* REORDERING ELEMENTS */
section.v2-google-reviews .v2-card-navy .v2-rating-text { order: 1 !important; font-size: 1.1rem !important; font-weight: 700 !important; margin-bottom: 8px !important; }
section.v2-google-reviews .v2-card-navy .v2-business-logo { order: 2 !important; max-width: 40px !important; height: auto !important; margin-bottom: 8px !important; filter: none !important; }
section.v2-google-reviews .v2-card-navy .v2-card-stars { order: 3 !important; margin-bottom: 6px !important; }
section.v2-google-reviews .v2-card-navy .v2-review-count { order: 4 !important; font-size: 0.8rem !important; opacity: 0.9 !important; }

/* 3. DESKTOP SPECIFIC (min-width: 992px) */
@media (min-width: 992px) {
    section.v2-google-reviews .v2-split-container {
        display: flex !important;
        gap: 30px !important;
        align-items: stretch !important; /* Forces equal height */
    }

    section.v2-google-reviews .v2-col-left { 
        flex: 0 0 280px !important; 
        display: flex !important; 
    }

    section.v2-google-reviews .v2-card-navy {
        width: 100% !important;
        margin: 20px 0 35px 0 !important; /* Sync with Review Card Margin */
        height: auto !important;
    }

    section.v2-google-reviews .v2-col-right { flex: 1 !important; min-width: 0 !important; }

    /* DESKTOP REVIEW CARD */
    #verified-customer-carousel .v2-review-item {
        width: 310px !important;
        background: #ffffff !important;
        border: 1px solid #e2e8f0 !important;
        border-radius: 16px !important;
        padding: 25px !important; /* Sync with Navy Card Padding */
        margin: 10px !important;
        height: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        box-shadow: 0 10px 25px rgba(0,0,0,0.05) !important;
    }

    /* DESKTOP NAV BUTTONS (Inside Navy Box) */
    section.v2-google-reviews .owl-nav {
        order: 5 !important;
        display: flex !important;
        justify-content: center !important;
        gap: 12px !important;
        margin-top: 20px !important;
        position: static !important;
    }

    section.v2-google-reviews .owl-nav button {
        background: rgba(255,255,255,0.1) !important;
        border: 1px solid rgba(255,255,255,0.2) !important;
        color: white !important;
        width: 38px !important;
        height: 38px !important;
        border-radius: 50% !important;
        cursor: pointer !important;
    }
}
	/* Styling for the View All Reviews link */
	/* Navy Card Review Button */
	.v2-all-reviews-link {
		display: inline-block;
		margin-top: 15px;
		padding: 10px 20px;
		font-size: 14px;
		font-weight: 700;
		color: #ffffff !important;
		text-decoration: none !important;
		border: 1px solid rgba(255, 255, 255, 0.4);
		border-radius: 6px;
		transition: all 0.3s ease;
		background: rgba(255, 255, 255, 0.05);
	}

	.v2-all-reviews-link:hover {
		background: #ffffff;
		color: #1e293b !important; /* Navy text on white hover */
		border-color: #ffffff;
		transform: translateY(-2px);
	}
/* 4. MOBILE SPECIFIC (max-width: 991px) */
@media (max-width: 991px) {
    section.v2-google-reviews .v2-split-container { display: flex !important; flex-direction: column !important; }
    section.v2-google-reviews .v2-card-navy { margin-bottom: 35px !important; width: 100% !important; }

    /* Mobile Equal Height Fix */
    section.v2-google-reviews .owl-stage { display: flex !important; align-items: stretch !important; }
    section.v2-google-reviews .owl-item { flex: 0 0 70vw !important; margin-right: 15px !important; display: flex !important; }

    #verified-customer-carousel .v2-review-item {
        background: #ffffff !important;
        border-radius: 16px !important;
        
		overflow: visible !important; 
        padding: 10px 7px !important;
        height: 100% !important;
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
    }

    section.v2-google-reviews .owl-nav { display: flex !important; justify-content: center !important; gap: 20px !important; margin-top: 25px !important; }
    section.v2-google-reviews .owl-nav button { background: #002a53 !important; color: white !important; width: 40px !important; height: 40px !important; border-radius: 50% !important; }
}

/* 5. SHARED ASSETS */
section.v2-google-reviews .v2-avatar { width: 44px !important; height: 44px !important; border-radius: 50% !important; margin-bottom: 10px !important; object-fit: cover; }
section.v2-google-reviews .v2-card-stars img { height: 16px !important; width: auto !important; display: inline-block !important; }

/* --- GOOGLE REVIEW CARD MOBILE FIX --- */
@media (max-width: 990px) {
    /* 1. The Card Outline & Padding */
    .v2-review-item {
        background: #ffffff !important;
        border: 1px solid #cbd5e1 !important; /* Visible Light Grey Outline */
        border-radius: var(--subtle-radius) !important;
        padding: 20px !important;
		margin-bottom: 15px !important; 
        border: 1px solid #cbd5e1 !important; /* Your darkened border */
        display: block !important;
        height: auto !important;
        
        /* THE KEY: Vertical margin creates space so the outline isn't cut off */
        margin: 0px 4px !important; 
        
        /* Ensures the card has a physical presence */
        
        flex-direction: column !important;
        box-shadow: 0 2px 4px rgba(0,0,0,0.02); /* Very subtle depth */
    }

    /* 1. Create a "Safe Zone" for the bottom border */
    #verified-customer-carousel {
        padding-bottom: 25px !important; /* This stops the bottom clip */
        overflow: visible !important;   /* Allows the shadow/border to exist */
        margin-bottom: 0 !important;
    }

    
}
/* -----------------------------------------------------
   V2 DESIGN TEMPLATE STYLING (BLUE THEME)
   ----------------------------------------------------- */
.v2-design-template {
    padding: 30px 0;
    background: #ffffff;
}

.v2-design-row {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.v2-design-card {
    background: #f8fafc;
    border-radius: 12px;
    padding: 30px;
    flex: 1;
    min-width: 300px;
}

.v2-design-card.main-card {
    flex: 2; /* Makes the image side larger */
}

.v2-card-inner {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Button Styling (BLUE) */
.v2-btn-blue {
    background: #007bff !important;
    color: #fff !important;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    margin-top: 15px;
    text-transform: uppercase;
    font-size: 13px;
}

.v2-check-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.v2-check-list li {
    margin-bottom: 10px;
    font-size: 14px;
    color: #1e293b; /* Premium Slate Navy */
}

.v2-check-list li i {
    color: #1e293b; /* Blue Icons */
    margin-right: 8px;
}

/* Mobile Adjustments */
@media (max-width: 990px) {
    .v2-card-inner {
        flex-direction: column;
        text-align: center;
    }
    
    .v2-design-row {
        gap: 20px;
    }
    
    .v2-image-box img {
        width: 100%;
        max-width: 250px;
    }
}
/* -----------------------------------------------------
   V2 SEO CONTENT STYLING
   ----------------------------------------------------- */
.v2-content-footer {
    padding: 30px 0;
    background-color: #ffffff;
    line-height: 1.7;
    color: #475569; /* Soft Slate Grey for readability */
}

.v5-seo-text h2 {
    font-size: 1.6rem !important;
    font-weight: 800 !important;
    color: #1e293b !important;
    margin: 40px 0 20px 0 !important;
    line-height: 1.3;
}

.v5-seo-text h3 {
    font-size: 1.25rem !important;
    font-weight: 700 !important;
    color: #334155 !important;
    margin: 30px 0 15px 0 !important;
}

.v5-seo-text p {
    margin-bottom: 20px !important;
    font-size: 16px !important;
}

.v5-seo-text ul {
    margin-bottom: 25px !important;
    padding-left: 20px !important;
}

.v5-seo-text li {
    margin-bottom: 12px !important;
}

.v5-seo-text li strong {
    color: #1e293b;
    font-weight: 700;
}

/* Styling links within the SEO text to match brand blue */
.v5-seo-text a {
    color: #002a53;
    text-decoration: underline;
    font-weight: 600;
}

/* Mobile Adjustments */
@media (max-width: 990px) {
    .v2-content-footer {
        padding: 40px 15px;
    }
    
    .v5-seo-text h2 {
        font-size: 1.4rem !important;
    }
    
    .v5-seo-text p {
        font-size: 15px !important;
    }
}
/* -----------------------------------------------------
    V2 FAQ SECTION
   ----------------------------------------------------- */
.v2-section-title {
    font-size: 2.2rem !important;
    font-weight: 800 !important;
    color: #002a53;
    margin-bottom: 30px;
    text-align: center;
}

.v2-faq-section {
    padding-bottom: 40px;
}

.v2-faq-item {
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    margin-bottom: 15px;
    background: #fff;
    transition: all 0.3s ease;
}

.v2-faq-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 25px;
    text-decoration: none !important;
    color: #334155 !important;
    font-size: 16px;
    font-weight: 500;
}

.v2-faq-toggle i {
    font-size: 14px;
    transition: transform 0.3s ease;
    color: #94a3b8;
}

/* Chevron rotation when accordion is open */
.v2-faq-toggle:not(.collapsed) i {
    transform: rotate(180deg);
    color: #f37021;
}

.v2-faq-body {
    padding: 0 25px 25px 25px;
    color: #64748b;
    line-height: 1.6;
    font-size: 15px;
}

/* -----------------------------------------------------
    V2 SEO CITY CLOUD (TAGS)
   ----------------------------------------------------- */
.v2-city-links {
    background: #f1f5f9; /* Professional slate-grey background */
    padding: 50px 0;
    margin-top: 40px;
}

.v2-city-links h3 {
    font-size: 1.25rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 25px;
    color: #1e293b;
}

.v2-city-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    list-style: none;
    padding: 0;
}

.v2-city-grid li a {
    display: inline-block;
    padding: 10px 20px; /* Better touch target for mobile */
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 30px; /* Modern pill shape */
    font-size: 13px;
    font-weight: 500;
    color: #475569;
    text-decoration: none;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
    transition: all 0.2s ease-in-out;
}

.v2-city-grid li a:hover {
    border-color: #f37021;
    color: #f37021;
    background: #fff;
    transform: translateY(-1px); /* Subtle lift on hover */
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}
/* -----------------------------------------------------
    HOME SEO & B2B CAPABILITY STYLING
   ----------------------------------------------------- */
/* --- V2 MINIMALIST B2B CAPABILITY STYLES --- */
.v5-seo-section-main {
    padding: 30px 0;
    background-color: #ffffff;
    border-top: none !important; /* Forces the removal of any top border */
}

.v2-b2b-capability-statement { 
   max-width: 1320px; 
    margin: 0 auto;
    padding: 0 20px;
    border-top: none !important; /* Removes the double-navy line if it exists */
}

.v2-b2b-header { 
    margin-bottom: 60px; 
    text-align: center; 
}

.v2-badge-gold { 
    display: inline-block; 
    color: #002a53; /* Navy text instead of box */
    font-size: 0.85rem; 
    font-weight: 800; 
    text-transform: uppercase; 
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.v2-b2b-header h2 { 
    color: #002a53; 
    font-size: 2.5rem; 
    font-weight: 900; 
    margin-bottom: 15px;
}

.v2-b2b-subline { 
    color: #64748b; 
    font-size: 1.2rem; 
    max-width: 900px;
}

/* The Technical Grid - No Boxes, Just Spacing */
.v2-b2b-grid { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 60px; 
    margin-bottom: 80px; 
}

.v2-spec-label { 
    color: #002a53; 
    font-weight: 800; 
    font-size: 0.75rem; 
    display: block;
    margin-bottom: 5px;
    opacity: 0.5;
}

.v2-spec-box h3 { color: #1e293b; font-size: 1.6rem; font-weight: 800; margin-bottom: 20px; }
.v2-tech-list { list-style: none; padding: 0; margin-top: 25px; }
.v2-tech-list li { font-size: 1rem; padding: 10px 0; color: #475569; border: none; } /* Removed borders */
.v2-tech-list li strong { color: #002a53; }

/* Logistics Strip - Clean Navy Block */
.v2-b2b-logistics { 
    background: #002a53; 
    color: #fff; 
    padding: 60px; 
    border-radius: 8px; 
    margin-bottom: 80px; 
}

.v2-logistics-inner { 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    gap: 40px; 
}

.v2-log-cta .rv2-btn-primary {
    white-space: nowrap !important;
    display: inline-block;
    padding: 16px 35px !important;
    background: #fff;
    color: #002a53;
    font-weight: 800;
    border-radius: 4px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

/* Minimalist Table - No Vertical Lines */
.v2-b2b-table { width: 100%; border-collapse: collapse; margin-top: 40px; }
.v2-b2b-table th { text-align: left; padding: 20px 0; color: #002a53; font-weight: 800; border-bottom: 2px solid #002a53; }
.v2-b2b-table td { padding: 20px 0; border-bottom: 1px solid #f1f5f9; color: #475569; }

@media (max-width: 991px) {
    .v2-b2b-grid { grid-template-columns: 1fr; gap: 40px; }
    .v2-logistics-inner { flex-direction: column; text-align: center; }
}

/* --- MINIMALIST SPEC BOX (NO LINES, NO BOXES) --- */
.v2-spec-box {
    background: transparent !important; /* Removes the light grey */
    padding: 0 !important;             /* Removes the internal spacing */
    border-left: none !important;      /* Removes the navy side-line */
    height: auto;
}

.v2-spec-box h3 {
    color: #002a53;
    font-size: 1.6rem;
    font-weight: 800;
    margin-top: 10px;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.v2-tech-list li {
    padding: 8px 0;
    border-bottom: 1px solid #f1f5f9; /* Extremely faint horizontal line only */
    font-size: 0.95rem;
}

.v2-tech-list li:last-child {
    border-bottom: none; /* Keeps it clean at the end */
}

/* --- FIX: Logistics Strip Mobile Overflow --- */
@media (max-width: 991px) {
    .v2-b2b-logistics {
        padding: 40px 25px !important; /* Give more breathing room inside */
        height: auto !important;      /* Ensure box grows with content */
        display: block !important;    /* Switch from flex to block */
    }

    .v2-logistics-inner {
        display: flex !important;
        flex-direction: column !important; /* Stack text then button */
        align-items: center !important;    /* Center everything */
        text-align: center !important;     /* Center the text */
        gap: 30px !important;              /* Space between text and button */
    }

    .v2-log-text p {
        max-width: 100% !important;
        margin-bottom: 0;
    }

    .v2-log-cta {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .v2-log-cta .rv2-btn-primary {
        width: 100%;           
        max-width: 300px;      
        
        /* Add these lines to force-center the text */
        display: flex !important;
        align-items: center !important;    /* Vertical center */
        justify-content: center !important; /* Horizontal center */
        
        text-align: center !important;
        white-space: nowrap;   
        padding-left: 0 !important;        /* Remove any potential offset padding */
        padding-right: 0 !important;
        margin: 0 auto;                    /* Ensure the button itself is centered */
    }

}
/* -----------------------------------------------------
    HOME TECHNICAL MATRIX
   ----------------------------------------------------- */
   
   /* --- V2 TECHNICAL MATRIX STYLES --- */
.v2-matrix-section {
    padding: 30px 0 20px;
    background: #fff;
}

.v2-matrix-header {
    margin-bottom: 40px;
}

.v2-matrix-wrapper {
    overflow-x: auto; /* Enables horizontal scroll on mobile */
    -webkit-overflow-scrolling: touch;
    margin-bottom: 40px;
}

.v2-comparison-matrix {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px; /* Ensures columns don't get too squashed */
    font-size: 0.95rem;
}

.v2-comparison-matrix th {
    background: #f8fafc;
    color: #002a53;
    font-weight: 800;
    text-align: left;
    padding: 20px 15px;
    border-bottom: 3px solid #002a53;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.v2-comparison-matrix td {
    padding: 18px 15px;
    border-bottom: 1px solid #f1f5f9;
    color: #475569;
    vertical-align: middle;
}

/* Zebra striping for easier reading without heavy lines */
.v2-comparison-matrix tbody tr:nth-child(even) {
    background-color: #fcfcfc;
}

.v2-comparison-matrix tr td:first-child {
    color: #002a53;
    font-weight: 700;
    width: 20%;
}

/* Highlight 'Permanent' options for B2B trust */
.v2-comparison-matrix strong {
    color: #002a53;
}

/* Simple Scrollbar Styling for UX */
.v2-matrix-wrapper::-webkit-scrollbar {
    height: 6px;
}
.v2-matrix-wrapper::-webkit-scrollbar-thumb {
    background: #e2e8f0;
    border-radius: 10px;
}

/* -----------------------------------------------------
    HOME FAQ
   ----------------------------------------------------- */
/* --- V2 MINIMALIST HOME FAQ --- */
.v2-faq-section-wrap {
    padding: 30px 0;
    background: #ffffff;
}

.v2-faq-container {
    max-width: 1000px; /* Centered for readability */
    margin: 0 auto;
}

.v2-faq-item {
    border-bottom: 1px solid #f1f5f9;
    padding: 10px 0;
}

.v2-faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #002a53;
    font-weight: 800;
    font-size: 1.2rem;
    cursor: pointer;
    transition: color 0.3s ease;
	padding: 20px 10px;
}

.v2-faq-question:hover {
    color: #0056b3;
}

.v2-faq-answer {
    padding: 0 10px 30px 10px; 
    color: #475569;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Icon Animation */
.v2-faq-question i {
    font-size: 0.9rem;
    opacity: 0.4;
    transition: transform 0.3s ease;
}

.v2-faq-question[aria-expanded="true"] i {
    transform: rotate(45deg); /* Plus becomes an X */
    opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .v2-faq-question { font-size: 1.1rem; }
}
/* --- V2 FULL-WIDTH CORRECTION --- */
.v5-seo-section-main .v2-wrapper {
    max-width: 1320px !important; /* Matches your main V2 grid */
    padding: 0 10px;
}

/* Override the old narrow container */
.v5-seo-text-container {
    max-width: 100% !important; 
    width: 100% !important;
}

.v2-faq-container {
    max-width: 100%; /* Allows FAQ to breathe across the full span */
}

/* -----------------------------------------------------
    STATIC CATEGORIES V2 PRODUCT CARD - LOCALIZED TAGS
   ----------------------------------------------------- */

.v2-product-info h3 {
    display: flex;
    flex-direction: column;
}

.v2-card-city-tag {
    font-size: 11px;
    color: #f37021; /* iLogo Brand Orange */
    font-weight: 500;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    opacity: 0.8;
}

.v2-product-card:hover .v2-card-city-tag {
    opacity: 1;
}

/* Localized Footer Action Button */
.v2-footer-action .rv2-btn-primary {
    display: inline-block;
    padding: 12px 30px;
    background: #1c203b;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.v2-footer-action .rv2-btn-primary:hover {
    background: #f37021;
}