/* ===== CSS Variables & Reset ===== */
:root {
    --primary: #C9797A;
    --primary-dark: #A85D5E;
    --primary-light: #E8A598;
    --primary-glow: rgba(201, 121, 122, 0.2);
    --accent: #C9797A;
    --accent-dark: #A85D5E;
    --bg-dark: #FFFFFF;
    --bg-card: #F7F4F4;
    --bg-card-hover: #FDEEED;
    --bg-gradient: linear-gradient(135deg, #FFFFFF 0%, #FBF6F6 50%, #F7F0F0 100%);
    --text-primary: #1A1A1A;
    --text-secondary: #555555;
    --text-muted: #888888;
    --border: rgba(0, 0, 0, 0.08);
    --border-hover: rgba(201, 121, 122, 0.30);
    --success: #16a34a;
    --radius: 12px;
    --radius-lg: 20px;
    --radius-sm: 8px;
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.07);
    --shadow-card-hover: 0 12px 40px rgba(201, 121, 122, 0.15);
    --shadow-glow: 0 0 40px rgba(201, 121, 122, 0.12);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #FFFFFF;
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #F5F5F5;
}
::-webkit-scrollbar-thumb {
    background: #DDDDDD;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

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

section {
    padding: 100px 0;
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    background: rgba(201, 121, 122, 0.08);
    border: 1px solid rgba(201, 121, 122, 0.25);
    color: var(--primary-dark);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 640px;
    margin: 0 auto;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #FFFFFF;
    box-shadow: 0 4px 16px rgba(201, 121, 122, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(201, 121, 122, 0.45);
    background: linear-gradient(135deg, #D98889 0%, var(--primary) 100%);
}

.btn-secondary {
    background: #FFFFFF;
    color: var(--text-primary);
    border: 1.5px solid rgba(0, 0, 0, 0.15);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.btn-secondary:hover {
    background: #FBF6F6;
    border-color: var(--primary);
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(201, 121, 122, 0.15);
}

.btn-lg {
    padding: 18px 36px;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* ===== Navbar ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 12px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 48px;
    width: auto;
    transition: var(--transition);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 36px;
    align-items: center;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

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

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

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

.nav-cta {
    background: var(--primary);
    color: #FFFFFF;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(201, 121, 122, 0.3);
}

.nav-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(201, 121, 122, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 100%;
    height: 2px;
    background-color: var(--text-primary);
    transition: var(--transition);
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 140px;
    padding-bottom: 80px;
    background: linear-gradient(160deg, #FFFFFF 0%, #FBF5F5 40%, #F7EEED 100%);
    overflow: hidden;
}

.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.35;
}

.shape-1 {
    top: -15%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: rgba(201, 121, 122, 0.25);
}

.shape-2 {
    bottom: 5%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: rgba(232, 165, 152, 0.2);
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 121, 122, 0.08);
    border: 1px solid rgba(201, 121, 122, 0.2);
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--primary-dark);
    margin-bottom: 24px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--primary);
    box-shadow: 0 0 8px var(--primary-light);
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 40px auto;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 64px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-lg);
    padding: 30px;
    max-width: 750px;
    margin: 0 auto;
    box-shadow: 0 8px 40px rgba(201, 121, 122, 0.1);
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
}

.stat-suffix {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
}

.stat-label {
    display: block;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 6px;
    font-weight: 500;
}

.stat-divider {
    border-right: 1px solid rgba(0, 0, 0, 0.08);
    height: 60px;
    align-self: center;
}

/* ===== Trusted By ===== */
.trusted-section {
    padding: 48px 0;
    border-top: 1px solid rgba(0,0,0,0.07);
    border-bottom: 1px solid rgba(0,0,0,0.07);
    background: #F9F4F4;
}

.trusted-label {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
}

.trusted-marquee {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 25s linear infinite;
    gap: 40px;
}

.marquee-track span {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-secondary);
    white-space: nowrap;
    opacity: 0.65;
    transition: var(--transition);
}

.marquee-track span:hover {
    opacity: 1;
    color: var(--primary);
}

.marquee-dot {
    color: var(--primary) !important;
    opacity: 0.5 !important;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== Services Section ===== */
.services {
    background: #FFFFFF;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.service-card {
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-lg);
    padding: 40px;
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-card);
}

.service-card:hover {
    transform: translateY(-6px);
    background: #FFFCFC;
    border-color: rgba(201, 121, 122, 0.25);
    box-shadow: var(--shadow-card-hover);
}

.service-icon {
    width: 56px;
    height: 56px;
    background: rgba(201, 121, 122, 0.08);
    color: var(--primary);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
}

.service-card h3 {
    font-size: 1.35rem;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.service-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 24px;
    flex-grow: 1;
}

.service-features {
    list-style: none;
    margin-bottom: 30px;
}

.service-features li {
    position: relative;
    padding-left: 24px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.service-link {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

.service-link:hover {
    color: var(--primary-dark);
    padding-left: 4px;
}

.service-card.featured {
    border-color: var(--primary);
    background: linear-gradient(170deg, #FFF8F8 0%, #FDEEED 100%);
    box-shadow: 0 8px 32px rgba(201, 121, 122, 0.15);
}

.featured-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    background: var(--primary);
    color: #FFFFFF;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 100px;
    text-transform: uppercase;
}

/* ===== Why Us ===== */
.why-us {
    background: #F9F4F4;
}

.why-us-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.why-us-content .section-tag {
    margin-bottom: 16px;
}

.why-us-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.why-us-content > p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.why-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.why-feature {
    display: flex;
    gap: 20px;
}

.why-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(201, 121, 122, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-feature h4 {
    font-size: 1.15rem;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.why-feature p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.why-us-visual {
    position: relative;
    height: 420px;
    background: linear-gradient(135deg, #FFFFFF 0%, #FBF0F0 100%);
    border: 1px solid rgba(201, 121, 122, 0.15);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(201, 121, 122, 0.1);
}

.why-us-visual::before {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle at center, rgba(201, 121, 122, 0.06) 0%, transparent 60%);
    z-index: 0;
}

.visual-card {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(201, 121, 122, 0.15);
    border-radius: var(--radius);
    padding: 40px;
    width: 80%;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.visual-stat {
    text-align: center;
    padding: 16px 0;
}

.visual-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
    display: block;
}

.visual-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 4px;
}

.visual-divider {
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
    width: 100%;
}

/* ===== CTA Section ===== */
.cta-section {
    padding: 60px 0;
    background: #FFFFFF;
}

.cta-box {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-lg);
    padding: 80px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 16px 60px rgba(201, 121, 122, 0.35);
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 90%, rgba(255,255,255, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 90% 10%, rgba(255,255,255, 0.08) 0%, transparent 50%);
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: #FFFFFF;
}

.cta-content h2 .gradient-text {
    background: linear-gradient(135deg, #FFE0DC 0%, #FFFFFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.15rem;
    margin-bottom: 40px;
    line-height: 1.7;
}

.cta-section .btn-primary {
    background: #FFFFFF;
    color: var(--primary-dark);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.cta-section .btn-primary:hover {
    background: #FFF5F5;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

/* ===== Contact Section ===== */
.contact {
    background: #F9F4F4;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
}

.contact-form-wrapper {
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-card);
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 24px;
}

.contact-form .form-group {
    display: flex;
    flex-direction: column;
}

.contact-form label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    background: #F9F4F4;
    border: 1.5px solid rgba(0, 0, 0, 0.1);
    color: var(--text-primary);
    padding: 14px 18px;
    border-radius: var(--radius);
    font-size: 0.95rem;
    font-family: inherit;
    transition: var(--transition);
}

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

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(201, 121, 122, 0.12);
    background: #FFFFFF;
}

.checkbox-group label {
    font-weight: normal;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
    cursor: pointer;
}

.btn-submit {
    box-shadow: 0 4px 16px rgba(201, 121, 122, 0.3);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-card {
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius);
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
}

.info-card:hover {
    border-color: rgba(201, 121, 122, 0.2);
    box-shadow: 0 8px 24px rgba(201, 121, 122, 0.1);
}

.info-icon {
    width: 48px;
    height: 48px;
    background: rgba(201, 121, 122, 0.08);
    color: var(--primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.info-card h4 {
    font-size: 1.15rem;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.info-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===== Legal Pages ===== */
.legal-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 140px 24px 100px 24px;
}

.legal-header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding-bottom: 30px;
    margin-bottom: 40px;
}

.legal-header h1 {
    font-size: 2.8rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

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

.legal-content {
    color: var(--text-secondary);
}

.legal-content h2 {
    color: var(--text-primary);
    font-size: 1.5rem;
    margin-top: 40px;
    margin-bottom: 16px;
}

.legal-content p {
    margin-bottom: 20px;
    line-height: 1.7;
}

.legal-content ul,
.legal-content ol {
    margin-left: 24px;
    margin-bottom: 24px;
}

.legal-content li {
    margin-bottom: 10px;
    line-height: 1.7;
}

/* ===== Footer ===== */
.footer {
    background: #1A1A1A;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 80px 0 40px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    margin-bottom: 24px;
}

.footer-brand p {
    color: #888888;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.footer-links h4 {
    color: #FFFFFF;
    font-size: 1.1rem;
    margin-bottom: 24px;
    font-weight: 600;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #888888;
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-light);
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: #666666;
    font-size: 0.9rem;
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 3.2rem;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .why-us-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .why-us-visual {
        height: 300px;
    }
    .contact-layout {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    section {
        padding: 70px 0;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: #FFFFFF;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        flex-direction: column;
        padding: 40px 24px;
        gap: 24px;
        align-items: stretch;
        text-align: center;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    /* Hamburger active animation */
    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero h1 {
        font-size: 2.5rem;
    }
    .hero-subtitle {
        font-size: 1.1rem;
    }
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px;
    }
    .stat-divider {
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        width: 60px;
        height: 1px;
        margin: 0 auto;
    }

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

    .contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .cta-content h2 {
        font-size: 2rem;
    }
}
