/* ==========================================
   NOVASEVEN GROUP — Stylesheet
   Modern, clean, professional M&E website
   ========================================== */

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

:root {
    /* Brand colours */
    --primary: #0f4c81;
    --primary-dark: #0a3460;
    --primary-light: #1a6bb5;
    --accent: #f0a500;
    --accent-light: #ffd56b;

    /* Neutrals */
    --dark: #0d1117;
    --dark-2: #161b22;
    --gray-900: #1e2530;
    --gray-800: #2a3241;
    --gray-700: #3d4654;
    --gray-600: #545d6e;
    --gray-500: #7a8394;
    --gray-400: #9ca3af;
    --gray-300: #c5cbd6;
    --gray-200: #e2e6ec;
    --gray-100: #f0f2f5;
    --white: #ffffff;

    /* Functional */
    --bg: var(--white);
    --bg-alt: var(--gray-100);
    --text: var(--gray-900);
    --text-light: var(--gray-600);
    --border: var(--gray-200);

    /* Type */
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Space Grotesk', 'Inter', sans-serif;

    /* Spacing */
    --section-py: 120px;
    --container: 1200px;

    /* Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    /* Transitions */
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s var(--ease);
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.15;
}

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

.section-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
    background: rgba(15, 76, 129, 0.08);
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(32px, 5vw, 48px);
    color: var(--dark);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.65;
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.35s var(--ease);
    letter-spacing: 0.3px;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(15, 76, 129, 0.25);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
}

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

.btn-lg {
    padding: 18px 40px;
    font-size: 16px;
}

.btn-full {
    width: 100%;
}

/* ==========================================
   NAVIGATION
   ========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s var(--ease);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.06);
}

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

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo img {
    height: 44px;
    width: auto;
    transition: opacity 0.4s var(--ease);
}

.logo-light {
    display: block;
}

.logo-dark {
    display: none;
}

.navbar.scrolled .logo-light {
    display: none;
}

.navbar.scrolled .logo-dark {
    display: block;
}

.footer-logo {
    display: inline-block;
}

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

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    color: rgba(255, 255, 255, 0.85);
    transition: all 0.3s var(--ease);
}

.nav-links a:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.navbar.scrolled .nav-links a {
    color: var(--gray-700);
}

.navbar.scrolled .nav-links a:hover {
    color: var(--primary);
    background: rgba(15, 76, 129, 0.06);
}

.nav-cta {
    background: var(--primary) !important;
    color: var(--white) !important;
    padding: 10px 24px !important;
    border-radius: var(--radius-sm) !important;
}

.nav-cta:hover {
    background: var(--primary-dark) !important;
    transform: translateY(-1px);
}

.navbar.scrolled .nav-cta {
    background: var(--primary) !important;
    color: var(--white) !important;
}

/* Mobile toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s var(--ease);
}

.navbar.scrolled .nav-toggle span {
    background: var(--dark);
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary-dark) 50%, var(--primary) 100%);
    z-index: -2;
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 70% 20%, rgba(240, 165, 0, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 20% 80%, rgba(15, 76, 129, 0.15) 0%, transparent 50%);
    z-index: 1;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s var(--ease) 0.2s forwards;
}

.hero-title {
    font-size: clamp(44px, 7vw, 80px);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -2px;
    line-height: 1.05;
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s var(--ease) 0.4s forwards;
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    max-width: 560px;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s var(--ease) 0.6s forwards;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 80px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s var(--ease) 0.8s forwards;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 40px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s var(--ease) 1s forwards;
}

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

.stat-number {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.stat-plus {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--accent);
}

.stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 4px;
    letter-spacing: 0.3px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
}

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

/* ==========================================
   ABOUT
   ========================================== */
.about {
    padding: var(--section-py) 0;
    background: var(--bg);
}

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

.about-lead {
    font-size: 20px;
    font-weight: 500;
    color: var(--dark);
    line-height: 1.6;
    margin-bottom: 20px;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.75;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.value-card {
    background: var(--bg-alt);
    padding: 28px 32px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    transition: all 0.4s var(--ease);
}

.value-card:hover {
    background: var(--white);
    border-color: rgba(15, 76, 129, 0.15);
    box-shadow: 0 8px 40px rgba(15, 76, 129, 0.08);
    transform: translateY(-2px);
}

.value-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(15, 76, 129, 0.08);
    color: var(--primary);
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
}

.value-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--dark);
}

.value-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.65;
}

/* ==========================================
   SERVICES
   ========================================== */
.services {
    padding: var(--section-py) 0;
    background: var(--bg-alt);
}

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

.service-card {
    position: relative;
    background: var(--white);
    padding: 40px 32px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    transition: all 0.4s var(--ease);
    overflow: hidden;
}

.service-card:hover {
    border-color: rgba(15, 76, 129, 0.2);
    box-shadow: 0 20px 60px rgba(15, 76, 129, 0.1);
    transform: translateY(-4px);
}

.service-number {
    position: absolute;
    top: 16px;
    right: 20px;
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--gray-100);
    line-height: 1;
    transition: color 0.4s var(--ease);
}

.service-card:hover .service-number {
    color: rgba(15, 76, 129, 0.06);
}

.service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    border-radius: var(--radius-sm);
    margin-bottom: 24px;
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--dark);
}

.service-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

/* ==========================================
   WHY US
   ========================================== */
.why-us {
    padding: var(--section-py) 0;
    background: var(--bg);
}

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

.why-us-content .section-tag {
    display: inline-block;
}

.why-us-content .section-title {
    text-align: left;
}

.why-us-lead {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.7;
    margin-top: 16px;
    margin-bottom: 40px;
}

.why-us-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.why-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.why-check {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    background: rgba(15, 76, 129, 0.08);
    color: var(--primary);
    border-radius: 50%;
    margin-top: 2px;
}

.why-item h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 4px;
}

.why-item p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Visual cards */
.why-us-visual {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    min-height: 420px;
}

.visual-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 24px;
    border-radius: var(--radius-lg);
    transition: transform 0.4s var(--ease);
}

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

.card-1 {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    grid-column: 1 / 2;
    grid-row: 1 / 2;
}

.card-2 {
    background: var(--dark);
    color: var(--white);
    grid-column: 2 / 3;
    grid-row: 1 / 3;
    align-self: center;
}

.card-3 {
    background: linear-gradient(135deg, var(--accent), #e09400);
    color: var(--dark);
    grid-column: 1 / 2;
    grid-row: 2 / 3;
}

.visual-number {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 8px;
}

.visual-label {
    font-size: 14px;
    font-weight: 500;
    opacity: 0.85;
    line-height: 1.4;
}

/* ==========================================
   CTA BANNER
   ========================================== */
.cta-banner {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    padding: 80px 0;
}

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

.cta-content h2 {
    font-size: clamp(28px, 4vw, 40px);
    color: var(--white);
    margin-bottom: 12px;
}

.cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
}

.cta-content .btn-primary {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--dark);
    font-weight: 700;
}

.cta-content .btn-primary:hover {
    background: var(--accent-light);
    border-color: var(--accent-light);
    box-shadow: 0 8px 30px rgba(240, 165, 0, 0.3);
}

/* ==========================================
   CONTACT
   ========================================== */
.contact {
    padding: var(--section-py) 0;
    background: var(--bg-alt);
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-card {
    display: flex;
    gap: 20px;
    padding: 28px;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    transition: all 0.3s var(--ease);
}

.contact-card:hover {
    border-color: rgba(15, 76, 129, 0.15);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    height: 48px;
    background: rgba(15, 76, 129, 0.08);
    color: var(--primary);
    border-radius: var(--radius-sm);
}

.contact-card h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 4px;
}

.contact-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.5;
}

.contact-link {
    font-size: 15px;
    font-weight: 600;
    color: var(--primary);
    margin-top: 4px;
    display: inline-block;
}

.contact-link:hover {
    color: var(--primary-light);
}

/* Contact form */
.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group:not(.form-row .form-group) {
    margin-bottom: 20px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-body);
    font-size: 15px;
    padding: 14px 16px;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text);
    outline: none;
    transition: all 0.3s var(--ease);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(15, 76, 129, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-400);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%237a8394' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background: var(--dark);
    padding: 80px 0 0;
}

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

.footer-brand p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    margin-top: 16px;
    max-width: 280px;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s var(--ease);
}

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

.footer-contact p {
    margin-bottom: 8px;
}

.footer-contact a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s var(--ease);
}

.footer-contact a:hover {
    color: var(--accent);
}

.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-sm);
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s var(--ease);
}

.footer-socials a:hover {
    background: var(--primary);
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding: 24px 0;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
}

/* ==========================================
   SCROLL ANIMATIONS
   ========================================== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

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

/* Footer legal */
.footer-legal {
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-legal p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
    line-height: 1.7;
    text-align: center;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s var(--ease);
}

.footer-bottom a:hover {
    color: var(--accent);
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1024px) {
    :root {
        --section-py: 80px;
    }

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

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

    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

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

@media (max-width: 768px) {
    :root {
        --section-py: 64px;
    }

    .container {
        padding: 0 20px;
    }

    /* ---- MOBILE NAV ---- */
    .nav-toggle {
        display: flex;
        z-index: 1002;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        background: linear-gradient(135deg, var(--dark) 0%, var(--primary-dark) 50%, var(--primary) 100%);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 80px 40px 40px;
        gap: 0;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.35s var(--ease), visibility 0.35s var(--ease);
        box-shadow: none;
        z-index: 1001;
    }

    .nav-links.active {
        opacity: 1;
        visibility: visible;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links a {
        color: rgba(255, 255, 255, 0.85) !important;
        font-size: 22px;
        font-weight: 600;
        padding: 18px 24px;
        width: 100%;
        display: block;
        text-align: center;
        border-radius: 0;
        letter-spacing: 0.5px;
    }

    .nav-links a:hover {
        background: rgba(255, 255, 255, 0.08) !important;
        color: var(--white) !important;
    }

    .nav-links .nav-cta {
        margin-top: 16px;
        background: var(--accent) !important;
        color: var(--dark) !important;
        border-radius: var(--radius-sm) !important;
        padding: 16px 32px !important;
        font-size: 18px;
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }

    .nav-links .nav-cta:hover {
        background: var(--accent-light) !important;
    }

    /* Hamburger lines always white when menu open */
    .nav-toggle.active span {
        background: var(--white) !important;
    }

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

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

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

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

    .hero-title {
        font-size: clamp(36px, 10vw, 52px);
        letter-spacing: -1px;
    }

    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 32px;
    }

    .hero-actions {
        margin-bottom: 48px;
        gap: 12px;
    }

    .hero-actions .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .hero-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
        align-items: start;
    }

    .stat {
        text-align: center;
        align-items: center;
    }

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

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

    .stat-divider {
        display: none;
    }

    /* ---- ABOUT ---- */
    .about-lead {
        font-size: 18px;
    }

    .section-title {
        font-size: clamp(26px, 6vw, 36px);
    }

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

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

    .value-card {
        padding: 24px;
    }

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

    .service-card {
        padding: 28px 24px;
    }

    .service-card h3 {
        font-size: 18px;
    }

    .service-card p {
        font-size: 14px;
    }

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

    /* ---- WHY US ---- */
    .why-us-visual {
        min-height: auto;
        gap: 12px;
    }

    .visual-card {
        padding: 28px 16px;
    }

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

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

    .why-us-lead {
        font-size: 15px;
    }

    .why-us-content .section-title {
        text-align: center;
    }

    .why-us-content .section-tag {
        text-align: center;
    }

    .why-us-content {
        text-align: center;
    }

    .why-us-lead {
        text-align: center;
    }

    .why-item {
        text-align: left;
    }

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

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

    /* ---- CONTACT ---- */
    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 24px;
    }

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

    /* ---- FOOTER ---- */
    .footer {
        padding: 60px 0 0;
    }

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

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-brand p {
        max-width: 100%;
    }
}

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

    .hero {
        padding: 110px 0 48px;
    }

    .hero-title {
        font-size: 34px;
        letter-spacing: -1px;
    }

    .hero-label {
        font-size: 11px;
        letter-spacing: 2px;
    }

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

    .section-title {
        font-size: 24px;
    }

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

    .section-tag {
        font-size: 11px;
        padding: 5px 12px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    .btn-lg {
        padding: 14px 28px;
    }

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

    .stat-plus {
        font-size: 18px;
    }

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

    .why-us-visual {
        grid-template-columns: 1fr 1fr;
    }

    .visual-card {
        padding: 20px 12px;
    }

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

    .visual-label {
        font-size: 11px;
    }

    .contact-form {
        padding: 20px;
    }

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

    .nav-logo img {
        height: 36px;
    }

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

    .nav-links a {
        font-size: 20px;
        padding: 16px 20px;
    }

    .service-card {
        padding: 24px 20px;
    }

    .value-card {
        padding: 20px;
    }
}
