/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #374151;
    background-color: #F3F4F6;
    overflow-x: hidden;
}

/* CSS Custom Properties for consistent theming */
:root {
    --color-primary: #1E3A8A;
    --color-primary-light: #2D4EA3;
    --color-primary-dark: #1e3a8a;
    --color-secondary: #16A34A;
    --color-secondary-dark: #15803D;
    --color-white: #FFFFFF;
    --color-gray-light: #F3F4F6;
    --color-gray: #6b7280;
    --color-gray-dark: #374151;
    --color-dark: #1f2937;

    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 14px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.15);
    --shadow-glow-primary: 0 0 30px rgba(30, 58, 138, 0.3);
    --shadow-glow-secondary: 0 0 30px rgba(22, 163, 74, 0.3);

    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.6s ease;
}

/* Accessibility */
.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 indicators */
*:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.875rem;
}

p {
    margin-bottom: 1rem;
    color: var(--color-gray);
}

/* ============================================
   KEYFRAME ANIMATIONS
   ============================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes floatSlow {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-30px) rotate(5deg);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.4);
    }

    50% {
        transform: scale(1.02);
        box-shadow: 0 0 20px 10px rgba(22, 163, 74, 0);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }

    50% {
        transform: scale(1.05);
    }

    70% {
        transform: scale(0.9);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInStagger {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes iconBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes glowPulse {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(30, 58, 138, 0.2);
    }

    50% {
        box-shadow: 0 0 40px rgba(30, 58, 138, 0.4);
    }
}

/* ============================================
   HEADER AND NAVIGATION
   ============================================ */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid rgba(229, 231, 235, 0.5);
    z-index: 1000;
    height: 80px;
    transition: all var(--transition-normal);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}

.nav {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    height: 80px;
    padding: 0 24px;
    gap: 16px;
}

.nav__brand {
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 420px;
}

.nav__logo {
    height: 45px;
    width: auto;
    transition: transform var(--transition-normal);
}

.nav__logo:hover {
    transform: scale(1.05);
}

.nav__brand h1 {
    color: var(--color-primary);
    font-size: 1.25rem;
    margin: 0;
    line-height: 1.25;
}

.nav__menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.nav__link {
    text-decoration: none;
    color: var(--color-gray-dark);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.5rem 0.65rem;
    border-radius: 999px;
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.nav__link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    transition: all var(--transition-normal);
    transform: translateX(-50%);
}

.nav__link:hover::before {
    width: 80%;
}

.nav__link:hover {
    color: var(--color-primary);
    background-color: rgba(30, 58, 138, 0.05);
}

.nav__link.active {
    color: var(--color-primary);
    background-color: #DBEAFE;
}

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

.nav__contact-btn {
    border: 2px solid var(--color-primary);
    background: var(--color-white);
    color: var(--color-primary);
    transition: all var(--transition-normal);
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 1.25rem;
    white-space: nowrap;
}

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

.nav__lang-toggle {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-normal);
    min-width: 60px;
    position: relative;
    overflow: hidden;
}

.nav__lang-toggle::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.nav__lang-toggle:hover::before {
    left: 100%;
}

.nav__lang-toggle:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-primary);
}

.nav__toggle {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background: transparent;
    border: 2px solid var(--color-gray-light);
    border-radius: 8px;
    cursor: pointer;
    padding: 8px;
    width: 44px;
    height: 44px;
    transition: all var(--transition-normal);
}

.nav__toggle:hover {
    border-color: var(--color-primary);
    background: rgba(30, 58, 138, 0.05);
}

.nav__toggle-icon,
.nav__toggle-icon::before,
.nav__toggle-icon::after {
    display: block;
    width: 20px;
    height: 2px;
    background-color: var(--color-primary);
    border-radius: 1px;
    transition: all var(--transition-normal);
}

.nav__toggle-icon {
    position: relative;
}

.nav__toggle-icon::before,
.nav__toggle-icon::after {
    content: '';
    position: absolute;
    left: 0;
}

.nav__toggle-icon::before {
    top: -6px;
}

.nav__toggle-icon::after {
    top: 6px;
}

/* Hamburger animation when menu is active */
.nav__toggle.active .nav__toggle-icon {
    background: transparent;
}

.nav__toggle.active .nav__toggle-icon::before {
    top: 0;
    transform: rotate(45deg);
}

.nav__toggle.active .nav__toggle-icon::after {
    top: 0;
    transform: rotate(-45deg);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 50%, #3B5998 100%);
    background-size: 200% 200%;
    animation: gradientShift 15s ease infinite;
    color: white;
    padding: 160px 0 120px;
    text-align: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Floating decorative elements */
.hero::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(22, 163, 74, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: 5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatSlow 12s ease-in-out infinite;
    pointer-events: none;
}

.hero__content {
    max-width: 600px;
    position: relative;
    z-index: 1;
    text-align: left;
}

/* Hero Two-Column Layout */
.hero__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 3rem;
}

/* Hero Image */
.hero__image-container {
    position: relative;
    z-index: 1;
    opacity: 0;
    animation: fadeInRight 1s ease forwards;
    animation-delay: 0.5s;
}

.hero__image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
}

.hero__image-wrapper:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.hero__image {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.hero__image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.1) 0%, rgba(22, 163, 74, 0.1) 100%);
    pointer-events: none;
}

.hero__title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: white;
    font-weight: 800;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.2s;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.hero__subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: #dbeafe;
    line-height: 1.8;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.4s;
}

.hero__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.6s;
}

.hero__cta {
    background: white;
    color: var(--color-primary);
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--transition-normal);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.hero__cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.hero__cta:hover::before {
    left: 100%;
}

.hero__cta:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.hero__cta--primary {
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-secondary-dark) 100%);
    color: white;
    animation: pulse 3s ease-in-out infinite;
    animation-delay: 1s;
}

.hero__cta--primary:hover {
    background: linear-gradient(135deg, var(--color-secondary-dark) 0%, var(--color-secondary) 100%);
    box-shadow: var(--shadow-glow-secondary);
}

.hero__cta--secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.hero__cta--secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: white;
}

/* Floating shapes decoration */
.hero__decoration {
    position: absolute;
    pointer-events: none;
}

.hero__decoration--1 {
    top: 15%;
    right: 10%;
    width: 60px;
    height: 60px;
    border: 3px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.hero__decoration--2 {
    bottom: 20%;
    left: 8%;
    width: 40px;
    height: 40px;
    background: rgba(22, 163, 74, 0.3);
    border-radius: 8px;
    transform: rotate(45deg);
    animation: floatSlow 8s ease-in-out infinite;
}

.hero__decoration--3 {
    top: 40%;
    left: 15%;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    animation: float 5s ease-in-out infinite reverse;
}

/* Hero Trust Badge */
.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeInDown 0.8s ease forwards;
    animation-delay: 0.1s;
}

.hero__badge-icon {
    font-size: 1.1rem;
    animation: pulse 2s ease-in-out infinite;
}

.hero__badge-text {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: 0.02em;
}

/* Hero Stats */
.hero__stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 2rem;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.8s;
}

.hero__stat {
    text-align: center;
}

.hero__stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 0.25rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero__stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.hero__stat-divider {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.3), transparent);
}

/* Hero Particles */
.hero__particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero__particles span {
    position: absolute;
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: particleFloat 20s linear infinite;
}

.hero__particles span:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
    animation-duration: 25s;
}

.hero__particles span:nth-child(2) {
    left: 25%;
    width: 6px;
    height: 6px;
    animation-delay: 2s;
    animation-duration: 18s;
}

.hero__particles span:nth-child(3) {
    left: 50%;
    animation-delay: 4s;
    animation-duration: 22s;
}

.hero__particles span:nth-child(4) {
    left: 70%;
    width: 8px;
    height: 8px;
    animation-delay: 6s;
    animation-duration: 20s;
}

.hero__particles span:nth-child(5) {
    left: 90%;
    width: 5px;
    height: 5px;
    animation-delay: 8s;
    animation-duration: 28s;
}

@keyframes particleFloat {
    0% {
        top: 100%;
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        top: -10%;
        opacity: 0;
    }
}

/* Scroll Indicator */
.hero__scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    animation: fadeIn 1s ease forwards;
    animation-delay: 1.2s;
}

.hero__scroll-indicator span {
    display: block;
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    position: relative;
}

.hero__scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    animation: scrollIndicator 2s ease-in-out infinite;
}

@keyframes scrollIndicator {

    0%,
    100% {
        top: 8px;
        opacity: 1;
    }

    50% {
        top: 20px;
        opacity: 0.5;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* ============================================
   FEATURES SECTION
   ============================================ */

.features {
    padding: 100px 0;
    background-color: var(--color-gray-light);
    position: relative;
}

.features__title {
    text-align: center;
    margin-bottom: 4rem;
    color: var(--color-dark);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.features__title.animate {
    opacity: 1;
    transform: translateY(0);
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all var(--transition-normal);
    border: 1px solid rgba(229, 231, 235, 0.5);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px);
}

.feature-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    transform: scaleX(0);
    transition: transform var(--transition-normal);
    transform-origin: left;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
    border-color: transparent;
}

.feature-card__icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
    transition: transform var(--transition-normal);
}

.feature-card:hover .feature-card__icon {
    animation: iconBounce 0.6s ease;
}

.feature-card__title {
    color: var(--color-dark);
    margin-bottom: 1rem;
    font-size: 1.35rem;
    transition: color var(--transition-normal);
}

.feature-card:hover .feature-card__title {
    color: var(--color-primary);
}

.feature-card__description {
    color: var(--color-gray);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about {
    padding: 100px 0;
    background-color: white;
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(30, 58, 138, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.about__title {
    text-align: center;
    margin-bottom: 4rem;
    color: var(--color-dark);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.about__title.animate {
    opacity: 1;
    transform: translateY(0);
}

/* About Grid Layout */
.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about__images {
    position: relative;
    min-height: 500px;
}

.about__image-card {
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.about__image-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.about__image-card--primary {
    top: 0;
    left: 0;
    width: 75%;
    z-index: 2;
}

.about__image-card--secondary {
    bottom: 0;
    right: 0;
    width: 65%;
    z-index: 1;
}

.about__image {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.about__content {
    max-width: 100%;
    text-align: left;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.2s;
}

.about__content.animate {
    opacity: 1;
    transform: translateY(0);
}

.about__subtitle {
    color: var(--color-primary);
    margin-bottom: 1rem;
    margin-top: 2.5rem;
    position: relative;
    display: block;
}

h3.about__subtitle {
    font-size: 1.75rem;
    padding-bottom: 0.75rem;
}

h4.about__subtitle {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    padding-bottom: 0.5rem;
}

.about__subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-secondary), transparent);
    border-radius: 2px;
}

.about__description {
    color: var(--color-gray);
    line-height: 1.9;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--color-gray-light) 0%, #E5E7EB 100%);
    position: relative;
}

.contact__title {
    text-align: center;
    margin-bottom: 4rem;
    color: var(--color-dark);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.contact__title.animate {
    opacity: 1;
    transform: translateY(0);
}

.contact__content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.2s;
}

.contact__content.animate {
    opacity: 1;
    transform: translateY(0);
}

.contact__form {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--color-gray-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    transition: all var(--transition-normal);
    background-color: white;
    min-height: 48px;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(30, 58, 138, 0.1);
    outline: none;
}

.form-group input.error,
.form-group textarea.error {
    border-color: #ef4444;
}

.error-message {
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: none;
}

.error-message.show {
    display: block;
}

.contact__submit {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--transition-normal);
    width: 100%;
    position: relative;
    overflow: hidden;
}

.contact__submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.contact__submit:hover::before {
    left: 100%;
}

.contact__submit:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow-primary);
}

.contact__submit:disabled {
    background: #9ca3af;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.form-status {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
    font-weight: 500;
    display: none;
}

.form-status.success {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    color: #065f46;
    display: block;
    animation: fadeInUp 0.5s ease;
}

.form-status.error {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    color: #991b1b;
    display: block;
    animation: fadeInUp 0.5s ease;
}

.contact__email-alt {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
    text-align: center;
    color: var(--color-gray);
    font-size: 0.95rem;
}

.contact__email-alt a {
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: none;
    transition: color var(--transition-normal);
}

.contact__email-alt a:hover {
    color: var(--color-secondary);
    text-decoration: underline;
}

.btn {
    display: inline-block;
    padding: 1.25rem 3.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    min-width: 280px;
    text-align: center;
}

.btn--primary {
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-secondary-dark) 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(22, 163, 74, 0.3);
}

.btn--primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn--primary:hover::before {
    left: 100%;
}

.btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow-secondary);
}

.contact__info {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.contact__info-title {
    color: var(--color-dark);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.contact__info-item {
    margin-bottom: 1.25rem;
    color: var(--color-gray);
    padding: 0.75rem 0;
    border-bottom: 1px solid #f3f4f6;
    transition: all var(--transition-normal);
}

.contact__info-item:hover {
    padding-left: 10px;
    border-color: var(--color-secondary);
}

.contact__info-item:last-child {
    border-bottom: none;
}

.contact__info-item strong {
    color: var(--color-gray-dark);
    display: block;
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
}

/* ============================================
   LANGUAGE DROPDOWN
   ============================================ */

.lang-dropdown {
    position: relative;
}

.lang-dropdown__toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-normal);
    min-width: 90px;
    height: 40px;
}

.lang-dropdown__toggle:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-primary);
}

.lang-dropdown__flag {
    font-size: 1.25rem;
    line-height: 1;
}

.lang-dropdown__text {
    font-size: 0.9rem;
    font-weight: 600;
}

.lang-dropdown__arrow {
    transition: transform var(--transition-normal);
    margin-left: auto;
}

.lang-dropdown.active .lang-dropdown__arrow {
    transform: rotate(180deg);
}

.lang-dropdown__menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-normal);
    min-width: 150px;
    z-index: 1000;
}

.lang-dropdown.active .lang-dropdown__menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-dropdown__option {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 12px 16px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--color-gray-dark);
    transition: all var(--transition-fast);
    text-align: left;
}

.lang-dropdown__option:hover {
    background: var(--color-gray-light);
    color: var(--color-primary);
}

.lang-dropdown__option.active {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.1), rgba(22, 163, 74, 0.1));
    color: var(--color-primary);
    font-weight: 600;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: linear-gradient(180deg, var(--color-dark) 0%, #0f172a 100%);
    color: white;
    padding: 5rem 0 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary), var(--color-primary));
    background-size: 200% 100%;
    animation: gradientShift 5s ease infinite;
}

/* Decorative background element */
.footer::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(30, 58, 138, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.footer__main {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.footer__brand {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer__logo {
    height: 55px;
    width: auto;
    transition: all var(--transition-normal);
}

.footer__logo:hover {
    transform: scale(1.02);
}

.footer__description {
    color: #9ca3af;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 300px;
}

.footer__social {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.footer__social-link {
    color: #9ca3af;
    text-decoration: none;
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__social-link:hover {
    color: white;
    background: var(--color-secondary);
    border-color: var(--color-secondary);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(22, 163, 74, 0.3);
}

.footer__social-link svg {
    width: 18px;
    height: 18px;
}

.footer__column {
    display: flex;
    flex-direction: column;
}

.footer__column-title {
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer__column-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-secondary), transparent);
    border-radius: 1px;
}

.footer__links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    padding: 0;
    margin: 0;
}

.footer__links li {
    margin: 0;
}

.footer__links a {
    color: #9ca3af;
    text-decoration: none;
    transition: all var(--transition-normal);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

.footer__links a:hover {
    color: white;
    transform: translateX(5px);
}

.footer__contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 0;
    margin: 0;
}

.footer__contact-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #9ca3af;
    font-size: 0.95rem;
}

.footer__contact-list li svg {
    flex-shrink: 0;
    color: var(--color-secondary);
}

.footer__contact-list a {
    color: #9ca3af;
    text-decoration: none;
    transition: color var(--transition-normal);
}

.footer__contact-list a:hover {
    color: white;
}

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

.footer__bottom-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.footer__bottom-content p {
    color: #6b7280;
    margin: 0;
    font-size: 0.875rem;
}

.footer__legal-name {
    color: #4b5563 !important;
    font-size: 0.8rem !important;
}

.footer__bottom-links {
    display: flex;
    gap: 2rem;
}

.footer__bottom-links a {
    color: #6b7280;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color var(--transition-normal);
}

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



/* ============================================
   ANIMATION CLASSES FOR SCROLL REVEAL
   ============================================ */

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Stagger delay for grid items */
.feature-card:nth-child(1) {
    transition-delay: 0.1s;
}

.feature-card:nth-child(2) {
    transition-delay: 0.2s;
}

.feature-card:nth-child(3) {
    transition-delay: 0.3s;
}

.feature-card:nth-child(4) {
    transition-delay: 0.4s;
}

/* ============================================
   LOADING STATES
   ============================================ */

.loading {
    position: relative;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 24px;
    margin: -12px 0 0 -12px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid white;
    border-radius: 50%;
    animation: rotate 0.8s linear infinite;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Large desktop - slight reduction */
@media (max-width: 1440px) {
    .nav {
        padding: 0 20px;
    }

    .nav__menu {
        gap: 0.5rem;
    }

    .nav__link {
        font-size: 0.9rem;
        padding: 0.5rem 0.6rem;
    }
}

/* Medium desktop - more compact */
@media (max-width: 1280px) {
    .nav {
        padding: 0 16px;
    }

    .nav__menu {
        gap: 0.25rem;
    }

    .nav__link {
        font-size: 0.85rem;
        padding: 0.5rem 0.5rem;
    }

    .nav__actions {
        gap: 6px;
    }

    .nav__contact-btn {
        padding: 0 0.75rem;
        font-size: 0.85rem;
        height: 36px;
    }

    .lang-dropdown__toggle {
        padding: 0.35rem 0.6rem;
        min-width: 75px;
        height: 36px;
    }

    .lang-dropdown__text {
        font-size: 0.8rem;
    }
}

/* Small desktop - switch to mobile hamburger */
@media (max-width: 1100px) {
    .container {
        padding: 0 15px;
    }

    .hero__title {
        font-size: 3rem;
    }

    .contact__content {
        gap: 2rem;
    }

    /* Hero responsive for tablets */
    .hero__wrapper {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.5rem;
    }

    .hero__content {
        max-width: 100%;
        text-align: center;
    }

    .hero__actions {
        justify-content: center;
    }

    .hero__stats {
        justify-content: center;
    }

    .hero__image-container {
        max-width: 500px;
        margin: 0 auto;
    }

    .hero__image-wrapper {
        transform: none;
    }

    /* About Grid responsive for tablets */
    .about__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about__images {
        min-height: 350px;
        margin-bottom: 1rem;
    }

    .about__image-card--primary {
        width: 60%;
    }

    .about__image-card--secondary {
        width: 55%;
    }

    .about__content {
        text-align: center;
    }

    .about__subtitle::after {
        left: 50%;
        transform: translateX(-50%);
    }

    /* Header tablet/mobile fixes - start hamburger menu at 1100px */
    .header {
        min-height: 60px;
        height: 60px;
    }

    .nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 16px;
        gap: 10px;
        height: 60px;
    }

    .nav__brand {
        flex: 0 0 auto;
        order: 1;
        margin-left: 8px;
    }

    .nav__brand h1 {
        display: none;
    }

    .nav__logo {
        height: 40px;
    }

    .nav__toggle {
        display: flex;
        order: 0;
        width: 44px;
        height: 44px;
        align-items: center;
        justify-content: center;
    }

    .nav__menu {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        height: calc(100vh - 60px);
        height: calc(100dvh - 60px);
        /* Dynamic viewport height for mobile */
        background: white;
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 1.5rem;
        padding-bottom: calc(1.5rem + env(safe-area-inset-bottom, 0px));
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
        gap: 0.25rem;
        white-space: normal;
        z-index: 9999;
        overflow-y: auto;
        /* Hidden by default */
        visibility: hidden;
        opacity: 0;
        transform: translateX(-100%);
        transition: transform 0.3s ease, visibility 0.3s ease, opacity 0.3s ease;
    }

    .nav__menu.active {
        visibility: visible;
        opacity: 1;
        transform: translateX(0);
    }

    .nav__link {
        width: 100%;
        text-align: center;
        padding: 1rem;
        font-size: 1.1rem;
    }

    .nav__actions {
        order: 2;
        gap: 8px;
        margin-left: auto;
    }

    .nav__contact-btn {
        display: inline-flex;
        height: 36px;
        padding: 0 0.75rem;
        font-size: 0.85rem;
        border-radius: 50px;
    }

    .lang-dropdown__toggle {
        padding: 0.4rem 0.75rem;
        min-width: auto;
        height: 36px;
    }

    .lang-dropdown__text {
        display: none;
    }

    .lang-dropdown__arrow {
        display: none;
    }

    .lang-dropdown__flag {
        font-size: 1.25rem;
    }

    .lang-dropdown__menu {
        right: -10px;
    }

    /* Hero mobile fixes */
    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .hero__content {
        padding: 0 10px;
    }

    .hero__badge {
        padding: 0.4rem 1rem;
    }

    .hero__badge-text {
        font-size: 0.8rem;
        white-space: nowrap;
    }

    .hero__title {
        font-size: 1.75rem;
        padding: 0 5px;
    }

    .hero__subtitle {
        font-size: 0.95rem;
        padding: 0 5px;
    }

    .hero__actions {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
        padding: 0 10px;
    }

    .hero__cta {
        width: 100%;
        max-width: 280px;
    }

    /* Fix hero stats overflow on mobile */
    .hero__stats {
        flex-wrap: wrap;
        gap: 1rem 1.5rem;
        padding: 1.5rem 0;
        margin-top: 2rem;
    }

    .hero__stat {
        flex: 1 1 auto;
        min-width: 80px;
    }

    .hero__stat-number {
        font-size: 1.75rem;
    }

    .hero__stat-label {
        font-size: 0.75rem;
    }

    .hero__stat-divider {
        display: none;
    }

    /* Features mobile */
    .features__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Contact mobile */
    .contact__content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Footer mobile fixes */
    .footer {
        padding: 3rem 0 0;
    }

    .footer__main {
        grid-template-columns: 1fr 1fr;
        text-align: left;
        gap: 2rem;
    }

    .footer__brand {
        grid-column: 1 / -1;
        align-items: center;
        text-align: center;
    }

    .footer__description {
        max-width: 100%;
        text-align: center;
    }

    .footer__social {
        justify-content: center;
    }

    .footer__column {
        align-items: flex-start;
    }

    .footer__column-title {
        font-size: 1rem;
    }

    .footer__column-title::after {
        left: 0;
        transform: none;
    }

    .footer__links {
        align-items: flex-start;
    }

    .footer__contact-list {
        align-items: flex-start;
    }

    .footer__contact-list li {
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .footer__bottom {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem 0;
    }

    .footer__bottom-content {
        align-items: center;
    }

    .footer__bottom-links {
        justify-content: center;
        gap: 1.5rem;
    }

    /* Typography */
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.35rem;
    }
}

/* Tablet and large phones - 768px breakpoint */
@media (max-width: 768px) {

    /* Hero improvements for tablets */
    .hero {
        padding: 90px 0 60px;
    }

    .hero__title {
        font-size: 1.6rem;
        line-height: 1.3;
    }

    .hero__subtitle {
        font-size: 0.9rem;
    }

    .hero__badge {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }

    .hero__badge-text {
        font-size: 0.75rem;
        white-space: normal;
        text-align: center;
    }

    .hero__cta {
        padding: 0.875rem 1.75rem;
        font-size: 1rem;
    }

    /* Hero image container improvements */
    .hero__image-container {
        max-width: 100%;
        padding: 0 1rem;
    }

    /* About section images - stack properly */
    .about__images {
        min-height: 280px;
        margin-bottom: 2rem;
    }

    .about__image-card--primary,
    .about__image-card--secondary {
        position: relative;
        width: 100%;
        margin-bottom: 1rem;
    }

    .about__image-card--secondary {
        margin-bottom: 0;
    }

    /* Features grid for tablets */
    .features__grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .feature-card__title {
        font-size: 1.1rem;
    }

    /* Contact section improvements */
    .contact__form {
        padding: 1.5rem;
    }

    .contact__info {
        padding: 1.5rem;
    }

    /* Footer improvements */
    .footer__main {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem 1rem;
        text-align: left;
    }

    .footer__brand {
        grid-column: 1 / -1;
        align-items: flex-start;
        text-align: left;
    }

    .footer__description {
        text-align: left;
    }

    .footer__social {
        justify-content: flex-start;
    }

    .footer__column {
        align-items: flex-start;
        text-align: left;
    }

    .footer__column-title::after {
        left: 0;
        transform: none;
    }

    .footer__links,
    .footer__contact-list {
        align-items: flex-start;
    }

    .footer__contact-list li {
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    /* Typography */
    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    /* Container padding */
    .container {
        padding: 0 1rem;
    }

    /* Section padding */
    .features,
    .about,
    .contact {
        padding: 60px 0;
    }

    .features__title,
    .about__title,
    .contact__title {
        margin-bottom: 2rem;
    }

    /* Transparency section tablet fixes */
    .about__content>.about__text>div[style] {
        padding: 1.25rem !important;
        margin-top: 1.5rem !important;
    }

    .about__content>.about__text>div[style]>div>div {
        flex-wrap: wrap !important;
    }
}

@media (max-width: 480px) {

    /* Hero small mobile */
    .hero {
        padding: 80px 0 50px;
    }

    .hero__badge {
        padding: 0.35rem 0.75rem;
        margin-bottom: 1rem;
    }

    .hero__badge-text {
        font-size: 0.7rem;
    }

    .hero__title {
        font-size: 1.4rem;
        line-height: 1.3;
    }

    .hero__subtitle {
        font-size: 0.85rem;
        padding: 0 0.5rem;
        margin-bottom: 2rem;
    }

    .hero__cta {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }

    .hero__actions {
        padding: 0 0.5rem;
    }

    .hero__stats {
        justify-content: center;
        gap: 0.75rem 1.25rem;
        padding: 1rem 0.5rem;
    }

    .hero__stat-number {
        font-size: 1.5rem;
    }

    .hero__stat-label {
        font-size: 0.7rem;
    }

    /* Sections small mobile */
    .features,
    .about,
    .contact {
        padding: 40px 0;
    }

    .features__title,
    .about__title,
    .contact__title {
        font-size: 1.35rem;
        margin-bottom: 1.5rem;
    }

    .feature-card {
        padding: 1.25rem;
    }

    .feature-card__icon {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }

    .feature-card__title {
        font-size: 1rem;
    }

    .feature-card__description {
        font-size: 0.9rem;
    }

    .contact__form,
    .contact__info {
        padding: 1rem;
        border-radius: 12px;
    }

    .contact__info-title {
        font-size: 1.1rem;
    }

    /* About section small mobile */
    .about__subtitle {
        font-size: 1.15rem !important;
        margin-top: 1.5rem;
    }

    h4.about__subtitle {
        font-size: 1rem !important;
    }

    .about__description {
        font-size: 0.9rem;
        line-height: 1.65;
        margin-bottom: 1.25rem;
    }

    /* Footer small mobile - keep two columns for links */
    .footer__main {
        grid-template-columns: 1fr 1fr;
        text-align: left;
        gap: 1.5rem 1rem;
    }

    .footer__brand {
        grid-column: 1 / -1;
        align-items: flex-start;
        text-align: left;
    }

    .footer__description {
        text-align: left;
    }

    .footer__social {
        justify-content: flex-start;
    }

    .footer__column {
        align-items: flex-start;
    }

    .footer__column-title {
        font-size: 0.9rem;
    }

    .footer__column-title::after {
        left: 0;
        transform: none;
    }

    .footer__links {
        align-items: flex-start;
    }

    .footer__links a {
        font-size: 0.85rem;
    }

    .footer__contact-list {
        align-items: flex-start;
    }

    .footer__contact-list li {
        justify-content: flex-start;
        font-size: 0.85rem;
    }

    .footer__bottom-links {
        flex-direction: row;
        gap: 1rem;
    }

    /* Transparency section small mobile */
    .about__content>.about__text>div {
        padding: 0.875rem !important;
        border-radius: 10px !important;
        margin-top: 1rem !important;
    }

    .about__content>.about__text>div>div {
        gap: 0.75rem !important;
    }

    .about__content>.about__text>div>div>div {
        flex-wrap: wrap !important;
        gap: 0.5rem !important;
    }

    .about__content>.about__text>div>div>div>span:first-child {
        font-size: 1.25rem !important;
    }

    /* Ensure text doesn't overflow on small screens */
    .hero__badge {
        max-width: 100%;
    }

    .hero__badge-text {
        white-space: normal;
        line-height: 1.4;
    }
}

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {

    .header,
    .footer__social,
    .hero__cta,
    .contact__submit,
    .nav__lang-toggle {
        display: none;
    }

    body {
        font-size: 12pt;
        line-height: 1.4;
    }

    .container {
        max-width: none;
        padding: 0;
    }

    .hero {
        background: none;
        color: black;
        min-height: auto;
        padding: 2rem 0;
    }

    .hero__title,
    .hero__subtitle {
        color: black;
    }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

@media (prefers-contrast: high) {
    .hero__cta {
        border: 2px solid white;
    }

    .nav__lang-toggle,
    .contact__submit {
        border: 2px solid white;
    }

    .feature-card {
        border: 2px solid var(--color-gray-dark);
    }
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }

    .hero {
        animation: none;
    }

    .hero__cta--primary {
        animation: none;
    }
}

/* Touch Targets for Mobile */
@media (hover: none) and (pointer: coarse) {

    .nav__link,
    .hero__cta,
    .contact__submit,
    .nav__lang-toggle,
    .footer__social-link {
        min-height: 44px;
        min-width: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}