@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800&display=swap');

:root {
    --primary: #BDC526;
    --primary-rgb: 189, 197, 38;
    --secondary: #569127;
    --secondary-rgb: 86, 145, 39;
    --accent: #ECAF65;
    --accent-rgb: 236, 175, 101;
    --bg: #FAF8F5;
    --bg-alt: #F0ECE6;
    --text: #2C2520;
    --text-muted: #6B6055;
    --section-dark: #2C2520;
    --section-accent: #EDE6DD;
    --radius-sm: 6px;
    --radius: 12px;
    --radius-lg: 20px;
    --radius-pill: 999px;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 32px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 40px rgba(0,0,0,0.15);
    --font-main: 'Nunito', system-ui, -apple-system, sans-serif;
    --font-body: system-ui, -apple-system, 'Segoe UI', sans-serif;
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 32px;
    --space-xl: 48px;
    --space-xxl: 64px;
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.25rem;
    --text-xl: 1.625rem;
    --text-xxl: 2.25rem;
    --text-hero: 3rem;
    --transition: 0.3s ease;
    --transition-bounce: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-18px); }
}

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

@keyframes diagonalSlide {
    from {
        opacity: 0;
        transform: translateX(-40px) translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0) translateY(0);
    }
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

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

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

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

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

a {
    color: var(--secondary);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--primary);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-main);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text);
    margin-bottom: 0.5em;
}

h1 { font-size: var(--text-hero); }
h2 { font-size: var(--text-xxl); }
h3 { font-size: var(--text-xl); }
h4 { font-size: var(--text-lg); }
h5 { font-size: var(--text-base); font-weight: 600; }
h6 { font-size: var(--text-sm); font-weight: 600; }

p {
    margin-bottom: 1em;
    font-size: var(--text-base);
    color: var(--text);
}

ul, ol {
    padding-left: 1.5em;
    margin-bottom: 1em;
}

li {
    margin-bottom: 0.35em;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.row {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
}

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

.navbar {
    position: fixed;
    top: var(--space-sm);
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    padding: 0.75rem 2rem;
    background: rgba(250, 248, 245, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: var(--radius-pill);
    box-shadow: 0 4px 24px rgba(44, 37, 32, 0.1);
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 90%;
    width: auto;
    transition: all 0.35s ease;
}

.navbar.scrolled {
    background: rgba(250, 248, 245, 0.96);
    padding: 0.6rem 1.75rem;
    box-shadow: 0 4px 30px rgba(44, 37, 32, 0.14);
}

.nav-container {
    display: flex;
    align-items: center;
    gap: 2rem;
    width: 100%;
}

.logo {
    font-family: var(--font-main);
    font-weight: 800;
    font-size: var(--text-lg);
    color: var(--text);
    white-space: nowrap;
    text-decoration: none;
    flex-shrink: 0;
}

.logo:hover {
    color: var(--secondary);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-item {
    list-style: none;
}

.nav-link {
    display: inline-block;
    padding: 0.45rem 0.9rem;
    font-family: var(--font-main);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--text);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    white-space: nowrap;
    text-decoration: none;
}

.nav-link:hover,
.nav-link.active {
    color: var(--secondary);
    background: rgba(86, 145, 39, 0.08);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text);
    cursor: pointer;
    padding: 0.35rem;
    line-height: 1;
    z-index: 1001;
    flex-shrink: 0;
}

main {
    padding-top: 100px;
}

.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: var(--section-dark);
    color: #fff;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.2) 0%, transparent 70%);
    top: -80px;
    right: -60px;
    z-index: 0;
    animation: float 7s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-size: cover;
    background-position: center;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 55%;
    padding: 3rem var(--space-xl);
    animation: diagonalSlide 0.8s ease-out both;
}

.hero-content h1 {
    color: #fff;
    font-size: clamp(2rem, 4.5vw, var(--text-hero));
    margin-bottom: 0.6em;
    line-height: 1.1;
}

.hero-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: var(--text-lg);
    margin-bottom: 1.75rem;
    max-width: 520px;
    line-height: 1.65;
}

.hero-content .btn {
    margin-right: var(--space-sm);
    margin-bottom: var(--space-xs);
}

.hero-diagonal-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: var(--bg);
    clip-path: polygon(0 60%, 100% 0, 100% 100%, 0 100%);
    z-index: 3;
}

.header-hero {
    position: relative;
    padding: var(--space-xxl) 0 var(--space-xl);
    background: linear-gradient(135deg, var(--section-dark) 0%, #3d342d 100%);
    color: #fff;
    text-align: center;
    overflow: hidden;
}

.header-hero::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(var(--accent-rgb), 0.12) 0%, transparent 70%);
    top: -60px;
    left: -40px;
    animation: float 8s ease-in-out infinite reverse;
}

.header-hero h1 {
    color: #fff;
    font-size: var(--text-xxl);
    position: relative;
    z-index: 1;
}

.header-hero p {
    color: rgba(255, 255, 255, 0.8);
    font-size: var(--text-lg);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.header-hero .hero-diagonal-accent {
    height: 50px;
}

.content-section {
    padding: var(--space-xxl) 0;
    position: relative;
}

.content-section:nth-child(even) {
    background: var(--bg-alt);
}

.section-dark {
    background: var(--section-dark);
    color: #fff;
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
    color: #fff;
}

.section-dark p {
    color: rgba(255, 255, 255, 0.82);
}

.section-dark a {
    color: var(--accent);
}

.section-dark a:hover {
    color: var(--primary);
}

.section-accent {
    background: var(--section-accent);
}

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto var(--space-xl);
}

.section-header h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 0.5em;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
}

.section-header p {
    color: var(--text-muted);
    font-size: var(--text-lg);
    margin-top: 0.75rem;
}

.card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.card img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
    object-fit: cover;
}

.card:hover img {
    transform: scale(1.06);
}

.card-body {
    padding: var(--space-md);
}

.card-body h3 {
    font-size: var(--text-lg);
    margin-bottom: 0.4em;
}

.card-body p {
    color: var(--text-muted);
    font-size: var(--text-sm);
}

.feature {
    background: #fff;
    border-radius: var(--radius);
    padding: var(--space-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-bounce), box-shadow var(--transition);
    position: relative;
    overflow: hidden;
}

.feature::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(to top, rgba(var(--primary-rgb), 0.06), transparent);
    transition: height 0.4s ease;
}

.feature:hover::after {
    height: 100%;
}

.feature:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--space-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.12), rgba(var(--secondary-rgb), 0.08));
    border-radius: var(--radius);
    font-size: 1.75rem;
    color: var(--secondary);
    transition: transform var(--transition);
}

.feature:hover .feature-icon {
    transform: scale(1.1);
}

.feature h3 {
    font-size: var(--text-lg);
    margin-bottom: 0.35em;
}

.feature p {
    color: var(--text-muted);
    font-size: var(--text-sm);
}

.testimonial-card {
    background: #fff;
    border-radius: var(--radius);
    padding: var(--space-lg);
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--primary);
    position: relative;
    transition: box-shadow var(--transition);
}

.testimonial-card:hover {
    box-shadow: var(--shadow);
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: var(--space-sm);
    right: var(--space-md);
    font-size: 4rem;
    font-family: Georgia, serif;
    color: rgba(var(--accent-rgb), 0.2);
    line-height: 1;
}

.testimonial-card p {
    font-style: italic;
    color: var(--text);
    font-size: var(--text-base);
    margin-bottom: var(--space-sm);
    position: relative;
    z-index: 1;
}

.testimonial-card cite,
.testimonial-card .author {
    display: block;
    font-style: normal;
    font-weight: 600;
    font-family: var(--font-main);
    color: var(--secondary);
    font-size: var(--text-sm);
}

.pricing-card {
    background: #fff;
    border-radius: var(--radius);
    padding: var(--space-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 2px solid transparent;
    transition: all var(--transition);
    position: relative;
}

.pricing-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.pricing-card.featured {
    border-color: var(--primary);
    box-shadow: var(--shadow);
    transform: scale(1.03);
}

.pricing-card h3 {
    font-size: var(--text-xl);
    margin-bottom: 0.3em;
}

.pricing-card .price {
    font-size: var(--text-xxl);
    font-weight: 800;
    font-family: var(--font-main);
    color: var(--secondary);
    margin-bottom: var(--space-sm);
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-md);
    text-align: left;
}

.pricing-card li {
    padding: 0.5em 0;
    border-bottom: 1px solid var(--bg-alt);
    font-size: var(--text-sm);
    color: var(--text-muted);
}

.pricing-card li::before {
    content: '\2713';
    color: var(--secondary);
    font-weight: 700;
    margin-right: 0.5em;
}

.two-col-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.two-col-layout.reverse {
    direction: rtl;
}

.two-col-layout.reverse > * {
    direction: ltr;
}

.two-col-layout img {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    width: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.two-col-layout img:hover {
    transform: scale(1.03);
}

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    font-family: var(--font-main);
    font-weight: 700;
    font-size: var(--text-sm);
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    transition: all var(--transition);
    line-height: 1.4;
}

.btn-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    background-size: 150% 150%;
    background-position: 0% 50%;
    border-color: transparent;
}

.btn-primary:hover {
    background-position: 100% 50%;
    box-shadow: 0 6px 20px rgba(var(--primary-rgb), 0.35);
    transform: translateY(-2px);
    color: #fff;
}

.btn-secondary {
    color: #fff;
    background: var(--secondary);
    border-color: var(--secondary);
}

.btn-secondary:hover {
    background: #47781f;
    border-color: #47781f;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(var(--secondary-rgb), 0.3);
    color: #fff;
}

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

.btn-outline:hover {
    background: var(--secondary);
    color: #fff;
    transform: translateY(-2px);
}

.section-dark .btn-outline {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.5);
}

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

.btn-lg {
    padding: 1rem 2.75rem;
    font-size: var(--text-base);
}

form {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

label {
    font-family: var(--font-main);
    font-weight: 600;
    font-size: var(--text-sm);
    color: var(--text);
    margin-bottom: 0.15em;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
textarea,
select {
    width: 100%;
    padding: 0.75rem 1rem;
    font-family: var(--font-body);
    font-size: var(--text-base);
    color: var(--text);
    background: #fff;
    border: 2px solid var(--bg-alt);
    border-radius: var(--radius-sm);
    transition: border-color var(--transition), box-shadow var(--transition);
    appearance: none;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.15);
}

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

::placeholder {
    color: var(--text-muted);
    opacity: 0.7;
}

.stats-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-xl);
    padding: var(--space-xl) 0;
}

.stat-item {
    text-align: center;
    min-width: 140px;
}

.stat-item .number {
    font-family: var(--font-main);
    font-size: var(--text-xxl);
    font-weight: 800;
    color: var(--primary);
    line-height: 1.1;
}

.section-dark .stat-item .number {
    color: var(--accent);
}

.stat-item .label {
    font-size: var(--text-sm);
    color: var(--text-muted);
    margin-top: 0.25em;
}

.section-dark .stat-item .label {
    color: rgba(255, 255, 255, 0.7);
}

.badge {
    display: inline-block;
    padding: 0.3em 0.85em;
    font-family: var(--font-main);
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-pill);
    background: rgba(var(--primary-rgb), 0.12);
    color: var(--secondary);
}

.badge-accent {
    background: rgba(var(--accent-rgb), 0.15);
    color: #b07a28;
}

.trust-bar {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    justify-content: center;
    padding: var(--space-md) 0;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-main);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--text-muted);
}

.trust-item i,
.trust-item svg {
    color: var(--secondary);
    font-size: 1.1rem;
}

.section-angled {
    position: relative;
    padding: 6rem 0 8rem;
    clip-path: polygon(0 4%, 100% 0, 100% 96%, 0 100%);
    margin-top: -3rem;
    margin-bottom: -3rem;
}

.section-angled-alt {
    position: relative;
    padding: 6rem 0 8rem;
    clip-path: polygon(0 0, 100% 4%, 100% 100%, 0 96%);
    margin-top: -3rem;
    margin-bottom: -3rem;
}

.faq-item {
    border-bottom: 1px solid var(--bg-alt);
    padding: var(--space-sm) 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: var(--space-sm) 0;
    font-family: var(--font-main);
    font-weight: 700;
    font-size: var(--text-base);
    color: var(--text);
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    transition: color var(--transition);
}

.faq-question:hover {
    color: var(--secondary);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--primary);
    transition: transform var(--transition);
    flex-shrink: 0;
    margin-left: var(--space-sm);
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 0 var(--space-sm);
}

.faq-answer p {
    color: var(--text-muted);
    font-size: var(--text-sm);
    line-height: 1.7;
}

.team-member {
    text-align: center;
}

.team-member img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto var(--space-sm);
    border: 4px solid var(--bg-alt);
    transition: border-color var(--transition), transform var(--transition);
}

.team-member:hover img {
    border-color: var(--primary);
    transform: scale(1.05);
}

.team-member h4 {
    margin-bottom: 0.15em;
}

.team-member .role {
    font-size: var(--text-sm);
    color: var(--secondary);
    font-weight: 600;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: var(--space-sm);
}

.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
}

.gallery-item img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.cta-section {
    background: linear-gradient(135deg, var(--secondary) 0%, #3d6e17 100%);
    color: #fff;
    padding: var(--space-xxl) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    top: -200px;
    right: -100px;
}

.cta-section h2 {
    color: #fff;
    position: relative;
    z-index: 1;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.88);
    font-size: var(--text-lg);
    max-width: 560px;
    margin: 0 auto var(--space-lg);
    position: relative;
    z-index: 1;
}

.cta-section .btn-primary {
    background: var(--accent);
    color: var(--text);
    border-color: var(--accent);
    position: relative;
    z-index: 1;
}

.cta-section .btn-primary:hover {
    background: #d99a4e;
    border-color: #d99a4e;
    box-shadow: 0 6px 20px rgba(var(--accent-rgb), 0.4);
}

.section-divider {
    display: block;
    width: 100%;
    height: auto;
    margin: -1px 0;
    line-height: 0;
}

.section-divider svg {
    display: block;
    width: 100%;
    height: 60px;
}

.section-divider.flip {
    transform: scaleY(-1);
}

footer.footer-mega {
    background: var(--section-dark);
    color: rgba(255, 255, 255, 0.78);
    padding: var(--space-xxl) var(--space-md) var(--space-lg);
}

footer.footer-mega .footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

footer.footer-mega .footer-column h4 {
    color: #fff;
    font-size: var(--text-base);
    margin-bottom: var(--space-sm);
    font-weight: 700;
    font-family: var(--font-main);
}

footer.footer-mega .footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

footer.footer-mega .footer-column li {
    margin-bottom: 0.6rem;
}

footer.footer-mega .footer-column a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: var(--text-sm);
    transition: color var(--transition);
}

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

footer.footer-mega .footer-copyright {
    text-align: center;
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.45);
    font-size: var(--text-sm);
}

footer.footer-mega .footer-logo {
    font-family: var(--font-main);
    font-weight: 800;
    font-size: var(--text-lg);
    color: #fff;
    display: inline-block;
    margin-bottom: var(--space-sm);
}

footer.footer-mega .footer-social {
    display: flex;
    gap: var(--space-sm);
    margin-top: var(--space-sm);
}

footer.footer-mega .footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    transition: all var(--transition);
}

footer.footer-mega .footer-social a:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}

[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}

[data-animate="fade-in"] {
    transform: none;
}

[data-animate="fade-in"].visible {
    opacity: 1;
}

[data-animate="slide-left"] {
    transform: translateX(-30px);
}

[data-animate="slide-left"].visible {
    opacity: 1;
    transform: translateX(0);
}

[data-animate="slide-right"] {
    transform: translateX(30px);
}

[data-animate="slide-right"].visible {
    opacity: 1;
    transform: translateX(0);
}

[data-animate="scale-up"] {
    transform: scale(0.92);
}

[data-animate="scale-up"].visible {
    opacity: 1;
    transform: scale(1);
}

[data-stagger] > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

[data-stagger] > *.visible {
    opacity: 1;
    transform: translateY(0);
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-lg);
    counter-reset: step;
    justify-content: center;
}

.process-step {
    flex: 1 1 220px;
    max-width: 300px;
    text-align: center;
    position: relative;
    counter-increment: step;
}

.process-step::before {
    content: counter(step);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    font-family: var(--font-main);
    font-weight: 800;
    font-size: var(--text-lg);
    margin: 0 auto var(--space-sm);
}

.process-step h4 {
    margin-bottom: 0.3em;
}

.process-step p {
    font-size: var(--text-sm);
    color: var(--text-muted);
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
}

.comparison-item {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
}

.comparison-item img {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
}

.comparison-label {
    position: absolute;
    bottom: var(--space-sm);
    left: var(--space-sm);
    background: rgba(44, 37, 32, 0.85);
    color: #fff;
    padding: 0.3em 0.8em;
    border-radius: var(--radius-sm);
    font-family: var(--font-main);
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
}

.contact-info-block h3 {
    margin-bottom: var(--space-md);
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.contact-detail i {
    color: var(--secondary);
    font-size: 1.1rem;
    margin-top: 0.2em;
    flex-shrink: 0;
}

.contact-detail p {
    margin: 0;
    font-size: var(--text-sm);
}

.contact-detail a {
    color: var(--secondary);
    font-weight: 600;
}

.map-container {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    height: 300px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4em;
    list-style: none;
    padding: var(--space-sm) 0;
    font-size: var(--text-sm);
    color: var(--text-muted);
    position: relative;
    z-index: 1;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
}

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

.breadcrumb .separator {
    opacity: 0.5;
}

.article-card {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: var(--space-md);
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition), transform var(--transition);
}

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

.article-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-card-body {
    padding: var(--space-md);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.article-meta {
    font-size: var(--text-xs);
    color: var(--text-muted);
    margin-bottom: 0.3em;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

@media screen and (max-width: 1280px) {
    .container {
        padding: 0 var(--space-lg);
    }

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

@media screen and (max-width: 1024px) {
    :root {
        --text-hero: 2.5rem;
        --text-xxl: 2rem;
    }

    .hero {
        min-height: 75vh;
    }

    .hero::after {
        width: 45%;
    }

    .hero-content {
        max-width: 60%;
        padding: 2.5rem var(--space-lg);
    }

    .two-col-layout {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .two-col-layout.reverse {
        direction: ltr;
    }

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

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

@media screen and (max-width: 768px) {
    :root {
        --text-hero: 2rem;
        --text-xxl: 1.75rem;
        --text-xl: 1.35rem;
        --space-xxl: 48px;
    }

    .navbar {
        top: var(--space-xs);
        padding: 0.6rem 1.25rem;
        border-radius: var(--radius);
        max-width: 95%;
        flex-wrap: wrap;
    }

    .nav-container {
        flex-wrap: wrap;
    }

    .mobile-menu-toggle {
        display: block;
        margin-left: auto;
    }

    .nav-menu {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 0;
        padding: var(--space-sm) 0 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease;
    }

    .nav-menu.active {
        display: flex;
        max-height: 500px;
    }

    .nav-link {
        width: 100%;
        padding: 0.65rem 0.9rem;
        border-radius: 0;
        border-bottom: 1px solid var(--bg-alt);
    }

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

    .hero {
        min-height: auto;
        padding: var(--space-xxl) 0 0;
        flex-direction: column;
    }

    .hero::after {
        position: relative;
        width: 100%;
        height: 260px;
        clip-path: polygon(0 8%, 100% 0, 100% 100%, 0 100%);
    }

    .hero-content {
        max-width: 100%;
        padding: var(--space-lg) var(--space-md);
    }

    .hero-diagonal-accent {
        height: 40px;
    }

    .header-hero {
        padding: var(--space-xl) var(--space-md) var(--space-lg);
    }

    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
    }

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

    .stats-row {
        gap: var(--space-lg);
    }

    .article-card {
        grid-template-columns: 1fr;
    }

    .article-card img {
        aspect-ratio: 16 / 9;
    }

    footer.footer-mega .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-md);
    }

    .section-angled,
    .section-angled-alt {
        clip-path: none;
        margin: 0;
        padding: var(--space-xl) 0;
    }

    .process-steps {
        flex-direction: column;
        align-items: center;
    }

    .process-step {
        max-width: 100%;
    }
}

@media screen and (max-width: 480px) {
    :root {
        --text-hero: 1.75rem;
        --text-xxl: 1.5rem;
        --space-xxl: 40px;
        --space-xl: 32px;
    }

    body {
        font-size: 15px;
    }

    .container {
        padding: 0 var(--space-sm);
    }

    .navbar {
        max-width: 97%;
        padding: 0.5rem 1rem;
    }

    .logo {
        font-size: var(--text-base);
    }

    .hero-content h1 {
        font-size: 1.65rem;
    }

    .hero-content p {
        font-size: var(--text-base);
    }

    .btn {
        padding: 0.7rem 1.5rem;
        font-size: var(--text-sm);
        width: 100%;
        text-align: center;
    }

    .btn-lg {
        padding: 0.85rem 2rem;
    }

    .feature {
        padding: var(--space-md);
    }

    .testimonial-card {
        padding: var(--space-md);
    }

    .pricing-card {
        padding: var(--space-md);
    }

    .stats-row {
        flex-direction: column;
        align-items: center;
        gap: var(--space-md);
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-xs);
    }

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

    footer.footer-mega {
        padding: var(--space-xl) var(--space-sm) var(--space-md);
    }
}

@media print {
    .navbar,
    .mobile-menu-toggle,
    .hero-diagonal-accent,
    .section-divider {
        display: none;
    }

    body {
        background: #fff;
        color: #000;
        font-size: 12pt;
    }

    .hero {
        min-height: auto;
        background: none;
        color: #000;
        page-break-after: avoid;
    }

    .hero-content h1 {
        color: #000;
    }

    a {
        color: #000;
        text-decoration: underline;
    }

    .card,
    .feature,
    .testimonial-card {
        box-shadow: none;
        border: 1px solid #ccc;
        page-break-inside: avoid;
    }
}
