/* ==========================================
   CDGSystem - Consultoría TI para el Crecimiento Empresarial
   Tema Gradient Blue v2
   ========================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #0f172a;
    --primary-light: #1e293b;
    --secondary: #0891b2;
    --accent: #06b6d4;
    --accent-light: #22d3ee;
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    --gradient-main: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #0891b2 100%);
    --gradient-accent: linear-gradient(135deg, #0891b2, #06b6d4);

    /* Border radius - más profesional */
    --radius-sm: 4px;
    --radius-md: 6px;
    --radius-lg: 8px;
    --radius-xl: 12px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--white);
    color: var(--gray-800);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ==========================================
   TOP BAR
   ========================================== */
.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    background: var(--primary);
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-contact {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-bar-contact a,
.top-bar-location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--gray-400);
    text-decoration: none;
    transition: color 0.3s;
}

.top-bar-contact a:hover {
    color: var(--white);
}

.top-bar-contact svg {
    color: var(--accent);
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.top-bar .social-links {
    display: flex;
    gap: 8px;
}

.top-bar .social-links a {
    color: var(--gray-500);
    transition: color 0.3s;
}

.top-bar .social-links a svg {
    width: 14px;
    height: 14px;
}

.top-bar .social-links a:hover {
    color: var(--accent);
}

/* Language Selector */
.language-selector {
    position: relative;
}

.language-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    color: var(--gray-300);
    font-size: 11px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.language-btn:hover {
    background: rgba(255, 255, 255, 0.15);
}

.language-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-base);
    z-index: 1001;
    overflow: hidden;
}

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

.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    color: var(--gray-700);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
}

.lang-option:hover {
    background: var(--gray-100);
    color: var(--gray-900);
}

.lang-option.active {
    background: var(--gray-100);
    color: var(--secondary);
    font-weight: 600;
}

/* Django language form styles */
.lang-form {
    margin: 0;
    padding: 0;
    display: block;
    width: 100%;
}

button.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    color: var(--gray-700);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
    background: none;
    border: none;
    cursor: pointer;
    width: 100%;
    text-align: left;
}

button.lang-option:hover {
    background: var(--gray-100);
    color: var(--gray-900);
}

button.lang-option.active {
    background: var(--gray-100);
    color: var(--secondary);
    font-weight: 600;
}

/* Flags */
.flag {
    width: 16px;
    height: 11px;
    border-radius: 2px;
    display: inline-block;
    background-size: cover;
    background-position: center;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.flag-es {
    background-image: url('/static/img/flags/es.svg');
}

.flag-en {
    background-image: url('/static/img/flags/en.svg');
}

.flag-ar {
    background-image: url('/static/img/flags/ar.svg');
}

.flag-fr {
    background-image: url('/static/img/flags/fr.svg');
}

/* ==========================================
   HEADER
   ========================================== */
.header {
    position: fixed;
    top: 36px;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 12px 0;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    transition: top 0.3s;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
}

.logo-icon {
    width: 34px;
    height: 34px;
    background: var(--secondary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition-base);
}

.logo:hover .logo-icon {
    background: var(--accent);
}

.logo-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--white);
}

.nav {
    display: flex;
    gap: 36px;
}

.nav a {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color var(--transition-base);
    position: relative;
    padding: 4px 0;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width var(--transition-base);
}

.nav a:hover {
    color: var(--white);
}

.nav a:hover::after {
    width: 100%;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    flex-direction: column;
    background: var(--primary);
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.mobile-nav.active {
    max-height: 300px;
    padding: 16px 24px 24px;
}

.mobile-nav a {
    color: var(--gray-300);
    text-decoration: none;
    padding: 12px 0;
    font-size: 16px;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: color 0.3s;
}

.mobile-nav a:last-child {
    border-bottom: none;
}

.mobile-nav a:hover {
    color: var(--white);
}

/* Mobile Language Selector */
.mobile-lang-selector {
    display: none;
    position: relative;
}

.mobile-lang-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-base);
}

.mobile-lang-btn:hover {
    background: rgba(255, 255, 255, 0.15);
}

.mobile-lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    min-width: 80px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-base);
    z-index: 1001;
    overflow: hidden;
}

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

.mobile-lang-dropdown .lang-option {
    padding: 10px 14px;
    font-size: 13px;
}

.mobile-lang-dropdown .lang-form {
    margin: 0;
    padding: 0;
    display: block;
}

.mobile-lang-dropdown button.lang-option {
    padding: 10px 14px;
    font-size: 13px;
    width: 100%;
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 30px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: var(--radius-md);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.12) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
}

.btn:hover::before {
    opacity: 1;
}

.btn:active {
    transform: translateY(1px) scale(0.98);
}

.btn:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

/* Primary Button */
.btn-primary {
    background: linear-gradient(135deg, var(--secondary) 0%, #0a7c9e 100%);
    color: var(--white);
    box-shadow:
        0 1px 2px rgba(8, 145, 178, 0.2),
        0 4px 12px rgba(8, 145, 178, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #0a9dc4 0%, var(--secondary) 100%);
    box-shadow:
        0 2px 4px rgba(8, 145, 178, 0.2),
        0 8px 24px rgba(8, 145, 178, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.btn-primary:active {
    box-shadow:
        0 1px 2px rgba(8, 145, 178, 0.2),
        0 2px 8px rgba(8, 145, 178, 0.25),
        inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* White Button */
.btn-white {
    background: var(--white);
    color: var(--primary);
    box-shadow:
        0 1px 2px rgba(0, 0, 0, 0.06),
        0 4px 12px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.btn-white::before {
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.02) 100%);
}

.btn-white:hover {
    background: var(--white);
    color: var(--secondary);
    box-shadow:
        0 2px 4px rgba(0, 0, 0, 0.06),
        0 8px 24px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    transform: translateY(-2px);
    border-color: rgba(8, 145, 178, 0.15);
}

.btn-white:active {
    box-shadow:
        0 1px 2px rgba(0, 0, 0, 0.06),
        0 2px 8px rgba(0, 0, 0, 0.08),
        inset 0 2px 4px rgba(0, 0, 0, 0.04);
}

/* Outline Button */
.btn-outline {
    background: transparent;
    color: var(--secondary);
    border: 1.5px solid var(--secondary);
    box-shadow: 0 2px 8px rgba(8, 145, 178, 0);
}

.btn-outline::before {
    background: var(--secondary);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.btn-outline:hover {
    color: var(--white);
    border-color: var(--secondary);
    box-shadow: 0 4px 16px rgba(8, 145, 178, 0.25);
}

.btn-outline:hover::before {
    transform: scaleY(1);
    opacity: 1;
}

/* Outline White Button */
.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(4px);
}

.btn-outline-white::before {
    background: rgba(255, 255, 255, 0.1);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.btn-outline-white:hover {
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
}

.btn-outline-white:hover::before {
    transform: scaleX(1);
    opacity: 1;
}

/* Size Variants */
.btn-lg {
    padding: 15px 36px;
    font-size: 14px;
    letter-spacing: 0.05em;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 12px;
}

.btn-full {
    width: 100%;
}

/* Icon Animation */
.btn svg {
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.btn:hover svg {
    transform: translateX(4px);
}

/* Arrow icon specific */
.btn svg.arrow-icon {
    width: 16px;
    height: 16px;
}

.btn:hover svg.arrow-icon {
    animation: arrowBounce 0.4s ease;
}

@keyframes arrowBounce {
    0%, 100% { transform: translateX(4px); }
    50% { transform: translateX(7px); }
}

/* ==========================================
   HERO
   ========================================== */
.hero {
    background: var(--gradient-main);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
}

/* Circuit Board Pattern */
.hero-bg-pattern {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 50h40v-10h10v-30h10v30h10v10h30' stroke='%230891b2' stroke-width='0.5' fill='none' opacity='0.04'/%3E%3Cpath d='M50 0v40h10v10h30' stroke='%230891b2' stroke-width='0.5' fill='none' opacity='0.03'/%3E%3Cpath d='M100 50h-30v10h-10v30' stroke='%230891b2' stroke-width='0.5' fill='none' opacity='0.025'/%3E%3Ccircle cx='50' cy='50' r='3' fill='%230891b2' opacity='0.05'/%3E%3Ccircle cx='40' cy='50' r='2' fill='%230891b2' opacity='0.04'/%3E%3Ccircle cx='50' cy='40' r='2' fill='%230891b2' opacity='0.04'/%3E%3Ccircle cx='60' cy='50' r='2' fill='%2306b6d4' opacity='0.03'/%3E%3Ccircle cx='70' cy='60' r='2' fill='%2306b6d4' opacity='0.03'/%3E%3C/svg%3E");
    background-size: 100px 100px;
    opacity: 0.5;
}

/* Network connections overlay */
.hero-bg-pattern::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='200' height='200' viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cline x1='0' y1='100' x2='60' y2='60' stroke='%2306b6d4' stroke-width='0.5' opacity='0.05'/%3E%3Cline x1='60' y1='60' x2='140' y2='80' stroke='%2306b6d4' stroke-width='0.5' opacity='0.04'/%3E%3Cline x1='140' y1='80' x2='200' y2='40' stroke='%2306b6d4' stroke-width='0.5' opacity='0.03'/%3E%3Cline x1='60' y1='60' x2='100' y2='150' stroke='%230891b2' stroke-width='0.5' opacity='0.035'/%3E%3Cline x1='140' y1='80' x2='160' y2='180' stroke='%230891b2' stroke-width='0.5' opacity='0.025'/%3E%3Ccircle cx='60' cy='60' r='4' fill='%2306b6d4' opacity='0.07'/%3E%3Ccircle cx='140' cy='80' r='3' fill='%2306b6d4' opacity='0.06'/%3E%3Ccircle cx='100' cy='150' r='3' fill='%230891b2' opacity='0.05'/%3E%3C/svg%3E");
    background-size: 200px 200px;
}

/* Hexagonal grid accent */
.hero-bg-pattern::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='52' viewBox='0 0 60 52' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0l25.98 15v30L30 60 4.02 45V15z' stroke='%230891b2' stroke-width='0.5' fill='none' opacity='0.03'/%3E%3C/svg%3E");
    background-size: 60px 52px;
    mask-image: linear-gradient(to left, rgba(0,0,0,0.3) 0%, transparent 60%);
    -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,0.3) 0%, transparent 60%);
}

/* Data glow effects */
.hero-bg-glow {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 40% at 75% 25%, rgba(8, 145, 178, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 40% 50% at 15% 70%, rgba(6, 182, 212, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

/* Animated data lines */
.hero-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-lines span {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.2), transparent);
    animation: dataFlow 5s linear infinite;
}

.hero-lines span:nth-child(1) {
    top: 20%;
    left: 0;
    width: 200px;
    animation-delay: 0s;
}

.hero-lines span:nth-child(2) {
    top: 50%;
    left: 0;
    width: 150px;
    animation-delay: 2s;
}

.hero-lines span:nth-child(3) {
    top: 75%;
    left: 0;
    width: 180px;
    animation-delay: 4s;
}

@keyframes dataFlow {
    0% { transform: translateX(-100%); opacity: 0; }
    10% { opacity: 0.6; }
    90% { opacity: 0.6; }
    100% { transform: translateX(calc(100vw + 100%)); opacity: 0; }
}

/* Subtle noise for depth */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.01;
    pointer-events: none;
}

/* Top accent line */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 10%, rgba(8, 145, 178, 0.2) 30%, rgba(6, 182, 212, 0.3) 50%, rgba(8, 145, 178, 0.2) 70%, transparent 90%);
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    z-index: 1;
}

.hero-wave svg {
    width: 100%;
    height: 100%;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    color: var(--white);
}

/* Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 28px;
    color: var(--gray-400);
    transition: all var(--transition-base);
}

.hero-badge:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* Title */
.hero h1 {
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-title-line {
    display: block;
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent-light) 0%, #67e8f9 50%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
}

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

.hero-subtitle {
    font-size: 16px;
    color: var(--gray-400);
    margin-bottom: 36px;
    line-height: 1.9;
    max-width: 460px;
    font-weight: 300;
}

.hero-subtitle em {
    font-style: italic;
    color: var(--gray-300);
}

/* CTA Buttons */
.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Glow effect modifier */
.btn-glow {
    position: relative;
}

.btn-glow::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: none;
}

.btn-glow:hover::after {
    animation: shimmer 0.6s ease;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Underline accent for outline-white */
.btn-outline-white::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--secondary));
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
}

.btn-outline-white:hover::after {
    width: 70%;
}

/* Stats Line */
.hero-stats {
    margin-top: 48px;
}

.hero-stat-line {
    display: block;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), transparent);
    border-radius: 2px;
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    position: relative;
}

.hero-image-wrapper {
    position: relative;
}

/* Frame decoration */
.hero-image-frame {
    position: absolute;
    top: -10px;
    right: -10px;
    bottom: 20px;
    left: 20px;
    border: 1px solid rgba(8, 145, 178, 0.2);
    border-radius: var(--radius-lg);
    pointer-events: none;
}

.hero-image-container {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: all var(--transition-slow);
}

.hero-image-container:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.hero-image {
    width: 100%;
    max-width: 460px;
    height: auto;
    display: block;
    transition: transform var(--transition-slow);
}

.hero-image-container:hover .hero-image {
    transform: scale(1.02);
}

.hero-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(8, 145, 178, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

/* Dots decoration */
.hero-image-dots {
    position: absolute;
    bottom: -15px;
    left: -25px;
    width: 60px;
    height: 60px;
    background-image: radial-gradient(rgba(8, 145, 178, 0.3) 1.5px, transparent 1.5px);
    background-size: 8px 8px;
    opacity: 0.5;
}

/* Floating Card */
.hero-floating-card {
    position: absolute;
    bottom: 24px;
    left: -30px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-800);
    animation: float 5s ease-in-out infinite;
}

.hero-floating-card svg {
    color: var(--secondary);
    width: 16px;
    height: 16px;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/* ==========================================
   SECTIONS COMMON
   ========================================== */
.section-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 12px;
    position: relative;
    padding-left: 20px;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 1px;
    background: var(--secondary);
}

.section-tag.light {
    color: var(--accent-light);
}

.section-tag.light::before {
    background: var(--accent-light);
}

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

.section-header .section-tag {
    padding-left: 0;
}

.section-header .section-tag::before {
    display: none;
}

.section-header h2 {
    font-size: 34px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 14px;
    letter-spacing: -0.025em;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 15px;
    color: var(--gray-500);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.8;
    font-style: italic;
}

/* ==========================================
   EMPOWERING SECTION
   ========================================== */
.empowering-section {
    padding: 100px 0;
    background: var(--white);
}

.empowering-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.empowering-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    position: relative;
}

.empowering-images img {
    border-radius: var(--radius-md);
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: all var(--transition-base);
}

.empowering-images img:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.emp-img-2 {
    margin-top: 32px;
}

.empowering-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.empowering-content p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.85;
    font-style: italic;
}

/* ==========================================
   PARTNERS SECTION
   ========================================== */
.partners-section {
    padding: 100px 0;
    background: var(--gray-50);
}

.partners-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.partners-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.partners-lead {
    font-size: 15px;
    color: var(--gray-500);
    line-height: 1.85;
    margin-bottom: 28px;
    font-style: italic;
}

.partners-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.partners-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
    transition: all var(--transition-base);
}

.partners-features li:hover {
    border-color: var(--secondary);
    box-shadow: 0 4px 12px rgba(8, 145, 178, 0.08);
}

.partners-features li svg {
    color: var(--secondary);
    flex-shrink: 0;
    margin-top: 2px;
}

.partners-features li span {
    font-size: 13px;
    color: var(--gray-600);
    line-height: 1.6;
}

.partners-features li strong {
    color: var(--gray-800);
    font-weight: 600;
    letter-spacing: -0.01em;
}

.partners-features li span em {
    font-style: italic;
    color: var(--gray-500);
}

.partners-image {
    display: flex;
    justify-content: flex-end;
}

.partners-image img {
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 380px;
    height: auto;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
    transition: all var(--transition-base);
}

.partners-image img:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.12);
}

/* ==========================================
   SERVICES
   ========================================== */
.services-section {
    padding: 100px 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(8, 145, 178, 0.15);
    border-color: var(--secondary);
}

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon.blue {
    background: linear-gradient(135deg, #0f172a, #1e3a5f);
}

.service-icon.teal {
    background: linear-gradient(135deg, #0891b2, #0d9488);
}

.service-icon.cyan {
    background: linear-gradient(135deg, #06b6d4, #22d3ee);
}

.service-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--white);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary);
    text-decoration: none;
    margin-top: auto;
    transition: gap 0.3s;
}

.service-link:hover {
    gap: 12px;
}

.service-content h3 {
    font-size: 17px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.service-content p {
    font-size: 13px;
    color: var(--gray-500);
    line-height: 1.7;
    font-style: italic;
}

/* ==========================================
   PROCESS
   ========================================== */
.process-section {
    padding: 100px 0;
    background: var(--gray-50);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}

.process-grid::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 12.5%;
    right: 12.5%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gray-300), var(--gray-300), transparent);
    z-index: 0;
}

.process-card {
    text-align: center;
    padding: 32px 20px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    transition: all var(--transition-base);
    position: relative;
    z-index: 1;
}

.process-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    border-color: var(--secondary);
}

.process-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 16px;
    transition: color var(--transition-base);
}

.process-card:hover .process-number {
    color: var(--accent);
}

.process-card h3 {
    font-size: 15px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.process-card p {
    font-size: 12px;
    color: var(--gray-500);
    line-height: 1.7;
    font-style: italic;
}

.process-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    transition: all var(--transition-base);
}

.process-icon svg {
    width: 24px;
    height: 24px;
    color: var(--white);
}

.process-card:hover .process-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(8, 145, 178, 0.3);
}

/* ==========================================
   ABOUT
   ========================================== */
.about-section {
    padding: 100px 0;
    background: var(--gradient-main);
    position: relative;
}

.about-wave {
    position: absolute;
    left: 0;
    right: 0;
    height: 60px;
    color: var(--white);
}

.about-wave.top {
    top: 0;
}

.about-wave.bottom {
    bottom: 0;
}

.about-wave svg {
    width: 100%;
    height: 100%;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content {
    color: var(--white);
}

.about-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
    letter-spacing: -0.02em;
}

.about-lead {
    font-size: 15px;
    color: var(--gray-300);
    line-height: 1.85;
    font-style: italic;
    font-weight: 300;
}

.about-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.about-images img {
    border-radius: var(--radius-md);
    width: 100%;
    height: 160px;
    object-fit: cover;
    transition: all var(--transition-base);
}

.about-images img:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.about-img-1 {
    grid-column: span 2;
    height: 200px !important;
}

/* About Features */
.about-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 28px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.feature-icon {
    width: 32px;
    height: 32px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 16px;
    height: 16px;
    stroke: var(--white);
}

.feature-item span {
    font-size: 14px;
    color: var(--gray-200);
}

/* About Stats Cards */
.about-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    padding: 36px;
    text-align: center;
    transition: all var(--transition-base);
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
}

.stat-value {
    display: block;
    font-size: 64px;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-text {
    font-size: 14px;
    color: var(--gray-300);
}

/* Partners Stats */
.partners-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.partners-stats .stat-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
}

.partners-stats .stat-value {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 56px;
}

.partners-stats .stat-text {
    color: var(--gray-600);
}

/* ==========================================
   STATS SECTION
   ========================================== */
.stats-section {
    padding: 50px 0;
    background: var(--gray-50);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.stat-card-mini {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 18px;
    transition: all var(--transition-base);
}

.stat-card-mini:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(8, 145, 178, 0.12);
    border-color: var(--secondary);
}

.stat-card-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-card-icon svg {
    width: 26px;
    height: 26px;
    stroke: var(--white);
}

.stat-card-content {
    display: flex;
    flex-direction: column;
}

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 800;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.stat-label {
    font-size: 13px;
    color: var(--gray-600);
    margin-top: 2px;
}

/* ==========================================
   HERO CARD (Metrics)
   ========================================== */
.hero-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    overflow: hidden;
    width: 100%;
    max-width: 380px;
}

.card-header {
    padding: 14px 18px;
    background: rgba(0, 0, 0, 0.15);
}

.card-dots {
    display: flex;
    gap: 7px;
}

.card-dots span {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
}

.card-dots span:first-child { background: #ef4444; }
.card-dots span:nth-child(2) { background: #f59e0b; }
.card-dots span:last-child { background: #22c55e; }

.card-content {
    padding: 24px;
}

.metric-row {
    display: flex;
    gap: 32px;
    margin-bottom: 24px;
}

.metric {
    text-align: center;
}

.metric-value {
    display: block;
    font-size: 30px;
    font-weight: 800;
    color: var(--white);
}

.metric-label {
    font-size: 13px;
    color: var(--gray-400);
}

.chart-placeholder {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    height: 110px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.chart-placeholder .bar {
    flex: 1;
    background: linear-gradient(180deg, var(--accent), var(--secondary));
    border-radius: 3px 3px 0 0;
    animation: barGrow 1s ease-out forwards;
    transform-origin: bottom;
}

.bar-1 { height: 40%; animation-delay: 0s; }
.bar-2 { height: 60%; animation-delay: 0.1s; }
.bar-3 { height: 45%; animation-delay: 0.2s; }
.bar-4 { height: 80%; animation-delay: 0.3s; }
.bar-5 { height: 65%; animation-delay: 0.4s; }
.bar-6 { height: 90%; animation-delay: 0.5s; }

@keyframes barGrow {
    from { transform: scaleY(0); }
    to { transform: scaleY(1); }
}

/* ==========================================
   CTA SECTION
   ========================================== */
.cta-section {
    padding: 80px 0;
    background: var(--gradient-main);
    text-align: center;
    position: relative;
}

.cta-wave {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    color: var(--white);
}

.cta-wave svg {
    width: 100%;
    height: 100%;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 14px;
    letter-spacing: -0.02em;
}

.cta-content p {
    font-size: 16px;
    color: var(--gray-300);
    margin-bottom: 28px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    font-style: italic;
}

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

/* ==========================================
   CONTACT
   ========================================== */
.contact-section {
    padding: 100px 0;
    background: var(--gray-50);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.contact-lead {
    font-size: 15px;
    color: var(--gray-500);
    line-height: 1.8;
    margin-bottom: 32px;
    font-style: italic;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
    transition: all var(--transition-base);
}

.contact-item:hover {
    border-color: var(--gray-300);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.contact-icon {
    width: 44px;
    height: 44px;
    background: var(--secondary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background var(--transition-base);
}

.contact-item:hover .contact-icon {
    background: var(--accent);
}

.contact-icon svg {
    color: var(--white);
    width: 20px;
    height: 20px;
}

.contact-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contact-label {
    font-size: 10px;
    font-weight: 600;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.contact-text a,
.contact-text span:not(.contact-label) {
    font-size: 14px;
    color: var(--gray-800);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition-fast);
    letter-spacing: -0.01em;
}

.contact-text a:hover {
    color: var(--secondary);
}

.contact-form-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--gray-100);
    position: relative;
}

.contact-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 40px;
    right: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary), var(--accent));
    border-radius: 0 0 2px 2px;
}

.form-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 6px;
    letter-spacing: -0.02em;
}

.form-subtitle {
    font-size: 13px;
    color: var(--gray-500);
    margin-bottom: 28px;
    font-style: italic;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
    position: relative;
}

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-600);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group label .optional {
    font-weight: 400;
    text-transform: none;
    font-style: italic;
    color: var(--gray-400);
    font-size: 11px;
    letter-spacing: 0;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    font-size: 14px;
    font-family: inherit;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    background: var(--white);
    transition: all var(--transition-base);
    color: var(--gray-800);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-400);
    font-style: italic;
    font-size: 13px;
}

.form-group input:hover,
.form-group textarea:hover,
.form-group select:hover {
    border-color: var(--gray-300);
    background: var(--gray-50);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2394a3b8'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 16px;
    padding-right: 44px;
    background-color: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--secondary);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(8, 145, 178, 0.06);
}

.form-group textarea {
    resize: vertical;
    min-height: 110px;
    line-height: 1.6;
}

.form-group .input-hint {
    font-size: 11px;
    color: var(--gray-400);
    margin-top: 6px;
    font-style: italic;
}

.contact-form .btn {
    margin-top: 8px;
    padding: 16px 32px;
    font-size: 14px;
    letter-spacing: 0.03em;
}

/* Form messages and alerts */
.form-messages {
    margin-bottom: 20px;
}

.alert {
    padding: 14px 18px;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 12px;
}

.alert-success {
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #10b981;
}

.alert-error {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

/* Form validation errors */
.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
    border-color: #ef4444;
    background: rgba(239, 68, 68, 0.05);
}

.error-text {
    display: block;
    font-size: 12px;
    color: #ef4444;
    margin-top: 6px;
}

/* Captcha styling */
.captcha-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 8px;
}

.captcha-group > div {
    transform: scale(0.95);
    transform-origin: left center;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    padding: 50px 0 20px;
    background: var(--gray-900);
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
    max-width: 280px;
}

.footer-brand .logo {
    margin-bottom: 14px;
}

.footer-description {
    font-size: 13px;
    color: var(--gray-400);
    line-height: 1.75;
    margin-bottom: 16px;
    font-style: italic;
    font-weight: 300;
}

.footer-email {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--gray-400);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-email svg {
    color: var(--secondary);
}

.footer-email:hover {
    color: var(--white);
}

.footer-links h4 {
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-300);
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 8px;
}

.footer-links ul a {
    font-size: 13px;
    color: var(--gray-400);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-links ul a:hover {
    color: var(--white);
}

.footer-bottom {
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 11px;
    color: var(--gray-500);
    letter-spacing: 0.02em;
}

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

/* Large Tablets and Small Desktops */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }

    /* Hero */
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }

    .hero-subtitle {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-stats {
        display: flex;
        justify-content: center;
    }

    .hero-visual {
        display: none;
    }

    .hero-bg-glow {
        top: 10%;
        right: -20%;
        width: 400px;
        height: 400px;
    }

    /* Sections */
    .empowering-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .empowering-images {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }

    .empowering-content {
        text-align: center;
    }

    .partners-section .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .partners-content {
        text-align: center;
    }

    .partners-image {
        justify-content: center;
        order: -1;
    }

    .partners-image img {
        max-width: 350px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-content {
        text-align: center;
    }

    .about-images {
        max-width: 500px;
        margin: 0 auto;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info {
        text-align: center;
    }

    .contact-details {
        max-width: 400px;
        margin: 0 auto;
    }

    /* Grids */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .process-grid::before {
        display: none;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 30px;
    }

    .footer-brand {
        grid-column: 1 / -1;
        max-width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }

    .footer-brand .logo {
        justify-content: center;
    }

    .footer-email {
        justify-content: center;
    }

    .footer-links {
        text-align: center;
    }

    /* Stats Section */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* About */
    .about-features {
        max-width: 400px;
        margin: 0 auto 28px;
    }

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

    /* Partners */
    .partners-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    /* CTA */
    .cta-content h2 {
        font-size: 30px;
    }

    .cta-content p {
        font-size: 15px;
    }
}

/* Tablets */
@media (max-width: 768px) {
    /* Top Bar */
    .top-bar {
        display: none;
    }

    /* Header */
    .header {
        top: 0;
        padding: 10px 0;
    }

    .nav {
        display: none;
    }

    .mobile-nav {
        display: flex;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-lang-selector {
        display: block;
    }

    .header-cta {
        display: none;
    }

    .logo {
        font-size: 1.3rem;
    }

    .logo-icon {
        width: 30px;
        height: 30px;
    }

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

    .hero h1 {
        font-size: 30px;
    }

    .hero-title-line {
        display: inline;
    }

    .hero-badge {
        font-size: 11px;
        padding: 6px 12px;
        margin-bottom: 20px;
    }

    .hero-subtitle {
        font-size: 15px;
        margin-bottom: 28px;
    }

    .hero-lines {
        display: none;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .hero-cta .btn {
        width: 100%;
        max-width: 280px;
    }

    /* Sections Common */
    .empowering-section,
    .partners-section,
    .services-section,
    .process-section,
    .about-section,
    .contact-section {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-header h2,
    .empowering-content h2,
    .partners-content h2,
    .about-content h2,
    .contact-info h2 {
        font-size: 26px;
    }

    .section-subtitle {
        font-size: 14px;
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .service-card {
        flex-direction: row;
        text-align: left;
        padding: 20px;
    }

    .service-card::before {
        width: 3px;
        height: 0;
        top: 0;
        left: 0;
        bottom: 0;
        right: auto;
    }

    .service-card:hover::before {
        width: 3px;
        height: 100%;
    }

    .service-number {
        font-size: 32px;
    }

    .service-content h3 {
        font-size: 16px;
    }

    .service-content p {
        font-size: 12px;
    }

    /* Process */
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .process-card {
        padding: 24px 16px;
    }

    .process-number {
        font-size: 28px;
    }

    .process-card h3 {
        font-size: 14px;
    }

    .process-card p {
        font-size: 11px;
    }

    /* Partners */
    .partners-lead {
        font-size: 14px;
    }

    .partners-features {
        gap: 12px;
    }

    .partners-features li {
        padding: 12px 14px;
    }

    .partners-features li svg {
        width: 18px;
        height: 18px;
    }

    .partners-features li span {
        font-size: 12px;
    }

    .partners-image img {
        max-width: 300px;
    }

    /* About */
    .about-content h2 {
        color: var(--white);
    }

    .about-lead {
        font-size: 14px;
    }

    .about-features {
        gap: 12px;
    }

    .feature-item span {
        font-size: 13px;
    }

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

    .stat-card {
        padding: 28px;
    }

    .stat-value {
        font-size: 52px;
    }

    .stat-text {
        font-size: 13px;
    }

    /* Stats Section */
    .stats-section {
        padding: 40px 0;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .stat-number {
        font-size: 36px;
    }

    .stat-label {
        font-size: 12px;
    }

    /* CTA Section */
    .cta-section {
        padding: 60px 0;
    }

    .cta-content h2 {
        font-size: 26px;
    }

    .cta-content p {
        font-size: 14px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
    }

    /* Partners Stats */
    .partners-stats {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .partners-stats .stat-card {
        padding: 24px;
    }

    .partners-stats .stat-value {
        font-size: 44px;
    }

    /* Contact */
    .contact-lead {
        font-size: 14px;
    }

    .contact-details {
        gap: 12px;
    }

    .contact-item {
        padding: 14px;
    }

    .contact-icon {
        width: 40px;
        height: 40px;
    }

    .contact-icon svg {
        width: 18px;
        height: 18px;
    }

    .contact-label {
        font-size: 9px;
    }

    .contact-text a,
    .contact-text span:not(.contact-label) {
        font-size: 13px;
    }

    /* Form */
    .contact-form-card {
        padding: 28px 24px;
    }

    .contact-form-card::before {
        left: 24px;
        right: 24px;
    }

    .form-title {
        font-size: 18px;
    }

    .form-subtitle {
        font-size: 12px;
        margin-bottom: 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-group {
        margin-bottom: 16px;
    }

    .form-group label {
        font-size: 11px;
        margin-bottom: 6px;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 12px 14px;
        font-size: 14px;
    }

    .form-group input::placeholder,
    .form-group textarea::placeholder {
        font-size: 12px;
    }

    .contact-form .btn {
        padding: 14px 24px;
        font-size: 13px;
    }

    /* Footer */
    .footer {
        padding: 40px 0 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
        text-align: center;
    }

    .footer-brand {
        grid-column: 1 / -1;
        margin-bottom: 8px;
    }

    .footer-description {
        font-size: 12px;
    }

    .footer-email {
        font-size: 12px;
    }

    .footer-links h4 {
        font-size: 11px;
        margin-bottom: 12px;
    }

    .footer-links ul li {
        margin-bottom: 6px;
    }

    .footer-links ul a {
        font-size: 12px;
    }

    .footer-bottom p {
        font-size: 10px;
    }
}

/* Mobile Phones */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    /* Hero */
    .hero {
        padding: 90px 0 50px;
    }

    .hero h1 {
        font-size: 26px;
    }

    .hero-badge {
        font-size: 10px;
        padding: 5px 10px;
    }

    .hero-subtitle {
        font-size: 14px;
        line-height: 1.7;
    }

    .hero-cta .btn {
        max-width: 100%;
        padding: 14px 20px;
        font-size: 14px;
    }

    /* Sections */
    .empowering-section,
    .partners-section,
    .services-section,
    .process-section,
    .about-section,
    .contact-section {
        padding: 50px 0;
    }

    .section-header {
        margin-bottom: 32px;
    }

    .section-header h2,
    .empowering-content h2,
    .partners-content h2,
    .about-content h2,
    .contact-info h2 {
        font-size: 24px;
    }

    .section-subtitle {
        font-size: 13px;
    }

    .section-tag {
        font-size: 10px;
        padding-left: 16px;
    }

    .section-tag::before {
        width: 10px;
    }

    /* Empowering */
    .empowering-images {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .empowering-images img {
        height: 200px;
    }

    .emp-img-2 {
        margin-top: 0;
    }

    .empowering-content h2 {
        font-size: 24px;
    }

    .empowering-content p {
        font-size: 13px;
    }

    /* Partners */
    .partners-content h2 {
        font-size: 24px;
    }

    .partners-lead {
        font-size: 13px;
    }

    .partners-features li {
        padding: 10px 12px;
        gap: 10px;
    }

    .partners-features li svg {
        width: 16px;
        height: 16px;
    }

    .partners-features li span {
        font-size: 11px;
    }

    .partners-features li strong {
        display: block;
        margin-bottom: 2px;
    }

    .partners-features li em {
        display: block;
    }

    .partners-image img {
        max-width: 250px;
    }

    /* Services */
    .service-card {
        padding: 16px;
        gap: 14px;
    }

    .service-number {
        font-size: 28px;
    }

    .service-content h3 {
        font-size: 15px;
    }

    .service-content p {
        font-size: 11px;
    }

    /* Process */
    .process-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .process-card {
        padding: 20px 16px;
        display: flex;
        flex-direction: row;
        align-items: center;
        text-align: left;
        gap: 16px;
    }

    .process-number {
        font-size: 24px;
        margin-bottom: 0;
        min-width: 40px;
    }

    .process-card h3 {
        font-size: 14px;
        margin-bottom: 4px;
    }

    .process-card p {
        font-size: 11px;
        margin-bottom: 0;
    }

    /* About */
    .about-section {
        padding: 40px 0;
    }

    .about-content h2 {
        font-size: 24px;
    }

    .about-lead {
        font-size: 13px;
    }

    .about-images {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .about-images img {
        height: 160px;
    }

    .about-img-1 {
        grid-column: span 1;
        height: 160px !important;
    }

    /* Contact */
    .contact-info h2 {
        font-size: 24px;
    }

    .contact-lead {
        font-size: 13px;
    }

    .contact-details {
        gap: 10px;
    }

    .contact-item {
        padding: 12px;
        gap: 12px;
    }

    .contact-icon {
        width: 36px;
        height: 36px;
    }

    .contact-icon svg {
        width: 16px;
        height: 16px;
    }

    .contact-text a,
    .contact-text span:not(.contact-label) {
        font-size: 12px;
    }

    /* Form */
    .contact-form-card {
        padding: 24px 20px;
    }

    .contact-form-card::before {
        left: 20px;
        right: 20px;
        height: 2px;
    }

    .form-title {
        font-size: 17px;
    }

    .form-subtitle {
        font-size: 11px;
        margin-bottom: 20px;
    }

    .form-group {
        margin-bottom: 14px;
    }

    .form-group label {
        font-size: 10px;
    }

    .form-group label .optional {
        font-size: 9px;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 12px;
        font-size: 14px;
    }

    .form-group textarea {
        min-height: 90px;
    }

    .contact-form .btn {
        padding: 14px 20px;
        font-size: 13px;
    }

    /* Footer */
    .footer {
        padding: 32px 0 16px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-brand .logo {
        font-size: 1.2rem;
    }

    .footer-description {
        font-size: 11px;
    }

    .footer-email {
        font-size: 11px;
    }

    .footer-links h4 {
        font-size: 10px;
        margin-bottom: 10px;
        margin-top: 0;
    }

    .footer-links ul a {
        font-size: 11px;
    }

    .footer-bottom {
        padding-top: 16px;
    }

    .footer-bottom p {
        font-size: 9px;
    }

    /* Buttons general */
    .btn {
        padding: 12px 22px;
        font-size: 12px;
        letter-spacing: 0.03em;
    }

    .btn-lg {
        padding: 13px 26px;
        font-size: 13px;
    }

    .btn:hover {
        transform: translateY(-1px);
    }

    .btn:active {
        transform: translateY(0) scale(0.98);
    }
}

/* Extra Small Devices */
@media (max-width: 360px) {
    .container {
        padding: 0 12px;
    }

    .hero h1 {
        font-size: 24px;
    }

    .hero-subtitle {
        font-size: 13px;
    }

    .section-header h2,
    .empowering-content h2,
    .partners-content h2,
    .about-content h2,
    .contact-info h2 {
        font-size: 22px;
    }

    .contact-form-card {
        padding: 20px 16px;
    }

    .contact-form-card::before {
        left: 16px;
        right: 16px;
    }

    .partners-features li {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

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

    .process-number {
        min-width: auto;
    }

    /* Buttons */
    .btn {
        padding: 11px 18px;
        font-size: 11px;
    }

    .btn-lg {
        padding: 12px 22px;
        font-size: 12px;
    }
}
