/* =========================================================
   INVOICEPRO ERP - PUBLIC WEBSITE
   Professional Blue / White Theme
========================================================= */

:root {
    --ip-blue: #0d6efd;
    --ip-blue-dark: #0756c9;
    --ip-blue-deep: #063b8f;
    --ip-blue-light: #eaf3ff;
    --ip-white: #ffffff;
    --ip-text: #172033;
    --ip-muted: #667085;
    --ip-border: #e5eaf2;
    --ip-bg: #f7faff;
    --ip-shadow: 0 15px 45px rgba(13, 110, 253, 0.10);
    --ip-radius: 16px;
}


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Arial,
        sans-serif;

    color: var(--ip-text);
    background: var(--ip-white);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none !important;
}

img {
    max-width: 100%;
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: linear-gradient(135deg, #0d47a1, #1976d2);

    border-bottom: 1px solid rgba(255, 255, 255, 0.15);

    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.15);
}

.navbar-custom {
    min-height: 78px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* =========================================================
   BRAND
========================================================= */

.brand {
    display: inline-flex;
    align-items: center;

    color: #ffffff !important;

    font-weight: 700;
}

.brand:hover {
    color: #ffffff !important;
}

.brand-logo {
    max-height: 52px;
    width: auto;
    object-fit: contain;
}

.brand-icon {
    width: 43px;
    height: 43px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255, 255, 255, 0.14);
    color: white;

    border-radius: 11px;

    margin-right: 10px;

    font-size: 19px;

    border: 1px solid rgba(255, 255, 255, 0.18);
}

.brand-text {
    font-size: 23px;
    font-weight: 800;
    letter-spacing: -0.5px;

    color: #ffffff !important;
}

.brand-text span {
    color: #ffffff !important;
}

.brand-text small {
    display: block;

    font-size: 8px;
    letter-spacing: 3px;

    color: rgba(255, 255, 255, 0.82) !important;

    margin-top: -5px;
    text-align: right;
}


/* =========================================================
   NAVIGATION
========================================================= */

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-links > a:not(.nav-login):not(.nav-trial) {
    color: #ffffff !important;

    font-size: 14px;
    font-weight: 600;

    transition: 0.25s ease;
}

.nav-links > a:not(.nav-login):not(.nav-trial):hover {
    color: #dbeafe !important;
}


/* =========================================================
   START FREE TRIAL BUTTON
========================================================= */

.nav-trial {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;

    padding: 10px 17px;

    color: var(--ip-blue) !important;
    background: #ffffff;

    border: 1px solid #ffffff;
    border-radius: 8px;

    font-size: 14px;
    font-weight: 700;

    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.10);

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}

.nav-trial:hover {
    color: var(--ip-blue-dark) !important;
    background: #f2f7ff;

    transform: translateY(-1px);

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.14);
}


/* =========================================================
   CUSTOMER LOGIN
========================================================= */

.nav-login {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    padding: 10px 18px;

    color: #ffffff !important;

    background: rgba(255, 255, 255, 0.10);

    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 8px;

    font-size: 14px;
    font-weight: 700;

    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.nav-login:hover {
    color: #ffffff !important;

    background: rgba(255, 255, 255, 0.18);

    border-color: rgba(255, 255, 255, 0.55);

    transform: translateY(-1px);
}


/* =========================================================
   MOBILE MENU BUTTON
========================================================= */

.mobile-menu-btn {
    display: none;

    border: 1px solid rgba(255, 255, 255, 0.30);
    outline: none;

    background: rgba(255, 255, 255, 0.10);
    color: #ffffff;

    width: 42px;
    height: 42px;

    border-radius: 9px;

    cursor: pointer;

    font-size: 18px;

    transition: 0.25s ease;
}

.mobile-menu-btn:hover {
    background: rgba(255, 255, 255, 0.18);
}


/* =========================================================
   HERO
========================================================= */

.hero {
    position: relative;

    min-height: 650px;

    display: flex;
    align-items: center;

    padding: 90px 0 110px;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #ffffff 0%,
            #f5f9ff 52%,
            #eaf3ff 100%
        );
}

.hero-bg-shape {
    position: absolute;

    border-radius: 50%;

    pointer-events: none;

    filter: blur(1px);
}

.shape-one {
    width: 500px;
    height: 500px;

    right: -250px;
    top: -200px;

    background: rgba(13, 110, 253, 0.06);
}

.shape-two {
    width: 300px;
    height: 300px;

    left: -170px;
    bottom: -160px;

    background: rgba(13, 110, 253, 0.045);
}


/* =========================================================
   HERO CONTENT
========================================================= */

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 8px 13px;

    background: #eaf3ff;
    color: var(--ip-blue);

    border: 1px solid #d5e7ff;

    border-radius: 50px;

    font-size: 12px;
    font-weight: 700;

    margin-bottom: 22px;
}

.hero-badge i {
    font-size: 13px;
}

.hero h1 {
    font-size: 52px;

    line-height: 1.13;

    letter-spacing: -1.8px;

    font-weight: 800;

    max-width: 650px;

    margin-bottom: 22px;
}

.hero h1 span {
    display: block;

    color: var(--ip-blue);
}

.hero-content > p {
    max-width: 590px;

    color: var(--ip-muted);

    font-size: 17px;

    line-height: 1.75;

    margin-bottom: 30px;
}


/* =========================================================
   HERO BUTTONS
========================================================= */

.hero-buttons {
    display: flex;
    align-items: center;

    gap: 13px;

    flex-wrap: wrap;
}

.btn-primary-custom,
.btn-outline-custom {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    min-height: 48px;

    padding: 0 23px;

    border-radius: 9px;

    font-size: 14px;
    font-weight: 700;

    transition: 0.25s ease;
}

.btn-primary-custom {
    color: white !important;

    background: var(--ip-blue);

    box-shadow:
        0 10px 25px rgba(13, 110, 253, 0.22);
}

.btn-primary-custom:hover {
    color: white !important;

    background: var(--ip-blue-dark);

    transform: translateY(-2px);
}

.btn-outline-custom {
    color: var(--ip-blue) !important;

    border: 1px solid #bcd8ff;

    background: white;
}

.btn-outline-custom:hover {
    color: var(--ip-blue-dark) !important;

    border-color: var(--ip-blue);

    transform: translateY(-2px);

    box-shadow: 0 8px 20px rgba(13, 110, 253, 0.08);
}


/* =========================================================
   HERO TRUST
========================================================= */

.hero-trust {
    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 20px;

    margin-top: 30px;

    color: #667085;

    font-size: 12px;
    font-weight: 600;
}

.hero-trust div {
    display: flex;

    align-items: center;

    gap: 7px;
}

.hero-trust i {
    color: var(--ip-blue);

    font-size: 14px;
}


/* =========================================================
   DASHBOARD PREVIEW
========================================================= */

.dashboard-preview {
    position: relative;

    margin-left: 35px;

    min-height: 480px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.preview-window {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 570px;

    overflow: hidden;

    background: white;

    border: 1px solid #dce7f5;

    border-radius: 17px;

    box-shadow:
        0 30px 70px rgba(20, 70, 130, 0.16);
}


/* =========================================================
   PREVIEW TOPBAR
========================================================= */

.preview-topbar {
    height: 50px;

    display: flex;
    align-items: center;

    padding: 0 17px;

    background: #f9fbfe;

    border-bottom: 1px solid #e8edf4;
}

.preview-topbar strong {
    flex: 1;

    text-align: center;

    font-size: 11px;

    color: #536074;
}

.preview-topbar > i {
    color: #8b98aa;

    font-size: 12px;
}

.preview-dots {
    display: flex;

    gap: 5px;
}

.preview-dots span {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #cbd5e1;
}


/* =========================================================
   PREVIEW BODY
========================================================= */

.preview-body {
    display: flex;

    min-height: 390px;
}

.preview-sidebar {
    width: 64px;

    background: #f8faff;

    border-right: 1px solid #edf1f6;

    padding: 15px 11px;
}

.preview-logo {
    width: 38px;
    height: 38px;

    margin: 0 auto 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: white;

    background: var(--ip-blue);

    border-radius: 9px;

    font-size: 15px;
}

.preview-menu {
    height: 8px;

    width: 100%;

    background: #dfe7f1;

    border-radius: 20px;

    margin-bottom: 17px;
}

.preview-menu.active {
    background: #a9cdfc;
}


/* =========================================================
   PREVIEW MAIN
========================================================= */

.preview-main {
    flex: 1;

    padding: 22px;
}

.preview-heading {
    display: flex;

    align-items: center;
    justify-content: space-between;

    margin-bottom: 22px;
}

.preview-heading small {
    display: block;

    color: #98a2b3;

    font-size: 9px;

    margin-bottom: 2px;
}

.preview-heading strong {
    display: block;

    color: #26364d;

    font-size: 14px;
}

.preview-date {
    padding: 6px 9px;

    border: 1px solid #e4eaf2;

    border-radius: 6px;

    color: #7a8798;

    font-size: 9px;
}

.preview-date i {
    margin-right: 4px;
}


/* =========================================================
   PREVIEW CARDS
========================================================= */

.preview-cards {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 9px;

    margin-bottom: 18px;
}

.preview-card {
    padding: 12px;

    background: #f8faff;

    border: 1px solid #edf2f7;

    border-radius: 9px;
}

.preview-card i {
    display: block;

    color: var(--ip-blue);

    font-size: 13px;

    margin-bottom: 7px;
}

.preview-card small {
    display: block;

    color: #8995a6;

    font-size: 8px;
}

.preview-card strong {
    display: block;

    color: #26364d;

    font-size: 14px;

    margin-top: 2px;
}


/* =========================================================
   PREVIEW CHART
========================================================= */

.preview-chart {
    padding: 15px;

    border: 1px solid #edf2f7;

    border-radius: 10px;

    background: white;
}

.chart-title {
    color: #4b5565;

    font-size: 10px;
    font-weight: 700;

    margin-bottom: 17px;
}

.chart-bars {
    height: 115px;

    display: flex;
    align-items: flex-end;
    justify-content: space-around;

    gap: 7px;

    padding: 0 10px;

    border-bottom: 1px solid #edf1f6;
}

.chart-bars span {
    width: 20px;

    min-height: 10px;

    background: linear-gradient(
        to top,
        #0d6efd,
        #70aaf8
    );

    border-radius: 5px 5px 0 0;

    opacity: 0.85;
}


/* =========================================================
   FLOATING CARDS
========================================================= */

.floating-card {
    position: absolute;

    z-index: 4;

    display: flex;
    align-items: center;

    gap: 10px;

    padding: 12px 15px;

    background: white;

    border: 1px solid #e5ebf3;

    border-radius: 11px;

    box-shadow:
        0 15px 35px rgba(20, 60, 110, 0.14);

    animation: floating 4s ease-in-out infinite;
}

.floating-card i {
    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--ip-blue);

    background: #eaf3ff;

    border-radius: 8px;

    font-size: 13px;
}

.floating-card strong {
    display: block;

    font-size: 10px;

    color: #344054;
}

.floating-card small {
    display: block;

    font-size: 8px;

    color: #98a2b3;
}

.floating-card-one {
    left: -18px;
    bottom: 65px;
}

.floating-card-two {
    right: -22px;
    top: 75px;

    animation-delay: 1.3s;
}

@keyframes floating {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-7px);
    }
}


/* =========================================================
   STATS
========================================================= */

.stats-section {
    position: relative;

    z-index: 5;

    background: white;

    border-bottom: 1px solid var(--ip-border);
}

.stats-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    padding: 28px 0;
}

.stat-item {
    display: flex;

    flex-direction: column;

    align-items: center;

    text-align: center;

    padding: 8px 15px;

    border-right: 1px solid #edf1f5;
}

.stat-item:last-child {
    border-right: 0;
}

.stat-item i {
    color: var(--ip-blue);

    font-size: 19px;

    margin-bottom: 7px;
}

.stat-item strong {
    color: #27364b;

    font-size: 14px;
}

.stat-item span {
    color: #98a2b3;

    font-size: 11px;
}


/* =========================================================
   GENERAL SECTION
========================================================= */

.section {
    padding: 100px 0;
}

.section-heading {
    max-width: 720px;

    margin: 0 auto 55px;

    text-align: center;
}

.section-label {
    display: inline-block;

    color: var(--ip-blue);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.7px;

    margin-bottom: 12px;
}

.section-heading h2,
.why-content h2 {
    color: #172033;

    font-size: 38px;

    line-height: 1.2;

    letter-spacing: -1px;

    font-weight: 800;

    margin-bottom: 15px;
}

.section-heading h2 span,
.why-content h2 span {
    color: var(--ip-blue);
}

.section-heading p,
.why-content > p {
    color: var(--ip-muted);

    font-size: 15px;

    line-height: 1.75;

    margin-bottom: 0;
}


/* =========================================================
   FEATURE CARDS
========================================================= */

.feature-card {
    height: 100%;

    padding: 29px 26px;

    margin-bottom: 25px;

    background: white;

    border: 1px solid var(--ip-border);

    border-radius: var(--ip-radius);

    box-shadow: 0 6px 20px rgba(20, 50, 90, 0.035);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.feature-card:hover {
    transform: translateY(-6px);

    border-color: #cfe2ff;

    box-shadow: var(--ip-shadow);
}

.feature-icon {
    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--ip-blue-light);

    color: var(--ip-blue);

    border-radius: 12px;

    font-size: 20px;

    margin-bottom: 21px;
}

.feature-card h3 {
    color: #25344a;

    font-size: 17px;

    font-weight: 750;

    margin-bottom: 10px;
}

.feature-card p {
    color: var(--ip-muted);

    font-size: 13px;

    line-height: 1.7;

    margin: 0;
}


/* =========================================================
   MODULE SECTION
========================================================= */

.modules-section {
    background: var(--ip-bg);
}

.modules-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 16px;
}

.module-card {
    display: flex;

    flex-direction: column;

    align-items: flex-start;

    padding: 24px 20px;

    background: white;

    border: 1px solid var(--ip-border);

    border-radius: 13px;

    transition: 0.25s ease;
}

.module-card:hover {
    transform: translateY(-4px);

    border-color: #cfe2ff;

    box-shadow: var(--ip-shadow);
}

.module-card i {
    color: var(--ip-blue);

    font-size: 20px;

    margin-bottom: 13px;
}

.module-card strong {
    color: #27364b;

    font-size: 14px;

    margin-bottom: 2px;
}

.module-card span {
    color: #98a2b3;

    font-size: 11px;
}


/* =========================================================
   WHY SECTION
========================================================= */

.why-section {
    background: white;
}

.why-content {
    padding-right: 35px;
}

.check-list {
    margin-top: 28px;
}

.check-list div {
    display: flex;

    align-items: center;

    gap: 11px;

    color: #4d596a;

    font-size: 13px;

    font-weight: 600;

    margin-bottom: 13px;
}

.check-list i {
    width: 21px;
    height: 21px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--ip-blue-light);

    color: var(--ip-blue);

    border-radius: 50%;

    font-size: 9px;
}


/* =========================================================
   WHY VISUAL
========================================================= */

.why-visual {
    position: relative;

    padding: 35px;
}

.why-visual::before {
    content: "";

    position: absolute;

    width: 240px;
    height: 240px;

    right: 0;
    top: 0;

    background: #edf5ff;

    border-radius: 50%;

    z-index: 0;
}

.why-main-card {
    position: relative;

    z-index: 1;

    padding: 30px;

    background: white;

    border: 1px solid #dfe8f4;

    border-radius: 17px;

    box-shadow: 0 25px 60px rgba(20, 65, 120, 0.12);
}

.why-card-header {
    display: flex;

    align-items: center;

    gap: 13px;

    padding-bottom: 25px;

    margin-bottom: 25px;

    border-bottom: 1px solid #edf1f6;
}

.why-icon {
    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: white;

    background: var(--ip-blue);

    border-radius: 11px;

    font-size: 17px;
}

.why-card-header small {
    display: block;

    color: #98a2b3;

    font-size: 9px;
}

.why-card-header strong {
    display: block;

    color: #27364b;

    font-size: 14px;
}

.progress-row {
    margin-bottom: 21px;
}

.progress-row > div:first-child {
    display: flex;

    justify-content: space-between;

    margin-bottom: 7px;

    font-size: 11px;
}

.progress-row > div:first-child span {
    color: #667085;
}

.progress-row > div:first-child strong {
    color: #344054;
}

.progress {
    height: 7px;

    overflow: hidden;

    background: #edf2f7;

    border-radius: 20px;
}

.progress-bar {
    background: linear-gradient(
        90deg,
        #0d6efd,
        #6ea8fe
    );

    border-radius: 20px;
}


/* =========================================================
   CTA
========================================================= */

.cta-section {
    padding: 35px 0 100px;

    background: white;
}

.cta-box {
    position: relative;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 35px;

    overflow: hidden;

    padding: 55px 60px;

    color: white;

    background:
        linear-gradient(
            120deg,
            #0756c9,
            #0d6efd
        );

    border-radius: 20px;

    box-shadow:
        0 20px 50px rgba(13, 110, 253, 0.20);
}

.cta-box::after {
    content: "";

    position: absolute;

    width: 330px;
    height: 330px;

    right: -130px;
    top: -160px;

    border: 60px solid rgba(255, 255, 255, 0.07);

    border-radius: 50%;
}

.cta-box > div:first-child {
    position: relative;

    z-index: 1;
}

.cta-box > div:first-child > span {
    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.5px;

    opacity: 0.8;
}

.cta-box h2 {
    max-width: 650px;

    font-size: 30px;

    line-height: 1.25;

    font-weight: 800;

    margin: 8px 0 9px;
}

.cta-box p {
    margin: 0;

    font-size: 13px;

    opacity: 0.84;
}

.cta-buttons {
    position: relative;

    z-index: 2;

    display: flex;

    gap: 10px;

    flex-shrink: 0;
}

.btn-white,
.btn-transparent {
    min-height: 46px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    padding: 0 20px;

    border-radius: 8px;

    font-size: 13px;

    font-weight: 700;

    transition: 0.25s ease;
}

.btn-white {
    color: var(--ip-blue) !important;

    background: white;
}

.btn-white:hover {
    color: var(--ip-blue-dark) !important;

    transform: translateY(-2px);
}

.btn-transparent {
    color: white !important;

    border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn-transparent:hover {
    color: white !important;

    background: rgba(255, 255, 255, 0.10);

    transform: translateY(-2px);
}


/* =========================================================
   CONTACT SECTION
========================================================= */

.contact-section {
    background: var(--ip-bg);
}


/* =========================================================
   CONTACT BOXES
========================================================= */

.contact-info-box,
.contact-form-box {
    background: #ffffff;

    border: 1px solid #e8eef7;

    border-radius: 18px;

    padding: 32px;

    box-shadow:
        0 15px 45px rgba(20, 61, 120, 0.08);
}


/* =========================================================
   CONTACT HEADINGS
========================================================= */

.contact-info-box h3,
.contact-form-header h3 {
    margin: 0 0 10px;

    color: #17365d;

    font-size: 25px;

    font-weight: 700;
}

.contact-info-intro,
.contact-form-header p {
    color: #6b7890;

    line-height: 1.7;

    margin-bottom: 25px;
}


/* =========================================================
   CONTACT INFORMATION CARDS
========================================================= */

.contact-info-box .contact-card {
    display: flex;

    align-items: center;

    gap: 15px;

    width: 100%;

    min-height: 72px;

    padding: 16px;

    margin-bottom: 12px;

    background: #f7faff;

    border: 1px solid #edf2f8;

    border-radius: 12px;

    color: inherit;

    text-decoration: none !important;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease;
}

.contact-info-box .contact-card:hover {
    transform: translateY(-2px);

    background: #ffffff;

    border-color: #cfe2ff;

    box-shadow:
        0 8px 22px rgba(20, 61, 120, 0.10);

    color: inherit;
}


/* =========================================================
   CONTACT ICON
========================================================= */

.contact-info-box .contact-icon {
    width: 46px;
    height: 46px;

    min-width: 46px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #eaf3ff;

    color: #1769aa;

    border-radius: 12px;

    font-size: 18px;
}

.contact-info-box .contact-card small {
    display: block;

    color: #7c899d;

    font-size: 12px;

    margin-bottom: 3px;
}

.contact-info-box .contact-card strong {
    display: block;

    color: #17365d;

    font-size: 14px;

    font-weight: 700;

    word-break: break-word;
}


/* =========================================================
   WHATSAPP CONTACT CARD
========================================================= */

.contact-info-box .whatsapp-contact .contact-icon {
    color: #1da851;

    background: #eafaf0;
}


/* =========================================================
   CONTACT FORM HEADER
========================================================= */

.contact-form-header {
    margin-bottom: 22px;
}

.contact-form-header .section-label {
    display: inline-block;

    margin-bottom: 10px;
}


/* =========================================================
   CONTACT FORM GROUP
========================================================= */

.invoicepro-contact-form .form-group {
    margin-bottom: 20px;
}

.invoicepro-contact-form label {
    display: block;

    margin-bottom: 8px;

    color: #263b59;

    font-size: 14px;

    font-weight: 600;
}

.invoicepro-contact-form label span {
    color: #dc3545;
}


/* =========================================================
   CONTACT INPUT
========================================================= */

.contact-input {
    position: relative;
}

.contact-input > i {
    position: absolute;

    left: 15px;

    top: 50%;

    z-index: 2;

    transform: translateY(-50%);

    color: #8b9ab0;

    pointer-events: none;
}

.contact-input input,
.contact-input textarea {
    width: 100%;

    padding:
        13px
        15px
        13px
        43px;

    border: 1px solid #dce5f0;

    border-radius: 10px;

    background: #fbfdff;

    color: #263b59;

    font-size: 14px;

    outline: none;

    box-sizing: border-box;

    transition:
        border-color 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}

.contact-input textarea {
    min-height: 145px;

    resize: vertical;

    padding-top: 13px;
}

.contact-textarea > i {
    top: 20px;

    transform: none;
}


/* =========================================================
   CONTACT INPUT FOCUS
========================================================= */

.contact-input input:focus,
.contact-input textarea:focus {
    border-color: #2d7dd2;

    background: #ffffff;

    box-shadow:
        0 0 0 3px rgba(45, 125, 210, 0.10);
}

.contact-input input::placeholder,
.contact-input textarea::placeholder {
    color: #a1adbd;
}


/* =========================================================
   CONTACT SUBMIT BUTTON
========================================================= */

.contact-submit-btn {
    width: 100%;

    min-height: 50px;

    padding: 14px 20px;

    border: none;

    border-radius: 10px;

    background:
        linear-gradient(
            135deg,
            #1769aa,
            #2d8bd8
        );

    color: #ffffff;

    font-size: 15px;

    font-weight: 600;

    cursor: pointer;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.contact-submit-btn:hover {
    transform: translateY(-2px);

    box-shadow:
        0 10px 25px rgba(23, 105, 170, 0.25);
}

.contact-submit-btn i {
    margin-right: 7px;
}


/* =========================================================
   DIRECT WHATSAPP BUTTON
========================================================= */

.whatsapp-direct-wrapper {
    margin-top: 18px;

    text-align: center;
}

.whatsapp-or {
    display: block;

    margin-bottom: 12px;

    color: #8a94a6;

    font-size: 13px;

    font-weight: 600;
}

.whatsapp-direct-btn {
    width: 100%;

    min-height: 50px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    padding: 12px 20px;

    border: 1px solid #25d366;

    border-radius: 10px;

    background: #25d366;

    color: #ffffff !important;

    text-decoration: none !important;

    font-size: 15px;

    font-weight: 600;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

.whatsapp-direct-btn:hover {
    background: #1ebe5d;

    color: #ffffff !important;

    transform: translateY(-2px);

    box-shadow:
        0 10px 25px rgba(37, 211, 102, 0.22);
}

.whatsapp-direct-btn i {
    font-size: 20px;
}


/* =========================================================
   CONTACT FORM ALERTS
========================================================= */

.contact-alert {
    display: flex;

    align-items: flex-start;

    gap: 12px;

    padding: 14px 16px;

    margin-bottom: 22px;

    border-radius: 10px;
}

.contact-alert > i {
    font-size: 20px;

    margin-top: 2px;
}

.contact-alert strong {
    display: block;

    margin-bottom: 3px;

    font-size: 14px;
}

.contact-alert span {
    display: block;

    font-size: 13px;

    line-height: 1.5;
}

.contact-alert-success {
    color: #18733a;

    background: #eaf8ef;

    border: 1px solid #ccebd7;
}

.contact-alert-error {
    color: #b42318;

    background: #fff1f1;

    border: 1px solid #f3cccc;
}


/* =========================================================
   CONTACT FORM NOTE
========================================================= */

.contact-form-note {
    display: flex;

    align-items: center;

    gap: 8px;

    margin-top: 18px;

    color: #8996a8;

    font-size: 12px;
}

.contact-form-note i {
    color: #2d7dd2;
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    color: #aab5c5;

    background: #0b1d35;

    padding: 65px 0 0;
}

.footer-main {
    display: grid;

    grid-template-columns:
        1.5fr
        1fr
        1fr
        1.3fr;

    gap: 45px;

    padding-bottom: 50px;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    max-width: 190px;

    max-height: 55px;

    object-fit: contain;

    margin-bottom: 17px;
}

.footer-brand-text {
    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 15px;
}

.footer-brand-icon {
    width: 39px;
    height: 39px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: var(--ip-blue);

    color: white;

    border-radius: 9px;
}

.footer-brand-text strong {
    color: white;

    font-size: 21px;
}

.footer-brand-text strong span {
    color: #62a3ff;
}

.footer-brand p {
    color: #8998ac;

    font-size: 12px;

    line-height: 1.7;

    margin: 0;
}

.footer-column {
    display: flex;

    flex-direction: column;

    align-items: flex-start;
}

.footer-column h4 {
    color: white;

    font-size: 13px;

    font-weight: 700;

    margin-bottom: 17px;
}

.footer-column a,
.footer-column span {
    display: block;

    color: #94a3b8;

    font-size: 12px;

    margin-bottom: 10px;

    transition: 0.2s ease;
}

.footer-column a:hover {
    color: #62a3ff;
}

.footer-column i {
    width: 18px;

    color: #5d9df5;
}

.footer-bottom {
    min-height: 65px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    border-top:
        1px solid rgba(255, 255, 255, 0.08);

    color: #718197;

    font-size: 10px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .nav-links {
        gap: 16px;
    }

    .hero {
        padding: 75px 0 90px;
    }

    .hero h1 {
        font-size: 43px;
    }

    .dashboard-preview {
        margin-left: 0;

        margin-top: 55px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item:nth-child(2) {
        border-right: 0;
    }

    .stat-item:nth-child(-n + 2) {
        border-bottom: 1px solid #edf1f5;

        padding-bottom: 18px;
    }

    .stat-item:nth-child(n + 3) {
        padding-top: 18px;
    }

    .modules-grid {
        grid-template-columns:
            repeat(3, 1fr);
    }

    .footer-main {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .cta-box {
        padding: 45px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .navbar-custom {
        min-height: 68px;
    }

    .brand-logo {
        max-height: 43px;

        max-width: 180px;
    }

    .brand-text {
        font-size: 20px;
    }

    .mobile-menu-btn {
        display: block;
    }


    /* -----------------------------------------
       MOBILE NAVIGATION
    ----------------------------------------- */

    .nav-links {
        position: absolute;

        left: 15px;
        right: 15px;

        top: 68px;

        display: none;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        padding: 10px;

        background: #ffffff;

        border: 1px solid var(--ip-border);

        border-radius: 12px;

        box-shadow:
            0 15px 40px rgba(20, 50, 90, 0.13);
    }

    .nav-links.show {
        display: flex;
    }


    /* Mobile menu normal links */
    .nav-links > a:not(.nav-login):not(.nav-trial) {
        display: block;

        padding: 12px;

        border-radius: 7px;

        color: #4b5565 !important;

        font-size: 14px;
    }

    .nav-links > a:not(.nav-login):not(.nav-trial):hover {
        color: var(--ip-blue) !important;

        background: var(--ip-blue-light);
    }


    /* Mobile trial button */
    .nav-links .nav-trial {
        margin-top: 5px;

        color: #ffffff !important;

        background: var(--ip-blue);

        border-color: var(--ip-blue);

        justify-content: center;
    }

    .nav-links .nav-trial:hover {
        color: #ffffff !important;

        background: var(--ip-blue-dark);
    }


    /* Mobile login button */
    .nav-links .nav-login {
        margin-top: 8px;

        color: var(--ip-blue) !important;

        background: #ffffff;

        border: 1px solid #cfe2ff;

        justify-content: center;
    }

    .nav-links .nav-login:hover {
        color: var(--ip-blue-dark) !important;

        background: var(--ip-blue-light);

        border-color: #bcd8ff;
    }


    /* -----------------------------------------
       MOBILE HERO
    ----------------------------------------- */

    .hero {
        padding: 65px 0 70px;
    }

    .hero h1 {
        font-size: 37px;

        letter-spacing: -1px;
    }

    .hero-content > p {
        font-size: 15px;
    }

    .hero-buttons {
        flex-direction: column;

        align-items: stretch;
    }

    .btn-primary-custom,
    .btn-outline-custom {
        width: 100%;
    }

    .hero-trust {
        gap: 12px;

        flex-direction: column;

        align-items: flex-start;
    }

    .dashboard-preview {
        min-height: 390px;

        margin-top: 35px;
    }

    .preview-window {
        transform: scale(0.92);

        transform-origin: center;
    }

    .floating-card-one {
        left: -5px;

        bottom: 25px;
    }

    .floating-card-two {
        right: -5px;

        top: 45px;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .section {
        padding: 75px 0;
    }

    .section-heading {
        margin-bottom: 38px;
    }

    .section-heading h2,
    .why-content h2 {
        font-size: 30px;
    }

    .modules-grid {
        grid-template-columns:
            repeat(2, 1fr);

        gap: 11px;
    }

    .module-card {
        padding: 19px 15px;
    }

    .why-content {
        padding-right: 0;
    }

    .why-visual {
        margin-top: 35px;

        padding: 10px 0;
    }

    .cta-section {
        padding: 20px 0 75px;
    }

    .cta-box {
        flex-direction: column;

        align-items: flex-start;

        padding: 35px 28px;
    }

    .cta-box h2 {
        font-size: 25px;
    }

    .cta-buttons {
        width: 100%;

        flex-direction: column;
    }

    .btn-white,
    .btn-transparent {
        width: 100%;
    }


    /* -----------------------------------------
       MOBILE CONTACT
    ----------------------------------------- */

    .contact-info-box,
    .contact-form-box {
        padding: 22px;

        border-radius: 14px;
    }

    .contact-info-box h3,
    .contact-form-header h3 {
        font-size: 22px;
    }

    .contact-info-box .contact-card {
        min-height: 66px;

        padding: 13px;

        gap: 12px;
    }

    .contact-info-box .contact-icon {
        width: 42px;
        height: 42px;

        min-width: 42px;

        font-size: 16px;
    }

    .contact-info-box .contact-card small {
        font-size: 11px;
    }

    .contact-info-box .contact-card strong {
        font-size: 13px;
    }

    .whatsapp-direct-btn,
    .contact-submit-btn {
        min-height: 48px;

        font-size: 14px;
    }


    /* -----------------------------------------
       MOBILE FOOTER
    ----------------------------------------- */

    .footer-main {
        grid-template-columns: 1fr;

        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;

        align-items: flex-start;

        justify-content: center;

        padding: 17px 0;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .hero h1 {
        font-size: 32px;
    }

    .hero-badge {
        font-size: 10px;
    }

    .preview-window {
        transform: scale(0.78);
    }

    .dashboard-preview {
        min-height: 330px;

        margin-left: -25px;
        margin-right: -25px;
    }

    .floating-card {
        padding: 9px 11px;
    }

    .floating-card i {
        width: 28px;
        height: 28px;

        font-size: 10px;
    }

    .floating-card strong {
        font-size: 9px;
    }

    .floating-card small {
        font-size: 7px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-item {
        border-right: 0 !important;

        border-bottom:
            1px solid #edf1f5;

        padding: 16px !important;
    }

    .stat-item:last-child {
        border-bottom: 0;
    }

    .modules-grid {
        grid-template-columns: 1fr 1fr;
    }

    .module-card strong {
        font-size: 12px;
    }

    .module-card span {
        font-size: 10px;
    }

    .why-main-card {
        padding: 22px;
    }


    /* -----------------------------------------
       SMALL MOBILE CONTACT
    ----------------------------------------- */

    .contact-info-box,
    .contact-form-box {
        padding: 18px;
    }

    .contact-info-box h3,
    .contact-form-header h3 {
        font-size: 20px;
    }

    .contact-info-box .contact-card {
        padding: 11px;
    }

    .contact-info-box .contact-icon {
        width: 40px;
        height: 40px;

        min-width: 40px;
    }

    .contact-info-box .contact-card strong {
        font-size: 12px;
    }

    .contact-input input,
    .contact-input textarea {
        font-size: 13px;
    }

    .whatsapp-direct-btn {
        font-size: 13px;

        padding-left: 12px;
        padding-right: 12px;
    }
}


/* =========================================================
   LEGACY TRIAL BUTTON
   Kept for compatibility if used elsewhere
========================================================= */

.trial-btn {
    display: inline-block;

    padding: 10px 18px;

    background: #0d6efd;

    color: #fff !important;

    border-radius: 6px;

    text-decoration: none;

    font-weight: 600;

    transition: 0.3s ease;
}

.trial-btn:hover {
    background: #084298;

    color: #fff !important;

    text-decoration: none;
}