/* ===== VARIABLES ===== */
:root {
    --primary-gold: #FDB913;
    --primary-gold-dark: #e5a500;
    --dark-blue: #0A1628;
    --dark-blue-light: #1a2640;
    --light-bg: #F8F9FC;
    --light-gray: #EEF1F6;
    --white: #FFFFFF;
    --text-dark: #1A1A1A;
    --text-gray: #5A6576;
    --text-light: #8B95A5;
    
    --shadow-sm: 0 2px 8px rgba(10, 22, 40, 0.06);
    --shadow-md: 0 8px 24px rgba(10, 22, 40, 0.08);
    --shadow-lg: 0 16px 48px rgba(10, 22, 40, 0.12);
    --shadow-xl: 0 24px 64px rgba(10, 22, 40, 0.16);
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark-blue);
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 600px;
}

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

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-normal);
    border: none;
}

.btn-primary {
    background: var(--primary-gold);
    color: var(--dark-blue);
    box-shadow: 0 4px 16px rgba(253, 185, 19, 0.3);
}

.btn-primary:hover {
    background: var(--primary-gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(253, 185, 19, 0.4);
}

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

.btn-outline:hover {
    background: var(--dark-blue);
    color: var(--white);
}

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

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1rem;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: all var(--transition-normal);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    padding: 0.75rem 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo img {
    height: 48px;
    width: auto;
}

.navbar.scrolled .nav-logo img {
    height: 40px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--dark-blue);
    transition: color var(--transition-fast);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: width var(--transition-normal);
}

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

.nav-cta {
    background: var(--primary-gold);
    color: var(--dark-blue);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 600;
    transition: all var(--transition-normal);
}

.nav-cta:hover {
    background: var(--primary-gold-dark);
    transform: translateY(-2px);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--dark-blue);
    transition: all var(--transition-normal);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    padding: 140px 2rem 80px;
    overflow: hidden;
    background: var(--light-bg);
}

.hero-background {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
}

.hero-shape-1 {
    top: -20%;
    right: -10%;
    width: 60%;
    height: 120%;
    background: linear-gradient(180deg, rgba(253, 185, 19, 0.08) 0%, rgba(253, 185, 19, 0.02) 100%);
}

.hero-shape-2 {
    bottom: -30%;
    left: -20%;
    width: 50%;
    height: 80%;
    background: linear-gradient(180deg, rgba(10, 22, 40, 0.03) 0%, transparent 100%);
}

.hero-grid-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(10, 22, 40, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(10, 22, 40, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: linear-gradient(to left, black 0%, transparent 100%);
    -webkit-mask-image: linear-gradient(to left, black 0%, transparent 100%);
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
}

.hero-logo img {
    height: 124px;
    width: auto;
    display: block;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--dark-blue);
    letter-spacing: 1px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 1.5rem;
}

.badge-icon {
    font-size: 1rem;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 540px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

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

.hero-image-main {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.hero-image-main img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(10, 22, 40, 0.3) 100%);
}

.hero-image-secondary {
    position: absolute;
    bottom: -40px;
    left: -60px;
    width: 200px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--white);
}

.hero-image-secondary img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.hero-floating-card {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--white);
    padding: 1rem 1.25rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: float 3s ease-in-out infinite;
}

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

.floating-icon {
    font-size: 1.5rem;
}

.floating-text {
    display: flex;
    flex-direction: column;
}

.floating-label {
    font-size: 0.7rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.floating-value {
    font-weight: 700;
    color: var(--dark-blue);
    font-size: 0.95rem;
}

/* Hero Stats */
.hero-stats {
    max-width: 1400px;
    margin: 4rem auto 0;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.stat-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-normal);
}

.stat-card:hover {
    transform: translateY(-4px);
}

.stat-number {
    display: block;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-gold);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-number small {
    font-size: 1.25rem;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* ===== TRUST BANNER ===== */
.trust-banner {
    background: var(--dark-blue);
    padding: 1.5rem 2rem;
}

.trust-container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.trust-banner p {
    color: var(--white);
    font-size: 1rem;
    margin: 0;
}

.trust-banner strong {
    color: var(--primary-gold);
}

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

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.about-image-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.about-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 60%;
    height: 60%;
    background: var(--primary-gold);
    border-radius: var(--radius-xl);
    z-index: -1;
    opacity: 0.2;
}

.about-badge {
    position: absolute;
    bottom: 30px;
    right: -40px;
    background: var(--dark-blue);
    color: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.badge-number {
    display: block;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-gold);
    line-height: 1;
}

.badge-text {
    font-size: 0.8rem;
    line-height: 1.3;
    opacity: 0.9;
}

.about-content .section-title {
    max-width: 500px;
}

.about-text {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

/* ===== SERVICES SECTION ===== */
.services {
    position: relative;
    padding: 100px 2rem;
    background: var(--light-bg);
    overflow: hidden;
}

.services-background {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.services-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 1px 1px, rgba(10, 22, 40, 0.03) 1px, transparent 0);
    background-size: 32px 32px;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.services-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-header .section-subtitle {
    margin: 0 auto;
}

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

.service-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.service-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(10, 22, 40, 0.6) 100%);
}

.service-content {
    padding: 2rem;
}

.service-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, #ffcd4d 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    margin-top: -48px;
    position: relative;
    box-shadow: var(--shadow-md);
}

.service-icon svg {
    stroke: var(--dark-blue);
}

.service-content h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.service-content ul {
    margin-bottom: 1.5rem;
}

.service-content li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    color: var(--text-gray);
    position: relative;
    font-size: 0.95rem;
}

.service-content li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--primary-gold);
    border-radius: 50%;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--dark-blue);
    font-weight: 600;
    font-size: 0.9rem;
    transition: gap var(--transition-normal);
}

.service-link:hover {
    gap: 0.75rem;
    color: var(--primary-gold-dark);
}

/* ===== PRODUCTS SECTION ===== */
.products {
    padding: 100px 2rem;
    background: var(--white);
}

.products-container {
    max-width: 1400px;
    margin: 0 auto;
}

.products-header {
    text-align: center;
    margin-bottom: 4rem;
}

.products-showcase {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 2rem;
    align-items: center;
}

.product-item {
    text-align: center;
}

.product-image {
    position: relative;
    background: var(--light-bg);
    border-radius: var(--radius-xl);
    padding: 2rem;
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: all var(--transition-normal);
}

.product-item:hover .product-image {
    box-shadow: var(--shadow-lg);
}

.product-image img {
    max-height: 200px;
    margin: 0 auto;
    object-fit: contain;
}

.product-item.featured .product-image {
    padding: 3rem;
    background: linear-gradient(135deg, var(--light-bg) 0%, rgba(253, 185, 19, 0.1) 100%);
}

.product-item.featured .product-image img {
    max-height: 280px;
}

.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary-gold);
    color: var(--dark-blue);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-plus {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: var(--primary-gold);
    color: var(--dark-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 300;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.product-plus:hover {
    transform: rotate(90deg);
    background: var(--dark-blue);
    color: var(--white);
}

.product-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.product-item p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* ===== FEATURES SECTION ===== */
.features {
    padding: 100px 2rem;
    background: var(--light-bg);
}

.features-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.feature-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.feature-block-2 {
    direction: rtl;
}

.feature-block-2 > * {
    direction: ltr;
}

.feature-content h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.feature-content p {
    color: var(--text-gray);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.feature-link {
    display: inline-flex;
    align-items: center;
    color: var(--dark-blue);
    font-weight: 600;
    transition: color var(--transition-normal);
}

.feature-link:hover {
    color: var(--primary-gold-dark);
}

.feature-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.feature-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

/* ===== CLIENTS SECTION ===== */
.clients {
    padding: 100px 2rem;
    background: var(--white);
}

.clients-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.clients-content .section-subtitle {
    margin-bottom: 2.5rem;
}

.clients-logos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.client-logo {
    background: var(--light-bg);
    padding: 1.5rem 2rem;
    border-radius: var(--radius-md);
    text-align: center;
    font-weight: 700;
    color: var(--dark-blue);
    font-size: 1.1rem;
    transition: all var(--transition-normal);
}

.client-logo:hover {
    background: var(--primary-gold);
    color: var(--dark-blue);
    transform: translateY(-4px);
}

.testimonial-card {
    background: var(--dark-blue);
    padding: 3rem;
    border-radius: var(--radius-xl);
    position: relative;
}

.testimonial-quote {
    font-family: 'Plus Jakarta Sans', serif;
    font-size: 6rem;
    color: var(--primary-gold);
    opacity: 0.3;
    position: absolute;
    top: 1rem;
    left: 2rem;
    line-height: 1;
}

.testimonial-text {
    color: var(--white);
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, #ffcd4d 100%);
    border-radius: 50%;
}

.author-name {
    display: block;
    color: var(--white);
    font-weight: 600;
}

.author-role {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* ===== REGIONS SECTION ===== */
.regions {
    padding: 100px 2rem;
    background: var(--light-bg);
}

.regions-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.regions-content .section-subtitle {
    margin-bottom: 2.5rem;
}

.regions-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.region-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--white);
    padding: 1rem 1.25rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    color: var(--dark-blue);
    box-shadow: var(--shadow-sm);
}

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

.regions-note {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.benefit-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

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

.benefit-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(253, 185, 19, 0.15) 0%, rgba(253, 185, 19, 0.05) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.benefit-icon svg {
    stroke: var(--primary-gold);
}

.benefit-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.benefit-card p {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ===== CTA SECTION ===== */
.cta {
    position: relative;
    padding: 100px 2rem;
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--dark-blue-light) 100%);
    overflow: hidden;
}

.cta-background {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
}

.cta-shape-1 {
    top: -50%;
    right: -20%;
    width: 60%;
    height: 150%;
    background: radial-gradient(circle, rgba(253, 185, 19, 0.1) 0%, transparent 70%);
}

.cta-shape-2 {
    bottom: -30%;
    left: -10%;
    width: 40%;
    height: 100%;
    background: radial-gradient(circle, rgba(253, 185, 19, 0.05) 0%, transparent 70%);
}

.cta-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 1rem;
}

.cta-content > p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.cta-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.cta-info p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    margin: 0;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark-blue);
    padding: 3rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.footer-logo img {
    height: 60px;
    width: auto;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary-gold);
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    margin: 0;
}

/* ===== ANIMATIONS ===== */
.animate-in {
    opacity: 0;
    transform: translateY(30px);
    animation: animateIn 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }
.delay-6 { animation-delay: 0.6s; }

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

.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .hero-container {
        gap: 3rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-showcase {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .nav-links,
    .nav-cta {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .nav-links.active {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--white);
        padding: 2rem;
        gap: 1.5rem;
        box-shadow: var(--shadow-lg);
    }
    
    .hero-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 2.5rem;
    }
    
    .hero-content {
        align-items: center;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-visual {
        order: 2;
        width: 100%;
        max-width: 520px;
    }
    
    .hero-image-secondary {
        left: auto;
        right: -30px;
    }
    
    .about-container,
    .clients-container,
    .regions-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .feature-block,
    .feature-block-2 {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .feature-block-2 {
        direction: ltr;
    }
    
    .products-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .product-item.featured .product-image img {
        max-height: 200px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 120px 1.5rem 60px;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .stat-card {
        padding: 1.25rem 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .regions-list {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .clients-logos {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn-large {
        width: 100%;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem 2rem;
    }
    
    .about-badge {
        right: 20px;
        bottom: 20px;
    }
    
    .hero-floating-card {
        right: 10px;
    }
    
    .about {
        padding: 80px 1.5rem;
    }
    
    .about-container {
        gap: 2.5rem;
    }
    
    .about-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        gap: 1.25rem;
        align-items: center;
    }
    
    .about-content .section-title {
        max-width: none;
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .about-text {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .about-content .btn-primary {
        align-self: center;
    }
    
    .products {
        padding: 70px 1.5rem 60px;
    }
    
    .products-header {
        margin-bottom: 2.5rem;
    }
    
    .clients {
        padding: 70px 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .hero-image-secondary {
        display: none;
    }
    
    .about-accent {
        display: none;
    }
}
