:root {
    --primary-dark: #0b4f73;
    --primary: #0e5f8f;
    --primary-light: #2a7fad;

    --text-light: #e6f2f8;
    --text-muted: #b3d1e3;

    --white: #ffffff;
    --dark: #1a1a1a;
}

/* ===============================
   GLOBAL
================================ */
* {
    backface-visibility: hidden;
}

p {
    margin-bottom: 0.8rem;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--primary-dark);
    color: var(--text-light);
    margin: 0;
    overflow-x: hidden;
    scroll-behavior: smooth;
}


/* SECTION */
.section {
    padding: 80px 0;
}

button,
a {
    text-decoration: none !important;
}

/* ===============================
   LIGHT SECTION
================================ */
.section-light {
    background: #f5f7fa;
    color: var(--dark);
}

.section-light h2,
.section-light h5 {
    color: var(--primary-dark);
}

.section-light .text-muted-custom {
    color: #555;
}

.section-light .card-custom {
    background: #ffffff;
    color: #222;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.section-light .problem-card {
    background: #ffffff;
}

.section-light .btn-glass {
    background: rgba(0, 0, 0, 0.05);
    color: var(--primary-dark);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

/* BETTER SPACING */
h2,
h3 {
    margin-bottom: 15px;
}


/* ===============================
   NAVBAR
================================ */
.navbar {
    background: rgba(11, 79, 115, 0.9);
    backdrop-filter: blur(10px);
    transition: 0.3s ease;
}

.navbar.scrolled {
    background: rgba(8, 59, 86, 0.95);
}

/* ===============================
   HERO
================================ */
.hero {
    min-height: 80vh;
    padding-top: 80px;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}


.hero .container {
    height: 100%;
}

/* ===============================
   TYPOGRAPHY
================================ */
.heading-xl {
    font-size: 48px;
    font-weight: 300;
    line-height: 1.4;
}

.heading-lg {
    font-size: 36px;
    font-weight: 400;
}

.heading-md {
    font-size: 22px;
    font-weight: 500;
}

.text-muted-custom {
    color: var(--text-muted);
}

/* HERO TEXT */
.hero-title {
    font-size: 48px;
    font-weight: 300;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.08);
}

.hero-subtitle {
    max-width: 800px;
    margin: 20px auto;
}

.hero-support {
    color: #cfe6f3;
    max-width: 700px;
    margin: auto;
}

/* ===============================
   BUTTONS (FINAL)
================================ */
.btn-custom {
    padding: 12px 30px;
    border-radius: 40px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
    letter-spacing: 0.3px;
    backdrop-filter: blur(10px);
}


.btn-primary-custom {
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    color: white;
    box-shadow: 0 4px 15px rgba(42, 127, 173, 0.4);
    border: none;
    position: relative;
    overflow: hidden;
    transform: translateZ(0);
    border: none;
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(42, 127, 173, 0.6);
}

.btn-primary-custom:focus {
    outline: none;
}

.btn-glass {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: white;
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-3px);
}

/* ADD LIGHT SWEEP */
.btn-primary-custom::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: 0.6s;
}

.btn-primary-custom:hover::after {
    left: 100%;
}

a,
a:hover,
.btn,
.btn:hover,
.btn-custom,
.btn-custom:hover {
    text-decoration: none !important;
}

.btn-custom:active,
.btn-primary-custom:active {
    transform: scale(0.96);
}

/* ===============================
   CARD SYSTEM
================================ */
.card-custom {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    backdrop-filter: blur(12px);
    transition: all 0.3s ease;
}

.card-custom:hover {
    transform: translateY(-10px);
}

/* ===============================
   VALUE STRIP
================================ */
.value-strip {
    background: rgba(255, 255, 255, 0.03);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 25px 0;
}

.value-item {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.value-item:last-child {
    border-right: none;
}

/* ===============================
   PROBLEM SECTION
================================ */
.problem-card {
    padding: 40px;
    border-radius: 20px;
    transition: 0.3s;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.problem-card.before {
    background: rgba(255, 80, 80, 0.05);
}

.problem-card.after {
    background: rgba(42, 127, 173, 0.08);
}

.problem-list {
    list-style: none;
    padding: 0;
}

.problem-list li {
    margin-bottom: 12px;
    padding-left: 20px;
}

/* ===============================
   SOLUTIONS
================================ */
.solution-icon {
    font-size: 30px;
    color: var(--primary-light);
}

.solution-list li {
    font-size: 14px;
    margin-bottom: 8px;
}

/* ===============================
   HOW IT WORKS – PRO VERSION
================================ */

.process-wrapper {
    position: relative;
}

/* CONNECTING LINE */
.process-line {
    position: absolute;
    top: 60px;
    left: 5%;
    right: 5%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-light), transparent);
    opacity: 0.3;
}

/* STEP CARD */
.step-card-pro {
    height: 100%;
    /* 🔥 equal height fix */
    min-height: 200px;
    padding: 30px 20px;
    border-radius: 18px;
    background: #ffffff;
    text-align: center;
    position: relative;
    transition: all 0.35s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* NUMBER BADGE */
.step-badge {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(42, 127, 173, 0.4);
}

/* TITLE */
.step-card-pro h6 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #0b4f73;
}

/* DESCRIPTION */
.step-card-pro p {
    font-size: 13px;
    color: #666;
    margin: 0;
}

/* HOVER EFFECT */
.step-card-pro:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* GLOW EFFECT */
.step-card-pro:hover .step-badge {
    box-shadow: 0 10px 25px rgba(42, 127, 173, 0.6);
}

/* ===============================
   METRICS SECTION
================================ */

.metric-card {
    height: 100%;
    padding: 40px 25px;
    border-radius: 18px;
    background: #ffffff;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    text-align: center;
}

/* GLOW BACKGROUND */
.metric-card::before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    background: rgba(42, 127, 173, 0.15);
    top: -40px;
    right: -40px;
    border-radius: 50%;
    filter: blur(40px);
    transition: 0.4s;
}

.metric-card:hover::before {
    transform: scale(1.3);
}

/* NUMBER IMPROVE */
.metric-number {
    letter-spacing: 1px;
}

/* NUMBER */
.metric-number {
    font-size: 44px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

/* TEXT */
.metric-card p {
    font-size: 14px;
    color: #555;
    margin: 0 auto;
    line-height: 1.6;
    max-width: 160px;
    text-align: center;
    min-height: 42px;
}

/* HOVER */
.metric-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(6, 3, 3, 0.12);
}

/* DARK MODE SUPPORT */
.metrics-section:not(.section-light) .metric-card {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}


/* ===============================
   CTA
================================ */
.cta {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* ===============================
   FOOTER
================================ */
footer {
    background: #083b56;
}


/* Metrics text fix */
.metrics-section p {
    color: var(--text-muted);
}

/* ===============================
   ✅ FINAL BACKGROUND SYSTEM (CLEAN)
================================ */

/* DARK SECTIONS */
.solutions-section,
.metrics-section {
    background: transparent;
    color: var(--text-light);
}

/* DARK CARDS */
.solutions-section .card-custom,
.metrics-section .metric-card {
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
}

/* DARK TEXT */
.solutions-section h2,
.solutions-section h5,
.metrics-section h2 {
    color: var(--text-light);
}

.solutions-section p,
.metrics-section p {
    color: var(--text-muted);
}

/* LIGHT SECTIONS */
.section-light {
    background: #f5f7fa;
    color: var(--dark);
}

/* LIGHT CARDS */
.section-light .card-custom,
.section-light .metric-card,
.section-light .step-card-pro {
    background: #ffffff;
    color: #222;
}

/* LIGHT TEXT */
.section-light p {
    color: #555;
}

/* ===============================
   DOWNLOAD SECTION
================================ */

.download-section {
    position: relative;
}

/* CARD */
.download-card {
    height: 100%;
    padding: 40px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    color: #fff;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: 0.3s;
}

/* ICON */
.download-card i {
    opacity: 0.9;
}

/* TEXT */
.download-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
}

/* HOVER */
.download-card:hover {
    transform: translateY(-10px);
}

/* OUTLINE BUTTON FIX */
.btn-outline-dark {
    border: 1px solid #333;
    color: #333;
    border-radius: 40px;
    padding: 12px 28px;
}

.btn-outline-dark:hover {
    background: #333;
    color: #fff;
}

/* SUBTEXT */
.cta p {
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: auto;
}

/* BUTTON TWEAK */
.cta .btn-primary-custom {
    background: #ffffff;
    color: var(--primary-dark);
}

.cta .btn-primary-custom:hover {
    background: #e6f2f8;
}

/* GLASS BUTTON */
.cta .btn-glass {
    border: 1px solid rgba(255, 255, 255, 0.4);
}

/* OPTIONAL GLOW EFFECT */
.cta::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.08);
    top: -100px;
    left: -100px;
    border-radius: 50%;
    filter: blur(80px);
}

/* ===============================
   UNIQUE ABOUT SECTION
================================ */

/* ===============================
   ABOUT WHO SECTION
================================ */

.about-who {
    position: relative;
}

/* Better spacing */
.about-who p {
    font-size: 15px;
    line-height: 1.8;
}

/* Tagline style reuse */
.hero-tagline {
    letter-spacing: 2px;
    font-size: 12px;
    color: var(--text-muted);
}

/* Heading spacing */
.about-who h2 {
    margin-bottom: 15px;
}

/* ===============================
   WHAT WE DO
================================ */

.what-we-do {
    background: transparent;
}

/* LIST STYLE */
.what-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.what-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 15px;
    font-size: 15px;
    color: var(--text-muted);
}

/* CUSTOM BULLET */
.what-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: var(--primary-light);
    font-weight: bold;
}

/* HOVER EFFECT */
.what-list li:hover {
    transform: translateX(5px);
    transition: 0.3s;
}


/* LIGHT CARD FIX */
.about-box-light {
    background: #ffffff !important;
    color: #222 !important;
}

/* PHILOSOPHY STRIP */
.philosophy-strip {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    text-align: center;
}

.philosophy-strip p {
    color: rgba(255, 255, 255, 0.85);
}

/* ===============================
   PHILOSOPHY – SIGNATURE SECTION
================================ */

.philosophy-premium {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: #ffffff;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

/* MAIN TITLE */
.philosophy-title {
    font-size: 42px;
    font-weight: 300;
    line-height: 1.4;
    letter-spacing: 1px;
}

/* CONTENT */
.philosophy-content {
    max-width: 800px;
    margin: auto;
}

.philosophy-content p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
}

/* FINAL LINE (HIGHLIGHT) */
.philosophy-highlight {
    margin-top: 20px;
    font-weight: 600;
    color: #ffffff;
}

/* SUBTLE BACKGROUND GLOW */
.philosophy-premium::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.08);
    top: -150px;
    left: -150px;
    border-radius: 50%;
    filter: blur(100px);
}


/* ===============================
   OUR APPROACH (PREMIUM)
================================ */

.our-approach {
    background: transparent;
}

/* CARD */
.approach-card {
    height: 100%;
    min-height: 220px;
    padding: 30px 20px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    text-align: left;
    transition: all 0.3s ease;
}

/* STEP NUMBER */
.step-no {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-light);
    display: block;
    margin-bottom: 10px;
}

/* TITLE */
.approach-card h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

/* TEXT */
.approach-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* HOVER */
.approach-card:hover {
    transform: translateY(-10px);
}

/* LIGHT MODE SUPPORT */
.section-light .approach-card {
    background: #ffffff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.section-light .approach-card p {
    color: #555;
}

/* WHY SECTION */
.why-card {
    padding: 25px;
    border-radius: 15px;
    background: #ffffff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

.why-card:hover {
    transform: translateY(-8px);
}

/* WHY CARD TEXT FIX */
.why-card h6 {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.why-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

/* ===============================
   GLOBAL FIXES
================================ */

/* LIGHT SECTION */
.section-light {
    background: #f5f7fa;
    color: #111;
}

/* DARK SECTION */
.section-dark {
    background: var(--primary-dark);
}

/* TEXT WIDTH CONTROL */
.max-700 {
    max-width: 700px;
    margin: auto;
}

/* CARD CONSISTENCY */
.card-custom,
.about-box-light,
.why-card {
    height: 100%;
}

/* DARK MODE SUPPORT */
.section-dark .why-card {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

.section-dark .why-card p {
    color: var(--text-muted);
}

.section-dark .why-card h6 {
    color: #ffffff;
}

/* ===============================
   INSANE LEVEL CORE VALUES
================================ */

.premium-card {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    transition: all 0.4s ease;
}

/* 🔥 GLOW BORDER */
.premium-card::before {
    content: "";
    position: absolute;
    inset: -1px;
    background: linear-gradient(120deg, transparent, var(--primary-light), transparent);
    opacity: 0;
    transition: 0.4s;
    border-radius: inherit;
}

/* 🔥 INNER BACKGROUND */
.premium-card::after {
    content: "";
    position: absolute;
    inset: 1px;
    background: inherit;
    border-radius: inherit;
    z-index: 0;
}

/* CONTENT ABOVE */
.premium-card * {
    position: relative;
    z-index: 1;
}

/* HOVER MAGIC */
.premium-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(42, 127, 173, 0.25);
}

.premium-card:hover::before {
    opacity: 1;
}

/* ===============================
   ICON INSANE STYLE
================================ */

.value-icon {
    font-size: 30px;
    margin-bottom: 15px;
    display: inline-block;
    color: var(--primary-light);
    transition: 0.4s;
}

/* ICON ANIMATION */
.premium-card:hover .value-icon {
    transform: scale(1.2) rotate(5deg);
    color: var(--primary);
}

/* ===============================
   TEXT REFINEMENT
================================ */

.value-card h6 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.value-card p {
    font-size: 14px;
    line-height: 1.6;
}

/* ===============================
   LIGHT MODE DEPTH BOOST
================================ */

.section-light .premium-card {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

/* ===============================
   DARK MODE (AUTO SUPPORT)
================================ */

.section-dark .premium-card {
    background: rgba(255, 255, 255, 0.05);
}

/* ===============================
   ICON BOX
================================ */
.icon-box {
    width: 55px;
    height: 55px;
    border-radius: 12px;
    background: rgba(42, 127, 173, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 22px;
    color: var(--primary-light);
    transition: 0.4s;
}

/* ICON HOVER */
.premium-card:hover .icon-box {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    color: #fff;
}

/* ===============================
   BENEFIT CARD SPACING
================================ */
.benefit-card h6,
.usecase-card h6 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.benefit-card p,
.usecase-card p {
    font-size: 14px;
    line-height: 1.6;
}

/* ===============================
   LIGHT MODE DEPTH
================================ */
.section-light .premium-card {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

/* DARK MODE */
.section-dark .premium-card {
    background: rgba(255, 255, 255, 0.05);
}

/* ===============================
   PREMIUM FORM
================================ */
/* ADD ARROW */

.premium-form .input-group-custom {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 12px 15px;
    transition: 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.08);
    gap: 10px;
}

/* ICON */
.input-group-custom i {
    margin-right: 10px;
    color: var(--primary-light);
    font-size: 16px;
}

/* INPUT */
.input-group-custom input,
.input-group-custom select,
.input-group-custom textarea {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-size: 14px;
}

.input-group-custom select option {
    background: #ffffff;
    color: #111;
}

/* PLACEHOLDER */
.input-group-custom input::placeholder,
.input-group-custom textarea::placeholder {
    color: var(--text-muted);
}

/* FOCUS EFFECT */
.input-group-custom:focus-within {
    border: 1px solid var(--primary-light);
    box-shadow: 0 0 15px rgba(42, 127, 173, 0.2);
    transform: translateY(-2px);
}

/* TEXTAREA FIX */
.input-group-custom.textarea {
    align-items: flex-start;
}

.input-group-custom textarea {
    resize: none;
}

/* FIX SELECT INSIDE INPUT GROUP */
.input-group-custom select {
    appearance: none;
    cursor: pointer;
    background-color: transparent;
    color: inherit;
}

/* Fix dropdown text visibility */
.input-group-custom select option {
    background: #ffffff;
    color: #222;
}

.input-group-custom select+.select-arrow {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--text-muted);
}

/* BUTTON PREMIUM */
.premium-btn {
    font-size: 15px;
    letter-spacing: 0.5px;
}

/* LIGHT MODE SUPPORT */
.section-light .input-group-custom {
    background: #ffffff;
    border: 1px solid #ddd;
}

.section-light .input-group-custom input,
.section-light .input-group-custom textarea,
.section-light .input-group-custom select {
    color: #222;
}

/* ===============================
   ERROR
================================ */
.error-text {
    color: #ff6b6b;
    font-size: 12px;
    margin-top: 5px;
}

.input-error {
    border: 1px solid #ff6b6b !important;
}

/* ===============================
   SUCCESS POPUP
================================ */
.success-popup {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: 0.4s;
    z-index: 9999;
}

.success-popup.active {
    opacity: 1;
    pointer-events: all;
}

/* BOX */
.success-box {
    background: #fff;
    color: #222;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 400px;
    animation: popupIn 0.4s ease;
}

/* ICON */
.success-icon {
    width: 60px;
    height: 60px;
    margin: auto;
    border-radius: 50%;
    background: linear-gradient(135deg, #2a7fad, #0e5f8f);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 15px;
}

/* ANIMATION */
@keyframes popupIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* MODAL STYLE */
.premium-modal {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: #fff;
    border-radius: 20px;
    border: none;
}

/* INPUT FIX */
.premium-modal .form-control {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
}

.premium-modal .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

/* FOCUS */
.premium-modal .form-control:focus {
    border-color: var(--primary-light);
    box-shadow: 0 0 10px rgba(42, 127, 173, 0.3);
}

/* PREMIUM SELECT */
.custom-select select {
    width: 100%;
    padding: 14px 16px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    appearance: none;
    outline: none;
    font-size: 14px;
}

/* ARROW */
.custom-select {
    position: relative;
}

.custom-select::after {
    content: "⌄";
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.6);
    pointer-events: none;
}

/* OPTION FIX */
.custom-select select option {
    color: #222;
    background: #ffffff;
}


/* LABEL */
.input-group-custom label {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 13px;
    color: var(--text-muted);
    pointer-events: none;
    transition: 0.25s ease;
}

/* FLOAT EFFECT */
.input-group-custom input:focus+label,
.input-group-custom input:not(:placeholder-shown)+label,
.input-group-custom textarea:focus+label,
.input-group-custom textarea:not(:placeholder-shown)+label {
    top: 6px;
    font-size: 11px;
    color: var(--primary-light);
}

/* SELECT FIX */
.input-group-custom select:focus+label,
.input-group-custom select:valid+label {
    top: 6px;
    font-size: 11px;
    color: var(--primary-light);
}

.input-group-custom select {
    padding-right: 35px;
    line-height: normal;
}

.input-group-custom input,
.input-group-custom select {
    height: auto;
    padding: 10px 0;
}

.input-group-custom textarea {
    min-height: 100px;
    line-height: 1.6;
}

/* Arrow alignment fix */
.select-arrow {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    font-size: 12px;
    color: var(--text-muted);
}

.input-group-custom:hover {
    border-color: rgba(42, 127, 173, 0.4);
}

.card-custom,
.metric-card,
.step-card-pro,
.approach-card,
.premium-card {
    will-change: transform;
    transform: translateZ(0);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.card-custom:hover,
.metric-card:hover,
.approach-card:hover,
.premium-card:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.step-card-pro {
    text-align: center;
}

.step-card-pro p {
    font-size: 13.5px;
    line-height: 1.6;
}

.philosophy-content {
    line-height: 1.8;
    font-size: 15.5px;
}

.case-hidden {
    display: none;
    overflow: hidden;
    height: 0;
    opacity: 0;
}

.case-hidden.show {
    display: block;
}

.case-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}


.case-card {
    transition: box-shadow 0.3s ease;
}

.metric-box {
    padding: 15px;
    border-radius: 12px;
    background: rgba(0,0,0,0.03);
}

.case-hidden {
    display: none;
}

.case-card {
    transition: all 0.3s ease;
}

.case-card:hover {
    transform: translateY(-8px);
}

.footer a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    display: block;
    margin-bottom: 8px;
    transition: 0.3s;
}

.footer a:hover {
    color: var(--white);
    transform: translateX(3px);
}

.footer h6 {
    margin-bottom: 15px;
    font-weight: 600;
}

.footer p {
    font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .process-line {
        display: none;
    }

}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 768px) {
    .heading-xl {
        font-size: 28px;
    }

    .section {
        padding: 60px 0;
    }

    .btn-custom {
        display: inline-block;
        width: auto;
        margin: 10px auto;
    }

    .download-card {
        padding: 25px;
    }

    .philosophy-title {
        font-size: 28px;
    }
}