/* ==========================================
   STYLE SYSTEM & VARIABLES
   ========================================== */
:root {
    --primary: #2563EB;
    --primary-dark: #1D4ED8;
    --primary-light: #EFF6FF;
    --primary-rgb: 37, 99, 235;

    --secondary: #0F172A;
    --secondary-dark: #020617;

    --accent: #EAB308;
    /* Yellow highlight */

    --text-main: #1E293B;
    --text-muted: #64748B;

    --bg-main: #FFFFFF;
    --bg-light: #F8FAFC;
    --bg-card: #FFFFFF;

    --border-color: #E2E8F0;
    --border-hover: #CBD5E1;

    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-lg: 0 10px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
    --shadow-premium: 0 20px 40px -10px rgba(0, 0, 0, 0.08);

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================
   RESET & BASE STYLES
   ========================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Hide default cursor on desktop devices with cursor support */
@media (pointer: fine) {
    body {
        cursor: none;
    }

    a,
    button,
    input,
    select,
    textarea,
    .slider,
    .faq-question {
        cursor: none;
    }
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 100px 0;
}

.bg-light {
    background-color: var(--bg-light);
}

/* ==========================================
   CUSTOM CURSOR
   ========================================== */
.custom-cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    transition: width 0.15s, height 0.15s, background-color 0.15s;
    display: none;
}

.custom-cursor-outline {
    width: 32px;
    height: 32px;
    border: 1.5px solid rgba(var(--primary-rgb), 0.3);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9998;
    transition: width 0.25s, height 0.25s, background-color 0.25s, border-color 0.25s;
    display: none;
}

@media (pointer: fine) {

    .custom-cursor-dot,
    .custom-cursor-outline {
        display: block;
    }
}

/* Cursor states on hover */
.custom-cursor-dot.hovered {
    width: 4px;
    height: 4px;
    background-color: var(--primary-dark);
}

.custom-cursor-outline.hovered {
    width: 48px;
    height: 48px;
    background-color: rgba(var(--primary-rgb), 0.08);
    border-color: var(--primary);
}

/* ==========================================
   BUTTONS & LINKS
   ========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    transition: var(--transition-normal);
    border: 2px solid transparent;
}

.btn-lg {
    padding: 14px 30px;
    font-size: 1.05rem;
}

.btn-block {
    width: 100%;
}

.btn-primary {
    background-color: var(--primary);
    color: #white;
    color: #ffffff;
}

.btn-primary2 {
    background-color: var(--primary);
    color: #white;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    box-shadow: 0 4px 14px rgba(var(--primary-rgb), 0.35);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-secondary:hover {
    background-color: var(--primary-light);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary);
    border-color: var(--border-color);
}

.btn-outline:hover {
    border-color: var(--primary);
    background-color: var(--primary-light);
}

.btn-white {
    background-color: #ffffff;
    color: var(--primary);
}

.btn-white:hover {
    background-color: var(--primary-light);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
}

.btn-arrow {
    transition: transform var(--transition-fast);
}

.btn:hover .btn-arrow {
    transform: translateX(4px);
}

/* ==========================================
   HEADER / NAVIGATION
   ========================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 1000;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: var(--transition-normal);
}

.header.scrolled {
    height: 70px;
    box-shadow: var(--shadow-md);
    background-color: rgba(255, 255, 255, 0.95);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--secondary);
}

.nav-menu ul {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition-normal);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-dark);
}

.nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    z-index: 1100;
}

.mobile-nav-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--secondary);
    border-radius: 2px;
    transition: var(--transition-normal);
}

/* ==========================================
   MOBILE NAVIGATION
   ========================================== */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.98);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.mobile-link {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--secondary);
}

.mobile-link.btn {
    font-size: 1.1rem;
    padding: 12px 36px;
    margin-top: 16px;
}

/* Toggle Active States */
.mobile-nav-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.mobile-nav-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ==========================================
   HERO SECTION & BRANDING
   ========================================== */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.4rem;
    color: #1e3a8a;
    line-height: 1.1;
}

.logo-tagline {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #ea580c;
    text-transform: uppercase;
    line-height: 1;
}

.hero {
    padding-top: 160px;
    padding-bottom: 80px;
    position: relative;
    background: linear-gradient(135deg, #f8fafc 0%, #eff6ff 100%);
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-content {
    max-width: 600px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #eff6ff;
    border-radius: var(--radius-full);
    padding: 6px 16px 6px 6px;
    margin-bottom: 24px;
    border: none;
}

.badge-icon-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background-color: #1e3a8a;
    color: #ffffff;
    border-radius: 50%;
    font-size: 0.8rem;
}

.badge-text {
    font-size: 0.85rem;
    font-weight: 750;
    color: #1e3a8a;
    letter-spacing: 0.5px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.6rem;
    font-weight: 800;
    line-height: 1.15;
    color: var(--secondary);
    margin-bottom: 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-img {
    width: 45px;
    /* Adjust as needed */
    height: auto;
    object-fit: contain;
}

.logo span {
    font-size: 24px;
    font-weight: 700;
    color: #111827;
}

.hero-title .highlight {
    color: #2563eb;
    position: relative;
    display: inline-block;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 6px;
    background-color: #f59e0b;
    /* Yellow stroke */
    border-radius: 2px;
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 36px;
    max-width: 520px;
    line-height: 1.7;
    min-height: 95px;
}

.hero-desc::after {
    content: "|";
    display: inline-block;
    margin-left: 2px;
    color: var(--primary);
    font-weight: 600;
    animation: cursorBlink 0.8s infinite steps(2, start);
}

.hero-desc.typing-complete::after {
    display: none;
}

@keyframes cursorBlink {
    to {
        visibility: hidden;
    }
}

.hero-btns {
    display: flex;
    gap: 16px;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-curve {
    position: absolute;
    width: 440px;
    height: 440px;
    background-color: #1e3a8a;
    border-radius: 50%;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    z-index: -1;
    pointer-events: none;
    box-shadow: 0 20px 40px rgba(30, 58, 138, 0.2);
}

.hero-dots-grid {
    position: absolute;
    width: 120px;
    height: 120px;
    background-image: radial-gradient(#cbd5e1 2px, transparent 2px);
    background-size: 16px 16px;
    top: -40px;
    left: 10%;
    opacity: 0.6;
    z-index: -1;
}

.hero-img-frame {
    width: 100%;
    max-width: 480px;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: visible;
}

.hero-img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* ==========================================
   FEATURES DASHBOARD
   ========================================== */
.features-dashboard {
    position: relative;
    margin-top: -50px;
    margin-bottom: 50px;
    z-index: 30;
}

.dashboard-container {
    background-color: #ffffff;
    border-radius: var(--radius-md);
    padding: 30px 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.dashboard-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 10px 15px;
}

.dashboard-card:not(:last-child) {
    border-right: 1px solid var(--border-color);
}

.dashboard-icon-box {
    width: 44px;
    height: 44px;
    background-color: #eff6ff;
    color: #2563eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.1rem;
}

.dashboard-info h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 6px;
}

.dashboard-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* ==========================================
   STATS BAR
   ========================================== */
.stats-bar {
    position: relative;
    margin-top: 40px;
    z-index: 20;
}

.stats-container {
    background-color: #1e3a8a;
    /* Deep blue background */
    border-radius: var(--radius-md);
    padding: 30px 40px;
    box-shadow: 0 10px 25px rgba(30, 58, 138, 0.15);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    border: none;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 20px;
}

.stat-card:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    /* Light blue divider line */
}

.stat-icon-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background-color: rgb(255, 254, 254);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.25rem;
}

.stat-info .stat-num {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
}

.stat-info .stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* ==========================================
   SECTION HEADER
   ========================================== */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-subtitle {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
    display: block;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1.2;
    color: #000000;
    margin-bottom: 20px;
}

.planscolour {
    color: #1D4ED8;
    !important
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
}

/* ==========================================
   SERVICES SECTION
   ========================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    align-items: start;
}

.service-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 30px;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    box-shadow: var(--shadow-sm);
    min-height: 560px;
}

.careercolour {
    color: #1D4ED8 !important;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: #2563eb;
    box-shadow: var(--shadow-premium);
}

/* Image reveal on hover */
.service-card-image-wrapper {
    width: 100%;
    height: 0;
    opacity: 0;
    overflow: hidden;
    transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), margin-bottom 0.4s ease;
    border-radius: var(--radius-sm);
}

.service-card:hover .service-card-image-wrapper {
    height: 180px;
    opacity: 1;
    margin-bottom: 20px;
}

.service-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card-body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-card-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: #2563EB;
    margin-bottom: 12px;
    transition: var(--transition-fast);
}

.service-card:hover .service-card-title {
    color: #2563eb;
}

.service-card-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.5;
}

/* Checklist features */
.service-card-features {
    margin-bottom: 24px;
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-card-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-main);
    font-weight: 500;
    text-align: left;
}

.feature-check {
    color: #2563eb;
    flex-shrink: 0;
}

.service-card-action {
    margin-top: auto;
}

.service-card-action .btn {
    border-radius: var(--radius-full);
    width: 100%;
    padding: 10px 20px;
    font-size: 0.9rem;
    border: 2px solid #2563eb;
    color: #2563eb;
    background-color: transparent;
    transition: var(--transition-normal);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.service-card-action .btn:hover {
    background-color: #2563eb;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.text-center {
    text-align: center;
}

/* Fallback icons styling for cards without hover images */
.service-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background-color: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: var(--transition-normal);
}

.service-card:hover .service-icon-box {
    background-color: var(--primary);
    color: #ffffff;
}

/* ==========================================
   PRICING SECTION
   ========================================== */



.plancolour {
    color: #1D4ED8 !important;
}

.pricing-toggle-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}

.toggle-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.toggle-label.text-active {
    color: var(--secondary);
}

.discount-badge {
    background-color: var(--accent);
    color: var(--secondary-dark);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: var(--radius-full);
    margin-left: 4px;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 32px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: none;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--border-hover);
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 24px;
    width: 24px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked+.slider {
    background-color: var(--primary);
}

input:focus+.slider {
    box-shadow: 0 0 1px var(--primary);
}

input:checked+.slider:before {
    transform: translateX(28px);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

.pricing-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 50px 40px;
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
    position: relative;
}

.pricing-card.popular {
    border: 2px solid var(--primary);
    box-shadow: var(--shadow-lg);
    transform: scale(1.03);
}

.popular-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--primary);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: var(--radius-full);
}

.pricing-header {
    margin-bottom: 32px;
}

.plan-name {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 12px;
}

.plan-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    min-height: 54px;
}

.plan-price {
    display: flex;
    align-items: baseline;
    margin-top: 24px;
    color: var(--secondary);
}

.plan-price .currency {
    font-size: 1.8rem;
    font-weight: 700;
    align-self: flex-start;
    margin-right: 4px;
}

.plan-price .price {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    transition: var(--transition-fast);
}

.plan-price .duration {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
}

.plan-features {
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex-grow: 1;
}

.plan-features li {
    font-size: 0.95rem;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 12px;
}

.plan-features li.unsupported {
    color: var(--text-muted);
    opacity: 0.6;
}

.feature-icon {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary);
    display: inline-flex;
    width: 20px;
}

.plan-features li.unsupported .feature-icon {
    color: var(--text-muted);
}

.pricing-footer {
    margin-top: auto;
}

/* ==========================================
   SUCCESS STORIES
   ========================================== */
.stories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.storycolour {
    color: #1D4ED8 !important;
}

.story-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 40px;
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
}

.story-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-premium);
    border-color: transparent;
}

.story-profile {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background-color: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary);
    font-family: var(--font-heading);
}

.profile-info .profile-name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary);
}

.profile-info .profile-title {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.story-impact {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.impact-tag {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: var(--radius-full);
}

.impact-tag.increase {
    background-color: #DCFCE7;
    color: #15803D;
}

.impact-tag.duration {
    background-color: #FEF9C3;
    color: #A16207;
}

.story-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.7;
}

/* ==========================================
   FAQ SECTION
   ========================================== */
.faq-accordion-wrapper {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.questions-colour {
    color: #1D4ED8 !important;
}

.faq-item {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: var(--transition-normal);
}

.faq-item:hover {
    border-color: var(--primary);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary);
    outline: none;
    transition: var(--transition-fast);
}

.faq-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition-normal);
}

.faq-question:hover .faq-icon {
    background-color: var(--primary-light);
    color: var(--primary);
}

.faq-item.active {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.faq-item.active .faq-icon {
    background-color: var(--primary);
    color: #ffffff;
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.faq-answer-content {
    padding: 0 24px 24px;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ==========================================
   CTA BANNER
   ========================================== */
.cta-banner {
    padding: 60px 0 100px;
}

.cta-container {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-lg);
    padding: 80px 40px;
    text-align: center;
    color: #ffffff;
    box-shadow: var(--shadow-premium);
    position: relative;
    overflow: hidden;
}

.cta-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 60%);
    pointer-events: none;
}

.cta-banner-content {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-desc {
    font-size: 1.15rem;
    margin-bottom: 36px;
    opacity: 0.9;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background-color: var(--secondary-dark);
    color: #94A3B8;
    padding: 80px 0 30px;
    border-top: 1px solid #1E293B;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    color: #ffffff;
    margin-bottom: 24px;
}

.footer-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 38px;
    height: 38px;
    background-color: #1E293B;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: var(--transition-normal);
}

.social-links a:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
}

.footer-links h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 24px;
    font-weight: 600;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links ul a:hover {
    color: #ffffff;
    padding-left: 4px;
}

.footer-info-item {
    font-size: 0.9rem;
    display: block;
    margin-bottom: 8px;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid #1E293B;
    text-align: center;
    font-size: 0.9rem;
}

/* ==========================================
   ANIMATIONS & REVEAL ON SCROLL
   ========================================== */
.fade-in {
    opacity: 0;
    animation: fadeIn 1s forwards;
}

.fade-in.delay-1 {
    animation-delay: 0.2s;
}

.fade-in.delay-2 {
    animation-delay: 0.4s;
}

.fade-in.delay-3 {
    animation-delay: 0.6s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Pricing Card Animation and Selection Glow Overrides */
.pricing-card.reveal.visible {
    transform: translateY(0);
}

.pricing-card.popular.reveal.visible {
    transform: translateY(0) scale(1.03);
}

.pricing-card.visible:hover {
    transform: translateY(-12px) !important;
    border-color: var(--primary) !important;
    box-shadow: 0 20px 35px -8px rgba(37, 99, 235, 0.25), 0 4px 15px rgba(37, 99, 235, 0.1) !important;
}

.pricing-card.popular.visible:hover {
    transform: translateY(-12px) scale(1.03) !important;
    box-shadow: 0 25px 45px -8px rgba(37, 99, 235, 0.4), 0 6px 20px rgba(37, 99, 235, 0.18) !important;
}

/* ==========================================
   CONTACT SECTION
   ========================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 40px;
    align-items: stretch;
}

.contact-info-panel {
    background-color: var(--secondary);
    color: #ffffff;
    padding: 50px 40px;
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.contact-info-panel::before {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.contact-info-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 16px;
    color: #ffffff;
}

.contact-info-desc {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: auto;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(var(--primary-rgb), 0.15);
    color: #60a5fa;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-detail-text h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 4px;
}

.contact-detail-text p {
    color: #cbd5e1;
    font-size: 0.9rem;
}

.contact-detail-text p a {
    color: #cbd5e1;
    transition: var(--transition-fast);
}

.contact-detail-text p a:hover {
    color: #60a5fa;
}

.contact-form-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 50px 40px;
    box-shadow: var(--shadow-lg);
}

.form-row {
    display: grid;
    grid-template-columns: auto;
    gap: 24px;
    margin-bottom: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 8px;
}

.form-group label .required {
    color: #ef4444;
    margin-left: 2px;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper .input-icon {
    position: absolute;
    left: 16px;
    color: var(--text-muted);
    pointer-events: none;
    transition: var(--transition-fast);
}

.input-wrapper input,
.input-wrapper select {
    width: 100%;
    padding: 12px 16px 12px 46px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-main);
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    transition: var(--transition-normal);
    outline: none;
}

.input-wrapper select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg fill='%2364748B' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 20px;
    padding-right: 40px;
}

.input-wrapper input::placeholder {
    color: #94a3b8;
}

.input-wrapper input:focus,
.input-wrapper select:focus {
    background-color: #ffffff;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(var(--primary-rgb), 0.1);
}

.input-wrapper input:focus+.input-icon,
.input-wrapper select:focus+.input-icon {
    color: var(--primary);
}

.contact-submit-btn {
    border: none;
    cursor: none;
    margin-top: 8px;
}

.form-message {
    margin-top: 16px;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    display: none;
    transition: var(--transition-normal);
}

.form-message.success {
    display: block;
    background-color: #dcfce7;
    color: #15803d;
    border: 1px solid #bbf7d0;
}

.form-message.error {
    display: block;
    background-color: #fee2e2;
    color: #b91c1c;
    border: 1px solid #fecaca;
}

/* ==========================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .stat-card:nth-child(2) {
        border-right: none;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
        gap: 40px;
    }

    .pricing-card.popular,
    .pricing-card.popular.reveal.visible {
        transform: scale(1);
    }

    .stories-grid {
        grid-template-columns: 1fr;
        max-width: 700px;
        margin: 0 auto;
    }

    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: 40px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }

    .nav-menu {
        display: none;
    }

    .mobile-nav-toggle {
        display: flex;
    }

    .btn-primary2 {
        display: none;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-desc {
        max-width: 100%;
        min-height: auto;
    }

    .hero-btns {
        width: 100%;
        justify-content: center;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        padding: 30px;
    }

    .stat-card {
        border-right: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
        padding-bottom: 16px;
        justify-content: flex-start;
        padding-left: 15%;
    }

    .stat-card:nth-child(3),
    .stat-card:nth-child(4) {
        border-bottom: none;
        padding-bottom: 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }

    .cta-container {
        padding: 40px 20px;
    }

    .cta-title {
        font-size: 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info-panel,
    .contact-form-card {
        padding: 40px 30px;
    }
}

@media (max-width: 480px) {
    .stats-container {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 25px 20px;
    }

    .stat-card {
        border-right: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15) !important;
        padding-bottom: 12px;
        justify-content: flex-start;
        padding-left: 10%;
    }

    .stat-card:last-child {
        border-bottom: none !important;
        padding-bottom: 0;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-btns {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .hero-btns .btn {
        width: 100%;
    }

    .pricing-card {
        padding: 30px 20px;
    }

    .contact-info-panel,
    .contact-form-card {
        padding: 30px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 16px;
    }
}

/* Logo upload styles */
.logo-wrapper {
    display: inline-flex;
    align-items: center;
}

.logo-upload-btn {
    cursor: pointer;
    background: rgba(37, 99, 235, 0.1);
    color: #2563eb;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.72rem;
    font-weight: 600;
    border: 1px dashed #2563eb;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 26px;
    white-space: nowrap;
    margin-left: 8px;
    transition: all 0.2s ease;
}

.logo-upload-btn:hover {
    background: rgba(37, 99, 235, 0.2);
}