/* Custom Variables for Managed Page */
:root {
    --managed-dark: #0f172a;
    --managed-red: #d12c2c; /* Matching your brand red */
    --managed-gray: #64748b;
}

.managed-hero {
    background: #ffffff; /* Clean white background for professionalism */
    padding: 100px 0;
    overflow: hidden;
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 60px;
}

/* Typography & Content */
.badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(209, 44, 44, 0.1);
    color: var(--managed-red);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-text-content h1 {
    font-size: clamp(3rem, 5vw, 4.2rem);
    color: var(--managed-dark);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
}

.text-accent {
    color: var(--managed-red);
}

.hero-description {
    font-size: 1.2rem;
    color: var(--managed-gray);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 600px;
}


/* Visual Image Stack */
.hero-visual {
    position: relative;
}

.image-stack {
    position: relative;
    z-index: 1;
}

.main-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.1);
}

.experience-card {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    text-align: center;
    animation: float 4s ease-in-out infinite;
}

.experience-card .count {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: var(--managed-red);
}

.experience-card .label {
    font-size: 14px;
    color: var(--managed-gray);
    font-weight: 600;
}

.hero-trust-tags {
    display: flex;
    gap: 25px;
}

.hero-trust-tags span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--managed-gray);
}

.dot {
    width: 6px;
    height: 6px;
    background: var(--managed-red);
    border-radius: 50%;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Responsive */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-text-content {
        order: 1;
    }
    .hero-description {
        margin-inline: auto;
    }
    .hero-actions {
        justify-content: center;
    }
    .hero-trust-tags {
        justify-content: center;
        flex-wrap: wrap;
    }
    .hero-visual {
        order: 2;
        margin-top: 50px;
    }
    .experience-card {
        left: 20px;
    }
}




/* intro part css*/
.managed-intro {
    padding: 120px 0;
    background: #ffffff;
    overflow: hidden;
}

/* Layer One: Staggered Header */
.layer-one {
    display: flex;
    align-items: center;
    gap: 100px;
    margin-bottom: 80px;
}

.layer-text { flex: 1; }

.layer-text h2 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.accent-red { color: var(--primary-red); }

.large-para {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #4b5563;
}

.layer-visual {
    flex: 0.8;
    position: relative;
}

.layer-visual img {
    width: 100%;
    border-radius: 4px; /* Sharp modern edges */
    box-shadow: 40px 40px 0px #f0f2f5; /* Off-set background block */
}

.experience-tag {
    position: absolute;
    top: -20px;
    right: -20px;
    background: var(--primary-red);
    color: white;
    padding: 15px 25px;
    font-weight: 700;
    transform: rotate(5deg);
}

/* Layer Two: Minimalist Benefits */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    border-top: 1px solid #e5e7eb;
    padding-top: 60px;
}

.tile-num {
    display: block;
    font-size: 14px;
    font-weight: 800;
    color: var(--primary-red);
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.benefit-tile h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.benefit-tile p {
    color: var(--managed-gray);
    line-height: 1.6;
}

/* Layer Three: Floating Bar */
.target-floating-bar {
    margin: 60px auto 0;
    background: #1a1a1a; /* Sleek Dark Theme */
    padding: 20px 40px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 1100px;
    width: 95%;
}

.target-title {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-red); /* Using your brand red */
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    white-space: nowrap;
    border-right: 1px solid rgba(255,255,255,0.1);
    padding-right: 30px;
}

.target-items-wrapper {
    display: flex;
    justify-content: space-around;
    flex: 1;
    padding-left: 30px;
}

.target-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-weight: 600;
    font-size: 15px;
    transition: 0.3s ease;
    cursor: default;
}

.target-item .material-symbols-rounded {
    font-size: 20px;
    color: rgba(255,255,255,0.5);
    transition: 0.3s ease;
}

/* Interaction: Icon glows red on hover */
.target-item:hover {
    color: #fff;
    transform: translateY(-2px);
}

.target-item:hover .material-symbols-rounded {
    color: var(--primary-red);
    text-shadow: 0 0 10px rgba(209, 44, 44, 0.5);
}

/* PC/Desktop suitability: Responsive Scaling */
@media (max-width: 1024px) {
    .target-floating-bar {
        border-radius: 30px;
        flex-direction: column;
        padding: 30px;
        gap: 20px;
    }
    .target-title {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        padding-right: 0;
        padding-bottom: 15px;
        width: 100%;
        justify-content: center;
    }
    .target-items-wrapper {
        flex-wrap: wrap;
        gap: 20px;
        padding-left: 0;
        justify-content: center;
    }
}

.target-title { font-weight: 800; font-size: 18px; text-transform: uppercase; }

.target-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 18px;
}

/* Responsive */
@media (max-width: 992px) {
    .layer-one { flex-direction: column; gap: 40px; }
    .benefits-grid { grid-template-columns: 1fr; }
    .target-floating-bar {
        flex-direction: column;
        border-radius: 20px;
        gap: 20px;
        padding: 40px;
    }
    .layer-visual img { box-shadow: 20px 20px 0px #f0f2f5; }
}







/* Adv section*/
.premium-usp {
    padding: 100px 0;
    background: #fcfcfc;
    overflow: hidden;
}

.usp-container {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    padding: 0 40px;
    gap: 60px;
}

/* Left Panel Styling */
.usp-visual-panel {
    flex: 0.8;
    position: sticky;
    top: 120px;
    height: 700px;
}

.visual-inner {
    position: relative;
    height: 100%;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0,0,0,0.15);
}

.visual-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.visual-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 50px;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    color: white;
}

.glass-tag {
    display: inline-block;
    padding: 6px 15px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.visual-overlay h2 {
    font-size: 42px;
    line-height: 1.1;
    margin-bottom: 15px;
}

.red-text { color: var(--primary-red); }

/* Right Panel Styling */
.usp-features-panel {
    flex: 1.2;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.feature-box {
    background: #fff;
    padding: 40px;
    border-radius: 24px;
    border: 1px solid #f0f0f0;
    transition: all 0.4s ease;
}

/* Creating the Staggered Layout */
.features-grid .feature-box:nth-child(even) {
    margin-top: 40px;
}

.icon-circle {
    width: 60px;
    height: 60px;
    background: #f8f8f8;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: 0.3s;
}

.material-symbols-rounded {
    color: #1a1a1a;
    font-size: 32px;
}

.feature-box h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.feature-box p {
    color: #666;
    line-height: 1.6;
    font-size: 15px;
}

/* Hover States & Accents */
.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.05);
    border-color: var(--primary-red);
}

.feature-box.active {
    border-color: var(--primary-red);
    background: #fff;
}

.feature-box.active .icon-circle {
    background: var(--primary-red);
}

.feature-box.active .material-symbols-rounded {
    color: white;
}

.feature-box.dark {
    background: #1a1a1a;
    border-color: #1a1a1a;
}

.feature-box.dark h3, .feature-box.dark p { color: white; }
.feature-box.dark .icon-circle { background: rgba(255,255,255,0.1); }
.feature-box.dark .material-symbols-rounded { color: white; }

/* Tablet/Mobile Response */
@media (max-width: 1100px) {
    .usp-container { flex-direction: column; padding: 0 20px; }
    .usp-visual-panel { position: relative; top: 0; height: 500px; flex: none; }
    .features-grid .feature-box:nth-child(even) { margin-top: 0; }
}

@media (max-width: 768px) {
    .features-grid { grid-template-columns: 1fr; }
}





/* ===== PREMIUM AUDIENCE – LIGHT / GLASS THEME ===== */

/* --- PREMIUM AUDIENCE SECTION --- */

.premium-audience {
    padding: 120px 0;
    background: #fdfdfd; /* Extremely clean light background */
    overflow: hidden;
}

/* Header Styling */
.header-stack {
    text-align: center;
    margin-bottom: 80px;
}

.top-tag {
    display: inline-block;
    color: var(--managed-red);
    font-weight: 800;
    letter-spacing: 3px;
    font-size: 12px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.premium-h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--managed-dark);
    line-height: 1.2;
    letter-spacing: -1px;
}

.red-glow-text {
    color: var(--managed-red);
    position: relative;
}

.separator {
    width: 60px;
    height: 4px;
    background: var(--managed-red);
    margin: 25px auto 0;
    border-radius: 10px;
}

/* The Obsidian Grid - Optimized for PC */
.obsidian-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* The Card: Premium Glassmorphism */
.obsidian-card {
    position: relative;
    background: #ffffff;
    border: 1px solid #eef0f2;
    border-radius: 24px;
    padding: 45px 40px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
    cursor: default;
    z-index: 1;
}

/* Hover Background Glow: Subtle Red Pulse */
.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(209, 44, 44, 0.08), transparent 70%);
    opacity: 0;
    transition: 0.5s ease;
    z-index: -1;
}

.obsidian-card:hover {
    transform: translateY(-12px);
    background: #ffffff;
    border-color: rgba(209, 44, 44, 0.2);
    box-shadow: 0 40px 80px rgba(15, 23, 42, 0.08); /* Sophisticated deep shadow */
}

.obsidian-card:hover .card-glow {
    opacity: 1;
}

/* Icon & Numbering */
.icon-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 35px;
}

.obsidian-card .material-symbols-rounded {
    font-size: 44px;
    color: var(--managed-dark);
    transition: 0.4s ease;
}

.card-no {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 900;
    color: #e2e8f0; /* Soft ghost number */
    transition: 0.4s ease;
}

.obsidian-card:hover .material-symbols-rounded {
    color: var(--managed-red);
    transform: scale(1.1);
}

.obsidian-card:hover .card-no {
    color: var(--managed-red);
    opacity: 0.4;
}

/* Card Typography */
.obsidian-card h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--managed-dark);
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.obsidian-card p {
    color: var(--managed-gray);
    line-height: 1.7;
    font-size: 15px;
    transition: 0.3s;
}

.obsidian-card:hover p {
    color: var(--managed-dark);
}

/* --- RESPONSIVE BREAKPOINTS --- */

/* For Tablets and Smaller Laptops */
@media (max-width: 1024px) {
    .obsidian-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 20px;
    }
    .premium-h2 {
        font-size: 2.8rem;
    }
}

/* For Mobile Devices */
@media (max-width: 768px) {
    .premium-audience {
        padding: 80px 0;
    }
    .obsidian-grid {
        grid-template-columns: 1fr;
    }
    .obsidian-card {
        padding: 40px 30px;
    }
    .header-stack {
        margin-bottom: 50px;
    }
}

/* Subtle animation for the whole section reveal */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.obsidian-card {
    animation: fadeInUp 0.8s ease forwards;
}





/* ===== END OF MANAGE  D OFFICE CSS ===== */

/* --- PROCESS SECTION THEME --- */

.process-section {
    padding: 120px 0;
    background: #ffffff;
    position: relative;
}

.process-steps-container {
    position: relative;
    max-width: 1200px;
    margin: 60px auto 0;
}

/* Horizontal Line for Desktop */
.process-line {
    position: absolute;
    top: 45px; /* Aligned with icon centers */
    left: 10%;
    right: 10%;
    height: 2px;
    background: #e2e8f0;
    z-index: 1;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
    z-index: 2;
}

/* Step Card Styling */
.step-card {
    text-align: center;
    transition: all 0.4s ease;
}

.step-icon-wrapper {
    width: 90px;
    height: 90px;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.step-card .material-symbols-rounded {
    font-size: 32px;
    color: var(--managed-dark);
    transition: 0.3s;
}

.step-number {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 30px;
    height: 30px;
    background: var(--managed-dark);
    color: white;
    font-size: 12px;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

/* Hover States */
.step-card:hover .step-icon-wrapper {
    border-color: var(--managed-red);
    transform: scale(1.1);
    box-shadow: 0 15px 30px rgba(209, 44, 44, 0.15);
}

.step-card:hover .material-symbols-rounded {
    color: var(--managed-red);
}

.step-card:hover .step-number {
    background: var(--managed-red);
}

/* Text Content */
.step-info h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--managed-dark);
    margin-bottom: 15px;
}

.step-info p {
    font-size: 14px;
    color: var(--managed-gray);
    line-height: 1.6;
    padding: 0 10px;
}

/* --- RESPONSIVE BREAKPOINTS --- */

@media (max-width: 1024px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 60px 30px;
    }
    .process-line {
        display: none; /* Line looks messy on multi-row tablet */
    }
}

@media (max-width: 600px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }
    .step-card {
        text-align: left;
        display: flex;
        gap: 25px;
        align-items: flex-start;
    }
    .step-icon-wrapper {
        margin: 0;
        flex-shrink: 0;
        width: 70px;
        height: 70px;
    }
    .step-info {
        padding-top: 10px;
    }
    .step-info p {
        padding: 0;
    }
}