/* ============================================
   EasyGo13 - Deep Green Design System
   Modern, Premium IT Solutions Website
   ============================================ */

/* CSS Custom Properties */
:root {
    /* Primary Colors - Deep Green Palette */
    --color-primary: #064E3B;
    --color-primary-dark: #053D2E;
    --color-primary-light: #065F46;
    --color-emerald: #10B981;
    --color-emerald-light: #34D399;
    --color-mint: #D1FAE5;
    --color-mint-soft: #ECFDF5;

    /* Background Colors */
    --bg-dark: #0A0F0D;
    --bg-card: #0D1512;
    --bg-card-hover: #111A16;
    --bg-gradient: linear-gradient(135deg, #0A0F0D 0%, #0D1512 50%, #0A1410 100%);

    /* Text Colors */
    --text-primary: #FFFFFF;
    --text-secondary: #94A3B8;
    --text-muted: #64748B;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #064E3B 0%, #10B981 100%);
    --gradient-text: linear-gradient(90deg, #10B981 0%, #34D399 50%, #D1FAE5 100%);
    --gradient-contact: linear-gradient(135deg, #064E3B 0%, #065F46 50%, #10B981 100%);

    /* Shadows */
    --shadow-card: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -2px rgba(0, 0, 0, 0.2);
    --shadow-card-hover: 0 20px 40px -15px rgba(16, 185, 129, 0.15);
    --shadow-glow: 0 0 60px rgba(16, 185, 129, 0.1);

    /* Borders */
    --border-subtle: 1px solid rgba(16, 185, 129, 0.1);
    --border-card: 1px solid rgba(16, 185, 129, 0.15);

    /* Spacing */
    --section-padding: 6rem 2rem;
    --container-max: 1200px;

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

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

/* Reset & Base Styles */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: 1.25rem;
}

p {
    color: var(--text-secondary);
}

/* Container */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 1.5rem;
    background: rgba(10, 15, 13, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: var(--border-subtle);
    transition: var(--transition-medium);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 0.5rem;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.nav-brand img {
    height: 40px;
    width: auto;
}

.nav-brand span {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition-fast);
}

.nav-link:hover {
    color: var(--color-emerald);
}

.nav-link .dropdown-arrow {
    font-size: 0.6rem;
    transition: var(--transition-fast);
}

/* Dropdown Menu */
.nav-dropdown {
    position: relative;
}

.nav-dropdown .nav-link {
    cursor: pointer;
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 220px;
    background: var(--bg-card);
    border: var(--border-card);
    border-radius: 0.5rem;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    z-index: 1000;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-menu li {
    list-style: none;
}

.nav-dropdown-menu a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.nav-dropdown-menu a:hover {
    background: rgba(16, 185, 129, 0.1);
    color: var(--color-emerald);
}

/* ============================================
   Product Pages
   ============================================ */
.product-hero {
    padding: 10rem 2rem 4rem;
    text-align: center;
    background: var(--bg-dark);
}

.product-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.product-logo {
    margin-bottom: 2rem;
}

.product-logo img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
}

.product-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.product-tagline {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.product-description {
    padding: 4rem 2rem;
    background: var(--bg-dark);
}

.product-description-content {
    max-width: 800px;
    margin: 0 auto;
}

.product-intro {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.product-features {
    list-style: none;
    padding: 0;
    margin: 0 0 3rem 0;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: var(--text-primary);
    font-size: 1rem;
}

.product-features svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    fill: var(--color-emerald);
}

.product-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 2rem;
    transition: var(--transition-fast);
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: var(--color-emerald);
    color: var(--bg-dark);
    border: 2px solid var(--color-emerald);
}

.btn-primary:hover {
    background: var(--color-emerald-light);
    border-color: var(--color-emerald-light);
    transform: translateY(-2px);
}

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

.btn-outline:hover {
    background: var(--color-emerald);
    color: var(--bg-dark);
    transform: translateY(-2px);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: var(--section-padding);
    padding-top: 8rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 70%;
    height: 140%;
    background: radial-gradient(ellipse at center, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-logo img {
    max-width: 350px;
    width: 100%;
    height: auto;
    filter: brightness(0) invert(1);
    animation: float 6s ease-in-out infinite;
}

.hero-text h1 {
    margin-bottom: 1rem;
}

.hero-text .brand-name {
    display: block;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.hero-text .tagline {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 480px;
    margin-top: 1.5rem;
    line-height: 1.7;
}

/* Floating Shapes */
.floating-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    opacity: 0.3;
}

.shape-1 {
    top: 15%;
    left: 10%;
    width: 8px;
    height: 8px;
    background: var(--color-emerald);
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite;
}

.shape-2 {
    top: 30%;
    right: 15%;
    width: 40px;
    height: 40px;
    border: 2px solid var(--color-emerald);
    transform: rotate(45deg);
    animation: rotate 15s linear infinite;
}

.shape-3 {
    bottom: 20%;
    left: 20%;
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 26px solid var(--color-emerald);
    animation: float 4s ease-in-out infinite reverse;
}

.shape-4 {
    top: 60%;
    right: 25%;
    width: 6px;
    height: 6px;
    background: var(--color-mint);
    border-radius: 50%;
    animation: pulse 2.5s ease-in-out infinite 0.5s;
}

.shape-5 {
    bottom: 35%;
    right: 10%;
    width: 20px;
    height: 20px;
    border: 2px solid var(--color-primary-light);
    animation: rotate 20s linear infinite reverse;
}

/* ============================================
   Section Common Styles
   ============================================ */
.section {
    padding: var(--section-padding);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-header h2 {
    position: relative;
    display: inline-block;
}

.section-header .bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    color: rgba(16, 185, 129, 0.03);
    white-space: nowrap;
    pointer-events: none;
    z-index: -1;
}

.section-header p {
    margin-top: 1rem;
    font-size: 1.1rem;
}

/* ============================================
   Strengths Section
   ============================================ */
.strengths {
    background: var(--bg-dark);
}

.strengths-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.strength-card {
    background: var(--bg-card);
    border: var(--border-card);
    border-radius: 1rem;
    padding: 2rem;
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.strength-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-medium);
}

.strength-card:hover {
    background: var(--bg-card-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
}

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

.strength-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 0.75rem;
    margin-bottom: 1.5rem;
}

.strength-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--color-emerald);
}

.strength-card h3 {
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.strength-card p {
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ============================================
   About Section
   ============================================ */
.about {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-card) 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-image-container {
    position: relative;
    padding: 2rem;
}

.about-image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    opacity: 0.1;
    animation: morphing 10s ease-in-out infinite;
}

.about-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.about-shapes .shape {
    opacity: 0.5;
}

.about-text h2 {
    margin-bottom: 0.5rem;
}

.about-text .bg-text {
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 800;
    color: rgba(16, 185, 129, 0.05);
    margin-bottom: 1rem;
}

.about-text .subtitle {
    color: var(--color-emerald);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.about-text .description {
    font-size: 1rem;
    line-height: 1.8;
}

/* ============================================
   Contact Section
   ============================================ */
.contact {
    background: var(--gradient-contact);
    text-align: center;
    padding: 5rem 2rem;
}

.contact h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
}

.contact p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.contact-email {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-mint);
    font-size: 1.25rem;
    font-weight: 600;
    text-decoration: none;
    cursor: default;
    transition: var(--transition-fast);
}

.contact-email:hover {
    color: var(--text-primary);
}

/* ============================================
   Contact Page (Dedicated)
   ============================================ */
.contact-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 4rem;
    position: relative;
    background: var(--bg-dark);
}

.contact-page-content {
    text-align: center;
    max-width: 600px;
    position: relative;
    z-index: 1;
}

.contact-page h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.contact-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.contact-card {
    background: var(--bg-card);
    border: var(--border-card);
    border-radius: 1.5rem;
    padding: 3rem 2rem;
    text-align: center;
    transition: var(--transition-medium);
}

.contact-card:hover {
    background: var(--bg-card-hover);
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-4px);
}

.contact-icon {
    width: 80px;
    height: 80px;
    min-width: 80px;
    min-height: 80px;
    max-width: 80px;
    max-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 50%;
    overflow: hidden;
}

.contact-icon svg {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px;
    min-height: 40px;
    max-width: 40px;
    max-height: 40px;
    stroke: var(--color-emerald);
    flex-shrink: 0;
}

.contact-card h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.contact-email-link {
    display: inline-block;
    color: var(--color-emerald);
    font-size: 1.25rem;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition-fast);
}

.contact-email-link:hover {
    color: var(--color-emerald-light);
    text-decoration: underline;
}

.nav-link-active {
    color: var(--color-emerald) !important;
}

/* ============================================
   Cookie Consent Banner
   ============================================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-card);
    border-top: var(--border-card);
    padding: 1rem 2rem;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
}

.cookie-banner-visible {
    transform: translateY(0);
}

.cookie-banner-hidden {
    transform: translateY(100%);
}

.cookie-content {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.cookie-btn {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--text-secondary);
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-fast);
    font-family: var(--font-primary);
}

.cookie-btn:hover {
    background: var(--color-emerald);
    border-color: var(--color-emerald);
    color: var(--bg-dark);
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .cookie-banner {
        padding: 1rem;
    }
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--bg-dark);
    border-top: var(--border-subtle);
    padding: 2rem;
    text-align: center;
}

.footer p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ============================================
   Privacy Policy Pages
   ============================================ */
.privacy-policy-hero {
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 3rem;
    position: relative;
    background: var(--gradient-hero);
    text-align: center;
}

.privacy-policy-content {
    text-align: center;
}

.privacy-policy-content h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.privacy-subtitle {
    color: var(--text-secondary);
    font-size: 1.25rem;
    font-weight: 500;
}

.privacy-policy-body {
    padding: 4rem 2rem;
    background: var(--bg-dark);
}

.privacy-policy-text {
    max-width: 800px;
    margin: 0 auto;
}

.privacy-intro {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: var(--border-subtle);
}

.privacy-policy-text h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-emerald);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.privacy-policy-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.privacy-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.privacy-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.privacy-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-emerald);
    font-weight: bold;
}

.privacy-email {
    margin-top: 0.5rem;
}

.privacy-email a {
    color: var(--color-emerald);
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition-fast);
}

.privacy-email a:hover {
    color: var(--color-emerald-light);
    text-decoration: underline;
}

.privacy-back-link {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: var(--border-subtle);
}

.privacy-back-link .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* ============================================
   Installation Pages
   ============================================ */
.installation-hero {
    min-height: 30vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 2rem;
    position: relative;
    background: var(--gradient-hero);
    text-align: center;
}

.installation-hero-content h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.installation-body {
    padding: 3rem 2rem 4rem;
    background: var(--bg-dark);
}

.installation-content {
    max-width: 900px;
    margin: 0 auto;
}

.installation-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    text-align: center;
}

.installation-intro strong {
    color: var(--text-primary);
    font-weight: 600;
}

.installation-screenshot {
    margin: 2rem 0 3rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: var(--border-card);
}

.installation-screenshot img {
    width: 100%;
    height: auto;
    display: block;
}

.installation-cta {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.installation-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* ============================================
   Animations
   ============================================ */
@keyframes float {

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

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

@keyframes pulse {

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

    50% {
        opacity: 0.6;
        transform: scale(1.2);
    }
}

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

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

@keyframes morphing {

    0%,
    100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }

    25% {
        border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
    }

    50% {
        border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
    }

    75% {
        border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
    }
}

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

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

/* Animation Classes */
.animate-fade-in {
    animation: fadeInUp 0.8s ease-out forwards;
}

.animate-delay-1 {
    animation-delay: 0.1s;
}

.animate-delay-2 {
    animation-delay: 0.2s;
}

.animate-delay-3 {
    animation-delay: 0.3s;
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero-logo {
        order: -1;
    }

    .hero-logo img {
        max-width: 280px;
    }

    .hero-text .tagline {
        margin: 1.5rem auto 0;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-visual {
        order: -1;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 4rem 1.5rem;
    }

    .nav-menu {
        gap: 1.5rem;
    }

    .nav-brand span {
        font-size: 1.1rem;
    }

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

    .hero-logo img {
        max-width: 220px;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 0.75rem 0.75rem;
    }

    .nav-brand img {
        height: 32px;
    }

    .nav-menu {
        gap: 1rem;
    }

    .nav-link {
        font-size: 0.85rem;
    }
}