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

:root {
    --primary: #33CCB3;
    --primary-rgb: 51, 204, 179;
    --secondary: #9D34B2;
    --secondary-rgb: 157, 52, 178;
    --accent: #D1BE61;
    --accent-rgb: 209, 190, 97;
    --bg: #F7F8FA;
    --bg-alt: #EDEEF2;
    --text: #1E2128;
    --text-muted: #555A65;
    --section-dark: #1E2128;
    --section-accent: #E8EAF0;
    --border-color: #D4D6DC;
    --white: #ffffff;
    --font-primary: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-secondary: 'Merriweather', Georgia, serif;
    --max-width: 1200px;
    --radius-sm: 0;
    --radius-md: 0;
    --transition: 0.3s ease;
}

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

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

@keyframes pulseAccent {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

*,
*::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-primary);
    color: var(--text);
    background: var(--bg);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

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

ul, ol {
    list-style: none;
}

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

h1 { font-size: 2rem; }
h2 { font-size: 1.5rem; }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.125rem; }
h5 { font-size: 1rem; }
h6 { font-size: 0.875rem; }

p {
    font-size: 1rem;
    line-height: 1.65;
    margin-bottom: 1rem;
}

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

.row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.grid-2 {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

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

.grid-3 {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

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

.grid-4 {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

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

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

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

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

.navbar.scrolled {
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.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-primary);
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--text);
    text-decoration: none;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

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

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0;
}

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

.nav-link {
    display: inline-block;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border-bottom: 2px solid transparent;
    transition: color var(--transition), border-color var(--transition);
}

.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: 1.5rem;
    color: var(--text);
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    line-height: 1;
}

main {
    padding-top: 68px;
}

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

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

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

.hero .container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 3rem;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.hero-content {
    flex: 1 1 55%;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.hero-content p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    font-family: var(--font-secondary);
    line-height: 1.7;
}

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

.hero-image img {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    object-fit: cover;
}

.header-hero {
    position: relative;
    padding: 4rem 0 3rem;
    background: linear-gradient(135deg, var(--section-dark) 0%, #2a2d35 100%);
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

.header-hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--secondary));
}

.header-hero h1 {
    font-size: 2rem;
    color: var(--white);
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.header-hero p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
    font-family: var(--font-secondary);
}

.content-section {
    padding: 4rem 0;
    border-bottom: 1px solid var(--border-color);
}

.content-section:last-of-type {
    border-bottom: none;
}

.section-dark {
    background: var(--section-dark);
    color: var(--white);
    border-bottom-color: #333740;
}

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

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

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

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

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

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 2.5rem;
}

.section-header h2 {
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 0.75rem;
    position: relative;
    display: inline-block;
}

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

.section-header p {
    color: var(--text-muted);
    font-size: 1rem;
    font-family: var(--font-secondary);
}

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

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

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

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

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

.card {
    background: var(--white);
    border: 1px solid var(--border-color);
    padding: 0;
    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(0, 0, 0, 0.07);
}

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

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

.card-body {
    padding: 1.5rem;
}

.card-body h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.card-body p {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0;
}

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

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

.feature-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    font-size: 1.25rem;
    border-radius: 50%;
}

.feature h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.feature p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.testimonial-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    padding: 2rem;
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 1rem;
    left: 1.25rem;
    font-size: 3rem;
    font-family: var(--font-secondary);
    color: var(--accent);
    line-height: 1;
    opacity: 0.7;
}

.testimonial-card p {
    font-family: var(--font-secondary);
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 1rem;
    padding-top: 1.5rem;
}

.testimonial-card .author {
    font-family: var(--font-primary);
    font-weight: 700;
    font-style: normal;
    font-size: 0.875rem;
    color: var(--primary);
}

.testimonial-card .author span {
    display: block;
    font-weight: 400;
    color: var(--text-muted);
    font-size: 0.8rem;
}

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

.pricing-card:hover {
    border-color: var(--primary);
}

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

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

.pricing-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.pricing-card .price {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

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

.pricing-card ul {
    text-align: left;
    margin-bottom: 2rem;
}

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

.pricing-card ul li:last-child {
    border-bottom: none;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    font-family: var(--font-primary);
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 2px solid transparent;
    cursor: pointer;
    transition: background-position 0.35s ease, color 0.35s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    line-height: 1.4;
    text-align: center;
}

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

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

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

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

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

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

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1rem;
}

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

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

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

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

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

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

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.35rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

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

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary);
}

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

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

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

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.15rem 1.5rem;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    background: var(--white);
    border: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    transition: background var(--transition), color var(--transition);
}

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

.faq-question.active {
    color: var(--primary);
    background: var(--bg-alt);
}

.faq-question::after {
    content: '+';
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--text-muted);
    transition: transform var(--transition);
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-question.active::after {
    content: '\2212';
    color: var(--primary);
}

.faq-answer {
    display: none;
    padding: 0 1.5rem 1.25rem;
    background: var(--bg-alt);
}

.faq-answer.active {
    display: block;
}

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

.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;
    gap: 1rem;
    margin-top: 1.5rem;
}

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

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

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border: 1px solid var(--border-color);
    background: var(--white);
    cursor: pointer;
    transition: background var(--transition), border-color var(--transition);
}

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

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.team-member {
    flex: 0 1 calc(25% - 1.125rem);
    min-width: 200px;
    text-align: center;
}

.team-member img {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto 1rem;
    border: 3px solid var(--border-color);
    transition: border-color 0.35s ease;
}

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

.team-member h4 {
    font-size: 1rem;
    margin-bottom: 0.15rem;
}

.team-member p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.article-card {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-color);
    align-items: flex-start;
}

.article-card:last-child {
    border-bottom: none;
}

.article-card img {
    flex: 0 0 220px;
    height: 150px;
    object-fit: cover;
}

.article-card .article-body h3 {
    font-size: 1.1rem;
    margin-bottom: 0.35rem;
}

.article-card .article-body h3 a {
    color: var(--text);
}

.article-card .article-body h3 a:hover {
    color: var(--primary);
}

.article-card .article-meta {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.5rem;
}

.article-card .article-body p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

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

.stat-item {
    text-align: center;
    flex: 0 1 auto;
    min-width: 140px;
}

.stat-item .stat-number {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
}

.stat-item .stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.25rem;
}

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

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

.cta-banner {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, var(--section-dark) 0%, #2a2d35 100%);
    color: var(--white);
}

.cta-banner h2 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.7);
    max-width: 540px;
    margin: 0 auto 1.5rem;
    font-family: var(--font-secondary);
}

.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.gallery-grid .gallery-item {
    flex: 1 1 calc(33.333% - 0.35rem);
    min-width: 200px;
    overflow: hidden;
}

.gallery-grid .gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.45s ease;
}

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

.breadcrumb {
    display: flex;
    gap: 0.35rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.breadcrumb a {
    color: var(--text-muted);
}

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

.breadcrumb span {
    color: var(--text-muted);
    opacity: 0.5;
}

.badge {
    display: inline-block;
    padding: 0.2rem 0.65rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 1px solid var(--primary);
    color: var(--primary);
}

.badge-accent {
    border-color: var(--accent);
    color: var(--accent);
}

.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-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);
}

.service-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.service-item {
    flex: 1 1 calc(50% - 0.75rem);
    min-width: 280px;
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    background: var(--white);
    transition: border-color 0.3s ease;
    align-items: flex-start;
}

.service-item:hover {
    border-color: var(--primary);
}

.service-item .service-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-alt);
    color: var(--primary);
    font-size: 1.25rem;
}

.service-item h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.service-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border-color);
}

.timeline-item {
    position: relative;
    padding-bottom: 2rem;
    padding-left: 1.5rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -2rem;
    top: 0.35rem;
    width: 12px;
    height: 12px;
    border: 2px solid var(--primary);
    background: var(--white);
    border-radius: 50%;
    margin-left: -5px;
}

.timeline-item h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.timeline-item .timeline-date {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.35rem;
}

.timeline-item p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.contact-info-block {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.contact-info-item {
    flex: 1 1 calc(33.333% - 1rem);
    min-width: 200px;
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.contact-info-item .info-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--white);
    font-size: 1rem;
}

.contact-info-item h4 {
    font-size: 0.875rem;
    margin-bottom: 0.1rem;
}

.contact-info-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

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

.map-embed iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.success-story {
    display: flex;
    gap: 2rem;
    align-items: center;
    padding: 2rem 0;
    border-bottom: 1px solid var(--border-color);
}

.success-story:last-child {
    border-bottom: none;
}

.success-story img {
    flex: 0 0 300px;
    height: 200px;
    object-fit: cover;
}

.success-story .story-content h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.success-story .story-content p {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.news-card {
    border: 1px solid var(--border-color);
    background: var(--white);
    overflow: hidden;
}

.news-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.news-card .news-body {
    padding: 1.25rem;
}

.news-card .news-date {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin-bottom: 0.35rem;
}

.news-card h3 {
    font-size: 1rem;
    margin-bottom: 0.35rem;
}

.news-card h3 a {
    color: var(--text);
}

.news-card h3 a:hover {
    color: var(--primary);
}

.news-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: border-color var(--transition), color var(--transition), background var(--transition);
}

.social-links a:hover {
    border-color: var(--primary);
    color: var(--white);
    background: var(--primary);
}

footer.footer-minimal {
    padding: 2rem;
    background: var(--section-dark);
    color: rgba(255, 255, 255, 0.6);
    border-top: 3px solid var(--primary);
    text-align: center;
}

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

footer.footer-minimal .footer-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

footer.footer-minimal .footer-links a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color var(--transition);
}

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

footer.footer-minimal p {
    margin: 0;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.8rem;
}

footer.footer-minimal .footer-logo {
    font-weight: 700;
    color: var(--white);
    font-size: 1rem;
}

[data-animate] {
    opacity: 0;
    transform: translateY(28px);
    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(-28px);
}

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

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

[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(18px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

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

.video-embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.tag {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    background: var(--bg-alt);
    color: var(--text-muted);
}

.alert {
    padding: 1rem 1.25rem;
    border: 1px solid var(--border-color);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.alert-success {
    border-color: var(--primary);
    background: rgba(var(--primary-rgb), 0.06);
    color: var(--text);
}

.alert-info {
    border-color: var(--secondary);
    background: rgba(var(--secondary-rgb), 0.06);
}

.pagination {
    display: flex;
    gap: 0.25rem;
    justify-content: center;
    margin-top: 2rem;
}

.pagination a,
.pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    text-decoration: none;
    transition: border-color var(--transition), color var(--transition), background var(--transition);
}

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

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

.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--white);
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px);
    background: var(--secondary);
}

.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    padding: 0.5rem 1rem;
    background: var(--primary);
    color: var(--white);
    z-index: 9999;
    font-size: 0.85rem;
}

.skip-link:focus {
    top: 0.5rem;
}

@media screen and (max-width: 1024px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-image {
        max-width: 500px;
        margin: 0 auto;
    }

    .two-col-layout {
        gap: 2rem;
    }

    .success-story {
        flex-direction: column;
    }

    .success-story img {
        flex: none;
        width: 100%;
        height: 240px;
    }

    .team-member {
        flex: 0 1 calc(33.333% - 1rem);
    }

    .gallery-grid .gallery-item {
        flex: 1 1 calc(50% - 0.25rem);
    }

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

@media screen and (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: stretch;
        padding: 5rem 0 2rem;
        border-right: 1px solid var(--border-color);
        transform: translateX(-100%);
        transition: transform 0.35s ease;
        z-index: 999;
        overflow-y: auto;
    }

    .nav-menu.open,
    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-link {
        padding: 0.85rem 1.5rem;
        font-size: 0.9rem;
        border-bottom: 1px solid var(--bg-alt);
        border-left: 3px solid transparent;
    }

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

    .menu-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.4);
        z-index: 998;
    }

    .menu-overlay.active {
        display: block;
    }

    h1 { font-size: 1.65rem; }
    h2 { font-size: 1.3rem; }

    .hero {
        min-height: auto;
        padding: 3rem 0;
    }

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

    .hero-content p {
        font-size: 1rem;
    }

    .header-hero {
        padding: 3rem 0 2rem;
    }

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

    .content-section {
        padding: 3rem 0;
    }

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

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

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

    .service-item {
        flex: 1 1 100%;
    }

    .article-card {
        flex-direction: column;
    }

    .article-card img {
        flex: none;
        width: 100%;
        height: 180px;
    }

    .stats-bar {
        gap: 1.5rem;
    }

    .stat-item {
        min-width: 120px;
    }

    .team-member {
        flex: 0 1 calc(50% - 0.75rem);
    }

    .contact-info-item {
        flex: 1 1 100%;
    }

    .contact-info-block {
        gap: 1rem;
    }

    .gallery-grid .gallery-item {
        min-width: 150px;
    }

    .slider-controls {
        gap: 0.75rem;
    }

    .cta-banner {
        padding: 2.5rem 1.5rem;
    }

    .cta-banner h2 {
        font-size: 1.25rem;
    }

    .section-angled {
        clip-path: none;
        margin: 0;
        padding: 4rem 0;
    }

    footer.footer-minimal .footer-content {
        flex-direction: column;
        gap: 1rem;
    }

    footer.footer-minimal .footer-links {
        gap: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

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

    .hero {
        padding: 2rem 0;
    }

    .content-section {
        padding: 2rem 0;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .btn + .btn {
        margin-top: 0.5rem;
    }

    .team-member {
        flex: 1 1 100%;
    }

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

    .gallery-grid .gallery-item {
        flex: 1 1 100%;
    }

    .gallery-grid .gallery-item img {
        height: 200px;
    }

    .pricing-card {
        padding: 2rem 1.25rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .testimonial-card::before {
        font-size: 2.5rem;
    }

    .faq-question {
        padding: 1rem;
        font-size: 0.9rem;
    }

    .faq-answer {
        padding: 0 1rem 1rem;
    }

    .map-embed {
        height: 250px;
    }
}

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

    [data-animate] {
        opacity: 1;
        transform: none;
    }

    [data-stagger] > * {
        opacity: 1;
        transform: none;
    }
}

@media print {
    .navbar,
    .mobile-menu-toggle,
    .back-to-top,
    .slider-controls,
    .slider-dots {
        display: none !important;
    }

    main {
        padding-top: 0;
    }

    .hero {
        min-height: auto;
        background: none;
        color: var(--text);
    }

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

    .content-section {
        break-inside: avoid;
    }
}
