/* ==========================================================================
   APEX GROWTH - PREMIUM STYLING SYSTEM
   Colors: Primary Blue (#0053DB), Accent Light Blue/Cyan (#4CD7F6)
   Typography: Plus Jakarta Sans (Headings), Inter (Body)
   ========================================================================== */

/* 1. Design System Tokens */
:root {
    /* Colors */
    --primary: #0053DB;
    --primary-hover: #0042b3;
    --accent: #4CD7F6;
    --accent-hover: #2ccceb;
    --bg-white: #FFFFFF;
    --bg-soft: #F8FAFC;
    --text-dark: #0F172A;
    /* Rich near-black */
    --text-muted: #475569;
    /* Sleek dark gray for subtitle text */
    --text-light: #64748B;

    /* Fonts */
    --font-headings: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;

    /* Layout & Spacing */
    --container-max-width: 1500px;
    --header-height: 80px;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;

    /* Shadows & Glows */
    --shadow-premium: 0 20px 40px -15px rgba(15, 23, 42, 0.08);
    --shadow-btn: 0 10px 20px -6px rgba(0, 83, 219, 0.35);
    --shadow-btn-hover: 0 15px 25px -4px rgba(0, 83, 219, 0.45);
    --shadow-mockup: 0 30px 60px -15px rgba(15, 23, 42, 0.18), 0 0 50px -10px rgba(76, 215, 246, 0.15);
}

/* 2. Modern Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    background-color: var(--bg-white);
    color: var(--text-dark);
    font-family: var(--font-body);
    line-height: 1.5;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
    height: auto;
}

/* 3. Base Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-headings);
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-dark);
}

/* 4. Button & Layout Components */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    transition: var(--transition-smooth);
}

.btn-primary {
    background-color: var(--primary);
    color: var(--bg-white);
    box-shadow: var(--shadow-btn);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-btn-hover);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-sm {
    padding: 12px 24px;
    font-size: 0.9rem;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.1rem;
    border-radius: 8px;
}

/* 5. Header Navigation */
.main-header {
    height: var(--header-height);
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(15, 23, 42, 0.04);
    display: flex;
    align-items: center;
}

.header-container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-logo {
    font-family: var(--font-headings);
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: -0.04em;
    color: var(--text-dark);
    display: flex;
    align-items: center;
}

.nav-menu {
    display: block;
}

.nav-list {
    display: flex;
    gap: 36px;
    align-items: center;
}

.nav-link {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark);
    padding: 8px 0;
    position: relative;
    opacity: 0.85;
    transition: var(--transition-fast);
}

.nav-link:hover {
    opacity: 1;
    color: var(--primary);
}

/* Active Nav Indicator (matching mockup) */
.nav-link.active {
    opacity: 1;
    color: var(--primary);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary);
    border-radius: 2px;
}

/* Hover effect for other non-active items */
.nav-link:not(.active)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition-fast);
    border-radius: 2px;
}

.nav-link:not(.active):hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Hamburger Toggle Button Style */
.hamburger-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1100;
}

.hamburger-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--text-dark);
    border-radius: 4px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Hamburger Toggle Active State (X) */
.hamburger-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* 6. Hero Section Layout */
.hero-section {
    padding-top: calc(var(--header-height) + 60px);
    padding-bottom: 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.hero-container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Hero Typography Styling */
.hero-title {
    font-size: 4rem;
    /* Giant impact title */
    line-height: 1.12;
    letter-spacing: -0.035em;
    color: var(--primary);
    /* Deep blue for core text matching mockup image */
    margin-bottom: 24px;
}

.highlight-cyan {
    color: var(--accent);
    /* Light blue/cyan for the highlight words */
    position: relative;
    display: inline;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 1.15rem;
    line-height: 1.6;
    color: var(--text-muted);
    /* Dark gray/black for main text */
    margin-bottom: 40px;
    max-width: 520px;
}

.hero-actions {
    margin-bottom: 56px;
}

/* Hero Stats Container */
.hero-stats {
    display: flex;
    gap: 60px;
    padding-top: 36px;
    width: 100%;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat-number {
    font-family: var(--font-headings);
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    color: var(--primary);
    /* Deep blue for the numbers */
    letter-spacing: -0.03em;
}

.stat-label {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent);
    /* Light blue/cyan for standard label text */
    letter-spacing: -0.01em;
}

/* 7. Hero Visual Column */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}

/* Glowing Ambient Sphere */
.glow-sphere {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(76, 215, 246, 0.18) 0%, rgba(0, 83, 219, 0.05) 40%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}

/* Floating Mockup Wrapper */
.mockup-wrapper {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 580px;
    animation: float 6s ease-in-out infinite;
}

.mockup-frame {
    border-radius: 16px;
    overflow: hidden;
    background-color: #0b111e;
    /* Matches deep dark theme of dashboard */
    box-shadow: var(--shadow-mockup);
    transition: var(--transition-smooth);
}

.mockup-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 16px;
    border-color: transparent;
}

/* Premium Floating Animation Keyframes */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* 7. Industries Specialization Section */
.industries-section {
    background-color: #DEEAFF;
    /* Soft light blue requested background */
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.section-container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.section-title {
    font-family: var(--font-headings);
    font-size: 2rem;
    /* EXACTLY 2rem requested */
    font-weight: 800;
    color: var(--primary);
    /* Deep blue title */
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 1rem;
    /* EXACTLY 1rem requested */
    color: var(--text-muted);
    max-width: 620px;
    margin: 0 auto 56px auto;
    line-height: 1.6;
}

.cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    text-align: left;
}

.industry-card {
    background-color: var(--primary);
    /* Deep blue card background */
    border-radius: 20px;
    padding: 48px;
    color: var(--bg-white);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 20px 40px -10px rgba(0, 83, 219, 0.12);
    transition: var(--transition-smooth);
}

.industry-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 50px -10px rgba(0, 83, 219, 0.22);
}

.card-watermark {
    position: absolute;
    right: -10px;
    top: 10px;
    width: 160px;
    height: 160px;
    color: rgba(255, 255, 255, 0.05);
    /* 5% opacity white watermark */
    pointer-events: none;
    z-index: 1;
}

.card-watermark svg {
    width: 100%;
    height: 100%;
}

.card-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
}

.card-title {
    font-family: var(--font-headings);
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--bg-white);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.card-desc {
    font-family: var(--font-body);
    font-size: 1rem;
    /* EXACTLY 1rem requested */
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 36px;
    max-width: 440px;
}

.card-bullets {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
    flex-grow: 1;
}

.card-bullets li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-body);
    font-size: 1rem;
    /* EXACTLY 1rem requested */
    font-weight: 500;
    color: var(--bg-white);
}

.bullet-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--accent);
    /* Light blue/cyan checkbox mark */
    flex-shrink: 0;
}

.bullet-icon svg {
    width: 12px;
    height: 12px;
}

/* Card 2 Specific Bullets Formatting (Centered, No Icon) */
.card-bullets.no-icon {
    align-items: center;
}

.card-bullets.no-icon li {
    justify-content: center;
    text-align: center;
}

/* Outline CTA Button inside cards */
.btn-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: var(--bg-white);
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 1rem;
    /* EXACTLY 1rem requested */
    font-weight: 600;
    width: 100%;
    text-align: center;
    transition: var(--transition-smooth);
}

.btn-outline:hover {
    background-color: var(--bg-white);
    color: var(--primary);
    border-color: var(--bg-white);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.2);
}

.btn-outline:active {
    transform: translateY(0);
}

/* ==========================================================================
   Services Section Styling
   ========================================================================== */
.services-section {
    background-color: var(--bg-white);
    padding: 100px 0;
    width: 100%;
}

.services-container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.services-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 56px;
    width: 100%;
}

.services-header-left {
    max-width: 600px;
}

.services-section-title {
    font-family: var(--font-headings);
    font-size: 2.85rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 12px;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.services-section-subtitle {
    font-family: var(--font-body);
    font-size: 1.125rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.services-header-right {
    flex-shrink: 0;
}

.contact-link {
    font-family: var(--font-headings);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-bottom: 2px solid var(--primary);
    padding-bottom: 4px;
    transition: var(--transition-smooth);
}

.contact-link .arrow {
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-block;
}

.contact-link:hover {
    color: var(--primary-hover);
    border-color: var(--primary-hover);
}

.contact-link:hover .arrow {
    transform: translateX(6px);
}

/* Services Grid & Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    width: 100%;
}

.service-card {
    background-color: #BCC7DF0D;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 16px;
    padding: 40px;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-icon {
    color: var(--primary);
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.service-icon svg {
    width: 36px;
    height: 36px;
    stroke: var(--primary);
}

.service-card-title {
    font-family: var(--font-headings);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.service-bullets {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: auto;
}

.service-bullets li {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
    line-height: 1.5;
    padding-left: 20px;
    position: relative;
    list-style: none;
}

.service-bullets li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--primary);
}

/* Card Hover Effects */
.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px -15px rgba(0, 83, 219, 0.08);
}

/* ==========================================================================
   Features Section Styling (Why Choose Us)
   ========================================================================== */
.features-section {
    background-color: var(--bg-white);
    padding: 100px 0;
    width: 100%;
}

.features-container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.features-header {
    text-align: center;
    margin-bottom: 56px;
}

.features-section-title {
    font-family: var(--font-headings);
    font-size: 2.85rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 16px;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.features-section-subtitle {
    font-family: var(--font-body);
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    width: 100%;
}

.feature-card {
    background-color: #BCC7DF0D;
    /* EXACTLY the requested hex with 0D transparency */
    border: 1px solid transparent;
    border-radius: 16px;
    padding: 40px;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.feature-icon {
    color: var(--primary);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.feature-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--primary);
}

.feature-card-title {
    font-family: var(--font-headings);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
    line-height: 1.25;
}

.feature-card-desc {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Feature Card Hover Effects */
.feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 83, 219, 0.15);
    box-shadow: 0 16px 32px -12px rgba(15, 23, 42, 0.08);
}

/* 8. Responsive Breakpoints */

/* Tablet Viewports */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.2rem;
    }

    .hero-container {
        gap: 40px;
    }

    .hero-stats {
        gap: 40px;
    }
}

@media (max-width: 991px) {
    .hamburger-toggle {
        display: flex;
    }

    .nav-menu {
        display: block;
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;
        height: auto;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        padding: 40px 24px;
        border-bottom: 1px solid rgba(15, 23, 42, 0.08);
        transform: translateY(-120%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 999;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        box-shadow: 0 20px 30px -10px rgba(15, 23, 42, 0.05);
    }

    .nav-list {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }

    .nav-link {
        font-size: 1.1rem;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
        padding-top: 40px;
    }

    .hero-visual {
        order: -1;
        /* Places the dashboard mockup image on top of the text on wrap */
    }

    .hero-content {
        align-items: center;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-stats {
        justify-content: center;
    }

    .mockup-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }

    .glow-sphere {
        width: 450px;
        height: 450px;
    }

    .industries-section {
        padding: 80px 0;
    }

    .cards-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        margin-bottom: 40px;
    }

    /* Services Responsive Overrides */
    .services-section {
        padding: 80px 0;
    }

    .services-header-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 40px;
    }

    .services-section-title {
        font-size: 2.25rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

/* Mobile Viewports */
@media (max-width: 576px) {
    :root {
        --header-height: 60px;
    }

    .brand-logo {
        font-size: 1.1rem;
    }

    .btn-sm {
        padding: 6px 12px;
        font-size: 0.75rem;
        border-radius: 6px;
    }

    .header-actions {
        gap: 8px;
    }

    .hamburger-toggle {
        width: 20px;
        height: 14px;
    }

    .hamburger-toggle .bar {
        height: 1.5px;
    }

    .hamburger-toggle.active .bar:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .hamburger-toggle.active .bar:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    .hero-section {
        padding-top: calc(var(--header-height) + 30px);
        padding-bottom: 60px;
    }

    .hero-title {
        font-size: 2.1rem;
        margin-bottom: 18px;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .btn-lg {
        padding: 14px 28px;
        font-size: 1rem;
        width: 100%;
    }

    .hero-actions {
        margin-bottom: 40px;
        width: 100%;
    }

    .hero-stats {
        flex-direction: row;
        justify-content: space-around;
        gap: 20px;
        padding-top: 24px;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .industries-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .industry-card {
        padding: 32px 24px;
    }

    .card-title {
        font-size: 1.6rem;
    }

    .card-desc {
        font-size: 1rem;
        margin-bottom: 24px;
    }

    .card-bullets {
        margin-bottom: 32px;
        gap: 12px;
    }

    .card-bullets li {
        font-size: 1rem;
    }

    /* Services Mobile Overrides */
    .services-section {
        padding: 60px 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .services-section-title {
        font-size: 1.8rem;
    }

    .service-card {
        padding: 32px 24px;
    }
}

/* Features Section Responsive */
@media (max-width: 991px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .features-section-title {
        font-size: 2.25rem;
    }

    .features-section-subtitle {
        font-size: 1rem;
    }
}

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

    .features-section-title {
        font-size: 1.8rem;
    }

    .features-section-subtitle {
        font-size: 1rem;
    }
}


.results-section1 {
    background: #f5f7fb;
    padding: 120px 6%;
    overflow: hidden;
}

.results-container1 {
    max-width: var(--container-max-width);
    margin: auto;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* LEFT */

.results-label1 {
    display: inline-block;
    color: var(--primary);
    font-family: var(--font-headings);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 28px;
}

.results-text1 {
    max-width: 560px;
    color: var(--text-muted);
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 70px;
}

.results-stats1 {
    display: flex;
    align-items: center;
    gap: 70px;
    flex-wrap: wrap;
}

.stat-item1 {
    position: relative;
    padding-left: 22px;
}

.stat-item1::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 2px;
    height: 74px;
    background: linear-gradient(to bottom,
            var(--accent),
            var(--primary));
    border-radius: 20px;
}

.stat-item1 h2 {
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 1;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 14px;
    font-family: var(--font-headings);
}

.stat-item1 span {
    color: #0ea5e9;
    letter-spacing: 4px;
    font-size: .9rem;
    font-weight: 600;
}

/* CARD */

.testimonial-card1 {
    position: relative;
    background: rgba(255, 255, 255, 0.78);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    border-radius: 30px;
    padding: 50px;

    box-shadow:
        0 10px 40px rgba(15, 23, 42, 0.06),
        0 2px 10px rgba(15, 23, 42, 0.04);

    border: 1px solid rgba(255, 255, 255, 0.6);

    transition: var(--transition-smooth);
}

.testimonial-card1:hover {
    transform: translateY(-6px);
    box-shadow:
        0 20px 60px rgba(15, 23, 42, 0.12),
        0 4px 20px rgba(15, 23, 42, 0.08);
}

.badge1 {
    position: absolute;
    top: 40px;
    right: 40px;

    background: #f1f5f9;
    color: var(--text-dark);

    padding: 10px 16px;
    border-radius: 12px;

    font-size: .9rem;
    font-weight: 700;
}

.industry1 {
    display: inline-block;
    color: #0ea5e9;
    font-size: .85rem;
    font-weight: 800;
    letter-spacing: 1.8px;
    margin-bottom: 16px;
}

.testimonial-card1 h3 {
    font-size: 2rem;
    font-family: var(--font-headings);
    color: var(--text-dark);
    margin-bottom: 30px;
}

.quote1 {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 42px;
    max-width: 560px;
}

.client1 {
    display: flex;
    align-items: center;
    gap: 18px;
}

.client1 img {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    object-fit: cover;
}

.client1 h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.client1 span {
    color: var(--text-light);
    font-size: .92rem;
    letter-spacing: 1px;
}

/* RESPONSIVE */

@media (max-width: 1100px) {
    .results-container1 {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .results-text1 {
        max-width: 100%;
    }

    .testimonial-card1 {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .results-section1 {
        padding: 80px 5%;
    }

    .results-label1 {
        font-size: .95rem;
    }

    .results-text1 {
        font-size: .95rem;
        line-height: 1.7;
        margin-bottom: 45px;
    }

    .results-stats1 {
        gap: 35px;
    }

    .stat-item1 h2 {
        font-size: 2.5rem;
    }

    .stat-item1 span {
        font-size: .72rem;
        letter-spacing: 2px;
    }

    .testimonial-card1 {
        padding: 28px;
        border-radius: 24px;
    }

    .badge1 {
        position: static;
        display: inline-block;
        margin-bottom: 22px;
        font-size: .75rem;
    }

    .industry1 {
        font-size: .72rem;
    }

    .testimonial-card1 h3 {
        font-size: 1.35rem;
        margin-bottom: 18px;
    }

    .quote1 {
        font-size: .92rem;
        line-height: 1.7;
        margin-bottom: 28px;
    }

    .client1 img {
        width: 52px;
        height: 52px;
    }

    .client1 h4 {
        font-size: .95rem;
    }

    .client1 span {
        font-size: .75rem;
    }
}



.framework-section {
    padding: 120px 5%;
    background: #f8fafc;
    overflow: hidden;
}

.framework-container {
    max-width: 1400px;
    margin: auto;
}

.framework-heading {
    text-align: center;
    margin-bottom: 90px;
}

.framework-heading h2 {
    font-size: clamp(2rem, 4vw, 3.4rem);
    font-family: var(--font-headings);
    color: var(--text-dark);
    margin-bottom: 14px;
    font-weight: 800;
}

.framework-heading p {
    color: var(--text-muted);
    font-size: 1.05rem;
}

/* TIMELINE */

.framework-timeline {
    position: relative;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;

    text-align: center;
}

.framework-line {
    position: absolute;
    top: 35px;
    left: 5%;
    width: 90%;
    height: 2px;

    background: linear-gradient(to right,
            #60a5fa,
            #38bdf8);

    z-index: 1;
}

.framework-step {
    position: relative;
    z-index: 2;
}

.framework-circle {
    width: 74px;
    height: 74px;

    margin: auto auto 30px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: linear-gradient(135deg,
            #0053DB,
            #0ea5e9);

    color: #fff;
    font-size: 1.7rem;
    font-weight: 800;

    box-shadow:
        0 10px 30px rgba(0, 83, 219, 0.25),
        0 0 0 8px rgba(255, 255, 255, 0.9);

    transition: var(--transition-smooth);
}

.framework-step:hover .framework-circle {
    transform: translateY(-8px) scale(1.05);
}

.framework-step h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 14px;
    font-family: var(--font-headings);
}

.framework-step p {
    max-width: 250px;
    margin: auto;

    color: var(--text-light);
    line-height: 1.7;
    font-size: .95rem;
}

@media (max-width: 991px) {

    .framework-timeline {
        grid-template-columns: 1fr;
        gap: 70px;
    }

    /* HIDE LINE ON WRAP */
    .framework-line {
        display: none;
    }

    .framework-circle {
        width: 66px;
        height: 66px;
        font-size: 1.4rem;
        margin-bottom: 22px;
    }

    .framework-step h3 {
        font-size: 1.1rem;
    }

    .framework-step p {
        font-size: .85rem;
        line-height: 1.6;
        max-width: 260px;
    }

    .framework-heading {
        margin-bottom: 70px;
    }

    .framework-heading h2 {
        font-size: 2rem;
    }

    .framework-heading p {
        font-size: .9rem;
    }
}



.pf-feedback-section {
    padding: 120px 5%;
    background: #f8fafc;
}

.pf-feedback-container {
    max-width: 1450px;
    margin: auto;
}

/* HEAD */

.pf-feedback-head {
    margin-bottom: 60px;
}

.pf-feedback-head h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--primary);
    font-family: var(--font-headings);
    margin-bottom: 12px;
    font-weight: 800;
}

.pf-feedback-head p {
    color: var(--text-muted);
    font-size: 1rem;
}

/* SLIDER */

.pf-feedback-slider {
    margin: 0 -14px 130px;
}

.pf-feedback-slide {
    padding: 14px;
}

.pf-feedback-card {
    background: rgba(255, 255, 255, 0.75);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border-radius: 24px;
    padding: 34px;

    border: 1px solid rgba(255, 255, 255, 0.7);

    transition: var(--transition-smooth);

    min-height: 310px;
}

.pf-feedback-card.active,
.pf-feedback-card:hover {
    border: 1px solid rgba(0, 83, 219, 0.35);

    box-shadow:
        0 18px 50px rgba(0, 83, 219, 0.08),
        0 5px 20px rgba(15, 23, 42, 0.04);

    transform: translateY(-6px);
}

.pf-feedback-stars {
    color: #0053DB;
    font-size: 1.3rem;
    margin-bottom: 24px;
    letter-spacing: 2px;
}

.pf-feedback-text {
    color: var(--text-muted);
    line-height: 1.9;
    font-size: 1rem;
    margin-bottom: 34px;
    font-style: italic;
}

.pf-feedback-user {
    display: flex;
    align-items: center;
    gap: 16px;
}

.pf-feedback-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;

    background: #dbeafe;
    color: #0f172a;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: .9rem;
    font-weight: 700;
}

.pf-feedback-user h4 {
    font-size: 1rem;
    margin-bottom: 4px;
    color: var(--text-dark);
}

.pf-feedback-user span {
    font-size: .82rem;
    color: var(--primary);
}

/* FAQ */

.pf-faq-wrapper {
    max-width: 760px;
    margin: auto;
}

.pf-faq-title {
    text-align: center;
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 45px;
}

.pf-faq-item {
    background: rgba(255, 255, 255, 0.75);

    border: 1px solid #dbe3ee;

    border-radius: 14px;
    margin-bottom: 16px;

    overflow: hidden;

    transition: var(--transition-fast);
}

.pf-faq-item.active {
    border-color: rgba(0, 83, 219, 0.3);
}

.pf-faq-question {
    width: 100%;
    border: none;
    background: transparent;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 24px 28px;

    cursor: pointer;

    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);

    text-align: left;
}

.pf-faq-question span {
    font-size: 1.3rem;
    transition: .3s ease;
}

.pf-faq-item.active .pf-faq-question span {
    transform: rotate(45deg);
}

.pf-faq-answer {
    display: none;
    padding: 0 28px 24px;
}

.pf-faq-answer p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: .95rem;
}

/* SLICK */

.pf-feedback-slider .slick-track {
    display: flex !important;
}

.pf-feedback-slider .slick-slide {
    height: inherit !important;
}

.pf-feedback-slider .slick-slide>div {
    height: 100%;
}

/* MOBILE */

@media (max-width: 768px) {

    .pf-feedback-section {
        padding: 90px 5%;
    }

    .pf-feedback-slider {
        margin-bottom: 90px;
    }

    .pf-feedback-card {
        padding: 26px;
        min-height: auto;
    }

    .pf-feedback-stars {
        font-size: 1rem;
    }

    .pf-feedback-text {
        font-size: .9rem;
        line-height: 1.7;
    }

    .pf-faq-question {
        padding: 20px;
        font-size: .9rem;
    }

    .pf-faq-answer {
        padding: 0 20px 20px;
    }

    .pf-faq-answer p {
        font-size: .85rem;
    }
}


.contact-section {
    padding: 120px 5%;
    background: #f8fafc;
    overflow: hidden;
}

.contact-container {
    max-width: 1450px;
    margin: auto;

    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 90px;
    align-items: start;
}

/* LEFT */

.contact-content h2 {
    font-size: clamp(3rem, 5vw, 4rem);
    font-weight: 900;

    color: #000;

    margin-bottom: 34px;

    font-family: var(--font-headings);
}

.contact-content p {
    max-width: 560px;

    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1.1rem;

    margin-bottom: 48px;
}

/* POINTS */

.contact-points {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-point {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-check {
    min-width: 38px;
    width: 38px;
    height: 38px;

    border-radius: 50%;

    background: linear-gradient(135deg,
            #0053DB,
            #0f5fff);

    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow:
        0 10px 24px rgba(0, 83, 219, 0.18);
}

.contact-point span {
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 500;
}

/* FORM */

.contact-form-wrap {
    background: rgba(255, 255, 255, 0.75);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    border-radius: 16px;

    padding: 38px;

    border: 1px solid rgba(255, 255, 255, 0.7);

    box-shadow:
        0 30px 80px rgba(15, 23, 42, 0.12),
        0 10px 30px rgba(15, 23, 42, 0.05);
}

.contact-form {
    width: 100%;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.contact-field {
    margin-bottom: 1px;
}

.contact-field label {
    display: block;

    margin-bottom: 10px;

    font-size: .82rem;
    font-weight: 700;

    color: var(--primary);
}

.contact-field input,
.contact-field textarea,
.contact-field select {
    width: 100%;

    border: none;
    outline: none;

    background: #f1f5f9;

    padding: 10px 12px;

    border-radius: 8px;

    font-size: 0.75rem;
    color: var(--text-dark);

    transition: var(--transition-fast);
}

.contact-field textarea {
    resize: none;
}

.contact-field input:focus,
.contact-field textarea:focus,
.contact-field select:focus {
    background: #fff;

    box-shadow:
        0 0 0 3px rgba(0, 83, 219, 0.12);
}

.contact-btn {
    width: 100%;

    border: none;
    cursor: pointer;

    padding: 16px;

    border-radius: 8px;

    background: linear-gradient(135deg,
            #0053DB,
            #0f5fff);

    color: #fff;

    font-size: 1.45rem;
    font-weight: 500;

    transition: var(--transition-smooth);

    box-shadow:
        0 18px 35px rgba(0, 83, 219, 0.28);
}

.contact-btn:hover {
    transform: translateY(-3px);

    box-shadow:
        0 24px 45px rgba(0, 83, 219, 0.35);
}

/* MOBILE */

@media (max-width: 991px) {

    .contact-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .contact-content h2 {
        font-size: 3rem;
    }

    .contact-content p {
        font-size: .95rem;
        margin-bottom: 36px;
    }

    .contact-point span {
        font-size: .92rem;
    }
}

@media (max-width: 768px) {

    .contact-section {
        padding: 90px 5%;
    }

    .contact-form-wrap {
        padding: 24px;
        border-radius: 22px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-field {
        margin-bottom: 18px;
    }

    .contact-field label {
        font-size: .72rem;
    }

    .contact-field input,
    .contact-field textarea,
    .contact-field select {
        padding: 15px;
        font-size: .9rem;
        border-radius: 10px;
    }

    .contact-btn {
        padding: 16px;
        font-size: 1rem;
        border-radius: 12px;
    }

    .contact-content h2 {
        font-size: 2.5rem;
    }

    .contact-point {
        gap: 14px;
    }

    .contact-check {
        width: 34px;
        height: 34px;
        min-width: 34px;
    }

    .contact-point span {
        font-size: .85rem;
    }
}





/* Footer Container */
.site-footer {
    background-color: #f9faff;
    width: 100%;
    color: #333;
}

.footer-content {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 60px 24px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

/* Brand Section */
.footer-brand h2 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #111;
}

.footer-brand p {
    color: #555;
    max-width: 400px;
    font-size: 1rem;
}

/* Navigation Sections */
.footer-nav h3 {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #0056d2;
    margin-bottom: 24px;
}

.footer-nav ul {
    list-style: none;
}

.footer-nav ul li {
    margin-bottom: 16px;
}

.footer-nav ul li a {
    text-decoration: none;
    color: #444;
    transition: color 0.2s ease;
}

.footer-nav ul li a:hover {
    color: #0056d2;
}

/* Bottom Bar */
.footer-bottom {
    background-color: #0056d2;
    padding: 16px 24px;
    text-align: center;
}

.footer-bottom p {
    color: #ffffff;
    font-size: 0.875rem;
    opacity: 0.9;
}

/* Responsive Layout */
@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
        padding: 80px 24px;
    }


}

@media (min-width: 1024px) {
    .footer-content {
        grid-template-columns: 5fr 3fr 4fr;
    }
}

/* Responsive Layout */
@media (max-width: 768px) {

    .footer-bottom p {
        font-size: 10px;
    }
}

/* ==========================================================================
   Form Validation & Security Styles
   ========================================================================== */

/* Required asterisk */
.required-star {
    color: #e53e3e;
    margin-left: 2px;
    font-weight: 700;
}

/* Inline field error message */
.field-error {
    display: block;
    font-size: 0.78rem;
    font-weight: 500;
    color: #e53e3e;
    margin-top: 5px;
    min-height: 16px;
    letter-spacing: 0.01em;
    transition: opacity 0.2s ease;
}

/* Input error state — red border ring */
input.input-error,
select.input-error,
textarea.input-error {
    border-color: #e53e3e !important;
    box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.15) !important;
    outline: none;
}

/* Form-level status message */
.form-status {
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 8px;
    padding: 0;
    min-height: 0;
    transition: all 0.3s ease;
}

.form-status.error {
    color: #e53e3e;
}

.form-status.success {
    color: #22c55e;
}

/* Submit button disabled state */
.contact-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

/* Loading spinner inside button */
.btn-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
    margin-left: 8px;
    vertical-align: middle;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}