/* ============================================
   VEKSTRA — Main Stylesheet
   ============================================ */

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

:root {
    --green: #3DC55A;
    --green-dark: #2da849;
    --black: #0a0a0a;
    --dark: #111111;
    --white: #ffffff;
    --light: #f7f7f7;
    --border: #e8e8e8;
    --text: #1a1a1a;
    --muted: #6b7280;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --radius: 12px;
    --radius-lg: 20px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --max-width: 1200px;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 48px rgba(0, 0, 0, 0.12);
    --nav-height: 72px;
}

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

body {
    font-family: var(--font);
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

p { color: var(--muted); line-height: 1.75; }

.green { color: var(--green); }
.text-center { text-align: center; }

/* ============================================
   LAYOUT
   ============================================ */

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

section { padding: 100px 0; }

.section-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 1rem;
    display: block;
}

.section-header { margin-bottom: 4rem; }
.section-header p { max-width: 540px; margin-top: 1rem; font-size: 1.05rem; }
.section-header.centered { text-align: center; }
.section-header.centered p { margin: 1rem auto 0; }

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    font-family: var(--font);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    white-space: nowrap;
    letter-spacing: -0.01em;
}

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

.btn-primary:hover {
    background: var(--green-dark);
    border-color: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(61, 197, 90, 0.35);
}

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

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

.btn-outline-dark {
    background: transparent;
    color: var(--text);
    border-color: var(--border);
}

.btn-outline-dark:hover {
    border-color: var(--text);
}

.btn-white {
    background: var(--white);
    color: var(--green);
    border-color: var(--white);
    font-weight: 700;
}

.btn-white:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* ============================================
   NAVIGATION
   ============================================ */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-height);
    background: rgba(10, 10, 10, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-size: 1.35rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    color: var(--white);
    display: flex;
    align-items: center;
}

.nav-logo span { color: var(--green); }

.logo-img {
    height: 36px;
    width: auto;
    display: block;
    background: transparent !important;
}

.logo-img--footer {
    height: 30px;
    width: auto;
    display: block;
    background: transparent !important;
    opacity: 0.65;
    transition: var(--transition);
}

.logo-img--footer:hover { opacity: 1; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

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

.nav-cta {
    background: var(--green) !important;
    color: var(--white) !important;
    padding: 0.5rem 1.25rem !important;
    border-radius: 6px;
    font-weight: 600 !important;
    transition: var(--transition) !important;
}

.nav-cta:hover {
    background: var(--green-dark) !important;
    opacity: 1 !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    background: none;
    border: none;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-nav {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--black);
    z-index: 999;
    padding: 2rem;
    flex-direction: column;
    overflow-y: auto;
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
    color: var(--white);
    font-size: 1.6rem;
    font-weight: 700;
    padding: 1.1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    transition: var(--transition);
    letter-spacing: -0.02em;
}

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

.mobile-nav .btn-primary {
    margin-top: 2rem;
    text-align: center;
    justify-content: center;
    font-size: 1rem;
    border-radius: 8px;
    border: 2px solid var(--green);
}

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */

.page-hero {
    background: var(--black);
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 15% 60%, rgba(61, 197, 90, 0.09) 0%, transparent 55%);
    pointer-events: none;
}

.page-hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.page-hero h1 { color: var(--white); max-width: 700px; }
.page-hero p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 1.1rem;
    max-width: 520px;
    margin-top: 1.25rem;
}

/* ============================================
   HOME — HERO
   ============================================ */

.hero {
    min-height: 100vh;
    background: var(--black);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: var(--nav-height);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 75% 35%, rgba(61, 197, 90, 0.11) 0%, transparent 50%),
        radial-gradient(ellipse at 15% 85%, rgba(61, 197, 90, 0.05) 0%, transparent 45%);
    pointer-events: none;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(61, 197, 90, 0.1);
    border: 1px solid rgba(61, 197, 90, 0.22);
    color: var(--green);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.45rem 1rem;
    border-radius: 100px;
    margin-bottom: 2rem;
}

.hero-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.7); }
}

.hero h1 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: clamp(3.2rem, 7.5vw, 6.5rem);
    font-weight: 900;
    line-height: 1.02;
}

.hero h1 em {
    font-style: normal;
    color: var(--green);
}

.hero-sub {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.5);
    max-width: 500px;
    margin-bottom: 2.5rem;
    line-height: 1.75;
}

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

.hero-stats {
    display: flex;
    gap: 3.5rem;
    margin-top: 5rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.stat-item h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.02em;
}

.stat-item p {
    color: rgba(255, 255, 255, 0.38);
    font-size: 0.82rem;
    margin-top: 0.2rem;
    letter-spacing: 0.02em;
}

/* ============================================
   HOME — SERVICES GRID
   ============================================ */

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

.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--green);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.service-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: transparent;
    transform: translateY(-4px);
}

.service-card:hover::after { transform: scaleX(1); }

.service-icon {
    width: 46px;
    height: 46px;
    background: rgba(61, 197, 90, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    font-size: 1.3rem;
}

.service-card h3 { font-size: 1.05rem; margin-bottom: 0.7rem; color: var(--text); }
.service-card p { font-size: 0.875rem; line-height: 1.65; }

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--green);
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 1.25rem;
    transition: var(--transition);
}

.card-link:hover { gap: 0.65rem; }

/* ============================================
   HOME — WHY VEKSTRA
   ============================================ */

.why-section { background: var(--black); }

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.why-text h2 { color: var(--white); margin-bottom: 1.25rem; }
.why-text > p { color: rgba(255, 255, 255, 0.5); font-size: 1rem; margin-bottom: 2rem; }

.why-points {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.why-points li {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.why-points li::before {
    content: '';
    width: 7px;
    height: 7px;
    background: var(--green);
    border-radius: 50%;
    flex-shrink: 0;
}

.why-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.why-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--radius);
    padding: 1.75rem;
    transition: var(--transition);
}

.why-card:hover {
    border-color: rgba(61, 197, 90, 0.25);
    background: rgba(61, 197, 90, 0.04);
}

.why-card h4 { color: var(--white); margin-bottom: 0.5rem; font-size: 1rem; }
.why-card p { color: rgba(255, 255, 255, 0.38); font-size: 0.85rem; }

/* ============================================
   HOME — CLIENTS
   ============================================ */

.clients-section { background: var(--light); }

.clients-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.25rem;
}

.client-logo {
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 2rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    filter: grayscale(1);
    opacity: 0.5;
    transition: var(--transition);
    font-weight: 700;
    font-size: 0.85rem;
    color: #888;
    letter-spacing: 0.08em;
    min-width: 140px;
}

.client-logo:hover {
    filter: grayscale(0);
    opacity: 1;
    border-color: var(--green);
    color: var(--text);
}

.clients-cta {
    text-align: center;
    margin-top: 2.5rem;
    font-size: 0.875rem;
    color: var(--muted);
}

.clients-cta a {
    color: var(--green);
    font-weight: 600;
    transition: var(--transition);
}

.clients-cta a:hover { opacity: 0.8; }

/* ============================================
   CTA BANNER
   ============================================ */

.cta-section {
    background: var(--green);
    padding: 90px 0;
    text-align: center;
}

.cta-section h2 { color: var(--white); margin-bottom: 1rem; }
.cta-section p { color: rgba(255, 255, 255, 0.75); font-size: 1.1rem; margin-bottom: 2.25rem; }

/* ============================================
   FOOTER
   ============================================ */

footer {
    background: var(--black);
    padding: 64px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.footer-brand .nav-logo { margin-bottom: 0.875rem; }
.footer-brand p { color: rgba(255, 255, 255, 0.3); font-size: 0.875rem; max-width: 220px; }

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

.footer-col h4 {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }

.footer-col ul a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    transition: var(--transition);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p { color: rgba(255, 255, 255, 0.22); font-size: 0.8rem; }

/* ============================================
   SERVICES DETAIL PAGE
   ============================================ */

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

.service-detail-card {
    background: var(--light);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.service-detail-card:hover {
    border-color: var(--green);
    box-shadow: 0 0 0 4px rgba(61, 197, 90, 0.06);
    transform: translateY(-2px);
}

.service-detail-card .service-icon { margin-bottom: 1.5rem; }
.service-detail-card h3 { margin-bottom: 0.875rem; font-size: 1.2rem; }
.service-detail-card p { font-size: 0.95rem; margin-bottom: 1.5rem; }

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    list-style: none;
}

.tag-list li {
    background: rgba(61, 197, 90, 0.1);
    color: var(--green);
    font-size: 0.74rem;
    font-weight: 700;
    padding: 0.3rem 0.8rem;
    border-radius: 100px;
    letter-spacing: 0.02em;
}

/* ============================================
   ABOUT PAGE
   ============================================ */

.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-img {
    aspect-ratio: 4/5;
    background: var(--light);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}

.about-img::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(61, 197, 90, 0.06) 0%, transparent 60%);
}

.about-img-label {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--muted);
    font-size: 0.85rem;
}

.about-text h2 { margin-bottom: 1.5rem; }
.about-text p { margin-bottom: 1.25rem; font-size: 1rem; }

.values-section { background: var(--black); }
.values-section .section-header h2 { color: var(--white); }
.values-section .section-header p { color: rgba(255, 255, 255, 0.5); }

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

.value-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--radius);
    padding: 2rem;
    transition: var(--transition);
}

.value-card:hover {
    border-color: rgba(61, 197, 90, 0.3);
    background: rgba(61, 197, 90, 0.04);
    transform: translateY(-3px);
}

.value-icon { font-size: 2rem; margin-bottom: 1rem; }
.value-card h3 { color: var(--white); margin-bottom: 0.75rem; font-size: 1.05rem; }
.value-card p { color: rgba(255, 255, 255, 0.4); font-size: 0.875rem; }

/* ============================================
   CONTACT PAGE
   ============================================ */

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 5rem;
    align-items: start;
}

.contact-info h2 { margin-bottom: 1rem; }
.contact-info > p { font-size: 1rem; margin-bottom: 2.5rem; }

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item-icon {
    width: 44px;
    height: 44px;
    background: rgba(61, 197, 90, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 0.78rem;
    color: var(--muted);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 0.2rem;
}

.contact-item p {
    color: var(--text);
    font-size: 0.95rem;
    font-weight: 500;
}

.contact-form-box {
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
}

.contact-form-box h3 {
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.contact-form-box > p {
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

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

.form-group { margin-bottom: 1.25rem; }

.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.5rem;
    letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    font-family: var(--font);
    font-size: 0.95rem;
    color: var(--text);
    background: var(--white);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 4px rgba(61, 197, 90, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #bbb;
}

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

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

.form-submit {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    justify-content: center;
    margin-top: 0.5rem;
}

.form-success {
    display: none;
    text-align: center;
    padding: 2.5rem 1rem;
}

.success-icon {
    width: 64px;
    height: 64px;
    background: rgba(61, 197, 90, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin: 0 auto 1.25rem;
}

.form-success h3 { color: var(--green); margin-bottom: 0.5rem; }
.form-success p { font-size: 0.95rem; }

/* ============================================
   ANIMATIONS
   ============================================ */

.fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

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

.stagger-1 { transition-delay: 0.05s; }
.stagger-2 { transition-delay: 0.12s; }
.stagger-3 { transition-delay: 0.19s; }
.stagger-4 { transition-delay: 0.26s; }
.stagger-5 { transition-delay: 0.33s; }
.stagger-6 { transition-delay: 0.40s; }

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

@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: 1fr; gap: 3rem; }
    .why-cards { grid-template-columns: repeat(2, 1fr); }
    .about-intro { grid-template-columns: 1fr; gap: 3rem; }
    .about-img { aspect-ratio: 16/9; }
    .contact-wrapper { grid-template-columns: 1fr; gap: 3rem; }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    section { padding: 72px 0; }
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .services-grid { grid-template-columns: 1fr; }
    .services-detail-grid { grid-template-columns: 1fr; }
    .hero-stats { flex-direction: column; gap: 1.5rem; padding-top: 2rem; margin-top: 3rem; }
    .why-cards { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr; }
    .footer-links { flex-direction: column; gap: 2rem; }
    .footer-inner { flex-direction: column; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
    .form-row { grid-template-columns: 1fr; }
    .hero h1 { font-size: clamp(2.6rem, 9vw, 4rem); }
    .hero-cta { flex-direction: column; }
    .hero-cta .btn { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
    .container { padding: 0 1.25rem; }
    .contact-form-box { padding: 1.5rem; }
    h2 { font-size: 1.8rem; }
}
