/* ================================================
   ATA İLAÇ — Premium Design System
   Turquoise-to-Navy Gradient Theme
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
    /* ── Gradient Palette ── */
    --navy: #0a1628;
    --navy-light: #0f2035;
    --navy-mid: #132d4f;
    --teal-dark: #0d7377;
    --teal: #14b8a6;
    --teal-light: #2dd4bf;
    --turquoise: #22d3ee;
    --cyan-light: #67e8f9;
    --accent-gold: #f59e0b;
    --accent-violet: #d4540e;

    /* ── UI Colors ── */
    --bg-body: #f0f4f8;
    --bg-card: #ffffff;
    --bg-card-hover: #f8fafc;
    --text-heading: #0f172a;
    --text-body: #334155;
    --text-muted: #64748b;
    --text-light: #94a3b8;
    --border: #e2e8f0;
    --border-hover: #cbd5e1;

    /* ── Gradients ── */
    --gradient-hero: linear-gradient(135deg, #0a1628 0%, #0f2035 25%, #0d7377 60%, #14b8a6 100%);
    --gradient-teal: linear-gradient(135deg, #14b8a6, #22d3ee);
    --gradient-navy: linear-gradient(135deg, #0a1628, #132d4f);
    --gradient-card: linear-gradient(135deg, rgba(20, 184, 166, 0.08), rgba(34, 211, 238, 0.04));
    --gradient-glow: linear-gradient(135deg, rgba(20, 184, 166, 0.15), rgba(34, 211, 238, 0.05));
    --gradient-footer: linear-gradient(180deg, #0a1628 0%, #060e1a 100%);

    /* ── Typography ── */
    --font-heading: 'Outfit', system-ui, sans-serif;
    --font-body: 'Inter', system-ui, sans-serif;

    /* ── Shadows ── */
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, .05);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, .08), 0 1px 2px rgba(0, 0, 0, .04);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, .07), 0 2px 4px -2px rgba(0, 0, 0, .05);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, .08), 0 4px 6px -4px rgba(0, 0, 0, .04);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, .08), 0 8px 10px -6px rgba(0, 0, 0, .04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, .15);
    --shadow-teal: 0 4px 20px rgba(20, 184, 166, 0.25);
    --shadow-navy: 0 4px 20px rgba(10, 22, 40, 0.3);

    /* ── Radius ── */
    --radius-sm: 0.375rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-2xl: 2rem;
    --radius-full: 9999px;

    /* ── Transitions ── */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition-fast: 200ms var(--ease-out);
    --transition: 400ms var(--ease-out);
    --transition-slow: 600ms var(--ease-out);
}

/* ── Reset ── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    background: var(--bg-body);
    color: var(--text-body);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: var(--font-heading);
    color: var(--text-heading);
    line-height: 1.2;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* ── Layout ── */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 6rem 0;
}

/* ================================================
   HEADER
   ================================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(226, 232, 240, 0.6);
    transition: all var(--transition);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 1px 20px rgba(0, 0, 0, .06);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.5px;
    transition: opacity var(--transition-fast);
}

.logo:hover {
    opacity: 0.8;
}

.logo img {
    height: 75px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-body);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    position: relative;
    transition: all var(--transition-fast);
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--teal-dark);
    background: rgba(20, 184, 166, 0.06);
}

.nav-links a.active {
    color: var(--teal-dark);
    background: rgba(20, 184, 166, 0.1);
    font-weight: 600;
}

.menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.3rem;
    color: var(--text-heading);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-md);
    transition: background var(--transition-fast);
}

.menu-btn:hover {
    background: rgba(20, 184, 166, 0.06);
}

/* ================================================
   BUTTONS
   ================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition);
    border: 2px solid transparent;
    text-align: center;
}

.btn-primary {
    background: var(--gradient-teal);
    color: white;
    box-shadow: var(--shadow-teal);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(20, 184, 166, 0.35);
}

.btn-outline {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(8px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.7);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--navy);
    color: white;
    box-shadow: var(--shadow-navy);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(10, 22, 40, 0.4);
}

.btn-ghost {
    background: rgba(20, 184, 166, 0.08);
    color: var(--teal-dark);
    border-color: rgba(20, 184, 166, 0.15);
}

.btn-ghost:hover {
    background: rgba(20, 184, 166, 0.15);
    border-color: rgba(20, 184, 166, 0.3);
}

/* ================================================
   HERO SECTION
   ================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-hero);
    color: white;
    padding-top: 80px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 70% 20%, rgba(34, 211, 238, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse 50% 50% at 20% 80%, rgba(20, 184, 166, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, var(--bg-body), transparent);
    pointer-events: none;
}

/* Floating particles */
.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-particles span {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    animation: floatUp linear infinite;
}

@keyframes floatUp {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-10vh) scale(1);
        opacity: 0;
    }
}

.hero-content {
    max-width: 700px;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--cyan-light);
    margin-bottom: 2rem;
    backdrop-filter: blur(8px);
}

.hero-badge i {
    font-size: 0.7rem;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    letter-spacing: -1.5px;
    color: white;
}

.hero h1 .gradient-text {
    background: var(--gradient-teal);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.2rem;
    opacity: 0.85;
    margin-bottom: 2.5rem;
    max-width: 540px;
    line-height: 1.7;
}

/* Hero stats */
.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat h3 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--teal-light);
}

.hero-stat p {
    font-size: 0.85rem;
    opacity: 0.6;
    margin-bottom: 0;
}

/* ================================================
   FEATURE / INSIGHT CARDS
   ================================================ */
.feature-card {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-teal);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--border-hover);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
    background: var(--gradient-card);
    color: var(--teal-dark);
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    transition: all var(--transition);
}

.feature-card:hover .feature-icon {
    background: var(--gradient-teal);
    color: white;
    transform: scale(1.05);
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ================================================
   DIVISION / PRODUCT BANNERS
   ================================================ */
.division-card {
    border-radius: var(--radius-2xl);
    overflow: hidden;
    position: relative;
    padding: 3.5rem;
    display: flex;
    align-items: center;
    transition: all var(--transition);
    border: 1px solid var(--border);
    background: var(--bg-card);
}

.division-card:hover {
    box-shadow: var(--shadow-2xl);
    transform: translateY(-4px);
}

.division-card .accent-stripe {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 5px;
}

.division-card.diabetes .accent-stripe {
    background: var(--gradient-teal);
}

.division-card.aesthetics .accent-stripe {
    background: linear-gradient(180deg, var(--accent-violet), #f0842a);
}

.division-card .division-icon {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
    margin-right: 2.5rem;
}

.division-card.diabetes .division-icon {
    background: linear-gradient(135deg, rgba(20, 184, 166, .1), rgba(34, 211, 238, .05));
    color: var(--teal-dark);
}

.division-card.aesthetics .division-icon {
    background: linear-gradient(135deg, rgba(139, 92, 246, .1), rgba(192, 132, 252, .05));
    color: var(--accent-violet);
}

.division-card h2 {
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
}

.division-card p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.division-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.division-features span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.85rem;
    background: var(--gradient-card);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

.division-features span i {
    color: var(--teal);
    font-size: 0.65rem;
}

/* ================================================
   SECTION HEADERS
   ================================================ */
.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3.5rem;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--teal-dark);
    margin-bottom: 1rem;
}

.section-label::before,
.section-label::after {
    content: '';
    width: 16px;
    height: 1.5px;
    background: var(--teal);
    border-radius: 1px;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    letter-spacing: -0.5px;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.7;
}

/* ================================================
   FOOTER
   ================================================ */
.footer {
    background: var(--gradient-footer);
    color: white;
    padding: 5rem 0 2rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--teal), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col .logo {
    color: white;
    margin-bottom: 1rem;
}

.footer-col .logo img {
    filter: brightness(0) invert(1);
    height: 55px;
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-light);
    font-size: 0.9rem;
    transition: all var(--transition-fast);
}

.footer-links a:hover {
    color: var(--teal-light);
    padding-left: 4px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--text-light);
    font-size: 0.85rem;
}

/* ================================================
   ANIMATIONS
   ================================================ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s var(--ease-out);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s var(--ease-out);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

/* Counter Animation */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Pulse glow */
@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(20, 184, 166, 0.4);
    }

    50% {
        box-shadow: 0 0 0 12px rgba(20, 184, 166, 0);
    }
}

/* ================================================
   PAGE HERO (Sub-Pages)
   ================================================ */
.page-hero {
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--gradient-hero);
    color: white;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 50% 30%, rgba(34, 211, 238, 0.12) 0%, transparent 60%);
    pointer-events: none;
}

.page-hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 0.75rem;
    position: relative;
}

.page-hero p {
    font-size: 1.15rem;
    opacity: 0.8;
    max-width: 550px;
    margin: 0 auto;
    position: relative;
}

/* ================================================
   CONTENT CARDS (About, Blog, Contact)
   ================================================ */
.content-card {
    background: var(--bg-card);
    padding: 3rem;
    border-radius: var(--radius-2xl);
    border: 1px solid var(--border);
    transition: all var(--transition);
    position: relative;
}

.content-card:hover {
    box-shadow: var(--shadow-lg);
}

/* ================================================
   BLOG CARDS
   ================================================ */
.blog-card {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--border-hover);
}

.blog-card-img {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    position: relative;
}

.blog-card-body {
    padding: 1.75rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-body h3 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.blog-card-body p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    flex: 1;
}

/* ================================================
   CONTACT CARDS
   ================================================ */
.contact-info-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    transition: all var(--transition);
}

.contact-info-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--border-hover);
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
    background: var(--gradient-card);
    color: var(--teal-dark);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-info-card h4 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.contact-info-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Form */
.form-group {
    margin-bottom: 1.25rem;
}

.form-label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.4rem;
    font-size: 0.9rem;
    color: var(--text-heading);
}

.form-input {
    width: 100%;
    padding: 0.85rem 1.1rem;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-heading);
    background: var(--bg-card);
    transition: all var(--transition-fast);
    outline: none;
}

.form-input:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.12);
}

textarea.form-input {
    resize: vertical;
    min-height: 120px;
}

.consent-box {
    margin-bottom: 1.25rem;
    padding: 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: rgba(20, 184, 166, 0.04);
}

.consent-option {
    display: flex;
    gap: 0.65rem;
    align-items: flex-start;
    margin-bottom: 0.65rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.consent-option:last-of-type {
    margin-bottom: 0;
}

.consent-option input[type="checkbox"] {
    margin-top: 0.15rem;
}

.consent-option a {
    color: var(--teal-dark);
    text-decoration: underline;
}

.form-note {
    margin-top: 0.65rem;
    color: var(--text-light);
    font-size: 0.8rem;
}

.cookie-banner {
    position: fixed;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 1200;
    background: rgba(10, 22, 40, 0.96);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-2xl);
    backdrop-filter: blur(8px);
}

.cookie-banner-content {
    padding: 1rem 1.25rem;
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
}

.cookie-banner p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.88);
}

.cookie-banner a {
    text-decoration: underline;
    color: var(--teal-light);
}

.cookie-banner-actions {
    display: flex;
    gap: 0.6rem;
    flex-shrink: 0;
}

.cookie-banner .btn {
    padding: 0.6rem 1.1rem;
    font-size: 0.85rem;
}

/* ================================================
   CERT / DISTRIBUTOR GRID
   ================================================ */
.partner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.partner-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 2rem;
    text-align: center;
    transition: all var(--transition);
}

.partner-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--teal);
    transform: translateY(-3px);
}

.partner-card i {
    font-size: 2rem;
    color: var(--teal-dark);
    margin-bottom: 1rem;
}

.partner-card h4 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.partner-card p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ================================================
   UTILITIES
   ================================================ */
.text-center {
    text-align: center;
}

.text-teal {
    color: var(--teal-dark);
}

.text-muted {
    color: var(--text-muted);
}

.text-light {
    color: var(--text-light);
}

.mb-1 {
    margin-bottom: 0.5rem;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-3 {
    margin-bottom: 1.5rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

.mt-2 {
    margin-top: 1rem;
}

.mt-4 {
    margin-top: 2rem;
}

.flex {
    display: flex;
}

.flex-col {
    display: flex;
    flex-direction: column;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.gap-1 {
    gap: 0.5rem;
}

.gap-2 {
    gap: 1rem;
}

.gap-3 {
    gap: 1.5rem;
}

.gap-4 {
    gap: 2rem;
}

.grid {
    display: grid;
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        transform: translateX(100%);
        transition: transform var(--transition);
        z-index: 999;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-links a {
        font-size: 1.2rem;
        padding: 1rem 2rem;
    }

    .menu-btn {
        display: block;
        z-index: 1001;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .section {
        padding: 4rem 0;
    }

    .container {
        padding: 0 1.25rem;
    }

    .feature-card {
        padding: 2rem;
    }

    .division-card {
        flex-direction: column;
        padding: 2rem;
    }

    .division-card .division-icon {
        margin-right: 0;
        margin-bottom: 1.5rem;
    }

    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .page-hero {
        min-height: 280px;
    }

    .content-card {
        padding: 2rem;
    }

    .cookie-banner-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-banner-actions {
        width: 100%;
    }

    .cookie-banner .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
}
