/* ====================================================================== */
/* ====================================================================== */
/*                                                                        */
/*   SUNDER - JOB BOOKING PLATFORM                                        */
/*   STYLES.CSS - MAIN STYLESHEET                                         */
/*                                                                        */
/*   Color Scheme: Green & Blue                                          */
/*   Green Primary:   #0d7c66                                             */
/*   Green Dark:      #095e4d                                             */
/*   Green Light:     #14b8a6                                             */
/*   Green Pale:      #ccfbf1                                             */
/*   Blue Primary:    #1e40af                                             */
/*   Blue Dark:       #1e3a8a                                             */
/*   Blue Light:      #3b82f6                                             */
/*   Blue Pale:       #dbeafe                                             */
/*                                                                        */
/*   ==================================================================   */
/*   TABLE OF CONTENTS                                                   */
/*   ==================================================================   */
/*                                                                        */
/*   1.   CSS RESET & GLOBAL STYLES                                       */
/*   2.   CSS CUSTOM PROPERTIES (VARIABLES)                               */
/*   3.   TYPOGRAPHY                                                      */
/*   4.   UTILITY CLASSES                                                 */
/*   5.   BUTTONS                                                         */
/*   6.   CONTAINER & LAYOUT HELPERS                                      */
/*   7.   SKIP LINK & ACCESSIBILITY                                      */
/*   8.   PRELOADER                                                       */
/*   9.   SCROLL PROGRESS BAR                                             */
/*   10.  BACK TO TOP BUTTON                                              */
/*   11.  ANNOUNCEMENT BAR                                                */
/*   12.  HEADER & NAVIGATION                                             */
/*   13.  HAMBURGER MENU                                                  */
/*   14.  MOBILE NAVIGATION                                               */
/*   15.  HERO SECTION                                                    */
/*   16.  BRANDS SECTION                                                  */
/*   17.  SECTION HEADERS                                                 */
/*   18.  ABOUT SECTION                                                   */
/*   19.  STATS COUNTER SECTION                                           */
/*   20.  FUNCTION SECTION                                               */
/*   21.  IMPACT SECTION                                                  */
/*   22.  FEATURES SECTION                                                */
/*   23.  TESTIMONIALS SECTION                                            */
/*   24.  FAQ SECTION                                                     */
/*   25.  CTA SECTION                                                     */
/*   26.  CONTACT SECTION                                                 */
/*   27.  NEWSLETTER SECTION                                              */
/*   28.  FOOTER                                                          */
/*   29.  MODALS (Login & Signup)                                         */
/*   30.  FORMS                                                           */
/*   31.  ANIMATIONS & KEYFRAMES                                          */
/*   32.  RESPONSIVE DESIGN                                               */
/*   33.  SCROLL ANIMATIONS                                               */
/*   34.  PRINT STYLES                                                    */
/*   35.  SCROLLBAR STYLES                                                */
/*   36.  DARK MODE (Optional)                                            */
/*                                                                        */
/* ====================================================================== */
/* ====================================================================== */

/* ====================================================================== */
/* 1. CSS RESET & GLOBAL STYLES                                           */
/* ====================================================================== */

/* Box sizing reset */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* HTML base styles */
html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    text-size-adjust: 100%;
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

/* Body base styles */
body {
    font-family: 'Inter', 'Poppins', 'Roboto', -apple-system, BlinkMacSystemFont,
        'Segoe UI', Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: #1a202c;
    background-color: #ffffff;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: opacity 0.3s ease;
}

/* Remove default margins from common elements */
h1, h2, h3, h4, h5, h6,
p, ul, ol, li,
figure, figcaption,
blockquote, dl, dd {
    margin: 0;
    padding: 0;
}

/* List reset */
ul, ol {
    list-style: none;
}

/* Link reset */
a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease, background-color 0.3s ease;
}

/* Image reset */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Form element reset */
input, textarea, select, button {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    border: none;
    outline: none;
    background: none;
}

/* Button reset */
button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* Table reset */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* Section reset */
section {
    position: relative;
}

/* ====================================================================== */
/* 2. CSS CUSTOM PROPERTIES (VARIABLES)                                    */
/* ====================================================================== */

:root {
    /* ----- GREEN COLORS ----- */
    --green-50: #ecfdf5;
    --green-100: #d1fae5;
    --green-200: #a7f3d0;
    --green-300: #6ee7b7;
    --green-400: #34d399;
    --green-500: #10b981;
    --green-600: #0d7c66;
    --green-700: #095e4d;
    --green-800: #065f46;
    --green-900: #064e3b;
    --green-pale: #ccfbf1;
    --green-gradient: linear-gradient(135deg, #0d7c66 0%, #14b8a6 100%);
    --green-gradient-dark: linear-gradient(135deg, #095e4d 0%, #0d7c66 100%);
    --green-gradient-light: linear-gradient(135deg, #14b8a6 0%, #34d399 100%);

    /* ----- BLUE COLORS ----- */
    --blue-50: #eff6ff;
    --blue-100: #dbeafe;
    --blue-200: #bfdbfe;
    --blue-300: #93c5fd;
    --blue-400: #60a5fa;
    --blue-500: #3b82f6;
    --blue-600: #2563eb;
    --blue-700: #1d4ed8;
    --blue-800: #1e40af;
    --blue-900: #1e3a8a;
    --blue-pale: #dbeafe;
    --blue-gradient: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    --blue-gradient-dark: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    --blue-gradient-light: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);

    /* ----- COMBINED GRADIENTS ----- */
    --gradient-green-blue: linear-gradient(135deg, #0d7c66 0%, #1e40af 100%);
    --gradient-blue-green: linear-gradient(135deg, #1e40af 0%, #0d7c66 100%);
    --gradient-green-blue-light: linear-gradient(135deg, #14b8a6 0%, #3b82f6 100%);
    --gradient-green-blue-dark: linear-gradient(135deg, #095e4d 0%, #1e3a8a 100%);

    /* ----- NEUTRAL COLORS ----- */
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --black: #000000;

    /* ----- ACCENT COLORS ----- */
    --accent-red: #ef4444;
    --accent-orange: #f97316;
    --accent-yellow: #f59e0b;
    --accent-purple: #8b5cf6;
    --accent-pink: #ec4899;
    --accent-indigo: #6366f1;

    /* ----- TEXT COLORS ----- */
    --text-primary: #1a202c;
    --text-secondary: #4a5568;
    --text-tertiary: #718096;
    --text-light: #a0aec0;
    --text-white: #ffffff;
    --text-green: #0d7c66;
    --text-blue: #1e40af;

    /* ----- BACKGROUND COLORS ----- */
    --bg-white: #ffffff;
    --bg-light: #f9fafb;
    --bg-gray: #f3f4f6;
    --bg-green-light: #ecfdf5;
    --bg-blue-light: #eff6ff;
    --bg-green-pale: #ccfbf1;
    --bg-blue-pale: #dbeafe;
    --bg-dark: #111827;
    --bg-darker: #0f172a;

    /* ----- BORDER COLORS ----- */
    --border-light: #e5e7eb;
    --border-default: #d1d5db;
    --border-dark: #9ca3af;
    --border-green: #0d7c66;
    --border-blue: #1e40af;

    /* ----- SHADOWS ----- */
    --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-green: 0 4px 14px 0 rgba(13, 124, 102, 0.25);
    --shadow-green-lg: 0 10px 30px 0 rgba(13, 124, 102, 0.3);
    --shadow-blue: 0 4px 14px 0 rgba(30, 64, 175, 0.25);
    --shadow-blue-lg: 0 10px 30px 0 rgba(30, 64, 175, 0.3);
    --shadow-inner: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);

    /* ----- BORDER RADIUS ----- */
    --radius-xs: 0.125rem;
    --radius-sm: 0.25rem;
    --radius-md: 0.375rem;
    --radius-lg: 0.5rem;
    --radius-xl: 0.75rem;
    --radius-2xl: 1rem;
    --radius-3xl: 1.5rem;
    --radius-full: 9999px;

    /* ----- SPACING ----- */
    --space-0: 0;
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    --space-32: 8rem;

    /* ----- TRANSITIONS ----- */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-slower: 0.7s ease;
    --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);

    /* ----- Z-INDEX ----- */
    --z-base: 1;
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal-backdrop: 1040;
    --z-modal: 1050;
    --z-popover: 1060;
    --z-tooltip: 1070;
    --z-preloader: 9999;

    /* ----- FONT SIZES ----- */
    --fs-xs: 0.75rem;
    --fs-sm: 0.875rem;
    --fs-base: 1rem;
    --fs-lg: 1.125rem;
    --fs-xl: 1.25rem;
    --fs-2xl: 1.5rem;
    --fs-3xl: 1.875rem;
    --fs-4xl: 2.25rem;
    --fs-5xl: 3rem;
    --fs-6xl: 3.75rem;
    --fs-7xl: 4.5rem;

    /* ----- LINE HEIGHTS ----- */
    --lh-tight: 1.25;
    --lh-snug: 1.375;
    --lh-normal: 1.5;
    --lh-relaxed: 1.7;
    --lh-loose: 2;

    /* ----- LETTER SPACING ----- */
    --ls-tighter: -0.05em;
    --ls-tight: -0.025em;
    --ls-normal: 0em;
    --ls-wide: 0.025em;
    --ls-wider: 0.05em;
    --ls-widest: 0.1em;

    /* ----- CONTAINER WIDTH ----- */
    --container-max-width: 1280px;
    --container-padding: 1.5rem;

    /* ----- HEADER HEIGHT ----- */
    --header-height: 80px;
    --header-top-height: 40px;
}

/* ====================================================================== */
/* 3. TYPOGRAPHY                                                          */
/* ====================================================================== */

/* Headings */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-weight: 700;
    line-height: var(--lh-tight);
    color: var(--text-primary);
    letter-spacing: var(--ls-tight);
}

h1 {
    font-size: var(--fs-5xl);
    font-weight: 800;
    line-height: 1.15;
}

h2 {
    font-size: var(--fs-4xl);
    font-weight: 700;
    line-height: 1.2;
}

h3 {
    font-size: var(--fs-2xl);
    font-weight: 600;
    line-height: 1.3;
}

h4 {
    font-size: var(--fs-xl);
    font-weight: 600;
    line-height: 1.4;
}

h5 {
    font-size: var(--fs-lg);
    font-weight: 600;
    line-height: 1.4;
}

h6 {
    font-size: var(--fs-base);
    font-weight: 600;
    line-height: 1.5;
}

/* Paragraphs */
p {
    margin-bottom: 1rem;
    line-height: var(--lh-relaxed);
}

p:last-child {
    margin-bottom: 0;
}

/* Strong and emphasis */
strong, b {
    font-weight: 700;
}

em, i {
    font-style: italic;
}

/* Small text */
small {
    font-size: var(--fs-sm);
}

/* Mark */
mark {
    background-color: var(--green-100);
    color: var(--green-700);
    padding: 0.1rem 0.3rem;
    border-radius: var(--radius-sm);
}

/* Blockquote */
blockquote {
    border-left: 4px solid var(--green-600);
    padding-left: 1.5rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: var(--text-secondary);
}

/* Code */
code, pre {
    font-family: 'Courier New', Consolas, Monaco, monospace;
    font-size: 0.9em;
}

code {
    background-color: var(--gray-100);
    padding: 0.15rem 0.4rem;
    border-radius: var(--radius-sm);
    color: var(--green-700);
}

pre {
    background-color: var(--gray-800);
    color: var(--gray-100);
    padding: 1rem;
    border-radius: var(--radius-lg);
    overflow-x: auto;
    line-height: 1.5;
}

/* Lists */
ul, ol {
    padding-left: 1.5rem;
}

ul li, ol li {
    margin-bottom: 0.5rem;
}

/* Horizontal rule */
hr {
    border: none;
    height: 1px;
    background: var(--border-light);
    margin: 2rem 0;
}

/* ====================================================================== */
/* 4. UTILITY CLASSES                                                      */
/* ====================================================================== */

/* Text alignment */
.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-justify { text-align: justify; }

/* Text colors */
.text-green { color: var(--green-600); }
.text-blue { color: var(--blue-800); }
.text-white { color: var(--white); }
.text-dark { color: var(--gray-900); }
.text-gray { color: var(--gray-500); }
.text-light { color: var(--gray-400); }

/* Text transform */
.text-uppercase { text-transform: uppercase; }
.text-lowercase { text-transform: lowercase; }
.text-capitalize { text-transform: capitalize; }

/* Font weights */
.font-light { font-weight: 300; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }

/* Display */
.d-none { display: none; }
.d-block { display: block; }
.d-inline { display: inline; }
.d-inline-block { display: inline-block; }
.d-flex { display: flex; }
.d-grid { display: grid; }

/* Flex utilities */
.flex-row { flex-direction: row; }
.flex-column { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.flex-nowrap { flex-wrap: nowrap; }
.justify-start { justify-content: flex-start; }
.justify-center { justify-content: center; }
.justify-end { justify-content: flex-end; }
.justify-between { justify-content: space-between; }
.justify-around { justify-content: space-around; }
.align-start { align-items: flex-start; }
.align-center { align-items: center; }
.align-end { align-items: flex-end; }

/* Margin utilities */
.m-0 { margin: 0; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }

/* Padding utilities */
.p-0 { padding: 0; }
.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.p-10 { padding: 2.5rem; }
.p-12 { padding: 3rem; }

/* Width */
.w-full { width: 100%; }
.w-auto { width: auto; }
.w-50 { width: 50%; }

/* Height */
.h-full { height: 100%; }
.h-auto { height: auto; }

/* Position */
.position-relative { position: relative; }
.position-absolute { position: absolute; }
.position-fixed { position: fixed; }
.position-sticky { position: sticky; }

/* Overflow */
.overflow-hidden { overflow: hidden; }
.overflow-auto { overflow: auto; }
.overflow-visible { overflow: visible; }
.overflow-x-hidden { overflow-x: hidden; }
.overflow-y-hidden { overflow-y: hidden; }

/* Border radius */
.rounded { border-radius: var(--radius-md); }
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-xl { border-radius: var(--radius-xl); }
.rounded-2xl { border-radius: var(--radius-2xl); }
.rounded-full { border-radius: var(--radius-full); }

/* Shadow */
.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }
.shadow-xl { box-shadow: var(--shadow-xl); }

/* Visibility */
.visible { visibility: visible; }
.invisible { visibility: hidden; }

/* Opacity */
.opacity-0 { opacity: 0; }
.opacity-50 { opacity: 0.5; }
.opacity-75 { opacity: 0.75; }
.opacity-100 { opacity: 1; }

/* ====================================================================== */
/* 5. BUTTONS                                                              */
/* ====================================================================== */

/* Base button */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 0.025em;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    border: 2px solid transparent;
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    -webkit-tap-highlight-color: transparent;
}

.btn:focus {
    outline: 2px solid var(--blue-400);
    outline-offset: 2px;
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn i {
    font-size: 1rem;
    line-height: 1;
}

/* Button sizes */
.btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 1rem 2.25rem;
    font-size: 1.05rem;
}

.btn-full {
    width: 100%;
    display: flex;
}

/* Primary button (Green) */
.btn-primary {
    background: var(--green-gradient);
    color: var(--white);
    border-color: var(--green-600);
    box-shadow: var(--shadow-green);
}

.btn-primary:hover {
    background: var(--green-gradient-dark);
    border-color: var(--green-700);
    box-shadow: var(--shadow-green-lg);
    transform: translateY(-2px);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: var(--shadow-sm);
}

/* Primary button ripple effect */
.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

/* Outline button */
.btn-outline {
    background: transparent;
    color: var(--green-600);
    border-color: var(--green-600);
}

.btn-outline:hover {
    background: var(--green-600);
    color: var(--white);
    border-color: var(--green-600);
    transform: translateY(-2px);
    box-shadow: var(--shadow-green);
}

.btn-outline:active {
    transform: translateY(0);
}

/* Blue button */
.btn-blue {
    background: var(--blue-gradient);
    color: var(--white);
    border-color: var(--blue-800);
    box-shadow: var(--shadow-blue);
}

.btn-blue:hover {
    background: var(--blue-gradient-dark);
    border-color: var(--blue-900);
    box-shadow: var(--shadow-blue-lg);
    transform: translateY(-2px);
}

/* Blue outline button */
.btn-blue-outline {
    background: transparent;
    color: var(--blue-800);
    border-color: var(--blue-800);
}

.btn-blue-outline:hover {
    background: var(--blue-800);
    color: var(--white);
    border-color: var(--blue-800);
    transform: translateY(-2px);
    box-shadow: var(--shadow-blue);
}

/* White button */
.btn-white {
    background: var(--white);
    color: var(--green-600);
    border-color: var(--white);
}

.btn-white:hover {
    background: var(--gray-50);
    color: var(--green-700);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Ghost button */
.btn-ghost {
    background: transparent;
    color: var(--text-primary);
    border-color: transparent;
}

.btn-ghost:hover {
    background: var(--gray-100);
    color: var(--green-600);
}

/* Social login buttons */
.btn-social {
    flex: 1;
    background: var(--white);
    color: var(--gray-700);
    border: 2px solid var(--border-light);
    font-size: 0.875rem;
}

.btn-social:hover {
    background: var(--gray-50);
    border-color: var(--gray-300);
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}

.btn-social i {
    font-size: 1.1rem;
}

.btn-google:hover { color: #db4437; }
.btn-linkedin:hover { color: #0a66c2; }
.btn-facebook:hover { color: #1877f2; }

/* ====================================================================== */
/* 6. CONTAINER & LAYOUT HELPERS                                          */
/* ====================================================================== */

.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}

.container-sm { max-width: 640px; }
.container-md { max-width: 768px; }
.container-lg { max-width: 1024px; }
.container-xl { max-width: 1280px; }
.container-fluid { max-width: 100%; }

/* Section spacing */
.section-padding {
    padding-top: var(--space-24);
    padding-bottom: var(--space-24);
}

.section-padding-sm {
    padding-top: var(--space-16);
    padding-bottom: var(--space-16);
}

.section-padding-lg {
    padding-top: var(--space-32);
    padding-bottom: var(--space-32);
}

/* ====================================================================== */
/* 7. SKIP LINK & ACCESSIBILITY                                           */
/* ====================================================================== */

.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--green-600);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    z-index: var(--z-tooltip);
    border-radius: 0 0 var(--radius-md) 0;
    font-weight: 600;
    transition: top var(--transition-fast);
}

.skip-link:focus {
    top: 0;
    color: var(--white);
}

/* Screen reader only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus visible */
:focus-visible {
    outline: 2px solid var(--blue-400);
    outline-offset: 2px;
}

/* ====================================================================== */
/* 8. PRELOADER                                                           */
/* ====================================================================== */

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-green-blue-dark);
    z-index: var(--z-preloader);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader-hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-inner {
    text-align: center;
}

.preloader-circle {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 255, 255, 0.2);
    border-top-color: var(--green-400);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    animation: spin 1s linear infinite;
}

.preloader-text {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.preloader-text .letter {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 0.1em;
    animation: preloaderBounce 1.5s ease infinite;
}

.preloader-text .letter:nth-child(1) { animation-delay: 0s; }
.preloader-text .letter:nth-child(2) { animation-delay: 0.1s; }
.preloader-text .letter:nth-child(3) { animation-delay: 0.2s; }
.preloader-text .letter:nth-child(4) { animation-delay: 0.3s; }
.preloader-text .letter:nth-child(5) { animation-delay: 0.4s; }
.preloader-text .letter:nth-child(6) { animation-delay: 0.5s; }

.preloader-bar {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    margin: 0 auto;
    overflow: hidden;
}

.preloader-bar::after {
    content: '';
    display: block;
    width: 40%;
    height: 100%;
    background: var(--green-400);
    border-radius: var(--radius-full);
    animation: preloaderProgress 1.5s ease infinite;
}

/* ====================================================================== */
/* 9. SCROLL PROGRESS BAR                                                 */
/* ====================================================================== */

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: var(--gradient-green-blue-light);
    z-index: var(--z-preloader);
    transition: width 0.1s ease;
    box-shadow: 0 0 10px rgba(13, 124, 102, 0.5);
}

/* ====================================================================== */
/* 10. BACK TO TOP BUTTON                                                 */
/* ====================================================================== */

.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--green-gradient);
    color: var(--white);
    border: none;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    cursor: pointer;
    z-index: var(--z-fixed);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-base);
    box-shadow: var(--shadow-green);
}

.back-to-top-active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--green-gradient-dark);
    transform: translateY(-5px);
    box-shadow: var(--shadow-green-lg);
}

.back-to-top:active {
    transform: translateY(-2px);
}

/* ====================================================================== */
/* 11. ANNOUNCEMENT BAR                                                   */
/* ====================================================================== */

.announcement-bar {
    background: var(--gradient-blue-green);
    color: var(--white);
    padding: 0.5rem 0;
    font-size: var(--fs-sm);
    overflow: hidden;
    transition: all var(--transition-base);
}

.announcement-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    position: relative;
}

.announcement-text {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.announcement-text i {
    color: var(--green-300);
    font-size: 1rem;
    animation: pulse 2s ease infinite;
}

.announcement-close {
    position: absolute;
    right: 1rem;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.75rem;
    transition: background var(--transition-fast);
}

.announcement-close:hover {
    background: rgba(255, 255, 255, 0.4);
}

/* ====================================================================== */
/* 12. HEADER & NAVIGATION                                                */
/* ====================================================================== */

.header {
    position: sticky;
    top: 0;
    z-index: var(--z-sticky);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

/* Header Top Bar */
.header-top {
    background: var(--bg-dark);
    color: var(--gray-300);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-top-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.header-top-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.header-top-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-300);
    font-size: var(--fs-sm);
    transition: color var(--transition-fast);
}

.header-top-link:hover {
    color: var(--green-400);
}

.header-top-link i {
    color: var(--green-400);
    font-size: 0.875rem;
}

.header-top-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.header-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    color: var(--gray-400);
    border-radius: 50%;
    font-size: 0.875rem;
    transition: all var(--transition-fast);
}

.header-social-link:hover {
    color: var(--white);
    background: var(--green-600);
    transform: translateY(-2px);
}

/* Main Navbar */
.navbar {
    padding: 0.75rem 0;
    transition: all var(--transition-base);
}

.navbar-scrolled {
    padding: 0.5rem 0;
    box-shadow: var(--shadow-md);
}

.navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

/* Logo */
.navbar-logo {
    flex-shrink: 0;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.logo-image {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: var(--radius-md);
}

.logo-text {
    font-family: 'Poppins', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    background: var(--gradient-green-blue);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
}

/* Desktop Navigation Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 1rem;
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: var(--radius-lg);
    transition: all var(--transition-fast);
    position: relative;
}

.nav-link i {
    font-size: 0.875rem;
    transition: transform var(--transition-base);
}

.nav-link:hover {
    color: var(--green-600);
    background: var(--green-50);
}

.nav-link:hover i {
    transform: scale(1.2);
}

.nav-link.active {
    color: var(--green-600);
    background: var(--green-50);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background: var(--green-gradient);
    border-radius: var(--radius-full);
}

/* Nav CTA Link */
.nav-link-cta {
    background: var(--green-gradient);
    color: var(--white) !important;
    box-shadow: var(--shadow-green);
}

.nav-link-cta:hover {
    background: var(--green-gradient-dark);
    color: var(--white) !important;
    transform: translateY(-1px);
    box-shadow: var(--shadow-green-lg);
}

.nav-link-cta.active::after {
    display: none;
}

/* Navbar Actions */
.navbar-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* ====================================================================== */
/* 13. HAMBURGER MENU                                                     */
/* ====================================================================== */

.hamburger {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    background: none;
    border: none;
    cursor: pointer;
    z-index: var(--z-fixed);
    transition: all var(--transition-base);
}

.hamburger-box {
    width: 28px;
    height: 22px;
    display: inline-block;
    position: relative;
}

.hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -2px;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
    width: 28px;
    height: 3px;
    background: var(--green-600);
    border-radius: var(--radius-full);
    position: absolute;
    transition-property: transform, opacity, top, background-color;
    transition-duration: 0.3s;
    transition-timing-function: ease;
}

.hamburger-inner::before,
.hamburger-inner::after {
    content: '';
    display: block;
}

.hamburger-inner::before {
    top: -9px;
}

.hamburger-inner::after {
    top: 9px;
}

/* Hamburger active state */
.hamburger-active .hamburger-inner {
    background-color: transparent;
}

.hamburger-active .hamburger-inner::before {
    transform: translate3d(0, 9px, 0) rotate(45deg);
    background-color: var(--green-600);
}

.hamburger-active .hamburger-inner::after {
    transform: translate3d(0, -9px, 0) rotate(-45deg);
    background-color: var(--green-600);
}

/* ====================================================================== */
/* 14. MOBILE NAVIGATION                                                  */
/* ====================================================================== */

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: var(--z-modal-backdrop);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.mobile-nav-overlay-active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav {
    position: absolute;
    top: 0;
    right: 0;
    width: 320px;
    max-width: 85%;
    height: 100%;
    background: var(--white);
    box-shadow: var(--shadow-2xl);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform var(--transition-slow);
    overflow-y: auto;
}

.mobile-nav-overlay-active .mobile-nav {
    transform: translateX(0);
}

.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--border-light);
    background: var(--bg-light);
}

.mobile-nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mobile-nav-close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    color: var(--gray-500);
    font-size: 1.25rem;
    transition: all var(--transition-fast);
}

.mobile-nav-close:hover {
    background: var(--gray-100);
    color: var(--accent-red);
}

.mobile-nav-menu {
    flex: 1;
    padding: 1rem 0;
    list-style: none;
}

.mobile-nav-item {
    position: relative;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.5rem;
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 500;
    transition: all var(--transition-fast);
    border-left: 3px solid transparent;
}

.mobile-nav-link i {
    width: 24px;
    text-align: center;
    color: var(--green-600);
    font-size: 1.1rem;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    background: var(--green-50);
    color: var(--green-600);
    border-left-color: var(--green-600);
}

.mobile-nav-cta .mobile-nav-link {
    background: var(--green-gradient);
    color: var(--white);
    margin: 0.5rem 1rem;
    border-radius: var(--radius-lg);
    padding: 0.875rem 1.5rem;
    border-left: none;
    text-align: center;
    justify-content: center;
    box-shadow: var(--shadow-green);
}

.mobile-nav-cta .mobile-nav-link i {
    color: var(--white);
}

.mobile-nav-cta .mobile-nav-link:hover {
    background: var(--green-gradient-dark);
    color: var(--white);
    border-left: none;
}

.mobile-nav-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--border-light);
}

.mobile-nav-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.mobile-nav-social .header-social-link {
    width: 36px;
    height: 36px;
    color: var(--gray-500);
    border: 1px solid var(--border-light);
}

.mobile-nav-social .header-social-link:hover {
    color: var(--white);
    background: var(--green-600);
    border-color: var(--green-600);
}

/* ====================================================================== */
/* 15. HERO SECTION                                                        */
/* ====================================================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 6rem 0 4rem;
    overflow: hidden;
    background: linear-gradient(135deg, var(--green-50) 0%, var(--blue-50) 100%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(13, 124, 102, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 30% 70%, rgba(30, 64, 175, 0.05) 0%, transparent 50%);
    z-index: 0;
}

/* Animated background shapes */
.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    filter: blur(40px);
}

.hero-shape-1 {
    width: 400px;
    height: 400px;
    background: var(--green-400);
    top: -100px;
    right: -50px;
    animation: floatShape 20s ease infinite;
}

.hero-shape-2 {
    width: 300px;
    height: 300px;
    background: var(--blue-400);
    bottom: -50px;
    left: -50px;
    animation: floatShape 25s ease infinite reverse;
}

.hero-shape-3 {
    width: 200px;
    height: 200px;
    background: var(--green-300);
    top: 40%;
    left: 20%;
    animation: floatShape 15s ease infinite;
}

.hero-shape-4 {
    width: 150px;
    height: 150px;
    background: var(--blue-300);
    top: 30%;
    right: 30%;
    animation: floatShape 18s ease infinite reverse;
}

.hero-shape-5 {
    width: 250px;
    height: 250px;
    background: var(--green-500);
    bottom: 20%;
    right: 10%;
    animation: floatShape 22s ease infinite;
}

/* Hero content */
.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Hero text */
.hero-text {
    animation: fadeInUp 1s ease;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 1rem;
    background: var(--white);
    border: 1px solid var(--green-200);
    border-radius: var(--radius-full);
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--green-500);
    border-radius: 50%;
    animation: pulse 2s ease infinite;
}

.hero-badge-text {
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--green-700);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: var(--fs-6xl);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--gray-900);
}

.hero-title-line {
    display: block;
}

.hero-title-highlight {
    background: var(--gradient-green-blue);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.hero-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 540px;
}

/* Hero action buttons */
.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

/* Hero trust indicators */
.hero-trust {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.hero-trust-item {
    text-align: left;
}

.hero-trust-number {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-green-blue);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-trust-label {
    font-size: var(--fs-sm);
    color: var(--text-tertiary);
    font-weight: 500;
}

.hero-trust-divider {
    width: 1px;
    height: 40px;
    background: var(--border-light);
}

/* Hero image */
.hero-image-wrapper {
    position: relative;
    animation: fadeInRight 1s ease 0.3s both;
}

.hero-image-container {
    position: relative;
    border-radius: var(--radius-3xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
}

.hero-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: var(--radius-3xl);
}

/* Floating cards */
.hero-floating-card {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 0.875rem 1.25rem;
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 2;
}

.hero-floating-card-1 {
    top: 10%;
    left: -5%;
    animation: floatCard 3s ease infinite;
}

.hero-floating-card-2 {
    top: 50%;
    right: -5%;
    animation: floatCard 3s ease infinite 0.5s;
}

.hero-floating-card-3 {
    bottom: 10%;
    left: 10%;
    animation: floatCard 3s ease infinite 1s;
}

.floating-card-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--white);
    flex-shrink: 0;
}

.hero-floating-card-1 .floating-card-icon {
    background: var(--green-gradient);
}

.hero-floating-card-2 .floating-card-icon {
    background: var(--blue-gradient);
}

.hero-floating-card-3 .floating-card-icon {
    background: var(--green-gradient-light);
}

.floating-card-title {
    font-size: var(--fs-sm);
    font-weight: 700;
    color: var(--text-primary);
}

.floating-card-subtitle {
    font-size: var(--fs-xs);
    color: var(--text-tertiary);
}

/* Scroll down indicator */
.hero-scroll-down {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.scroll-down-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-tertiary);
    font-size: var(--fs-xs);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}

.scroll-down-mouse {
    width: 26px;
    height: 42px;
    border: 2px solid var(--green-600);
    border-radius: var(--radius-2xl);
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.scroll-down-wheel {
    width: 4px;
    height: 8px;
    background: var(--green-600);
    border-radius: var(--radius-full);
    animation: scrollWheel 1.5s ease infinite;
}

/* ====================================================================== */
/* 16. BRANDS SECTION                                                      */
/* ====================================================================== */

.brands {
    padding: 3rem 0;
    background: var(--white);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.brands-content {
    text-align: center;
}

.brands-title {
    font-size: var(--fs-sm);
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.brands-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
}

.brand-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-400);
    font-size: 1.25rem;
    font-weight: 700;
    transition: color var(--transition-base);
}

.brand-item i {
    font-size: 1.5rem;
}

.brand-item:hover {
    color: var(--green-600);
}

/* ====================================================================== */
/* 17. SECTION HEADERS                                                     */
/* ====================================================================== */

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3.5rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 1rem;
    background: var(--green-50);
    border: 1px solid var(--green-200);
    border-radius: var(--radius-full);
    margin-bottom: 1rem;
}

.section-badge i {
    color: var(--green-600);
    font-size: 0.875rem;
}

.section-badge span {
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--green-700);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-badge-blue {
    background: var(--blue-50);
    border-color: var(--blue-200);
}

.section-badge-blue i {
    color: var(--blue-700);
}

.section-badge-blue span {
    color: var(--blue-800);
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: var(--fs-4xl);
    font-weight: 800;
    line-height: 1.2;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* ====================================================================== */
/* 18. ABOUT SECTION                                                        */
/* ====================================================================== */

.about {
    padding: var(--space-24) 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--green-50) 0%, transparent 70%);
    border-radius: 50%;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

/* About image */
.about-image-wrapper {
    position: relative;
}

.about-image-container {
    position: relative;
    border-radius: var(--radius-3xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: var(--radius-3xl);
}

.about-experience-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--gradient-green-blue);
    color: var(--white);
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-xl);
}

.experience-number {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.experience-label {
    font-size: var(--fs-xs);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.25rem;
    opacity: 0.9;
}

/* Decorative elements */
.about-image-decoration {
    position: absolute;
    border-radius: 50%;
    z-index: -1;
}

.about-image-decoration-1 {
    width: 100px;
    height: 100px;
    background: var(--green-200);
    top: -20px;
    left: -20px;
    opacity: 0.5;
}

.about-image-decoration-2 {
    width: 80px;
    height: 80px;
    background: var(--blue-200);
    bottom: -20px;
    right: -20px;
    opacity: 0.5;
}

/* About text */
.about-title {
    font-family: 'Poppins', sans-serif;
    font-size: var(--fs-3xl);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1.25rem;
    line-height: 1.3;
}

.about-description {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
}

/* About features */
.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.about-feature-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: var(--radius-lg);
    background: var(--green-50);
    color: var(--green-600);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: all var(--transition-base);
}

.about-feature:hover .about-feature-icon {
    background: var(--green-gradient);
    color: var(--white);
    transform: scale(1.1);
}

.about-feature-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.375rem;
}

.about-feature-text {
    font-size: var(--fs-sm);
    line-height: 1.6;
    color: var(--text-tertiary);
}

.about-cta {
    margin-top: 2rem;
}

/* ====================================================================== */
/* 19. STATS COUNTER SECTION                                               */
/* ====================================================================== */

.stats {
    padding: var(--space-20) 0;
    background: var(--gradient-green-blue);
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60"><circle cx="30" cy="30" r="1" fill="white" opacity="0.1"/></svg>');
    opacity: 0.3;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.stat-card {
    text-align: center;
    color: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all var(--transition-base);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
}

.stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.stat-description {
    font-size: var(--fs-sm);
    opacity: 0.8;
}

/* ====================================================================== */
/* 20. FUNCTION SECTION                                                    */
/* ====================================================================== */

.function {
    padding: var(--space-24) 0;
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.function::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--blue-50) 0%, transparent 70%);
    border-radius: 50%;
}

/* Function image */
.function-image-wrapper {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.function-image {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-3xl);
    box-shadow: var(--shadow-xl);
    margin: 0 auto;
}

/* Function steps */
.function-steps {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Timeline line */
.function-steps::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--green-200), var(--blue-200));
    transform: translateX(-50%);
    border-radius: var(--radius-full);
}

.function-step {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.function-step-reverse {
    flex-direction: row-reverse;
}

.function-step-number {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--white);
    border: 3px solid var(--green-600);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--green-600);
    z-index: 2;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.function-step:hover .function-step-number {
    background: var(--green-gradient);
    color: var(--white);
    border-color: var(--green-700);
    transform: translateX(-50%) scale(1.1);
}

.function-step-content {
    width: calc(50% - 3rem);
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 1px solid var(--border-light);
}

.function-step-content:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-3px);
}

.function-step-icon {
    width: 56px;
    height: 56px;
    background: var(--green-gradient);
    color: var(--white);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.function-step-reverse .function-step-icon {
    background: var(--blue-gradient);
}

.function-step-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.function-step-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.function-step-list {
    list-style: none;
    padding: 0;
}

.function-step-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: var(--fs-sm);
    color: var(--text-tertiary);
    margin-bottom: 0.5rem;
}

.function-step-list i {
    color: var(--green-500);
    font-size: 1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Function CTA */
.function-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem 2rem;
    background: var(--gradient-green-blue);
    border-radius: var(--radius-3xl);
    color: var(--white);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.function-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.function-cta-content {
    position: relative;
    z-index: 1;
}

.function-cta-title {
    font-family: 'Poppins', sans-serif;
    font-size: var(--fs-3xl);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.function-cta-text {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ====================================================================== */
/* 21. IMPACT SECTION                                                      */
/* ====================================================================== */

.impact {
    padding: var(--space-24) 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.impact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--blue-50) 0%, transparent 70%);
    border-radius: 50%;
}

/* Impact image */
.impact-image-wrapper {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.impact-image {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-3xl);
    box-shadow: var(--shadow-xl);
    margin: 0 auto;
}

/* Impact grid */
.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.impact-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 2rem;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.impact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--green-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
}

.impact-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-5px);
    border-color: var(--green-200);
}

.impact-card:hover::before {
    transform: scaleX(1);
}

.impact-card:nth-child(even)::before {
    background: var(--blue-gradient);
}

.impact-card:nth-child(even):hover {
    border-color: var(--blue-200);
}

.impact-card-icon {
    width: 56px;
    height: 56px;
    background: var(--green-50);
    color: var(--green-600);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    transition: all var(--transition-base);
}

.impact-card:nth-child(even) .impact-card-icon {
    background: var(--blue-50);
    color: var(--blue-700);
}

.impact-card:hover .impact-card-icon {
    background: var(--green-gradient);
    color: var(--white);
    transform: scale(1.1);
}

.impact-card:nth-child(even):hover .impact-card-icon {
    background: var(--blue-gradient);
}

.impact-card-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.impact-card-text {
    font-size: var(--fs-sm);
    line-height: 1.7;
    color: var(--text-secondary);
}

/* Impact statistics */
.impact-statistics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 3rem 2rem;
    background: var(--gradient-blue-green);
    border-radius: var(--radius-3xl);
    color: var(--white);
    position: relative;
    z-index: 1;
}

.impact-stat {
    text-align: center;
}

.impact-stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.impact-stat-label {
    font-size: var(--fs-sm);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.9;
}

/* ====================================================================== */
/* 22. FEATURES SECTION                                                    */
/* ====================================================================== */

.features {
    padding: var(--space-24) 0;
    background: var(--bg-light);
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    border: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-5px);
}

.feature-image-wrapper {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: var(--green-50);
}

.feature-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.feature-card:hover .feature-image {
    transform: scale(1.1);
}

.feature-card-body {
    padding: 1.75rem;
    flex: 1;
}

.feature-card-text-only .feature-card-body {
    padding: 2.5rem 1.75rem;
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: var(--green-gradient);
    color: var(--white);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    transition: all var(--transition-base);
}

.feature-card:nth-child(even) .feature-icon {
    background: var(--blue-gradient);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.feature-description {
    font-size: var(--fs-sm);
    line-height: 1.7;
    color: var(--text-secondary);
}

/* ====================================================================== */
/* 23. TESTIMONIALS SECTION                                                */
/* ====================================================================== */

.testimonials {
    padding: var(--space-24) 0;
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: var(--bg-light);
    border-radius: var(--radius-xl);
    padding: 2rem;
    position: relative;
    transition: all var(--transition-base);
    border: 1px solid var(--border-light);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-5px);
    background: var(--white);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--green-200);
}

.testimonial-info h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.testimonial-role {
    font-size: var(--fs-sm);
    color: var(--text-tertiary);
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
    color: #fbbf24;
}

.testimonial-stars i {
    font-size: 1rem;
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-secondary);
    font-style: italic;
}

.testimonial-quote-icon {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2rem;
    color: var(--green-100);
}

.testimonial-card:nth-child(even) .testimonial-quote-icon {
    color: var(--blue-100);
}

/* ====================================================================== */
/* 24. FAQ SECTION                                                         */
/* ====================================================================== */

.faq {
    padding: var(--space-24) 0;
    background: var(--bg-light);
    position: relative;
}

/* FAQ image */
.faq-image-wrapper {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-image {
    max-width: 400px;
    width: 100%;
    height: auto;
    border-radius: var(--radius-3xl);
    box-shadow: var(--shadow-lg);
    margin: 0 auto;
}

/* FAQ Accordion */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all var(--transition-base);
}

.faq-item:hover {
    border-color: var(--green-200);
    box-shadow: var(--shadow-sm);
}

.faq-item-active {
    border-color: var(--green-300);
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--gray-900);
    transition: all var(--transition-base);
    gap: 1rem;
}

.faq-question:hover {
    background: var(--green-50);
    color: var(--green-700);
}

.faq-item-active .faq-question {
    background: var(--green-50);
    color: var(--green-700);
}

.faq-question-text {
    flex: 1;
}

.faq-question-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--green-50);
    color: var(--green-600);
    border-radius: 50%;
    font-size: 0.875rem;
    transition: all var(--transition-base);
}

.faq-question:hover .faq-question-icon {
    background: var(--green-600);
    color: var(--white);
}

.faq-item-active .faq-question-icon {
    background: var(--green-600);
    color: var(--white);
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow);
}

.faq-answer-inner {
    padding: 0 1.5rem 1.5rem;
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.faq-answer-inner ul {
    margin-top: 0.75rem;
    padding-left: 1.5rem;
    list-style: disc;
}

.faq-answer-inner ul li {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

/* FAQ CTA */
.faq-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
}

.faq-cta-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

/* ====================================================================== */
/* 25. CTA SECTION                                                          */
/* ====================================================================== */

.cta-section {
    padding: var(--space-24) 0;
    background: var(--gradient-green-blue-dark);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(20, 184, 166, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.15) 0%, transparent 50%);
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.cta-image-wrapper {
    border-radius: var(--radius-3xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
}

.cta-image {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.cta-text {
    color: var(--white);
}

.cta-title {
    font-family: 'Poppins', sans-serif;
    font-size: var(--fs-4xl);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.25rem;
    color: var(--white);
}

.cta-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

/* CTA outline button in dark section */
.cta-section .btn-outline {
    color: var(--white);
    border-color: var(--white);
}

.cta-section .btn-outline:hover {
    background: var(--white);
    color: var(--green-600);
}

.cta-features {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: var(--fs-sm);
    color: rgba(255, 255, 255, 0.9);
}

.cta-feature i {
    color: var(--green-300);
}

/* ====================================================================== */
/* 26. CONTACT SECTION                                                     */
/* ====================================================================== */

.contact {
    padding: var(--space-24) 0;
    background: var(--white);
}

.contact-content {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.contact-info-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--bg-light);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-light);
    transition: all var(--transition-base);
}

.contact-info-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
    background: var(--white);
}

.contact-info-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.25rem;
    background: var(--green-gradient);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.contact-info-card:nth-child(even) .contact-info-icon {
    background: var(--blue-gradient);
}

.contact-info-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.contact-info-text {
    font-size: var(--fs-sm);
    line-height: 1.8;
    color: var(--text-secondary);
}

/* ====================================================================== */
/* 27. NEWSLETTER SECTION                                                  */
/* ====================================================================== */

.newsletter {
    padding: var(--space-16) 0;
    background: var(--gradient-blue-green);
    position: relative;
    overflow: hidden;
}

.newsletter::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.newsletter-text {
    color: var(--white);
}

.newsletter-title {
    font-family: 'Poppins', sans-serif;
    font-size: var(--fs-3xl);
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--white);
}

.newsletter-description {
    font-size: 1rem;
    line-height: 1.7;
    opacity: 0.9;
}

.newsletter-form {
    width: 100%;
}

.newsletter-input-group {
    display: flex;
    gap: 0.75rem;
    background: var(--white);
    padding: 0.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.newsletter-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    outline: none;
    font-size: 0.95rem;
    color: var(--text-primary);
    background: transparent;
}

.newsletter-input::placeholder {
    color: var(--gray-400);
}

.newsletter-disclaimer {
    font-size: var(--fs-xs);
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.75rem;
    text-align: center;
}

/* ====================================================================== */
/* 28. FOOTER                                                              */
/* ====================================================================== */

.footer {
    background: var(--bg-darker);
    color: var(--gray-300);
    padding-top: var(--space-20);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-green-blue);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: var(--space-12);
}

/* Footer about column */
.footer-column-about {
    max-width: 320px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.footer-logo .logo-text {
    color: var(--white);
    -webkit-text-fill-color: var(--white);
    background: none;
    font-size: 1.5rem;
}

.footer-description {
    font-size: var(--fs-sm);
    line-height: 1.7;
    color: var(--gray-400);
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: var(--gray-300);
    border-radius: 50%;
    font-size: 1rem;
    transition: all var(--transition-base);
}

.footer-social-link:hover {
    background: var(--green-gradient);
    color: var(--white);
    transform: translateY(-3px);
}

/* Footer columns */
.footer-column-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-link-item {
    margin-bottom: 0.75rem;
}

.footer-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: var(--fs-sm);
    color: var(--gray-400);
    transition: all var(--transition-fast);
}

.footer-link i {
    font-size: 0.625rem;
    color: var(--green-500);
    transition: transform var(--transition-fast);
}

.footer-link:hover {
    color: var(--white);
    padding-left: 0.25rem;
}

.footer-link:hover i {
    transform: translateX(3px);
    color: var(--green-400);
}

/* Footer bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
}

.footer-bottom-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-copyright {
    font-size: var(--fs-sm);
    color: var(--gray-400);
}

.footer-heart {
    color: var(--accent-red);
    animation: heartbeat 1.5s ease infinite;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-bottom-link {
    font-size: var(--fs-sm);
    color: var(--gray-400);
    transition: color var(--transition-fast);
}

.footer-bottom-link:hover {
    color: var(--white);
}

.footer-bottom-divider {
    color: rgba(255, 255, 255, 0.2);
}

/* Footer wave */
.footer-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
    color: rgba(255, 255, 255, 0.03);
}

.footer-wave svg {
    width: 100%;
    height: 80px;
}

/* ====================================================================== */
/* 29. MODALS (Login & Signup)                                            */
/* ====================================================================== */

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: var(--z-modal-backdrop);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.modal-overlay-active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: var(--white);
    border-radius: var(--radius-2xl);
    width: 100%;
    max-width: 450px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-2xl);
    transform: scale(0.9) translateY(20px);
    transition: transform var(--transition-base);
}

.modal-overlay-active .modal {
    transform: scale(1) translateY(0);
}

.modal-lg {
    max-width: 600px;
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-light);
    background: var(--bg-light);
    border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
}

.modal-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.modal-title i {
    color: var(--green-600);
}

.modal-close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--gray-400);
    font-size: 1.25rem;
    transition: all var(--transition-fast);
}

.modal-close:hover {
    background: var(--gray-100);
    color: var(--accent-red);
    transform: rotate(90deg);
}

.modal-body {
    padding: 1.5rem;
}

.modal-notice {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: var(--blue-50);
    border: 1px solid var(--blue-200);
    border-radius: var(--radius-lg);
    margin-bottom: 1.5rem;
    font-size: var(--fs-sm);
    color: var(--blue-800);
}

.modal-notice i {
    color: var(--blue-600);
    flex-shrink: 0;
}

/* ====================================================================== */
/* 30. FORMS                                                               */
/* ====================================================================== */

.auth-form {
    width: 100%;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-label {
    display: block;
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

.form-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.form-input-icon {
    position: absolute;
    left: 1rem;
    color: var(--gray-400);
    font-size: 1rem;
    pointer-events: none;
    transition: color var(--transition-fast);
}

.form-input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 2.75rem;
    border: 2px solid var(--border-light);
    border-radius: var(--radius-lg);
    font-size: 0.95rem;
    color: var(--text-primary);
    background: var(--white);
    transition: all var(--transition-fast);
}

.form-input:focus {
    border-color: var(--green-500);
    box-shadow: 0 0 0 3px rgba(13, 124, 102, 0.1);
}

.form-input:focus + .form-input-icon,
.form-input-wrapper:focus-within .form-input-icon {
    color: var(--green-600);
}

.form-input::placeholder {
    color: var(--gray-400);
}

/* Password toggle */
.password-toggle {
    position: absolute;
    right: 1rem;
    background: none;
    border: none;
    color: var(--gray-400);
    cursor: pointer;
    font-size: 1rem;
    padding: 0.25rem;
    transition: color var(--transition-fast);
}

.password-toggle:hover {
    color: var(--green-600);
}

/* Form error */
.form-error {
    display: block;
    font-size: var(--fs-xs);
    color: var(--accent-red);
    margin-top: 0.375rem;
    min-height: 1rem;
}

/* Form options */
.form-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

/* Custom checkbox */
.form-checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: var(--fs-sm);
    color: var(--text-secondary);
}

.form-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.form-checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-default);
    border-radius: var(--radius-sm);
    position: relative;
    transition: all var(--transition-fast);
    flex-shrink: 0;
}

.form-checkbox input[type="checkbox"]:checked + .form-checkbox-custom {
    background: var(--green-gradient);
    border-color: var(--green-600);
}

.form-checkbox input[type="checkbox"]:checked + .form-checkbox-custom::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
    font-size: 0.625rem;
}

.form-checkbox-label {
    line-height: 1.5;
}

/* Form link */
.form-link {
    font-size: var(--fs-sm);
    color: var(--green-600);
    font-weight: 600;
    transition: color var(--transition-fast);
}

.form-link:hover {
    color: var(--green-700);
    text-decoration: underline;
}

/* Form divider */
.form-divider {
    display: flex;
    align-items: center;
    margin: 1.5rem 0;
    gap: 1rem;
}

.form-divider::before,
.form-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border-light);
}

.form-divider-text {
    font-size: var(--fs-sm);
    color: var(--text-tertiary);
    font-weight: 500;
}

/* Social login */
.social-login {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

/* Form footer */
.form-footer-text {
    text-align: center;
    font-size: var(--fs-sm);
    color: var(--text-tertiary);
}

/* Account type selector */
.account-type-selector {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.account-type-option {
    cursor: pointer;
}

.account-type-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.account-type-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem 1rem;
    border: 2px solid var(--border-light);
    border-radius: var(--radius-xl);
    text-align: center;
    transition: all var(--transition-base);
}

.account-type-card i {
    font-size: 2rem;
    color: var(--gray-400);
    transition: color var(--transition-base);
}

.account-type-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--gray-700);
}

.account-type-desc {
    font-size: var(--fs-xs);
    color: var(--text-tertiary);
}

.account-type-option input[type="radio"]:checked + .account-type-card {
    border-color: var(--green-500);
    background: var(--green-50);
}

.account-type-option input[type="radio"]:checked + .account-type-card i {
    color: var(--green-600);
}

.account-type-option input[type="radio"]:checked + .account-type-card .account-type-name {
    color: var(--green-700);
}

/* Password strength */
.password-strength {
    margin-top: 0.5rem;
}

.password-strength-bar {
    width: 100%;
    height: 4px;
    background: var(--gray-200);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.password-strength-fill {
    height: 100%;
    width: 0%;
    background: var(--accent-red);
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
}

.password-strength-text {
    font-size: var(--fs-xs);
    color: var(--text-tertiary);
    margin-top: 0.25rem;
    display: block;
}

/* Body no scroll */
.body-no-scroll {
    overflow: hidden;
}

/* ====================================================================== */
/* 31. ANIMATIONS & KEYFRAMES                                             */
/* ====================================================================== */

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.2); }
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    10%, 30% { transform: scale(1.1); }
    20% { transform: scale(0.95); }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-40px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(40px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes floatShape {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(30px, -30px) scale(1.1);
    }
    50% {
        transform: translate(-20px, 20px) scale(0.95);
    }
    75% {
        transform: translate(20px, 30px) scale(1.05);
    }
}

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes scrollWheel {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(15px);
        opacity: 0;
    }
}

@keyframes preloaderBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes preloaderProgress {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(500%);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

@keyframes slideInRight {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes scaleIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(13, 124, 102, 0.2);
    }
    50% {
        box-shadow: 0 0 20px rgba(13, 124, 102, 0.5);
    }
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes slideUp {
    0% {
        transform: translateY(100%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideDown {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes scaleUp {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes rotateIn {
    0% {
        transform: rotate(-180deg) scale(0);
        opacity: 0;
    }
    100% {
        transform: rotate(0) scale(1);
        opacity: 1;
    }
}

@keyframes flipIn {
    0% {
        transform: perspective(400px) rotateY(90deg);
        opacity: 0;
    }
    100% {
        transform: perspective(400px) rotateY(0deg);
        opacity: 1;
    }
}

@keyframes zoomIn {
    0% {
        transform: scale(0.3);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes wiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-3deg); }
    75% { transform: rotate(3deg); }
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

@keyframes ripple {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    100% {
        transform: scale(4);
        opacity: 0;
    }
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes countUp {
    0% {
        transform: translateY(20px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideInLeft {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes pop {
    0% {
        transform: scale(0);
    }
    80% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blinkCursor {
    50% { border-color: transparent; }
}

@keyframes confetti {
    0% {
        transform: translateY(0) rotate(0);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(720deg);
        opacity: 0;
    }
}

@keyframes ringPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(13, 124, 102, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(13, 124, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(13, 124, 102, 0);
    }
}

/* ====================================================================== */
/* 32. RESPONSIVE DESIGN                                                   */
/* ====================================================================== */

/* ---------------------------------------------------------------------- */
/* LARGE DESKTOP: 1200px and below                                         */
/* ---------------------------------------------------------------------- */
@media (max-width: 1200px) {
    :root {
        --container-padding: 2rem;
    }

    .hero-title {
        font-size: var(--fs-5xl);
    }

    .impact-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-content {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }

    .footer-column:nth-child(5) {
        display: none;
    }
}

/* ---------------------------------------------------------------------- */
/* DESKTOP: 1024px and below                                              */
/* ---------------------------------------------------------------------- */
@media (max-width: 1024px) {
    :root {
        --fs-5xl: 2.5rem;
        --fs-6xl: 3rem;
        --fs-7xl: 3.5rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-text {
        max-width: 600px;
        margin: 0 auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-trust {
        justify-content: center;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-image-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }

    .about-features {
        grid-template-columns: 1fr 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }

    .cta-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .cta-actions {
        justify-content: center;
    }

    .cta-features {
        justify-content: center;
    }

    .contact-info {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .newsletter-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .footer-column-about {
        grid-column: 1 / -1;
        max-width: 100%;
    }

    /* Timeline becomes single column */
    .function-steps::before {
        left: 30px;
    }

    .function-step,
    .function-step-reverse {
        flex-direction: row;
        padding-left: 80px;
    }

    .function-step-number {
        left: 30px;
    }

    .function-step-content {
        width: 100%;
    }
}

/* ---------------------------------------------------------------------- */
/* TABLET: 768px and below                                                */
/* ---------------------------------------------------------------------- */
@media (max-width: 768px) {
    :root {
        --fs-4xl: 2rem;
        --fs-5xl: 2.25rem;
        --fs-6xl: 2.5rem;
        --container-padding: 1rem;
    }

    /* Hide header top bar */
    .header-top {
        display: none;
    }

    /* Hide desktop nav */
    .nav-menu {
        display: none;
    }

    /* Hide navbar actions (use hamburger instead) */
    .navbar-actions {
        display: none;
    }

    /* Show hamburger */
    .hamburger {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Hero */
    .hero {
        min-height: auto;
        padding: 4rem 0 3rem;
    }

    .hero-title {
        font-size: var(--fs-5xl);
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-trust {
        gap: 1rem;
    }

    .hero-trust-number {
        font-size: 1.5rem;
    }

    .hero-trust-divider {
        height: 30px;
    }

    .hero-floating-card {
        display: none;
    }

    .hero-scroll-down {
        display: none;
    }

    /* Brands */
    .brands-list {
        gap: 1.5rem;
    }

    .brand-item {
        font-size: 1rem;
    }

    /* Section headers */
    .section-title {
        font-size: var(--fs-4xl);
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

    /* About */
    .about-features {
        grid-template-columns: 1fr;
    }

    /* Stats */
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .stat-card {
        padding: 1.25rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    /* Function */
    .function-step-content {
        padding: 1.5rem;
    }

    .function-cta {
        padding: 2rem 1.5rem;
    }

    /* Impact */
    .impact-grid {
        grid-template-columns: 1fr;
    }

    .impact-statistics {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
        padding: 2rem 1rem;
    }

    .impact-stat-number {
        font-size: 2.25rem;
    }

    /* Features */
    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-image-wrapper {
        height: 180px;
    }

    /* FAQ */
    .faq-question {
        font-size: 0.95rem;
        padding: 1rem 1.25rem;
    }

    .faq-answer-inner {
        padding: 0 1.25rem 1.25rem;
        font-size: 0.9rem;
    }

    /* CTA */
    .cta-title {
        font-size: var(--fs-3xl);
    }

    /* Newsletter */
    .newsletter-input-group {
        flex-direction: column;
        background: transparent;
        box-shadow: none;
        gap: 0.75rem;
    }

    .newsletter-input {
        background: var(--white);
        padding: 0.875rem 1rem;
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    /* Forms */
    .form-row {
        grid-template-columns: 1fr;
    }

    .account-type-selector {
        grid-template-columns: 1fr;
    }

    .social-login {
        flex-direction: column;
    }

    /* Modal */
    .modal {
        max-width: 100%;
        margin: 0.5rem;
    }

    /* Back to top */
    .back-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 44px;
        height: 44px;
    }
}

/* ---------------------------------------------------------------------- */
/* MOBILE: 576px and below                                               */
/* ---------------------------------------------------------------------- */
@media (max-width: 576px) {
    :root {
        --fs-3xl: 1.5rem;
        --fs-4xl: 1.75rem;
        --fs-5xl: 2rem;
        --container-padding: 1rem;
    }

    /* Hero */
    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 0.9rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-trust {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-trust-divider {
        width: 60px;
        height: 1px;
    }

    /* Brands */
    .brands-list {
        gap: 1rem;
    }

    .brand-item {
        font-size: 0.875rem;
    }

    /* Stats */
    .stats-grid {
        grid-template-columns: 1fr;
    }

    /* Impact */
    .impact-statistics {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-column-about {
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-description {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-social {
        justify-content: center;
    }

    /* CTA features */
    .cta-features {
        flex-direction: column;
        align-items: center;
    }

    /* Announcement bar */
    .announcement-text span {
        font-size: 0.8rem;
    }

    /* Buttons */
    .btn {
        padding: 0.625rem 1.5rem;
        font-size: 0.875rem;
    }

    .btn-lg {
        padding: 0.875rem 1.75rem;
        font-size: 0.95rem;
    }
}

/* ---------------------------------------------------------------------- */
/* EXTRA SMALL MOBILE: 375px and below                                    */
/* ---------------------------------------------------------------------- */
@media (max-width: 375px) {
    :root {
        --fs-2xl: 1.25rem;
        --fs-3xl: 1.375rem;
        --fs-4xl: 1.5rem;
        --fs-5xl: 1.75rem;
    }

    .logo-text {
        font-size: 1.5rem;
    }

    .logo-image {
        width: 32px;
        height: 32px;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-badge {
        font-size: var(--fs-xs);
    }

    .section-title {
        font-size: 1.5rem;
    }

    .btn {
        padding: 0.5rem 1.25rem;
        font-size: 0.8rem;
    }

    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }
}

/* ---------------------------------------------------------------------- */
/* LANDSCAPE MODE                                                         */
/* ---------------------------------------------------------------------- */
@media (max-width: 900px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        padding: 4rem 0 2rem;
    }
}

/* ---------------------------------------------------------------------- */
/* PRINT STYLES                                                            */
/* ---------------------------------------------------------------------- */
@media print {
    .header,
    .footer,
    .hamburger,
    .mobile-nav-overlay,
    .modal-overlay,
    .back-to-top,
    .scroll-progress,
    .preloader,
    .announcement-bar,
    .hero-scroll-down,
    .hero-shapes,
    .hero-floating-card,
    .brands,
    .newsletter,
    .cta-section,
    .footer-wave {
        display: none !important;
    }

    body {
        color: black;
        background: white;
    }

    .hero {
        background: white;
        min-height: auto;
        padding: 2rem 0;
    }

    .hero-title-highlight {
        -webkit-text-fill-color: black;
        color: black;
    }

    a {
        text-decoration: underline;
        color: black;
    }

    a[href]:after {
        content: " (" attr(href) ")";
        font-size: 0.8em;
    }

    a[href^="#"]:after {
        content: "";
    }

    .section-title {
        font-size: 1.5rem;
    }
}

/* ---------------------------------------------------------------------- */
/* REDUCED MOTION                                                          */
/* ---------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .preloader {
        display: none !important;
    }
}

/* ====================================================================== */
/* 33. SCROLL ANIMATIONS                                                  */
/* ====================================================================== */

.animate-pending {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-pending.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger animation delays */
.about-feature.animate-pending:nth-child(1) { transition-delay: 0s; }
.about-feature.animate-pending:nth-child(2) { transition-delay: 0.1s; }
.about-feature.animate-pending:nth-child(3) { transition-delay: 0.2s; }
.about-feature.animate-pending:nth-child(4) { transition-delay: 0.3s; }

.function-step.animate-pending:nth-child(1) { transition-delay: 0s; }
.function-step.animate-pending:nth-child(2) { transition-delay: 0.15s; }
.function-step.animate-pending:nth-child(3) { transition-delay: 0.3s; }
.function-step.animate-pending:nth-child(4) { transition-delay: 0.45s; }
.function-step.animate-pending:nth-child(5) { transition-delay: 0.6s; }

.impact-card.animate-pending:nth-child(1) { transition-delay: 0s; }
.impact-card.animate-pending:nth-child(2) { transition-delay: 0.1s; }
.impact-card.animate-pending:nth-child(3) { transition-delay: 0.2s; }
.impact-card.animate-pending:nth-child(4) { transition-delay: 0.3s; }
.impact-card.animate-pending:nth-child(5) { transition-delay: 0.4s; }
.impact-card.animate-pending:nth-child(6) { transition-delay: 0.5s; }
.impact-card.animate-pending:nth-child(7) { transition-delay: 0.6s; }
.impact-card.animate-pending:nth-child(8) { transition-delay: 0.7s; }

.feature-card.animate-pending:nth-child(1) { transition-delay: 0s; }
.feature-card.animate-pending:nth-child(2) { transition-delay: 0.1s; }
.feature-card.animate-pending:nth-child(3) { transition-delay: 0.2s; }
.feature-card.animate-pending:nth-child(4) { transition-delay: 0.3s; }
.feature-card.animate-pending:nth-child(5) { transition-delay: 0.4s; }
.feature-card.animate-pending:nth-child(6) { transition-delay: 0.5s; }
.feature-card.animate-pending:nth-child(7) { transition-delay: 0.6s; }
.feature-card.animate-pending:nth-child(8) { transition-delay: 0.7s; }

.testimonial-card.animate-pending:nth-child(1) { transition-delay: 0s; }
.testimonial-card.animate-pending:nth-child(2) { transition-delay: 0.15s; }
.testimonial-card.animate-pending:nth-child(3) { transition-delay: 0.3s; }

.faq-item.animate-pending:nth-child(1) { transition-delay: 0s; }
.faq-item.animate-pending:nth-child(2) { transition-delay: 0.05s; }
.faq-item.animate-pending:nth-child(3) { transition-delay: 0.1s; }
.faq-item.animate-pending:nth-child(4) { transition-delay: 0.15s; }
.faq-item.animate-pending:nth-child(5) { transition-delay: 0.2s; }
.faq-item.animate-pending:nth-child(6) { transition-delay: 0.25s; }
.faq-item.animate-pending:nth-child(7) { transition-delay: 0.3s; }
.faq-item.animate-pending:nth-child(8) { transition-delay: 0.35s; }
.faq-item.animate-pending:nth-child(9) { transition-delay: 0.4s; }
.faq-item.animate-pending:nth-child(10) { transition-delay: 0.45s; }
.faq-item.animate-pending:nth-child(11) { transition-delay: 0.5s; }
.faq-item.animate-pending:nth-child(12) { transition-delay: 0.55s; }
.faq-item.animate-pending:nth-child(13) { transition-delay: 0.6s; }
.faq-item.animate-pending:nth-child(14) { transition-delay: 0.65s; }
.faq-item.animate-pending:nth-child(15) { transition-delay: 0.7s; }
.faq-item.animate-pending:nth-child(16) { transition-delay: 0.75s; }

.stat-card.animate-pending:nth-child(1) { transition-delay: 0s; }
.stat-card.animate-pending:nth-child(2) { transition-delay: 0.1s; }
.stat-card.animate-pending:nth-child(3) { transition-delay: 0.2s; }
.stat-card.animate-pending:nth-child(4) { transition-delay: 0.3s; }

.contact-info-card.animate-pending:nth-child(1) { transition-delay: 0s; }
.contact-info-card.animate-pending:nth-child(2) { transition-delay: 0.15s; }
.contact-info-card.animate-pending:nth-child(3) { transition-delay: 0.3s; }

/* ====================================================================== */
/* 34. SCROLLBAR STYLES                                                    */
/* ====================================================================== */

/* Webkit scrollbar */
::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background: var(--gray-100);
    border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb {
    background: var(--green-gradient);
    border-radius: var(--radius-full);
    border: 2px solid var(--gray-100);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--green-gradient-dark);
}

/* Firefox scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--green-500) var(--gray-100);
}

/* Modal scrollbar */
.modal::-webkit-scrollbar {
    width: 6px;
}

.modal::-webkit-scrollbar-track {
    background: var(--gray-50);
}

.modal::-webkit-scrollbar-thumb {
    background: var(--gray-300);
    border-radius: var(--radius-full);
}

/* ====================================================================== */
/* 35. SELECTION STYLES                                                    */
/* ====================================================================== */

::selection {
    background: var(--green-200);
    color: var(--green-900);
}

::-moz-selection {
    background: var(--green-200);
    color: var(--green-900);
}

/* ====================================================================== */
/* 36. ADDITIONAL UTILITIES & ENHANCEMENTS                                 */
/* ====================================================================== */

/* Image loading state */
img {
    background: var(--gray-100);
}

img[src=""],
img:not([src]) {
    opacity: 0;
}

/* Focus ring for keyboard navigation */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 2px solid var(--green-500);
    outline-offset: 2px;
    border-radius: var(--radius-sm);
}

/* Gradient text utility */
.gradient-text-green {
    background: var(--green-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradient-text-blue {
    background: var(--blue-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradient-text-green-blue {
    background: var(--gradient-green-blue);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Glass morphism effect */
.glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Gradient background animation */
.animated-gradient {
    background: linear-gradient(270deg, var(--green-600), var(--blue-800), var(--green-700), var(--blue-700));
    background-size: 400% 400%;
    animation: gradientMove 15s ease infinite;
}

/* Card hover lift */
.card-lift {
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.card-lift:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

/* Text truncate */
.text-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Line clamp */
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Aspect ratio */
.aspect-square {
    aspect-ratio: 1 / 1;
}

.aspect-video {
    aspect-ratio: 16 / 9;
}

/* Transition utilities */
.transition-fast { transition: all var(--transition-fast); }
.transition-base { transition: all var(--transition-base); }
.transition-slow { transition: all var(--transition-slow); }

/* Cursor styles */
.cursor-pointer { cursor: pointer; }
.cursor-default { cursor: default; }
.cursor-not-allowed { cursor: not-allowed; }

/* User select */
.select-none { user-select: none; }
.select-text { user-select: text; }
.select-all { user-select: all; }

/* Pointer events */
.pointer-events-none { pointer-events: none; }
.pointer-events-auto { pointer-events: auto; }

/* ====================================================================== */
/* 37. ADDITIONAL RESPONSIVE TWEAKS                                       */
/* ====================================================================== */

/* Large desktop: 1440px and up */
@media (min-width: 1440px) {
    :root {
        --container-max-width: 1400px;
    }

    .hero-title {
        font-size: var(--fs-7xl);
    }

    .section-title {
        font-size: 2.75rem;
    }
}

/* 2XL desktop: 1920px and up */
@media (min-width: 1920px) {
    :root {
        --container-max-width: 1600px;
        --fs-6xl: 4.5rem;
        --fs-7xl: 5rem;
    }
}

/* ====================================================================== */
/* 38. HIGH CONTRAST MODE                                                 */
/* ====================================================================== */
@media (high-contrast: active) {
    .btn {
        border-width: 2px;
    }

    .nav-link.active::after {
        background: currentColor;
    }

    .form-input {
        border-width: 2px;
    }
}

/* ====================================================================== */
/* 39. DARK MODE PREFERENCE                                               */
/* ====================================================================== */
@media (prefers-color-scheme: dark) {
    /* Only apply if body has dark-mode class */
    body.dark-mode {
        --text-primary: #f3f4f6;
        --text-secondary: #d1d5db;
        --text-tertiary: #9ca3af;
        --bg-white: #1f2937;
        --bg-light: #111827;
        --bg-gray: #1a202c;
        --border-light: #374151;
        --border-default: #4b5563;
        --white: #1f2937;
    }
}

/* ====================================================================== */
/* 40. SAFARI SPECIFIC FIXES                                              */
/* ====================================================================== */
@media not all and (min-resolution: 0.001dpcm) {
    @supports (-webkit-appearance: none) {
        .form-input {
            -webkit-appearance: none;
        }
    }
}

/* ====================================================================== */
/* 41. EDGE / IE FALLBACKS                                                */
/* ====================================================================== */
@supports not (backdrop-filter: blur(10px)) {
    .stat-card {
        background: rgba(13, 124, 102, 0.85);
    }

    .modal-overlay {
        background: rgba(0, 0, 0, 0.8);
    }

    .mobile-nav-overlay {
        background: rgba(0, 0, 0, 0.8);
    }

    .glass {
        background: rgba(255, 255, 255, 0.9);
    }
}

@supports not (grid-template-columns: repeat(4, 1fr)) {
    .impact-grid,
    .features-grid,
    .stats-grid,
    .impact-statistics {
        display: flex;
        flex-wrap: wrap;
    }

    .impact-card,
    .feature-card,
    .stat-card,
    .impact-stat {
        width: calc(25% - 1rem);
    }
}

@supports not (display: flex) {
    .navbar-content,
    .header-top-content,
    .hero-actions,
    .hero-trust,
    .btn,
    .nav-menu {
        display: block;
    }
}

/* ====================================================================== */
/* 42. FINAL OVERRIDES & CLEANUP                                         */
/* ====================================================================== */

/* Ensure all images have alt text styling */
img[alt] {
    font-size: var(--fs-sm);
    color: var(--gray-500);
}

/* Ensure proper stacking context */
.header { z-index: var(--z-sticky); }
.modal-overlay { z-index: var(--z-modal-backdrop); }
.modal { z-index: var(--z-modal); }
.preloader { z-index: var(--z-preloader); }
.back-to-top { z-index: var(--z-fixed); }
.scroll-progress { z-index: var(--z-preloader); }
.mobile-nav-overlay { z-index: var(--z-modal-backdrop); }
.mobile-nav { z-index: var(--z-modal); }

/* Ensure transitions are smooth on all interactive elements */
a, button, input, textarea, select {
    transition: color var(--transition-fast), background-color var(--transition-fast),
                border-color var(--transition-fast), box-shadow var(--transition-fast),
                transform var(--transition-fast), opacity var(--transition-fast);
}

/* Ensure proper text rendering */
body, h1, h2, h3, h4, h5, h6, p, span, a, li, td, th, label, input, textarea, button {
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Ensure images are responsive */
img {
    max-width: 100%;
    height: auto;
}

/* Ensure SVGs scale properly */
svg {
    max-width: 100%;
    height: auto;
}

/* Ensure iframes are responsive */
iframe {
    max-width: 100%;
}

/* Final reset for any remaining browser defaults */
*:focus {
    outline: none;
}

*:focus-visible {
    outline: 2px solid var(--green-500);
    outline-offset: 2px;
}

/* ====================================================================== */
/* END OF STYLES.CSS                                                       */
/* All styles for the Sunder Job Booking Platform                         */
/* ====================================================================== */