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

:root {
    --primary: #D53477;
    --primary-rgb: 213, 52, 119;
    --secondary: #24B277;
    --secondary-rgb: 36, 178, 119;
    --accent: #EF7267;
    --accent-rgb: 239, 114, 103;
    --bg: #FAF8F5;
    --bg-alt: #F0ECE6;
    --text: #2C2520;
    --text-muted: #6B6055;
    --section-dark: #2C2520;
    --section-accent: #EDE6DD;
    --white: #ffffff;
    --border: rgba(44, 37, 32, 0.1);
    --shadow-sm: 0 2px 8px rgba(44, 37, 32, 0.06);
    --shadow-md: 0 8px 24px rgba(44, 37, 32, 0.1);
    --shadow-lg: 0 16px 48px rgba(44, 37, 32, 0.14);
    --shadow-glow: 0 0 20px rgba(213, 52, 119, 0.25);
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --transition: 0.3s ease;
    --transition-snappy: 0.15s ease;
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Lato', sans-serif;
}

*,
*::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.6;
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

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

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

h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); }
h3 { font-size: 1.375rem; }
h4 { font-size: 1.125rem; }

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

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

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

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

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

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

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

.grid-asymmetric {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2.5rem;
    align-items: start;
}

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

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    33% { transform: translateY(-12px) rotate(1deg); }
    66% { transform: translateY(-6px) rotate(-0.5deg); }
}

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

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

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

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 2rem;
    background: rgba(250, 248, 245, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: padding var(--transition), background var(--transition);
}

.navbar.scrolled {
    padding: 0.6rem 2rem;
    background: rgba(250, 248, 245, 0.97);
    box-shadow: var(--shadow-sm);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text);
    text-decoration: none;
    letter-spacing: -0.03em;
    transition: color var(--transition);
}

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

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

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

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

.nav-link {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
    text-decoration: none;
    padding: 0.5rem 0;
    position: relative;
    transition: color var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width var(--transition);
}

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

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: var(--primary);
}

.nav-link.active::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text);
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    position: relative;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: transform var(--transition), opacity var(--transition);
    position: absolute;
    left: 8px;
}

.hamburger-line:nth-child(1) { top: 12px; }
.hamburger-line:nth-child(2) { top: 19px; }
.hamburger-line:nth-child(3) { top: 26px; }

body.menu-open .hamburger-line:nth-child(1) {
    transform: rotate(45deg);
    top: 19px;
    background: var(--white);
}

body.menu-open .hamburger-line:nth-child(2) {
    opacity: 0;
}

body.menu-open .hamburger-line:nth-child(3) {
    transform: rotate(-45deg);
    top: 19px;
    background: var(--white);
}

.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(44, 37, 32, 0.97);
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

body.menu-open .mobile-overlay {
    opacity: 1;
    visibility: visible;
}

.mobile-overlay .nav-menu {
    flex-direction: column;
    gap: 1.75rem;
}

.mobile-overlay .nav-link {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 600;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease, color 0.2s ease;
}

body.menu-open .mobile-overlay .nav-link {
    opacity: 1;
    transform: translateY(0);
}

body.menu-open .mobile-overlay .nav-item:nth-child(1) .nav-link { transition-delay: 0.1s; }
body.menu-open .mobile-overlay .nav-item:nth-child(2) .nav-link { transition-delay: 0.15s; }
body.menu-open .mobile-overlay .nav-item:nth-child(3) .nav-link { transition-delay: 0.2s; }
body.menu-open .mobile-overlay .nav-item:nth-child(4) .nav-link { transition-delay: 0.25s; }
body.menu-open .mobile-overlay .nav-item:nth-child(5) .nav-link { transition-delay: 0.3s; }
body.menu-open .mobile-overlay .nav-item:nth-child(6) .nav-link { transition-delay: 0.35s; }
body.menu-open .mobile-overlay .nav-item:nth-child(7) .nav-link { transition-delay: 0.4s; }
body.menu-open .mobile-overlay .nav-item:nth-child(8) .nav-link { transition-delay: 0.45s; }

.mobile-overlay .nav-link::after {
    background: var(--accent);
}

.mobile-overlay .nav-link:hover {
    color: var(--accent);
}

main {
    padding-top: 80px;
}

.hero {
    position: relative;
    min-height: 85vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 3rem;
    padding: 4.5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
}

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

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

.hero-content {
    position: relative;
    z-index: 2;
    padding-right: 1rem;
}

.hero-content .badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(var(--primary-rgb), 0.1);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 600;
    font-family: var(--font-heading);
    border-radius: 50px;
    margin-bottom: 1.25rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hero-content h1 {
    margin-bottom: 1.25rem;
    font-size: clamp(2.25rem, 5vw, 3.5rem);
}

.hero-content h1 span {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 520px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.hero-visual {
    position: relative;
    z-index: 2;
}

.hero-visual img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    clip-path: polygon(8% 0, 100% 0, 100% 92%, 92% 100%, 0 100%, 0 8%);
}

.hero-card-stack {
    position: relative;
    z-index: 2;
}

.hero-card-stack .stack-item {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 1.25rem 1.5rem;
    box-shadow: var(--shadow-md);
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.hero-card-stack .stack-item:nth-child(2) {
    bottom: 20px;
    right: -20px;
}

.hero-card-stack .stack-item:nth-child(3) {
    top: -10px;
    left: -20px;
}

.hero-card-stack .stack-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.hero-card-stack .stack-label {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text);
}

.hero-card-stack .stack-value {
    font-size: 0.75rem;
    color: var(--text-muted);
}

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

.header-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -25%;
    width: 150%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 40px,
        rgba(255,255,255,0.015) 40px,
        rgba(255,255,255,0.015) 42px
    );
    pointer-events: none;
}

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

.header-hero h1 {
    color: var(--white);
    position: relative;
    z-index: 1;
    margin-bottom: 0.75rem;
}

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

.header-hero .breadcrumb {
    position: relative;
    z-index: 1;
    margin-top: 1.25rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}

.header-hero .breadcrumb a {
    color: rgba(255,255,255,0.6);
}

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

.content-section {
    padding: 4.5rem 0;
    position: relative;
}

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

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

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

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

.section-header .overline {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

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

.section-header h2 {
    margin-bottom: 1rem;
}

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

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

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

.section-angled-reverse {
    clip-path: polygon(0 0, 100% 4%, 100% 100%, 0 96%);
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.85rem 2rem;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    line-height: 1;
    position: relative;
    overflow: hidden;
}

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

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

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

.btn-secondary:hover {
    background: #1e9a67;
    border-color: #1e9a67;
    box-shadow: 0 6px 20px rgba(var(--secondary-rgb), 0.3);
    transform: translateY(-2px);
    color: var(--white);
}

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

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

.btn-lg {
    padding: 1.1rem 2.75rem;
    font-size: 1.05rem;
}

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

.btn-white:hover {
    background: var(--bg);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    color: var(--text);
}

.card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    position: relative;
}

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

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

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

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

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

.card-body {
    padding: 1.5rem;
}

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

.card-body p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.55;
}

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

.feature:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(var(--primary-rgb), 0.25);
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.1), rgba(var(--accent-rgb), 0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.5rem;
    color: var(--primary);
    transition: background var(--transition);
}

.feature:hover .feature-icon {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--white);
}

.feature h3 {
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.feature p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.section-dark .feature {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.section-dark .feature:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(var(--accent-rgb), 0.4);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.section-dark .feature h3 {
    color: var(--white);
}

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

.section-dark .feature-icon {
    background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.2), rgba(var(--primary-rgb), 0.15));
    color: var(--accent);
}

.section-dark .feature:hover .feature-icon {
    background: linear-gradient(135deg, var(--accent), var(--primary));
    color: var(--white);
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--primary);
    position: relative;
    transition: transform var(--transition), box-shadow var(--transition);
}

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

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

.testimonial-card p {
    font-style: italic;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 1.25rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.testimonial-author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--bg-alt);
}

.testimonial-author strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.9rem;
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.testimonial-stars {
    color: var(--accent);
    margin-bottom: 0.75rem;
    font-size: 1rem;
    letter-spacing: 2px;
}

.section-dark .testimonial-card {
    background: rgba(255, 255, 255, 0.07);
    border-left-color: var(--accent);
    backdrop-filter: blur(8px);
}

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

.section-dark .testimonial-card::before {
    color: rgba(var(--accent-rgb), 0.15);
}

.pricing-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    border: 1px solid var(--border);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    position: relative;
}

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

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

.pricing-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.3rem 1.25rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    font-family: var(--font-heading);
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

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

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

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    text-align: left;
}

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

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

.two-col-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

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

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

.two-col-layout img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.two-col-layout .content-side h2 {
    margin-bottom: 1rem;
}

.two-col-layout .content-side p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.two-col-layout .content-side ul {
    margin-bottom: 1.5rem;
}

.two-col-layout .content-side li {
    padding: 0.35rem 0;
    color: var(--text-muted);
}

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

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

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid rgba(44, 37, 32, 0.15);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text);
    background: var(--bg);
    transition: border-color var(--transition), box-shadow var(--transition);
}

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

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

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

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

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

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

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

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

.faq-question .faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(var(--primary-rgb), 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform var(--transition), background var(--transition);
    font-size: 0.8rem;
    color: var(--primary);
}

.faq-item.active .faq-question .faq-icon {
    transform: rotate(45deg);
    background: var(--primary);
    color: var(--white);
}

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

.faq-item.active .faq-answer {
    max-height: 400px;
    padding-bottom: 1.25rem;
}

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

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

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

.slider-track .testimonial-card {
    min-width: 100%;
    flex-shrink: 0;
    margin: 0;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
    align-items: center;
}

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

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

.slider-dots {
    display: flex;
    gap: 0.5rem;
}

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

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

.before-after-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.before-after-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.before-after-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.before-after-label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.before-after-label.before {
    background: rgba(44, 37, 32, 0.8);
    color: var(--white);
}

.before-after-label.after {
    background: var(--secondary);
    color: var(--white);
}

.stats-bar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 2rem;
    padding: 3rem 0;
}

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

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

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

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 500;
}

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

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    padding: 1.5rem 0;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: var(--font-heading);
    color: var(--text);
    padding: 0.6rem 1.25rem;
    background: var(--white);
    border-radius: 50px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.trust-badge i {
    color: var(--secondary);
}

.section-dark .trust-badge {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.1);
    color: var(--white);
}

.cta-section {
    padding: 4.5rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, var(--primary) 0%, #c02a68 50%, var(--accent) 100%);
    background-size: 200% 200%;
    animation: gradientPan 10s ease infinite;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -25%;
    width: 150%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 50px,
        rgba(255,255,255,0.03) 50px,
        rgba(255,255,255,0.03) 52px
    );
    pointer-events: none;
}

.cta-section h2 {
    color: var(--white);
    position: relative;
    z-index: 1;
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(255,255,255,0.88);
    position: relative;
    z-index: 1;
    font-size: 1.1rem;
    max-width: 550px;
    margin: 0 auto 2rem;
}

.cta-section .btn {
    position: relative;
    z-index: 1;
}

.geo-pattern-bg {
    position: relative;
}

.geo-pattern-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 60px,
            rgba(var(--primary-rgb), 0.03) 60px,
            rgba(var(--primary-rgb), 0.03) 61px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 60px,
            rgba(var(--primary-rgb), 0.03) 60px,
            rgba(var(--primary-rgb), 0.03) 61px
        );
    pointer-events: none;
}

.glass-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.glass-card:hover {
    border-color: rgba(var(--accent-rgb), 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

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

.team-member img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.25rem;
    border: 4px solid var(--white);
    box-shadow: var(--shadow-md);
    transition: transform var(--transition);
}

.team-member:hover img {
    transform: scale(1.05);
}

.team-member h3 {
    margin-bottom: 0.25rem;
}

.team-member .role {
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    font-family: var(--font-heading);
}

.team-member p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 0.5rem;
    line-height: 1.6;
}

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

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary), var(--accent));
}

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

.timeline-item::before {
    content: '';
    position: absolute;
    left: -2.5rem;
    top: 4px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--primary);
    border: 3px solid var(--bg);
    box-shadow: 0 0 0 2px var(--primary);
}

.timeline-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.35rem;
}

.timeline-item .date {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.timeline-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-top: 0.5rem;
}

.resource-card {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    transition: transform var(--transition), box-shadow var(--transition);
}

.resource-card:hover {
    transform: translateX(6px);
    box-shadow: var(--shadow-md);
}

.resource-card .resource-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-sm);
    background: rgba(var(--primary-rgb), 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.25rem;
    color: var(--primary);
}

.resource-card h3 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

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

.news-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: transform var(--transition), box-shadow var(--transition);
}

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

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

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

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

.news-card h3 {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}

.news-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

footer.footer-cta {
    background: var(--bg);
    padding: 3rem 2rem 2rem;
    border-top: 1px solid var(--border);
}

footer.footer-cta .footer-cta-section {
    max-width: 620px;
    margin: 0 auto 2.5rem;
    text-align: center;
    padding: 3rem 2rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

footer.footer-cta .footer-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--secondary));
}

footer.footer-cta .footer-cta-section h3 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}

footer.footer-cta .footer-cta-section p {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

footer.footer-cta .cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--white);
    text-decoration: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

footer.footer-cta .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(var(--primary-rgb), 0.35);
    color: var(--white);
}

footer.footer-cta .footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    padding: 0;
    list-style: none;
}

footer.footer-cta .footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition);
}

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

footer.footer-cta .copyright {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.82rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

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

.portfolio-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
}

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

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

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(44, 37, 32, 0.85) 0%, transparent 50%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay h3 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.portfolio-overlay span {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    counter-reset: step;
}

.process-step {
    text-align: center;
    padding: 2rem 1.5rem;
    position: relative;
    counter-increment: step;
}

.process-step::before {
    content: counter(step);
    display: block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.25rem;
    margin: 0 auto 1.25rem;
}

.process-step h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.process-step p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.alert-bar {
    padding: 0.75rem 1.5rem;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: var(--font-heading);
    position: relative;
    z-index: 1001;
}

.alert-bar.aggressive {
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: var(--white);
}

.alert-bar a {
    color: var(--white);
    text-decoration: underline;
    font-weight: 700;
}

.map-embed {
    width: 100%;
    height: 350px;
    border-radius: var(--radius-lg);
    border: 0;
    box-shadow: var(--shadow-sm);
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    transition: transform var(--transition);
}

.contact-info-card:hover {
    transform: translateY(-3px);
}

.contact-info-card .info-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(var(--primary-rgb), 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary);
    font-size: 1.1rem;
}

.contact-info-card h4 {
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
}

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

.badge-row {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.badge-item {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.3rem 0.85rem;
    background: rgba(var(--secondary-rgb), 0.08);
    color: var(--secondary);
    font-size: 0.78rem;
    font-weight: 600;
    font-family: var(--font-heading);
    border-radius: 50px;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

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

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.comparison-table th {
    background: var(--section-dark);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 1rem;
    text-align: left;
    font-size: 0.9rem;
}

.comparison-table td {
    padding: 0.85rem 1rem;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
    color: var(--text);
}

.comparison-table tr:hover td {
    background: rgba(var(--primary-rgb), 0.03);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
}

.gallery-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.gallery-grid img:hover {
    transform: scale(1.04);
    box-shadow: var(--shadow-md);
}

@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) {
    .hero {
        gap: 2rem;
        padding: 3.5rem 2rem;
    }
}

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

    .navbar .nav-menu {
        display: none;
    }

    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 3rem 1.5rem;
        text-align: center;
    }

    .hero-content {
        padding-right: 0;
    }

    .hero-content p {
        max-width: none;
    }

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

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

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

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

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

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

    .two-col-layout {
        grid-template-columns: 1fr;
    }

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

    .before-after-grid {
        grid-template-columns: 1fr;
    }

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

    .header-hero {
        padding: 5rem 1.5rem 3rem;
    }

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

    .section-angled {
        clip-path: polygon(0 2%, 100% 0, 100% 98%, 0 100%);
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
}

@media screen and (max-width: 768px) {
    h1 { font-size: clamp(1.75rem, 6vw, 2.25rem); }
    h2 { font-size: clamp(1.35rem, 4.5vw, 1.75rem); }

    .container {
        padding: 0 1.25rem;
    }

    .hero {
        min-height: auto;
        padding: 2rem 1.25rem;
    }

    .hero-content h1 {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
    }

    .hero-card-stack .stack-item {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        margin-bottom: 0.75rem;
    }

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

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

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

    .trust-badges {
        gap: 0.75rem;
    }

    .trust-badge {
        font-size: 0.78rem;
        padding: 0.45rem 0.85rem;
    }

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

    .testimonial-card {
        padding: 1.5rem;
    }

    .cta-section {
        padding: 3.5rem 1.25rem;
    }

    footer.footer-cta .footer-cta-section {
        padding: 2rem 1.5rem;
    }

    footer.footer-cta .footer-cta-section h3 {
        font-size: 1.4rem;
    }

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

    .resource-card {
        flex-direction: column;
        gap: 1rem;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

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

    .contact-form-wrapper {
        padding: 1.75rem;
    }

    .team-member img {
        width: 140px;
        height: 140px;
    }

    .slider-track .testimonial-card {
        padding: 1.5rem;
    }
}

@media screen and (max-width: 480px) {
    body {
        font-size: 0.95rem;
    }

    .navbar {
        padding: 0.75rem 1rem;
    }

    main {
        padding-top: 65px;
    }

    .hero {
        padding: 1.5rem 1rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

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

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

    .section-header {
        margin-bottom: 2rem;
    }

    .card img {
        height: 180px;
    }

    .feature {
        padding: 1.5rem;
    }

    .feature-icon {
        width: 52px;
        height: 52px;
        font-size: 1.25rem;
    }

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

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

    .comparison-table {
        font-size: 0.82rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.65rem;
    }

    .header-hero {
        padding: 4rem 1rem 2.5rem;
    }

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

    .contact-info-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

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

    .timeline {
        padding-left: 2rem;
    }

    .timeline-item::before {
        left: -2rem;
        width: 12px;
        height: 12px;
    }

    footer.footer-cta .footer-cta-section h3 {
        font-size: 1.2rem;
    }

    .map-embed {
        height: 250px;
    }

    .before-after-item img {
        height: 220px;
    }

    .portfolio-item img {
        height: 200px;
    }

    .news-card img {
        height: 160px;
    }

    .video-wrapper {
        border-radius: var(--radius-md);
    }

    .mobile-overlay .nav-link {
        font-size: 1.25rem;
    }
}
