/* ============================================
   LOUD PIPE PERFORMANCE — CUSTOM STYLES
   ============================================ */

:root {
    --forest-dark: #0B2218;
    --forest: #1B4332;
    --forest-mid: #2D6A4F;
    --forest-light: #40916C;
    --green-accent: #52B788;
    --green-bright: #95D17C;
    --lime-pop: #B7E4C7;
    --off-white: #F8F6F0;
    --cream: #F0EDE4;
    --warm-gray: #6B6560;
    --dark-text: #1A1A1A;
    --white: #FFFFFF;
    --gold: #F59E0B;
    --shadow-sm: 0 1px 3px rgba(27, 67, 50, 0.08);
    --shadow-md: 0 4px 20px rgba(27, 67, 50, 0.12);
    --shadow-lg: 0 12px 40px rgba(27, 67, 50, 0.16);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

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

h1, h2, h3, h4 {
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1.15;
    font-weight: 700;
}

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

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--forest);
    color: var(--white);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    z-index: 9999;
    font-weight: 600;
}
.skip-link:focus {
    top: 16px;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(248, 246, 240, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(27, 67, 50, 0.08);
    transition: box-shadow 0.3s ease, background 0.3s ease;
}
.navbar.scrolled {
    background: rgba(248, 246, 240, 0.95);
    box-shadow: var(--shadow-md);
}
.nav-inner {
    display: flex;
    align-items: center;
    padding-top: 16px;
    padding-bottom: 16px;
    gap: 24px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--forest);
    letter-spacing: 0.02em;
    flex-shrink: 0;
}
.logo-icon {
    color: var(--forest-mid);
}
.logo-accent {
    color: var(--green-accent);
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
    margin-right: 16px;
}
.nav-links a {
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--forest);
    border-radius: var(--radius-sm);
    transition: background 0.2s ease, color 0.2s ease;
}
.nav-links a:hover {
    background: rgba(27, 67, 50, 0.08);
    color: var(--forest-dark);
}
.nav-cta {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background: var(--forest);
    color: var(--white);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: var(--radius-xl);
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
}
.nav-cta:hover {
    background: var(--forest-mid);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    margin-left: auto;
}
.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--forest);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.mobile-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}
.mobile-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0B2218 0%, #1B4332 30%, #2D6A4F 60%, #1B4332 85%, #0B2218 100%);
    overflow: hidden;
    padding: 120px 24px 80px;
}
.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}
.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
}
.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(82, 183, 136, 0.4) 0%, transparent 70%);
    top: -10%;
    right: -5%;
}
.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(149, 209, 124, 0.3) 0%, transparent 70%);
    bottom: 5%;
    left: -5%;
}
.orb-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(183, 228, 199, 0.25) 0%, transparent 70%);
    top: 40%;
    left: 30%;
}
.geo-shape {
    position: absolute;
    opacity: 0.12;
}
.geo-triangle {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 60px 104px 60px;
    border-color: transparent transparent var(--green-bright) transparent;
    top: 12%;
    right: 10%;
    transform: rotate(15deg);
}
.geo-circle {
    width: 160px;
    height: 160px;
    border: 3px solid var(--lime-pop);
    border-radius: 50%;
    bottom: 20%;
    right: 15%;
}
.geo-diamond {
    width: 80px;
    height: 80px;
    background: var(--green-accent);
    transform: rotate(45deg);
    top: 30%;
    left: 8%;
}
.hero-grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(149, 209, 124, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(149, 209, 124, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 820px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(149, 209, 124, 0.15);
    border: 1px solid rgba(149, 209, 124, 0.3);
    border-radius: var(--radius-xl);
    color: var(--green-bright);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 32px;
    letter-spacing: 0.03em;
}
.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--green-bright);
    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(1.3); }
}
.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    line-height: 1.05;
}
.title-accent {
    color: var(--green-bright);
    position: relative;
}
.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.75);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
}
.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--radius-xl);
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
}
.btn-primary {
    background: var(--green-bright);
    color: var(--forest-dark);
}
.btn-primary:hover {
    background: var(--lime-pop);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(149, 209, 124, 0.35);
}
.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.25);
}
.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-2px);
}
.btn-dark {
    background: var(--forest);
    color: var(--white);
}
.btn-dark:hover {
    background: var(--forest-mid);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}
.btn-full {
    width: 100%;
    justify-content: center;
}
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}
.stat {
    text-align: center;
}
.stat-number {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--green-bright);
}
.stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(149, 209, 124, 0.3);
}
.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    line-height: 0;
}
.hero-wave svg {
    width: 100%;
    height: 80px;
}

/* ============================================
   SECTION COMMONS
   ============================================ */
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}
.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(27, 67, 50, 0.08);
    color: var(--forest-mid);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: var(--radius-xl);
    margin-bottom: 16px;
}
.section-tag.light {
    background: rgba(149, 209, 124, 0.15);
    color: var(--green-bright);
}
.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--forest-dark);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}
.section-title.light {
    color: var(--white);
}
.title-accent {
    color: var(--forest-mid);
}
.title-accent-light {
    color: var(--green-bright);
}
.section-desc {
    font-size: 1.05rem;
    color: var(--warm-gray);
    line-height: 1.7;
}
.section-header.light .section-desc {
    color: rgba(255, 255, 255, 0.65);
}

/* ============================================
   SERVICES
   ============================================ */
.services {
    padding: 100px 0;
    background: var(--off-white);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    border: 1px solid rgba(27, 67, 50, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.card-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--forest), var(--green-accent));
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.card-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(27, 67, 50, 0.06);
    border-radius: var(--radius-md);
    color: var(--forest);
    margin-bottom: 20px;
    transition: background 0.2s ease;
}
.service-card:hover .card-icon {
    background: var(--forest);
    color: var(--white);
}
.service-card h3 {
    font-size: 1.15rem;
    color: var(--forest-dark);
    margin-bottom: 10px;
}
.service-card p {
    font-size: 0.92rem;
    color: var(--warm-gray);
    line-height: 1.65;
}

/* ============================================
   ABOUT
   ============================================ */
.about {
    padding: 100px 0;
    background: var(--cream);
    overflow: hidden;
}
.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.about-visual {
    position: relative;
}
.about-img-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 6/7;
}
.about-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-img-accent {
    position: absolute;
    inset: 16px;
    border: 2px solid rgba(149, 209, 124, 0.4);
    border-radius: var(--radius-md);
    pointer-events: none;
}
.about-floating-card {
    position: absolute;
    bottom: -20px;
    right: -20px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--forest);
    color: var(--white);
    padding: 16px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}
.about-floating-card svg {
    color: var(--green-bright);
    flex-shrink: 0;
}
.about-floating-card strong {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.95rem;
}
.about-floating-card span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.65);
}
.about-content .section-tag {
    margin-bottom: 16px;
}
.about-content .section-title {
    text-align: left;
    margin-bottom: 24px;
}
.about-text {
    font-size: 1rem;
    color: var(--warm-gray);
    line-height: 1.75;
    margin-bottom: 16px;
}
.about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 24px;
    margin: 32px 0;
}
.value-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.92rem;
    color: var(--forest);
    font-weight: 500;
}
.value-check {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(27, 67, 50, 0.08);
    border-radius: 50%;
    color: var(--forest-mid);
    flex-shrink: 0;
}
.about-content .btn {
    margin-top: 8px;
}

/* ============================================
   WHY US
   ============================================ */
.why-us {
    padding: 100px 0;
    background: linear-gradient(135deg, #0B2218 0%, #1B4332 50%, #2D6A4F 100%);
    position: relative;
    overflow: hidden;
}
.why-us::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(149, 209, 124, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(82, 183, 136, 0.06) 0%, transparent 50%);
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}
.why-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: background 0.3s ease, transform 0.3s ease;
}
.why-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}
.why-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: rgba(149, 209, 124, 0.2);
    line-height: 1;
    margin-bottom: 16px;
}
.why-card h3 {
    font-size: 1.15rem;
    color: var(--white);
    margin-bottom: 10px;
}
.why-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.65;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
    padding: 100px 0;
    background: var(--off-white);
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    border: 1px solid rgba(27, 67, 50, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}
.testimonial-text {
    font-size: 0.95rem;
    color: var(--dark-text);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.author-avatar {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--forest);
    color: var(--green-bright);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50%;
    flex-shrink: 0;
}
.testimonial-author strong {
    display: block;
    font-size: 0.95rem;
    color: var(--forest-dark);
}
.testimonial-author span {
    font-size: 0.8rem;
    color: var(--warm-gray);
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #0B2218 0%, #1B4332 60%, #2D6A4F 100%);
    position: relative;
    overflow: hidden;
}
.contact::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 90% 10%, rgba(149, 209, 124, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 10% 90%, rgba(82, 183, 136, 0.06) 0%, transparent 40%);
}
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
    position: relative;
    z-index: 1;
}
.contact-info .section-title {
    text-align: left;
    margin-bottom: 16px;
}
.contact-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    margin-bottom: 36px;
}
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.contact-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(149, 209, 124, 0.12);
    border-radius: var(--radius-md);
    color: var(--green-bright);
    flex-shrink: 0;
}
.contact-item strong {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.95rem;
    color: var(--white);
    margin-bottom: 2px;
}
.contact-item span,
.contact-item a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.5;
}
.contact-item a:hover {
    color: var(--green-bright);
}
.contact-map {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.contact-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
}
.form-title {
    font-size: 1.4rem;
    color: var(--forest-dark);
    margin-bottom: 28px;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--forest);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid rgba(27, 67, 50, 0.15);
    border-radius: var(--radius-sm);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--dark-text);
    background: var(--off-white);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--forest-mid);
    box-shadow: 0 0 0 3px rgba(45, 106, 79, 0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--warm-gray);
    opacity: 0.6;
}
.form-group textarea {
    resize: vertical;
    min-height: 100px;
}
.form-success {
    text-align: center;
    padding: 40px 20px;
}
.success-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(27, 67, 50, 0.08);
    border-radius: 50%;
    margin: 0 auto 20px;
    color: var(--forest-mid);
}
.form-success h4 {
    font-size: 1.3rem;
    color: var(--forest-dark);
    margin-bottom: 8px;
}
.form-success p {
    font-size: 0.95rem;
    color: var(--warm-gray);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--forest-dark);
    color: var(--white);
    padding: 72px 0 0;
}
.footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 64px;
    padding-bottom: 56px;
}
.footer-brand p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    margin-top: 16px;
    max-width: 300px;
}
.footer-logo {
    color: var(--white);
}
.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.footer-col h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--green-bright);
    margin-bottom: 20px;
}
.footer-col a,
.footer-col p {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 10px;
    transition: color 0.2s ease;
    line-height: 1.5;
}
.footer-col a:hover {
    color: var(--green-bright);
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0;
}
.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-bottom p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.35);
}

/* ============================================
   MOBILE MENU
   ============================================ */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(11, 34, 24, 0.6);
    backdrop-filter: blur(4px);
    z-index: 998;
}
.nav-overlay.active {
    display: block;
}
.nav-mobile {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100vh;
    background: var(--forest-dark);
    z-index: 999;
    padding: 80px 32px 32px;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-mobile.active {
    transform: translateX(0);
}
.nav-mobile a {
    display: block;
    padding: 14px 0;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: color 0.2s ease;
}
.nav-mobile a:hover {
    color: var(--green-bright);
}
.nav-mobile .mobile-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    padding: 14px 28px;
    background: var(--green-bright);
    color: var(--forest-dark);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    border-radius: var(--radius-xl);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-layout {
        gap: 48px;
    }
}

@media (max-width: 768px) {
    .nav-links,
    .nav-cta {
        display: none;
    }
    .mobile-toggle {
        display: flex;
    }
    .nav-mobile {
        display: block;
    }
    .hero {
        padding: 100px 20px 60px;
        min-height: auto;
    }
    .hero-stats {
        gap: 20px;
    }
    .stat-divider {
        display: none;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .about-layout {
        grid-template-columns: 1fr;
    }
    .about-visual {
        order: -1;
    }
    .about-img-wrapper {
        aspect-ratio: 4/3;
    }
    .about-floating-card {
        right: 12px;
        bottom: -12px;
    }
    .about-values {
        grid-template-columns: 1fr;
    }
    .why-grid {
        grid-template-columns: 1fr;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .contact-form-wrapper {
        padding: 28px;
    }
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-links {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }
    .section-header {
        margin-bottom: 48px;
    }
    .services,
    .about,
    .why-us,
    .testimonials,
    .contact {
        padding: 72px 0;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
    .container {
        padding: 0 16px;
    }
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    html {
        scroll-behavior: auto;
    }
}
</style>
