@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800&family=Source+Sans+Pro:wght@300;400;600;700&display=swap');

:root {
    --primary: #97B625;
    --primary-rgb: 151, 182, 37;
    --secondary: #26829C;
    --secondary-rgb: 38, 130, 156;
    --accent: #D03EB1;
    --accent-rgb: 208, 62, 177;
    --bg: #FAF8F5;
    --bg-alt: #F0ECE6;
    --text: #2C2520;
    --text-muted: #6B6055;
    --section-dark: #2C2520;
    --section-accent: #EDE6DD;
    --border-color: #D8D0C6;
    --white: #ffffff;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Source Sans Pro', 'Segoe UI', sans-serif;
    --max-width: 1200px;
    --radius-sm: 0;
    --radius-md: 0;
    --radius-lg: 0;
}

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

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

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

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

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text);
    letter-spacing: -0.01em;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.625rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1rem; }
h6 { font-size: 0.875rem; }

p {
    margin-bottom: 1rem;
    color: var(--text);
}

ul, ol {
    padding-left: 1.25rem;
}

.container {
    width: 100%;
    max-width: var(--max-width);
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.grid-2 {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.grid-2 > * {
    flex: 1 1 calc(50% - 12px);
    min-width: 280px;
}

.grid-3 {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.grid-3 > * {
    flex: 1 1 calc(33.333% - 16px);
    min-width: 260px;
}

.grid-4 {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.grid-4 > * {
    flex: 1 1 calc(25% - 18px);
    min-width: 220px;
}

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

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

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

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

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 8px rgba(var(--primary-rgb), 0.3); }
    50% { box-shadow: 0 0 22px rgba(var(--primary-rgb), 0.55); }
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 32px;
    height: 72px;
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
    transition: box-shadow 0.3s ease, height 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 2px 12px rgba(44, 37, 32, 0.08);
    height: 64px;
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text);
    text-decoration: none;
    letter-spacing: -0.02em;
    white-space: nowrap;
}

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

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

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

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

.nav-link {
    display: inline-block;
    padding: 8px 16px;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 26px;
    color: var(--text);
    cursor: pointer;
    padding: 4px;
    line-height: 1;
    z-index: 1001;
}

main {
    padding-top: 72px;
}

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

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

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

.hero .container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 48px;
    width: 100%;
}

.hero-content {
    flex: 1 1 50%;
    padding: 48px 0;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.1;
}

.hero-content h1 span {
    color: var(--primary);
}

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

.hero-image {
    flex: 1 1 50%;
    position: relative;
}

.hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
}

.hero-badges {
    display: flex;
    gap: 16px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--white);
}

.header-hero {
    position: relative;
    padding: 80px 0 60px;
    background: linear-gradient(135deg, var(--text) 0%, #433830 100%);
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

.header-hero::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: rgba(var(--primary-rgb), 0.1);
    animation: float 8s ease-in-out infinite;
}

.header-hero h1 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 12px;
}

.header-hero p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.header-hero .breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.header-hero .breadcrumb a {
    color: var(--primary);
}

.content-section {
    padding: 80px 0;
    position: relative;
}

.content-section + .content-section {
    border-top: 1px solid var(--border-color);
}

.content-section.overlap {
    margin-top: -40px;
    padding-top: 72px;
    position: relative;
    z-index: 2;
}

.section-dark {
    background: var(--section-dark);
    color: var(--white);
    border-top: none;
}

.section-dark + .content-section {
    border-top: none;
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
    color: var(--white);
}

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

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

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

.section-accent + .content-section {
    border-top: none;
}

.section-header {
    text-align: center;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 48px;
}

.section-header h2 {
    font-size: 2.25rem;
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary);
    margin: 12px auto 0;
}

.section-dark .section-header h2::after {
    background: var(--primary);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.65;
}

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

.two-col-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    align-items: center;
}

.two-col-layout > *:first-child {
    flex: 1 1 55%;
    min-width: 300px;
}

.two-col-layout > *:last-child {
    flex: 1 1 40%;
    min-width: 280px;
}

.two-col-layout.reverse {
    flex-direction: row-reverse;
}

.sidebar-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.sidebar-layout .main-content {
    flex: 1 1 65%;
    min-width: 0;
}

.sidebar-layout .sidebar {
    flex: 0 0 300px;
    position: sticky;
    top: 96px;
    align-self: flex-start;
}

.sidebar .sidebar-widget {
    padding: 24px;
    background: var(--white);
    border: 1px solid var(--border-color);
    margin-bottom: 24px;
}

.sidebar .sidebar-widget h4 {
    font-size: 1.125rem;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--primary);
}

.card {
    background: var(--white);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: border-color 0.35s ease, box-shadow 0.35s ease;
}

.card:hover {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.12), 0 4px 16px rgba(44, 37, 32, 0.08);
}

.card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.card-body {
    padding: 24px;
}

.card-body h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

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

.feature {
    padding: 32px 24px;
    background: var(--white);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.feature:hover {
    border-color: var(--secondary);
    transform: translateY(-6px);
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary), #7A9520);
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.section-dark .feature {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.12);
}

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

.feature h3,
.feature h4 {
    margin-bottom: 8px;
}

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

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

.testimonial-card {
    padding: 32px;
    background: var(--white);
    border-left: 4px solid var(--primary);
    border-right: 1px solid var(--border-color);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--accent);
    position: absolute;
    top: 8px;
    left: 24px;
    line-height: 1;
    opacity: 0.35;
}

.testimonial-card p {
    font-size: 1.0625rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 16px;
    padding-left: 8px;
}

.testimonial-card .author {
    font-weight: 600;
    font-style: normal;
    color: var(--text);
    font-size: 0.9375rem;
}

.testimonial-card .author span {
    font-weight: 400;
    color: var(--text-muted);
}

.section-dark .testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border-left-color: var(--primary);
    border-color: rgba(255, 255, 255, 0.1);
    border-left-color: var(--primary);
}

.section-dark .testimonial-card p {
    color: rgba(255, 255, 255, 0.85);
}

.section-dark .testimonial-card .author {
    color: var(--white);
}

.section-dark .testimonial-card .author span {
    color: rgba(255, 255, 255, 0.6);
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonials-track .testimonial-card {
    flex: 0 0 100%;
    min-width: 100%;
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
}

.slider-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--white);
    border: 1px solid var(--border-color);
    color: var(--text);
    cursor: pointer;
    font-size: 1.125rem;
    transition: background 0.2s ease, color 0.2s ease;
}

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

.section-dark .slider-btn {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.section-dark .slider-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-color);
    border: none;
    cursor: pointer;
    transition: background 0.2s ease;
    padding: 0;
}

.slider-dot.active {
    background: var(--primary);
}

.section-dark .slider-dot {
    background: rgba(255, 255, 255, 0.3);
}

.section-dark .slider-dot.active {
    background: var(--primary);
}

.pricing-card {
    padding: 32px;
    background: var(--white);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: border-color 0.3s ease, transform 0.3s ease;
    position: relative;
}

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

.pricing-card.featured {
    border-color: var(--primary);
    border-width: 2px;
}

.pricing-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--white);
    padding: 4px 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-card h3 {
    font-size: 1.375rem;
    margin-bottom: 8px;
}

.pricing-card .price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    font-family: var(--font-heading);
    margin-bottom: 16px;
}

.pricing-card .price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-muted);
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-bottom: 24px;
}

.pricing-card ul li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.9375rem;
    color: var(--text-muted);
    padding-left: 24px;
    position: relative;
}

.pricing-card ul li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1.4;
}

.btn-primary {
    display: inline-block;
    padding: 12px 28px;
    border: 2px solid var(--primary);
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--primary);
    background: linear-gradient(to right, var(--primary) 50%, transparent 50%);
    background-size: 200% 100%;
    background-position: right;
    text-decoration: none;
    cursor: pointer;
    transition: background-position 0.35s ease, color 0.35s ease, box-shadow 0.3s ease;
    line-height: 1.4;
}

.btn-primary:hover {
    background-position: left;
    color: var(--white);
    box-shadow: 0 6px 20px rgba(var(--primary-rgb), 0.3);
}

.section-dark .btn-primary {
    border-color: var(--primary);
    color: var(--primary);
    background: linear-gradient(to right, var(--primary) 50%, transparent 50%);
    background-size: 200% 100%;
    background-position: right;
}

.section-dark .btn-primary:hover {
    color: var(--white);
    background-position: left;
}

.btn-secondary {
    padding: 12px 28px;
    background: var(--secondary);
    border: 2px solid var(--secondary);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    line-height: 1.4;
}

.btn-secondary:hover {
    background: #1d6a80;
    border-color: #1d6a80;
    transform: translateY(-2px);
}

.btn-outline {
    padding: 12px 28px;
    background: transparent;
    border: 2px solid currentColor;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
    line-height: 1.4;
}

.btn-outline:hover {
    background: var(--text);
    color: var(--white);
}

.section-dark .btn-outline {
    color: var(--white);
    border-color: var(--white);
}

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

.btn-lg {
    padding: 16px 36px;
    font-size: 1.0625rem;
}

.btn-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.contact-form {
    max-width: 640px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.9375rem;
    margin-bottom: 6px;
    color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text);
    background: var(--white);
    border: 1px solid var(--border-color);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    outline: none;
}

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

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

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
    opacity: 0.7;
}

.form-row {
    display: flex;
    gap: 16px;
}

.form-row .form-group {
    flex: 1;
}

.faq-section {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    border: 1px solid var(--border-color);
    margin-bottom: -1px;
    transition: border-color 0.2s ease;
}

.faq-item.active {
    border-color: var(--primary);
    z-index: 1;
    position: relative;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: var(--white);
    border: none;
    width: 100%;
    text-align: left;
    font-family: var(--font-body);
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    transition: background 0.2s ease;
}

.faq-question:hover {
    background: var(--bg-alt);
}

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

.faq-item.active .faq-question::after {
    content: '\2212';
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 24px;
    background: var(--white);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 24px 20px;
}

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

.section-dark .faq-item {
    border-color: rgba(255, 255, 255, 0.12);
}

.section-dark .faq-question {
    background: rgba(255, 255, 255, 0.04);
    color: var(--white);
}

.section-dark .faq-question:hover {
    background: rgba(255, 255, 255, 0.08);
}

.section-dark .faq-answer {
    background: rgba(255, 255, 255, 0.04);
}

.section-dark .faq-answer p {
    color: rgba(255, 255, 255, 0.7);
}

.project-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.project-card {
    flex: 1 1 calc(50% - 12px);
    min-width: 300px;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.project-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.project-card .project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(to top, rgba(44, 37, 32, 0.9) 0%, transparent 100%);
    color: var(--white);
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.project-card:hover .project-overlay {
    transform: translateY(0);
    opacity: 1;
}

.project-overlay h3 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 4px;
}

.project-overlay p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.875rem;
}

.stats-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 48px;
    padding: 48px 0;
}

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

.stat-item .stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 4px;
}

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

.stat-item .stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

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

.cta-section {
    padding: 64px 0;
    text-align: center;
    background: linear-gradient(135deg, var(--text) 0%, #3d332c 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(var(--primary-rgb), 0.08);
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 12px;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.8);
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 24px;
    font-size: 1.1rem;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    padding: 32px 0;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text);
}

.trust-badge i,
.trust-badge .badge-icon {
    font-size: 1.5rem;
    color: var(--primary);
}

.section-dark .trust-badge {
    color: var(--white);
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    counter-reset: step;
}

.process-step {
    flex: 1 1 calc(25% - 24px);
    min-width: 200px;
    text-align: center;
    counter-increment: step;
    position: relative;
}

.process-step::before {
    content: counter(step);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 auto 16px;
}

.process-step h4 {
    margin-bottom: 8px;
}

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

.section-dark .process-step::before {
    background: var(--primary);
}

.section-dark .process-step p {
    color: rgba(255, 255, 255, 0.7);
}

.section-angled {
    position: relative;
    padding: 96px 0 112px;
    clip-path: polygon(0 4%, 100% 0, 100% 96%, 0 100%);
    margin-top: -32px;
    margin-bottom: -32px;
}

.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-minimal {
    padding: 32px 24px;
    background: var(--section-dark);
    border-top: 3px solid var(--primary);
    color: rgba(255, 255, 255, 0.7);
}

footer.footer-minimal .footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    max-width: var(--max-width);
    margin: 0 auto;
}

footer.footer-minimal .footer-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

footer.footer-minimal .footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

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

footer.footer-minimal p {
    margin: 0;
    font-size: 0.875rem;
}

footer.footer-minimal .footer-brand {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--white);
}

.map-container {
    width: 100%;
    height: 350px;
    border: 1px solid var(--border-color);
}

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

.contact-info-list {
    list-style: none;
    padding: 0;
}

.contact-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.9375rem;
}

.contact-info-list li:last-child {
    border-bottom: none;
}

.contact-info-list i {
    color: var(--primary);
    font-size: 1.125rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.resource-list {
    list-style: none;
    padding: 0;
}

.resource-list li {
    padding: 16px 0;
    border-bottom: 1px solid var(--border-color);
}

.resource-list li:last-child {
    border-bottom: none;
}

.resource-list a {
    font-weight: 600;
    color: var(--secondary);
}

.resource-list a:hover {
    color: var(--primary);
    text-decoration: underline;
}

.tag {
    display: inline-block;
    padding: 4px 12px;
    background: var(--bg-alt);
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border: 1px solid var(--border-color);
}

.tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.alert {
    padding: 16px 20px;
    border-left: 4px solid var(--primary);
    background: rgba(var(--primary-rgb), 0.06);
    margin-bottom: 24px;
    font-size: 0.9375rem;
}

.alert p {
    margin-bottom: 0;
}

.image-frame {
    border: 1px solid var(--border-color);
    padding: 6px;
    background: var(--white);
}

.image-frame img {
    width: 100%;
    height: auto;
    display: block;
}

[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-in"] {
    transform: scale(0.92);
}

[data-animate="scale-in"].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);
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    [data-animate] {
        opacity: 1;
        transform: none;
    }
    [data-stagger] > * {
        opacity: 1;
        transform: none;
    }
}

@media screen and (max-width: 1280px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media screen and (max-width: 1024px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 1.875rem; }

    .hero .container {
        flex-direction: column;
        gap: 32px;
    }

    .hero-content {
        flex: none;
        width: 100%;
        text-align: center;
    }

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

    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-image {
        flex: none;
        width: 100%;
    }

    .hero-image img {
        clip-path: none;
        height: 300px;
    }

    .hero-badges {
        justify-content: center;
    }

    .btn-group {
        justify-content: center;
    }

    .sidebar-layout {
        flex-direction: column;
    }

    .sidebar-layout .sidebar {
        flex: none;
        width: 100%;
        position: static;
    }

    .two-col-layout > *:first-child,
    .two-col-layout > *:last-child {
        flex: 1 1 100%;
    }

    .project-card {
        flex: 1 1 100%;
    }

    .process-step {
        flex: 1 1 calc(50% - 16px);
    }

    .stats-bar {
        gap: 32px;
    }

    .section-angled {
        clip-path: polygon(0 2%, 100% 0, 100% 98%, 0 100%);
    }
}

@media screen and (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.625rem; }
    h3 { font-size: 1.375rem; }

    .mobile-menu-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--white);
        border-bottom: 1px solid var(--border-color);
        box-shadow: 0 8px 24px rgba(44, 37, 32, 0.1);
        padding: 8px 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease;
    }

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

    .nav-item {
        width: 100%;
    }

    .nav-link {
        display: block;
        padding: 14px 32px;
        border-bottom: none;
        border-left: 3px solid transparent;
    }

    .nav-link:hover,
    .nav-link.active {
        border-bottom: none;
        border-left-color: var(--primary);
        background: var(--bg-alt);
    }

    .hero {
        min-height: auto;
        padding: 48px 0;
    }

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

    .hero-image img {
        height: 240px;
    }

    .header-hero {
        padding: 60px 0 40px;
    }

    .header-hero h1 {
        font-size: 1.875rem;
    }

    .content-section {
        padding: 56px 0;
    }

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

    .grid-2 > *,
    .grid-3 > *,
    .grid-4 > * {
        flex: 1 1 100%;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .stats-bar {
        gap: 24px;
    }

    .stat-item .stat-number {
        font-size: 2rem;
    }

    .trust-badges {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .process-step {
        flex: 1 1 100%;
    }

    .cta-section {
        padding: 48px 0;
    }

    footer.footer-minimal .footer-content {
        flex-direction: column;
        text-align: center;
    }

    footer.footer-minimal .footer-links {
        justify-content: center;
    }
}

@media screen and (max-width: 480px) {
    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.5rem; }

    .navbar {
        padding: 0 16px;
    }

    .logo {
        font-size: 1.25rem;
    }

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

    .hero-badge {
        font-size: 0.75rem;
        padding: 4px 10px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.875rem;
    }

    .btn-lg {
        padding: 12px 24px;
        font-size: 0.9375rem;
    }

    .pricing-card {
        padding: 24px;
    }

    .testimonial-card {
        padding: 24px;
    }

    .faq-question {
        padding: 16px 20px;
        font-size: 0.9375rem;
    }

    .feature {
        padding: 24px 16px;
    }

    .section-angled {
        clip-path: none;
        margin: 0;
        padding: 56px 0;
    }
}
