
/* ADDED LOCAL FONTS & CHANGED ALL TEXT TO EITHER IBM PLEX OR INTER FOR BODY COPY */

@font-face {
    font-family: 'IBM Plex Sans';
    src: url('../assets/fonts/IBMPlexSans-Static/IBMPlexSans-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'IBM Plex Sans';
    src: url('../assets/fonts/IBMPlexSans-Static/IBMPlexSans-Italic.woff2') format('woff2');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'IBM Plex Sans';
    src: url('../assets/fonts/IBMPlexSans-Static/IBMPlexSans-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'IBM Plex Sans';
    src: url('../assets/fonts/IBMPlexSans-Static/IBMPlexSans-MediumItalic.woff2') format('woff2');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'IBM Plex Sans';
    src: url('../assets/fonts/IBMPlexSans-Static/IBMPlexSans-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'IBM Plex Sans';
    src: url('../assets/fonts/IBMPlexSans-Static/IBMPlexSans-SemiBoldItalic.woff2') format('woff2');
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'IBM Plex Sans';
    src: url('../assets/fonts/IBMPlexSans-Static/IBMPlexSans-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'IBM Plex Sans';
    src: url('../assets/fonts/IBMPlexSans-Static/IBMPlexSans-BoldItalic.woff2') format('woff2');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../assets/fonts/Inter-Static/Inter_18pt-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../assets/fonts/Inter-Static/Inter_18pt-Italic.woff2') format('woff2');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../assets/fonts/Inter-Static/Inter_18pt-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../assets/fonts/Inter-Static/Inter_18pt-MediumItalic.woff2') format('woff2');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../assets/fonts/Inter-Static/Inter_18pt-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../assets/fonts/Inter-Static/Inter_18pt-SemiBoldItalic.woff2') format('woff2');
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../assets/fonts/Inter-Static/Inter_18pt-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../assets/fonts/Inter-Static/Inter_18pt-BoldItalic.woff2') format('woff2');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Helvetica Neue', Arial, sans-serif;
}

:root {
    /* Layout */
    --header-h: 80px;
    --max-width: 1512px;
    --content-width: 1358px;
    --section-space: 100px;
    --page-inline-padding: 24px;

    /* Typography */
    --font-primary: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Helvetica Neue', Arial, sans-serif;
    --font-primary-condensed: var(--font-primary);
    --font-secondary: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Primary Colors */
    --color-primary: #ff9000;
    --color-primary-light: #ffb14d;
    --color-primary-lighter: #ffb350;
    --color-primary-muted: rgba(255, 144, 0, 0.05);
    --orange-primary: #ff9000;

    /* Neutral Colors */
    --color-bg-main: #fefefc;
    --color-surface: #ecedee;
    --color-dark: #0e0f11;
    --color-text: #1e1e1e;
    --color-text-muted: #5a5a5a;
    --color-text-very-muted: rgba(30, 30, 30, 0.4);
    --color-black: #000000;
    --color-white: #ffffff;

    /* Overlay Colors */
    --overlay-dark: rgba(0, 0, 0, 0.8);
    --overlay-medium: rgba(0, 0, 0, 0.4);
    --overlay-light: rgba(0, 0, 0, 0.1);
    --pricing-card-bg: rgba(255, 247, 230, 0.5);
    --subtle-bg: rgba(30, 30, 30, 0.05);

    /* Spacing */
    --space-xs: 10px;
    --space-sm: 15px;
    --space-md: 20px;
    --space-lg: 25px;
    --space-xl: 30px;
    --space-2xl: 40px;
    --space-3xl: 50px;
    --space-4xl: 80px;
    --space-5xl: 150px;

    /* Border Radius */
    --radius-sm: 5px;
    --radius-md: 10px;
    --radius-lg: 18px;
    --radius-xl: 20px;
    --radius-pill: 50px;

    /* Shadows */
    --shadow-subtle: -5px 5px 15px 0px rgba(0, 0, 0, 0.05);
    --shadow-orange: -5px 5px 12px 0px rgba(255, 144, 0, 0.05);
    --shadow-cta: -4px 4px 65px 0px rgba(255, 144, 0, 0.4);
}

@media (max-width: 900px) {
    :root {
        --section-space: 80px;
        --page-inline-padding: 28px;
    }
}

@media (max-width: 600px) {
    :root {
        --section-space: 60px;
        --page-inline-padding: 24px;
    }
}

@media (min-width: 1400px) {
    :root {
        --page-inline-padding: 48px;
    }
}

@media (min-width: 1800px) {
    :root {
        --page-inline-padding: 80px;
    }
}

section.stats-banner,
section.transform-section,
section.feature-cards,
section.key-stats,
section.features-grid-section,
section.how-it-works-section,
section.testimonials-new,
section.pricing,
section.faq {
    padding: var(--section-space) var(--page-inline-padding);
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg-main);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main p,
main li,
footer p,
footer li {
    font-family: var(--font-secondary);
}

html, body {
    height: 100%;
}

/* UNIFIED ALL BUTTON SIZES INTO ONE SIZE FOR CONSISTENCY -DOGA */
.hero-cta,
.transform-cta,
.feature-card-cta,
.cta-button,
.login-link {
    height: 56px !important;
    padding: 16px 36px !important;
}

@media (max-width: 1024px) {
    .hero-cta,
    .transform-cta,
    .feature-card-cta,
    .cta-button,
    .login-link {
        height: 56px !important;
        padding: 16px 36px !important;
    }
}

@media (max-width: 768px) {
    .hero-cta,
    .transform-cta,
    .feature-card-cta,
    .cta-button,
    .login-link {
        height: 56px !important;
        padding: 16px 36px !important;
    }
}

