/* ==================== CSS RESET & BASE STYLES ==================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #2563EB;
    --primary-dark: #1D4ED8;
    --accent: #60A5FA;
    --background: #F8FAFC;
    --card: #FFFFFF;
    --text: #0F172A;
    --text-secondary: #64748B;
    --success: #22C55E;
    --white: #FFFFFF;
    --border: #E2E8F0;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
    --glass-bg: rgba(255, 255, 255, 0.75);
    --glass-border: rgba(255, 255, 255, 0.4);
    --glass-blur: blur(16px);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --radius-xl: 24px;
    --font-family: 'Inter', system-ui, -apple-system, sans-serif;
    --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-family);
    background-color: var(--background);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ==================== UTILITY CLASSES ==================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section__label {
    display: inline-block;
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary);
    font-weight: 600;
    font-size: 0.875rem;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.section__title {
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--text);
}

.section__subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ==================== BUTTONS ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: all var(--transition);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn--primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
}

.btn--primary:hover {
    background: var(--primary-dark);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
    transform: translateY(-2px);
}

.btn--outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn--outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn--white {
    background: var(--white);
    color: var(--primary);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

.btn--white:hover {
    background: #f1f5f9;
    transform: translateY(-2px);
}

.btn--outline-white {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.7);
    color: var(--white);
}

.btn--outline-white:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: white;
    transform: translateY(-2px);
}

.btn--lg {
    padding: 14px 32px;
    font-size: 1.05rem;
}

.btn--md {
    padding: 12px 26px;
    font-size: 0.95rem;
}

.btn--sm {
    padding: 8px 18px;
    font-size: 0.875rem;
}

.btn--full {
    width: 100%;
}

/* Ripple effect */
.btn--ripple::after {
    content: '';
    position: absolute;
    width: 100%;
    padding-top: 100%;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    opacity: 0;
    transition: transform 0.5s, opacity 0.6s;
    top: 50%;
    left: 50%;
    transform-origin: center;
    pointer-events: none;
}

.btn--ripple:active::after {
    transform: translate(-50%, -50%) scale(2.5);
    opacity: 0;
    transition: 0s;
}

/* ==================== NAVIGATION BAR ==================== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--glass-border);
    transition: box-shadow var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.navbar__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.navbar__logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text);
    letter-spacing: -0.5px;
}

.navbar__logo-icon {
    font-size: 2rem;
    color: var(--primary);
}

.navbar__logo-accent {
    color: var(--primary);
}

.navbar__links {
    display: flex;
    gap: 8px;
}

.navbar__link {
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-weight: 500;
    color: var(--text-secondary);
    transition: all var(--transition);
}

.navbar__link:hover,
.navbar__link.active {
    background: rgba(37, 99, 235, 0.08);
    color: var(--primary);
}

.navbar__actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.navbar__hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 28px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.navbar__hamburger-line {
    width: 100%;
    height: 2.5px;
    background: var(--text);
    border-radius: 2px;
    transition: all var(--transition);
}

/* ==================== MOBILE MENU ==================== */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: var(--white);
    box-shadow: var(--shadow-xl);
    z-index: 999;
    padding: 100px 32px 40px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu__links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-menu__link {
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-weight: 500;
    color: var(--text-secondary);
    transition: background 0.2s;
    font-size: 1.1rem;
}

.mobile-menu__link:hover {
    background: rgba(37, 99, 235, 0.06);
    color: var(--primary);
}

.mobile-menu__actions {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* ==================== HERO SECTION ==================== */
.hero {
    padding: 60px 24px 100px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #f0f4ff 100%);
}

.hero__container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(37, 99, 235, 0.08);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.hero__badge-icon {
    font-size: 1.2rem;
}

.hero__headline {
    font-size: clamp(2.8rem, 6vw, 4.2rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero__headline-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__subheading {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 32px;
    max-width: 520px;
}

.hero__cta {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero__trust {
    display: flex;
    gap: 32px;
}

.hero__trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

.hero__trust-icon {
    color: var(--success);
    font-size: 1.2rem;
}

/* Hero Illustration */
.hero__illustration {
    position: relative;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero__float-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-lg);
    padding: 16px 20px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: float 6s ease-in-out infinite;
}

.hero__float-card--1 {
    top: 15%;
    left: 5%;
    animation-delay: 0s;
}

.hero__float-card--2 {
    top: 55%;
    right: 5%;
    animation-delay: 1.5s;
}

.hero__float-card--3 {
    bottom: 15%;
    left: 15%;
    animation-delay: 3s;
}

.hero__float-icon {
    font-size: 2rem;
    color: var(--primary);
}

.hero__float-bars {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 50px;
}

.hero__float-bar {
    width: 8px;
    background: var(--primary);
    border-radius: 4px;
    opacity: 0.7;
}

.hero__float-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.hero__float-value {
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--primary);
}

.hero__float-pulse {
    width: 12px;
    height: 12px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.15;
    background: var(--primary);
    animation: float 8s ease-in-out infinite;
}

.hero__orb--1 {
    width: 250px;
    height: 250px;
    top: 10%;
    right: 15%;
    background: var(--accent);
}

.hero__orb--2 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    left: 10%;
    background: #8b5cf6;
    animation-delay: 2s;
}

.hero__orb--3 {
    width: 150px;
    height: 150px;
    top: 40%;
    right: 5%;
    background: var(--primary);
    animation-delay: 4s;
}

.hero__abstract-shape {
    position: absolute;
    width: 400px;
    height: 400px;
    border: 2px dashed rgba(37, 99, 235, 0.2);
    border-radius: 43% 57% 36% 64% / 46% 52% 48% 54%;
    animation: morph 12s linear infinite;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero__scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-secondary);
    font-size: 0.8rem;
    opacity: 0.7;
}

.hero__scroll-arrow {
    animation: bounce 2s infinite;
}

/* ==================== ABOUT SECTION ==================== */
.about {
    padding: 100px 24px;
    background: var(--white);
}

.about__container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about__illustration {
    display: flex;
    justify-content: center;
}

.about__illustration-main {
    position: relative;
    width: 280px;
    height: 280px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(139, 92, 246, 0.05));
    border-radius: var(--radius-xl);
    display: flex;
    justify-content: center;
    align-items: center;
}

.about__illustration-icon {
    font-size: 5rem;
    color: var(--primary);
    position: relative;
    z-index: 2;
}

.about__illustration-rings {
    position: absolute;
    inset: 0;
}

.about__ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(37, 99, 235, 0.15);
}

.about__ring--1 {
    width: 180px;
    height: 180px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.about__ring--2 {
    width: 230px;
    height: 230px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-style: dashed;
    animation: spin 20s linear infinite;
}

.about__ring--3 {
    width: 280px;
    height: 280px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-width: 1px;
    animation: spin 25s linear infinite reverse;
}

.about__illustration-dots {
    position: absolute;
    inset: 0;
}

.about__dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.6;
}

.about__dot:nth-child(1) { top: 20px; left: 40px; }
.about__dot:nth-child(2) { bottom: 40px; right: 30px; }
.about__dot:nth-child(3) { top: 60px; right: 50px; }
.about__dot:nth-child(4) { bottom: 60px; left: 50px; }

.about__text {
    color: var(--text-secondary);
    margin-bottom: 16px;
    font-size: 1.05rem;
    line-height: 1.8;
}

/* ==================== STATISTICS SECTION ==================== */
.stats {
    padding: 60px 24px;
    background: var(--background);
}

.stats__container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stats__card {
    background: var(--card);
    border-radius: var(--radius-lg);
    padding: 32px 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
}

.stats__card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.stats__icon {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.stats__number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text);
    display: block;
    margin-bottom: 4px;
}

.stats__label {
    color: var(--text-secondary);
    font-weight: 500;
}

/* ==================== FEATURES SECTION ==================== */
.features {
    padding: 100px 24px;
    background: var(--white);
}

.features__container {
    max-width: 1200px;
    margin: 0 auto;
}

.features__header {
    text-align: center;
    margin-bottom: 64px;
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}

.feature-card {
    background: var(--card);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    border: 1px solid var(--border);
    cursor: default;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent);
}

.feature-card__icon-wrapper {
    width: 56px;
    height: 56px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-card__icon {
    font-size: 1.8rem;
    color: var(--primary);
}

.feature-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.feature-card__desc {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ==================== WHY US SECTION ==================== */
.why-us {
    padding: 100px 24px;
    background: var(--background);
}

.why-us__container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-us__illustration-composition {
    position: relative;
    width: 100%;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-us__shape {
    position: absolute;
    border-radius: var(--radius-lg);
}

.why-us__shape--1 {
    width: 200px;
    height: 200px;
    background: rgba(37, 99, 235, 0.08);
    top: 20px;
    left: 20px;
    animation: float 7s ease-in-out infinite;
}

.why-us__shape--2 {
    width: 150px;
    height: 150px;
    background: rgba(139, 92, 246, 0.1);
    bottom: 30px;
    right: 30px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: float 6s ease-in-out 1s infinite;
}

.why-us__shape--3 {
    width: 120px;
    height: 120px;
    background: rgba(37, 99, 235, 0.15);
    top: 100px;
    right: 60px;
    border-radius: 50%;
    animation: pulse 4s infinite;
}

.why-us__shape--4 {
    width: 80px;
    height: 80px;
    background: var(--accent);
    opacity: 0.15;
    bottom: 60px;
    left: 60px;
    border-radius: 50%;
}

.why-us__illustration-icon {
    font-size: 5rem;
    color: var(--primary);
    z-index: 2;
    position: relative;
}

.why-us__text {
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-size: 1.05rem;
}

.why-us__checklist {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.why-us__checklist-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.why-us__check-icon {
    color: var(--success);
    font-size: 1.3rem;
}

/* ==================== TESTIMONIALS ==================== */
.testimonials {
    padding: 100px 24px;
    background: var(--white);
}

.testimonials__container {
    max-width: 1100px;
    margin: 0 auto;
}

.testimonials__header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

.testimonial-card {
    background: var(--card);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: all var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-card__stars {
    display: flex;
    gap: 2px;
    margin-bottom: 16px;
}

.star-filled {
    color: #FBBF24;
    font-size: 1.2rem;
}

.testimonial-card__text {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-card__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

.testimonial-card__author-info {
    display: flex;
    flex-direction: column;
}

.testimonial-card__name {
    font-weight: 600;
    font-size: 0.95rem;
}

.testimonial-card__role {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* ==================== FAQ ==================== */
.faq {
    padding: 100px 24px;
    background: var(--background);
}

.faq__container {
    max-width: 800px;
    margin: 0 auto;
}

.faq__header {
    text-align: center;
    margin-bottom: 56px;
}

.faq__list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq__item {
    background: var(--card);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: box-shadow var(--transition);
}

.faq__item:hover {
    box-shadow: var(--shadow-md);
}

.faq__question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: transparent;
    border: none;
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    color: var(--text);
    text-align: left;
    transition: background 0.2s;
}

.faq__question:hover {
    background: rgba(37, 99, 235, 0.03);
}

.faq__icon {
    font-size: 1.4rem;
    transition: transform 0.3s;
}

.faq__item.active .faq__icon {
    transform: rotate(180deg);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.3s;
    padding: 0 24px;
}

.faq__item.active .faq__answer {
    max-height: 300px;
    padding-bottom: 20px;
}

.faq__answer p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ==================== CTA SECTION ==================== */
.cta {
    padding: 80px 24px;
    background: linear-gradient(135deg, var(--primary) 0%, #4f46e5 100%);
    position: relative;
    overflow: hidden;
}

.cta__container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border-radius: var(--radius-xl);
    padding: 60px 40px;
    position: relative;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta__headline {
    color: white;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.cta__text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    margin-bottom: 32px;
}

.cta__buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta__decoration {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.cta__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.2;
}

.cta__orb--1 {
    width: 300px;
    height: 300px;
    background: white;
    top: -50px;
    left: -50px;
}

.cta__orb--2 {
    width: 250px;
    height: 250px;
    background: var(--accent);
    bottom: -50px;
    right: -50px;
}

/* ==================== FOOTER ==================== */
.footer {
    background: var(--text);
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 24px 30px;
}

.footer__container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 6px;
    color: white;
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 16px;
}

.footer__logo-icon {
    font-size: 1.8rem;
    color: var(--accent);
}

.footer__logo-accent {
    color: var(--accent);
}

.footer__brand-desc {
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer__social {
    display: flex;
    gap: 12px;
}

.footer__social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    color: white;
}

.footer__social-link:hover {
    background: var(--primary);
}

.footer__links-title {
    color: white;
    font-weight: 600;
    margin-bottom: 16px;
    font-size: 1rem;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__links a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.2s;
    font-size: 0.95rem;
}

.footer__links a:hover {
    color: white;
}

.footer__links--contact li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.footer__contact-icon {
    font-size: 1.1rem;
    color: var(--accent);
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.9rem;
}

.footer__bottom-links {
    display: flex;
    gap: 8px;
    align-items: center;
}

.footer__bottom-links a {
    color: rgba(255, 255, 255, 0.7);
}

.footer__bottom-links a:hover {
    color: white;
}

.footer__divider {
    opacity: 0.4;
}

/* ==================== ANIMATIONS ==================== */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.6; }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes morph {
    0% { border-radius: 43% 57% 36% 64% / 46% 52% 48% 54%; }
    50% { border-radius: 60% 40% 55% 45% / 35% 65% 35% 65%; }
    100% { border-radius: 43% 57% 36% 64% / 46% 52% 48% 54%; }
}

@keyframes spin {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(6px); }
    60% { transform: translateY(3px); }
}

.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 1024px) {
    .hero__container,
    .about__container,
    .why-us__container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .hero__content {
        order: 1;
    }

    .hero__illustration {
        order: 0;
        height: 400px;
    }

    .hero__cta,
    .hero__trust {
        justify-content: center;
    }

    .hero__trust {
        flex-wrap: wrap;
        gap: 16px;
    }

    .stats__container {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer__grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 900px) {
    .navbar__links {
        display: none;
    }

    .navbar__hamburger {
        display: flex;
    }

    .navbar__actions {
        gap: 8px;
    }

    .navbar__actions .btn--sm {
        padding: 7px 12px;
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 40px 20px 80px;
    }

    .about,
    .features,
    .why-us,
    .testimonials,
    .faq {
        padding: 70px 20px;
    }

    .stats {
        padding: 50px 20px;
    }

    .cta {
        padding: 60px 20px;
    }

    .navbar__actions .btn--outline {
        display: none;
    }

    .about__container,
    .why-us__container {
        gap: 40px;
    }

    .about__illustration-main,
    .why-us__illustration-composition {
        width: 240px;
        height: 240px;
    }

    .stats__container {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .stats__card {
        padding: 24px 14px;
    }

    .stats__number {
        font-size: 2rem;
    }

    .features__grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        padding: 24px;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }

    .hero__illustration {
        height: 340px;
    }

    .hero__float-card {
        padding: 12px 16px;
    }

    .hero__float-bar {
        width: 6px;
    }

    .hero__orb--1 {
        width: 200px;
        height: 200px;
    }

    .hero__orb--2 {
        width: 160px;
        height: 160px;
    }

    .hero__orb--3 {
        width: 120px;
        height: 120px;
    }

    .hero__abstract-shape {
        width: 300px;
        height: 300px;
    }

    .cta__container {
        padding: 40px 24px;
    }
}

@media (max-width: 480px) {
    .navbar__container {
        padding: 0 16px;
    }

    .navbar__logo {
        font-size: 1.25rem;
    }

    .navbar__logo-icon {
        font-size: 1.6rem;
    }

    .navbar__actions .btn--sm {
        padding: 6px 10px;
        font-size: 0.75rem;
    }

    .hero {
        padding: 32px 16px 70px;
    }

    .hero__headline {
        font-size: 2.2rem;
    }

    .hero__subheading {
        font-size: 1rem;
    }

    .hero__cta {
        gap: 12px;
    }

    .hero__cta .btn {
        width: 100%;
    }

    .hero__trust {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .section__title {
        font-size: 1.7rem;
    }

    .section__subtitle {
        font-size: 1rem;
    }

    .section__label {
        font-size: 0.8rem;
    }

    .stats__container {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .feature-card {
        padding: 24px 20px;
    }

    .cta__headline {
        font-size: 1.7rem;
    }

    .cta__text {
        font-size: 1rem;
    }

    .cta__buttons {
        gap: 12px;
    }

    .cta__buttons .btn {
        width: 100%;
    }

    .footer {
        padding: 50px 20px 28px;
    }

    .faq__question {
        padding: 16px 18px;
        font-size: 0.98rem;
    }

    .faq__answer {
        padding: 0 18px;
    }

    .mobile-menu {
        width: 100%;
        padding: 90px 24px 40px;
    }
}

@media (max-width: 360px) {
    .hero__headline {
        font-size: 1.9rem;
    }

    .hero__float-card--2,
    .hero__float-card--3 {
        display: none;
    }

    .hero__illustration {
        height: 260px;
    }

    .hero__abstract-shape {
        width: 240px;
        height: 240px;
    }
}