:root {
    --purple: #8b5cf6;
    --purple-dark: #6d28d9;
    --orange: #f97316;
    --orange-light: #fb923c;
    --teal: #14b8a6;
    --dark: #0f172a;
    --light-gray: #f8fafc;
    --border-color: #f1f5f9;
    --text-muted: #64748b;
    --glass-white: rgba(255, 255, 255, 0.85);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background: #fff;
    color: var(--dark);
    overflow-x: hidden;
    font-family: 'Inter', sans-serif;
}

.section-padding {
    padding: 100px 0;
}

.ht-grad {
    background: linear-gradient(135deg, var(--purple) 0%, var(--orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.bg-tech-light {
    background-color: var(--light-gray);
}

/* ==========================================================================
   CENTERED HERO REDESIGN (UNIQUE)
   ========================================================================== */
.logo-hero-centered {
    padding: 140px 0 100px;
    position: relative;
    overflow: hidden;
    background: #fff;
}

.logo-hero-centered::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://img.freepik.com/free-vector/geometric-perspective-line-pattern-background_1409-1821.jpg');
    background-position: bottom right;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 0;
    opacity: 0.2;
}

.logo-hero-centered .container {
    position: relative;
    z-index: 2;
}

/* Status Monitor */
.hero-status-monitor {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: rgba(15, 23, 42, 0.03);
    border: 1px solid rgba(15, 23, 42, 0.05);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--text-muted);
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.pulse-green {
    background: #10b981;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

.status-divider {
    opacity: 0.2;
    margin: 0 5px;
}

/* Progress Visual */
.hero-progress-visual {
    max-width: 600px;
    margin: 40px auto;
}

.progress-track {
    height: 6px;
    background: #f1f5f9;
    border-radius: 10px;
    position: relative;
    margin-bottom: 20px;
    overflow: hidden;
}

.progress-fill {
    position: absolute;
    height: 100%;
    background: linear-gradient(90deg, var(--purple), var(--orange));
    border-radius: 10px;
}

.progress-glow {
    position: absolute;
    height: 100%;
    width: 100px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    animation: scan 3s infinite linear;
}

@keyframes scan {
    0% {
        left: -100px;
    }

    100% {
        left: 100%;
    }
}

.progress-labels {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.progress-labels .active {
    color: var(--purple);
}

/* Health Score */
.hero-health-score {
    display: flex;
    align-items: center;
    gap: 18px;
    padding-left: 20px;
    border-left: 1px solid var(--border-color);
}

.health-circle {
    width: 60px;
    height: 60px;
    border: 3px solid #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 950;
    color: #10b981;
    background: #fff;
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.15);
}

.health-meta {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.health-meta .label {
    font-size: 10px;
    font-weight: 800;
    color: var(--text-muted);
    block-size: 1.2;
}

.health-meta .value {
    font-size: 14px;
    font-weight: 900;
    color: var(--dark);
}

/* Floating Status Nodes */
.hero-status-node {
    position: absolute;
    background: #fff;
    padding: 15px 24px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    font-weight: 800;
    z-index: 3;
    transition: all 0.3s ease;
}

.hero-status-node i {
    color: var(--purple);
    font-size: 16px;
}

.hero-status-node:hover {
    transform: translateY(-5px);
    border-color: var(--purple);
}

.node-left-top {
    top: 20%;
    left: 8%;
    animation: float 6s infinite ease-in-out;
}

.node-left-bottom {
    bottom: 20%;
    left: 12%;
    animation: float 6s infinite ease-in-out 1s;
}

.node-right-top {
    top: 25%;
    right: 8%;
    animation: float 6s infinite ease-in-out 0.5s;
}

.node-right-bottom {
    bottom: 25%;
    right: 10%;
    animation: float 6s infinite ease-in-out 1.5s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@media (max-width: 991px) {
    .logo-hero-centered {
        padding: 100px 0 60px;
    }

    .hero-status-node {
        display: none;
    }

    .hero-health-score {
        border-left: none;
        padding-left: 0;
        padding-top: 20px;
    }

    .hero-cta-group {
        flex-direction: column;
        gap: 20px;
    }
}

/* ==========================================================================
   METRICS MARQUEE
   ========================================================================== */
.metrics-marquee-section {
    background: #fff;
    padding: 25px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
}

.metrics-marquee {
    display: flex;
    width: max-content;
    animation: marquee-scroll 40s linear infinite;
}

.marquee-item {
    padding: 0 45px;
    font-weight: 800;
    color: var(--text-muted);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ==========================================================================
   CONTINUOUS EVOLUTION (ASYMMETRICAL)
   ========================================================================== */
.evolution-maintenance-section {
    background: #fff;
    position: relative;
}

.evolution-visual-stack {
    position: relative;
    padding-right: 15%;
}

.ev-main-dashboard {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(15, 23, 42, 0.08);
}

.ev-main-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.7s ease;
}

.ev-main-dashboard:hover .ev-main-img {
    transform: scale(1.05);
}

/* Status Nodes over image */
.ev-status-node {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.8);
    z-index: 3;
}

.ev-status-node .node-icon {
    width: 32px;
    height: 32px;
    background: var(--purple);
    color: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.ev-status-node .node-data {
    display: flex;
    flex-direction: column;
}

.ev-status-node .label {
    font-size: 9px;
    font-weight: 800;
    color: var(--text-muted);
}

.ev-status-node .value {
    font-size: 13px;
    font-weight: 950;
    color: var(--dark);
}

.ev-status-node.node-1 {
    top: 15%;
    right: -30px;
    animation: float 6s auto infinite;
}

.ev-status-node.node-2 {
    bottom: 20%;
    left: -30px;
    animation: float 6s auto infinite reverse;
}

/* Monitor Card (Sidebar) */
.ev-monitor-card {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 240px;
    background: var(--dark);
    padding: 30px;
    border-radius: 30px;
    color: #fff;
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.25);
    z-index: 4;
}

.monitor-header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.5);
}

.monitor-header i {
    color: var(--orange);
}

.monitor-steps {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.monitor-steps .step {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    font-weight: 700;
    opacity: 0.4;
}

.monitor-steps .step.active {
    opacity: 1;
}

.monitor-steps .dot {
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
}

.monitor-steps .active .dot {
    background: var(--orange);
    box-shadow: 0 0 10px var(--orange);
}

.monitor-brand {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 10px;
    font-weight: 800;
    color: var(--orange);
}

/* Content Side */
.vertical-accent {
    position: relative;
    padding-left: 15px;
    border-left: 3px solid var(--purple);
}

.evolution-features {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.ev-feature-item {
    display: flex;
    gap: 25px;
}

.ev-f-num {
    font-size: 32px;
    font-weight: 950;
    color: var(--purple);
    opacity: 0.15;
    line-height: 1;
    margin-top: 5px;
}

.ev-f-text h4 {
    font-size: 19px;
    font-weight: 900;
    margin-bottom: 10px;
    color: var(--dark);
}

.ev-f-text p {
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 991px) {
    .evolution-visual-stack {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .ev-monitor-card {
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        width: 100%;
        margin-top: 20px;
    }

    .ev-status-node {
        display: none;
    }
}

/* ==========================================================================
   MAINTENANCE SERVICES GRID
   ========================================================================== */

/* ==========================================================================
   INFRASTRUCTURE GRID
   ========================================================================== */
.scale-title {
    font-size: 38px;
    font-weight: 900;
}

.max-600 {
    max-width: 600px;
}

.tech-card-new {
    background: #fff;
    padding: 50px 35px;
    border-radius: 28px;
    height: 100%;
    transition: all 0.4s;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    position: relative;
    overflow: hidden;
    text-align: left;
}

.tech-card-new:hover {
    transform: translateY(-10px);
    border-color: var(--purple);
    box-shadow: 0 25px 50px rgba(139, 92, 246, 0.1);
}

.tech-card-new .tc-icon {
    width: 64px;
    height: 64px;
    background: var(--light-gray);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--purple);
    margin-bottom: 25px;
}

.tech-card-new.featured {
    border-color: var(--purple);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.08);
}

.tech-card-new.featured .tc-icon {
    background: var(--purple);
    color: #fff;
}

.tech-card-ribbon {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--orange);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
}

.tc-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.tc-list li {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tc-list li i {
    color: var(--purple);
}

/* ==========================================================================
   MAINTENANCE LIFECYCLE (ROADMAP REDESIGN)
   ========================================================================== */
.lifecycle-roadmap-section {
    background: #fcfcfc;
    position: relative;
    padding: 120px 0;
}

.roadmap-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 950;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.roadmap-desc {
    max-width: 600px;
    font-size: 16px;
    line-height: 1.7;
}

.roadmap-container {
    max-width: 1100px;
    margin: 80px auto 0;
    position: relative;
    padding: 20px 0;
}

/* Data Spine */
.roadmap-spine {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: linear-gradient(to bottom,
            transparent 0%,
            var(--border-color) 10%,
            var(--border-color) 90%,
            transparent 100%);
    transform: translateX(-50%);
    z-index: 1;
}

/* Background Decoration */
.roadmap-bg-decor {
    position: absolute;
    inset: -50px;
    z-index: 0;
    pointer-events: none;
    opacity: 0.3;
}

.decor-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(var(--border-color) 1px, transparent 1px),
        linear-gradient(90deg, var(--border-color) 1px, transparent 1px);
    background-size: 100px 100px;
    mask-image: radial-gradient(circle at center, black, transparent 80%);
}

.decor-icon {
    position: absolute;
    font-size: 180px;
    color: var(--purple);
    opacity: 0.03;
    filter: blur(2px);
}

.icon-1 {
    top: 10%;
    left: 5%;
    transform: rotate(15deg);
}

.icon-2 {
    bottom: 10%;
    right: 5%;
    transform: rotate(-15deg);
}

/* Steps */
.roadmap-step {
    display: flex;
    margin-bottom: 120px;
    position: relative;
    width: 100%;
    align-items: center;
}

.roadmap-step.step-left {
    justify-content: flex-start;
}

.roadmap-step.step-right {
    justify-content: flex-end;
}

/* Nodes */
.roadmap-node {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    background: #fff;
    border: 3px solid var(--purple);
    border-radius: 50%;
    z-index: 5;
}

.node-pulse {
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    background: var(--purple);
    opacity: 0.2;
    animation: node-pulse 2s infinite;
}

@keyframes node-pulse {
    0% {
        transform: scale(1);
        opacity: 0.2;
    }

    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

/* Horizontal Connector Line */
.roadmap-step::before {
    content: "";
    position: absolute;
    top: 50%;
    height: 2px;
    background: dashed;
    border-top: 2px dashed var(--border-color);
    z-index: 1;
}

.step-left::before {
    left: 50%;
    right: 45%;
    /* Connects to center-ish of left card */
}

.step-right::before {
    right: 50%;
    left: 45%;
    /* Connects to center-ish of right card */
}

.step-card {
    width: 42%;
    background: #fff;
    padding: 45px;
    border-radius: 35px;
    border: 1px solid var(--border-color);
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.04);
    position: relative;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 2;
}

.step-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: var(--purple);
    box-shadow: 0 40px 80px rgba(139, 92, 246, 0.12);
}

.step-icon {
    width: 64px;
    height: 64px;
    background: #f8fafc;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--purple);
    margin-bottom: 30px;
    transition: all 0.3s;
    border: 1px solid var(--border-color);
}

.step-card:hover .step-icon {
    background: var(--purple);
    color: #fff;
    border-color: var(--purple);
}

.step-number {
    position: absolute;
    top: 40px;
    right: 45px;
    font-size: 80px;
    font-weight: 950;
    color: var(--purple);
    opacity: 0.04;
    line-height: 1;
    pointer-events: none;
}

.step-content h3 {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 18px;
    color: var(--dark);
    letter-spacing: -0.5px;
}

.step-content p {
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 991px) {
    .step-card {
        width: 100%;
        border-radius: 24px;
        padding: 35px;
    }

    .roadmap-step {
        margin-bottom: 40px;
    }

    .roadmap-spine,
    .roadmap-node,
    .roadmap-step::before,
    .roadmap-bg-decor {
        display: none;
    }

    .step-number {
        font-size: 50px;
        top: 25px;
        right: 25px;
    }
}

/* ==========================================================================
   TESTIMONIALS & FAQ (PRESERVED)
   ========================================================================== */

/* ==========================================================================
   TESTIMONIALS SECTION (FROM DEVELOPMENT PAGE)
   ========================================================================== */


/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */

.testi-section {
    padding: 100px 0px;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}


.top-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 44px;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.8px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 18px;
}

.eyebrow .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--purple);
}

.eyebrow .dot2 {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--orange);
}

.eyebrow .dot3 {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #e5e7eb;
}

.eyebrow::before,
.eyebrow::after {
    content: "";
    width: 28px;
    height: 2px;
    background: linear-gradient(90deg, var(--purple), var(--orange));
    border-radius: 2px;
}

.main-title {
    font-size: clamp(30px, 3.5vw, 50px);
    font-weight: 900;
    color: var(--dark);
    letter-spacing: -2px;
    line-height: 1.08;
}

.main-title em {
    font-style: italic;
    background: linear-gradient(135deg, var(--purple), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lets-talk-col {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    padding-top: 6px;
}

.arc-row {
    display: flex;
    justify-content: flex-end;
    margin-bottom: -4px;
}

.arc-row svg {
    width: 68px;
    opacity: 0.40;
}

.lets-talk-line {
    display: flex;
    align-items: center;
    gap: 14px;
}

.lets-talk-text {
    font-size: 24px;
    font-weight: 800;
    font-style: italic;
    color: var(--purple);
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 26px;
    background: var(--dark);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s;
}

.contact-btn:hover {
    color: #fff;
    background: var(--purple);
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.35);
    transform: translateY(-2px);
}

.lets-desc {
    font-size: 13px;
    line-height: 1.65;
    color: var(--text-muted);
    max-width: 320px;
    text-align: right;
}

.testi-grid {
    display: grid;
    grid-template-columns: 270px 1fr;
    gap: 22px;
    align-items: start;
    position: relative;
    z-index: 2;
}

.rating-card_testi {
    background: linear-gradient(160deg, #f3f0ff 0%, #ede9fe 100%);
    border-radius: 24px;
    padding: 40px 30px 36px;
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    overflow: hidden;
    min-height: 400px;
    border: 1px solid rgba(139, 92, 246, 0.10);
}

.rating-card_testi::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('https://expert-themes.com/html/ithub/ithub/assets/images/background/pattern-20.png');
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: 180px;
    opacity: 0.20;
    pointer-events: none;
}

.big-rating {
    font-size: 96px;
    font-weight: 900;
    color: var(--dark);
    letter-spacing: -6px;
    line-height: 1;
    margin-bottom: 22px;
    position: relative;
    z-index: 1;
}

.avatar-stack {
    display: flex;
    align-items: center;
    margin-bottom: 4px;
    position: relative;
    z-index: 1;
}

.av {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2.5px solid #fff;
    margin-right: -11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
}

.av1 {
    background: linear-gradient(135deg, #8b5cf6, #6d28d9);
    z-index: 4;
}

.av2 {
    background: linear-gradient(135deg, #f97316, #fb923c);
    z-index: 3;
}

.av3 {
    background: linear-gradient(135deg, #14b8a6, #0d9488);
    z-index: 2;
}

.av4 {
    background: linear-gradient(135deg, #f43f5e, #e11d48);
    z-index: 1;
}

.client-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--dark);
    margin-top: 14px;
    position: relative;
    z-index: 1;
}

.client-sub {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 22px;
    position: relative;
    z-index: 1;
}

.rating-tagline {
    font-size: 15.5px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.35;
    margin-bottom: 30px;
    flex: 1;
    position: relative;
    z-index: 1;
}

.testi-right {
    background-image: url('https://expert-themes.com/html/ithub/ithub/assets/images/background/pattern-23.png');
    background-repeat: no-repeat;
    background-position: top left;
    background-size: cover;
    border-radius: 24px;
    padding: 36px 32px 40px;
    position: relative;
    overflow: hidden;
}

.testi-card {
    background: #fff;
    border-radius: 20px;
    padding: 34px 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    position: relative;
    transition: all 0.3s;
}

.testi-card:hover {
    transform: translateY(-5px);
}

.card-indicator {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 6px;
    height: 30px;
    background: var(--purple);
    border-radius: 10px;
}



.card-quote {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 30px;
    flex: 1;
}

.card-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.c-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.c-avatar-fb {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
}

.author-info .c-name {
    font-size: 16px;
    font-weight: 800;
    color: var(--dark);
}

.author-info .c-role {
    font-size: 12px;
    color: var(--text-muted);
}

.card-rating {
    margin-top: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.r-num {
    font-size: 14px;
    font-weight: 800;
    color: var(--dark);
}

.stars {
    display: flex;
    gap: 2px;
}

.st {
    width: 12px;
    height: 12px;
    background: #FFD700;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.st.dim {
    background: #E5E7EB;
}

.nav-row {
    margin-top: 24px;
    display: flex;
    gap: 12px;
}

.nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid #E5E7EB;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.nav-btn:hover {
    background: var(--purple);
    color: #fff;
    border-color: var(--purple);
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */

.faq-section {
    padding: 120px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.faq-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 1;
}

.faq-orb-1 {
    width: 400px;
    height: 400px;
    background: rgba(139, 92, 246, 0.05);
    top: -100px;
    left: -150px;
}

.faq-orb-2 {
    width: 450px;
    height: 450px;
    background: rgba(20, 184, 166, 0.04);
    bottom: -150px;
    right: -100px;
}

.faq-header {
    text-align: center;
    margin-bottom: 70px;
}

.faq-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(139, 92, 246, 0.06);
    border: 1px solid rgba(139, 92, 246, 0.12);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--purple);
    margin-bottom: 24px;
}

.faq-dot-pulse {
    width: 8px;
    height: 8px;
    background: var(--purple);
    border-radius: 50%;
    position: relative;
}

.faq-dot-pulse::after {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid var(--purple);
    opacity: 0;
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.faq-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 900;
    line-height: 1.1;
    color: var(--dark);
    margin-bottom: 24px;
    letter-spacing: -1.5px;
}

.faq-title-grad {
    background: linear-gradient(266deg, #f63 -1.18%, #6d2cf9 96.14%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-title-bar {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--purple), var(--teal));
    border-radius: 2px;
    margin: auto;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 900px;
    margin: auto;
}

.faq-item {
    background: #ffffff;
    border: 1px solid #f0eeff;
    border-radius: 20px;
    padding: 6px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.03);
}

.faq-item:hover {
    border-color: rgba(139, 92, 246, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.08);
}

.faq-item.active {
    border-color: var(--purple);
    background: linear-gradient(135deg, #ffffff, rgba(139, 92, 246, 0.02));
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.1);
}

.faq-question {
    padding: 24px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    user-select: none;
}

.faq-question span {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    transition: color 0.3s;
}

.faq-item.active .faq-question span {
    color: var(--purple);
}

.faq-toggle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f3f0ff;
    color: var(--purple);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.4s;
    flex-shrink: 0;
}

.faq-item.active .faq-toggle {
    background: var(--purple);
    color: #ffffff;
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    padding: 0 30px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 30px;
}

.faq-answer p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-muted);
    margin: 0;
}

.faq-footer-cta {
    margin-top: 50px;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.faq-footer-cta p {
    margin: 0;
    font-size: 16px;
    color: var(--text-muted);
    font-weight: 600;
}

.faq-cta-link {
    color: var(--purple);
    font-weight: 800;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s;
}

.faq-cta-link:hover {
    gap: 12px;
    color: var(--purple-dark);
}

/* ==========================================================================
   RESPONSIVE STYLES
   ========================================================================== */

@media(max-width:1100px) {
    .testi-grid {
        grid-template-columns: 240px 1fr;
    }
}

@media(max-width:991px) {
    .testi-grid {
        grid-template-columns: 1fr;
    }

    .rating-card {
        min-height: auto;
    }

    .lets-talk-col {
        display: none;
    }
}

@media (max-width: 768px) {
    .faq-section {
        padding: 40px 0;
    }

    .faq-question {
        padding: 20px;
    }

    .faq-question span {
        font-size: 16px;
    }

    .faq-answer {
        padding: 0 20px;
    }

    .faq-item.active .faq-answer {
        padding-bottom: 20px;
    }
}

@media(max-width:576px) {
    .testi-section {
        padding: 70px 0 0;
    }

    .big-rating {
        font-size: 72px;
    }

    .main-title {
        letter-spacing: -1px;
    }
}

/* ==========================================================================
   CONTACT SECTION (PREMIUM REDESIGN)
   ========================================================================== */

/* ==========================================================================
   LOGO CONTACT FORM SECTION
   ========================================================================== */

.logo_contact-section {
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}

.logo_contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

/* Left: Info Side */
.logo_contact-info-inner {
    padding-right: 20px;
}

.logo_contact-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    color: #f97316;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.logo_contact-title {
    font-size: clamp(32px, 4vw, 46px);
    font-weight: 900;
    color: #0f172a;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.logo_contact-desc {
    font-size: 17px;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 40px;
}

.logo_contact-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.logo_cf-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.logo_cf-icon {
    width: 48px;
    height: 48px;
    background: rgba(109, 44, 249, 0.1);
    color: #6d2cf9;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.logo_cf-item h4 {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 6px;
}

.logo_cf-item p {
    font-size: 15px;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

/* Right: Form Form */
.logo_contact-box {
    background: #fff;
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.logo_cb-title {
    font-size: 26px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 30px;
}

.logo_form {
    display: block;
}

.logo_form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.logo_form-group {
    margin-bottom: 24px;
}

.logo_form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #334155;
    margin-bottom: 8px;
}

.logo_text-danger {
    color: #ef4444;
}

.logo_form-input,
.logo_form-select,
.logo_form-textarea {
    width: 100%;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 14px 18px;
    font-size: 15px;
    color: #0f172a;
    transition: all 0.3s ease;
    font-family: inherit;
}

.logo_form-input:focus,
.logo_form-select:focus,
.logo_form-textarea:focus {
    outline: none;
    border-color: #6d2cf9;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(109, 44, 249, 0.1);
}

.logo_form-textarea {
    resize: vertical;
    min-height: 120px;
}

.logo_form-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 16px 30px;
    background: linear-gradient(266deg, #f63 -1.18%, #6d2cf9 96.14%);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(109, 44, 249, 0.25);
}

.logo_form-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(109, 44, 249, 0.4);
}

/* Responsive */
@media (max-width: 1199px) {
    .logo_contact-wrapper {
        gap: 40px;
    }

    .logo_contact-box {
        padding: 40px;
    }
}

@media (max-width: 991px) {
    .logo_contact-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .logo_contact-info-inner {
        padding-right: 0;
        text-align: center;
    }

    .logo_contact-features {
        align-items: center;
        text-align: left;
    }

    .logo_cf-item {
        max-width: 400px;
    }
}

@media (max-width: 767px) {
    .logo_form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .logo_contact-box {
        padding: 30px 20px;
    }
}