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

:root {
    --primary-color: #C7339A;
    --primary-rgb: 199, 51, 154;
    --secondary-color: #943346;
    --secondary-rgb: 148, 51, 70;
    --accent-color: #D179E6;
    --accent-rgb: 209, 121, 230;
    --bg-color: #FAFAFA;
    --bg-alt: #F3F4F6;
    --text-color: #1F2937;
    --text-muted: #6B7280;
    --section-dark: #1F2937;
    --section-accent: #F0F2F5;
    --border-color: #E5E7EB;
    --white: #ffffff;
    --font-primary: 'Nunito', system-ui, -apple-system, sans-serif;
    --font-secondary: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    --fs-xs: 0.75rem;
    --fs-sm: 0.875rem;
    --fs-base: 1rem;
    --fs-lg: 1.25rem;
    --fs-xl: 1.625rem;
    --fs-xxl: 2.25rem;
    --fs-hero: 3rem;
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 32px;
    --spacing-xl: 48px;
    --spacing-xxl: 64px;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 16px 40px rgba(0, 0, 0, 0.16);
    --transition-base: 0.3s ease;
    --transition-slow: 0.45s ease;
    --max-width: 1200px;
    --gutter: 24px;
}

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

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

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

@keyframes pulseRing {
    0% { box-shadow: 0 0 0 0 rgba(var(--primary-rgb), 0.35); }
    70% { box-shadow: 0 0 0 12px rgba(var(--primary-rgb), 0); }
    100% { box-shadow: 0 0 0 0 rgba(var(--primary-rgb), 0); }
}

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

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

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

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

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

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

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

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

li {
    margin-bottom: 0.35rem;
    line-height: 1.6;
}

blockquote {
    border-left: 4px solid var(--primary-color);
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    background: var(--bg-alt);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-style: italic;
    color: var(--text-muted);
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
}

th, td {
    padding: 0.75rem 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

th {
    font-weight: 700;
    background: var(--bg-alt);
    color: var(--text-color);
}

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

.row {
    display: flex;
    flex-wrap: wrap;
    margin-left: calc(var(--gutter) / -2);
    margin-right: calc(var(--gutter) / -2);
}

.row > * {
    padding-left: calc(var(--gutter) / 2);
    padding-right: calc(var(--gutter) / 2);
}

.grid {
    display: flex;
    flex-wrap: wrap;
    gap: var(--gutter);
}

.grid-2 {
    display: flex;
    flex-wrap: wrap;
    gap: var(--gutter);
}

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

.grid-3 {
    display: flex;
    flex-wrap: wrap;
    gap: var(--gutter);
}

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

.grid-4 {
    display: flex;
    flex-wrap: wrap;
    gap: var(--gutter);
}

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

.navbar {
    position: fixed;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    padding: 0.75rem 2rem;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 999px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 960px;
    width: calc(100% - 2rem);
    transition: background var(--transition-base), padding var(--transition-base), box-shadow var(--transition-base);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.97);
    padding: 0.5rem 1.75rem;
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.12);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.logo {
    font-size: var(--fs-lg);
    font-weight: 800;
    color: var(--primary-color);
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: -0.02em;
    transition: color var(--transition-base);
}

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

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

.nav-item {
    margin: 0;
}

.nav-link {
    display: inline-block;
    padding: 0.5rem 0.85rem;
    color: var(--text-color);
    font-size: var(--fs-sm);
    font-weight: 600;
    text-decoration: none;
    border-radius: 999px;
    transition: background var(--transition-base), color var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
    background: rgba(var(--primary-rgb), 0.1);
    color: var(--primary-color);
}

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

.hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    background: var(--primary-color);
    color: var(--white);
    overflow: hidden;
    padding-top: 80px;
}

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

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

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 55%;
    padding: 3rem 4rem;
    animation: fadeInUp 0.8s ease-out;
}

.hero h1 {
    font-size: var(--fs-hero);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.hero p {
    font-size: var(--fs-lg);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 520px;
}

.hero .btn-primary {
    background: var(--white);
    color: var(--primary-color);
    font-weight: 700;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.hero .btn-primary:hover {
    background: var(--accent-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.hero .btn-secondary {
    border-color: rgba(255, 255, 255, 0.7);
    color: var(--white);
}

.hero .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--white);
}

.hero-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    object-fit: cover;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
    z-index: 1;
}

.header-hero {
    position: relative;
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    text-align: center;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
}

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

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

.header-hero p {
    color: rgba(255, 255, 255, 0.85);
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.section-dark {
    background-color: var(--section-dark);
    color: var(--white);
    padding: var(--spacing-xxl) 0;
}

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

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

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

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

.section-accent {
    background-color: var(--section-accent);
    padding: var(--spacing-xxl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    position: relative;
    display: inline-block;
    margin-bottom: 0.75rem;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    margin: 0.5rem auto 0;
    border-radius: 2px;
}

.section-header p {
    color: var(--text-muted);
    font-size: var(--fs-lg);
}

.section-dark .section-header h2::after {
    background: linear-gradient(90deg, var(--accent-color), rgba(255, 255, 255, 0.5));
}

.card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.35s ease, border-color 0.35s ease, transform 0.35s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.12), 0 6px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius-md);
    margin-bottom: 1.25rem;
    transition: transform 0.4s ease;
    overflow: hidden;
}

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

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

.card p {
    color: var(--text-muted);
    flex-grow: 1;
}

.feature {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: box-shadow var(--transition-base), transform var(--transition-base), border-color var(--transition-base);
    height: 100%;
}

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

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.1), rgba(var(--accent-rgb), 0.1));
    color: var(--primary-color);
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
    transition: background var(--transition-base), transform var(--transition-base);
}

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

.feature h3, .feature h4 {
    margin-bottom: 0.5rem;
    font-size: var(--fs-lg);
}

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

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

.testimonial-card::before {
    content: '\201C';
    font-size: 4rem;
    color: var(--accent-color);
    position: absolute;
    top: 0.5rem;
    left: 1.25rem;
    line-height: 1;
    font-family: Georgia, serif;
    opacity: 0.4;
}

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

.testimonial-card p {
    font-style: italic;
    color: var(--text-muted);
    padding-top: 1rem;
}

.testimonial-card .author {
    font-weight: 700;
    color: var(--text-color);
    font-style: normal;
    margin-top: 1rem;
    font-size: var(--fs-sm);
}

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

.pricing-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: box-shadow var(--transition-base), transform var(--transition-base), border-color var(--transition-base);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

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

.pricing-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    font-size: var(--fs-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.4rem;
}

.pricing-card h3 {
    font-size: var(--fs-lg);
    margin-bottom: 0.5rem;
}

.pricing-card .price {
    font-size: var(--fs-xxl);
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

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

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

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

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

.two-col-layout {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-xl);
    align-items: center;
}

.two-col-layout > * {
    flex: 1 1 calc(50% - var(--spacing-xl));
    min-width: 300px;
}

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

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

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

.btn {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    font-family: var(--font-primary);
    font-size: var(--fs-sm);
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-base);
    text-align: center;
    line-height: 1.5;
}

.btn-primary {
    display: inline-block;
    padding: 0.85rem 2.2rem;
    border: none;
    border-radius: var(--radius-md);
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: var(--fs-sm);
    color: var(--white);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    background-size: 150% 150%;
    background-position: 0% 50%;
    transition: background-position 0.4s ease, box-shadow 0.3s ease, transform 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    line-height: 1.5;
}

.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 {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: var(--radius-md);
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: var(--fs-sm);
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-base);
    text-align: center;
    line-height: 1.5;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(var(--primary-rgb), 0.25);
}

.btn-outline {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    background: transparent;
    color: var(--text-color);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: var(--fs-sm);
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-base);
    text-align: center;
    line-height: 1.5;
}

.btn-outline:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-1px);
}

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

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

.section-dark .btn-secondary {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.5);
}

.section-dark .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--white);
    color: var(--white);
}

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

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

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

form {
    max-width: 640px;
}

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

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

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

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

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

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

.faq-item {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    overflow: hidden;
    background: var(--white);
    transition: box-shadow var(--transition-base);
}

.faq-item:hover {
    box-shadow: var(--shadow-sm);
}

.faq-question {
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-color);
    transition: color var(--transition-base), background var(--transition-base);
    user-select: none;
}

.faq-question:hover {
    color: var(--primary-color);
    background: rgba(var(--primary-rgb), 0.03);
}

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

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

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

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.25rem;
}

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

.stats-row {
    display: flex;
    flex-wrap: wrap;
    gap: var(--gutter);
    justify-content: center;
    text-align: center;
}

.stat-item {
    flex: 1 1 180px;
    padding: 1.5rem;
}

.stat-number {
    font-size: var(--fs-xxl);
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
    line-height: 1.1;
}

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

.stat-label {
    font-size: var(--fs-sm);
    color: var(--text-muted);
    font-weight: 600;
}

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

.cta-block {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: var(--radius-xl);
    padding: 3.5rem 2.5rem;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-block::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    top: -60px;
    right: -60px;
    animation: floatDrift 6s ease-in-out infinite;
}

.cta-block h2, .cta-block h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-block p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 560px;
    margin: 0 auto 2rem;
    font-size: var(--fs-lg);
}

.cta-block .btn-primary {
    background: var(--white);
    color: var(--primary-color);
    border: none;
}

.cta-block .btn-primary:hover {
    background: var(--accent-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    font-size: var(--fs-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border-radius: 999px;
    background: rgba(var(--primary-rgb), 0.1);
    color: var(--primary-color);
}

.badge-accent {
    background: rgba(var(--accent-rgb), 0.12);
    color: #9B30C9;
}

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

.mt-1 { margin-top: var(--spacing-xs); }
.mt-2 { margin-top: var(--spacing-sm); }
.mt-3 { margin-top: var(--spacing-md); }
.mt-4 { margin-top: var(--spacing-lg); }
.mb-1 { margin-bottom: var(--spacing-xs); }
.mb-2 { margin-bottom: var(--spacing-sm); }
.mb-3 { margin-bottom: var(--spacing-md); }
.mb-4 { margin-bottom: var(--spacing-lg); }
.py-3 { padding-top: var(--spacing-md); padding-bottom: var(--spacing-md); }
.py-4 { padding-top: var(--spacing-lg); padding-bottom: var(--spacing-lg); }
.px-3 { padding-left: var(--spacing-md); padding-right: var(--spacing-md); }
.gap-3 { gap: var(--spacing-md); }
.gap-4 { gap: var(--spacing-lg); }

footer.footer-contact {
    background: var(--section-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 3.5rem 2rem 2rem;
    border-top: 3px solid var(--primary-color);
}

footer.footer-contact .footer-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 2rem;
}

footer.footer-contact .footer-grid > * {
    flex: 1 1 250px;
    min-width: 200px;
}

footer.footer-contact h4 {
    font-size: var(--fs-lg);
    margin-bottom: 1.25rem;
    color: var(--white);
    font-weight: 700;
}

footer.footer-contact .contact-info p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.75rem;
    font-size: var(--fs-sm);
}

footer.footer-contact .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

footer.footer-contact .footer-links a {
    display: block;
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    margin-bottom: 0.65rem;
    font-size: var(--fs-sm);
    transition: color var(--transition-base), padding-left var(--transition-base);
}

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

footer.footer-contact .hours-info p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
    font-size: var(--fs-sm);
}

footer.footer-contact .copyright {
    text-align: center;
    color: rgba(255, 255, 255, 0.45);
    font-size: var(--fs-xs);
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 1rem;
}

main {
    padding-top: 0;
}

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

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

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

.timeline-item::before {
    content: '';
    position: absolute;
    left: -2.45rem;
    top: 0.25rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary-color);
    border: 3px solid var(--white);
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.2);
}

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

.timeline-item .date {
    font-size: var(--fs-xs);
    color: var(--text-muted);
    font-weight: 600;
}

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

.icon-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.75rem;
}

.icon-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.45rem;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    font-size: var(--fs-sm);
}

.breadcrumb li::after {
    content: '/';
    margin-left: 0.5rem;
    color: var(--text-muted);
}

.breadcrumb li:last-child::after {
    display: none;
}

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

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

.tag {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    font-size: var(--fs-xs);
    background: var(--bg-alt);
    color: var(--text-muted);
    border-radius: var(--radius-sm);
    margin-right: 0.35rem;
    margin-bottom: 0.35rem;
}

.divider {
    border: none;
    border-top: 1px solid var(--border-color);
    margin: var(--spacing-lg) 0;
}

.alert {
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
    font-size: var(--fs-sm);
    border-left: 4px solid;
}

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

.alert-success {
    background: rgba(16, 185, 129, 0.08);
    border-color: #10B981;
    color: #065F46;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: var(--gutter);
    counter-reset: step-counter;
}

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

.process-step::before {
    content: counter(step-counter);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    font-weight: 800;
    font-size: var(--fs-lg);
    margin-bottom: 1rem;
}

.process-step h4 {
    margin-bottom: 0.35rem;
}

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

.team-member {
    text-align: center;
    padding: 1.5rem;
}

.team-member img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
    border: 4px solid var(--bg-alt);
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.team-member:hover img {
    transform: scale(1.06);
    box-shadow: var(--shadow-lg);
}

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

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

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

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

.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

.gallery-grid img {
    flex: 1 1 calc(33.333% - var(--spacing-sm));
    min-width: 200px;
    height: 220px;
    object-fit: cover;
    border-radius: var(--radius-md);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.mobile-nav-sheet {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.15);
    padding: 1.5rem 1rem 2.5rem;
    max-height: 75vh;
    overflow-y: auto;
}

.mobile-nav-sheet.visible {
    transform: translateY(0);
}

.mobile-nav-sheet .nav-menu {
    flex-direction: column;
    gap: 0;
    display: flex;
}

.mobile-nav-sheet .nav-link {
    display: block;
    padding: 1rem 1.25rem;
    font-size: var(--fs-base);
    border-bottom: 1px solid var(--border-color);
    border-radius: 0;
    width: 100%;
}

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

.mobile-nav-handle {
    width: 40px;
    height: 4px;
    background: var(--border-color);
    border-radius: 2px;
    margin: 0 auto 1rem;
}

.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

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

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

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

@media screen and (max-width: 1280px) {
    :root {
        --fs-hero: 2.75rem;
        --fs-xxl: 2rem;
    }

    .hero-content {
        padding: 2.5rem 3rem;
    }
}

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

    .hero {
        min-height: 75vh;
    }

    .hero-content {
        max-width: 60%;
        padding: 2rem;
    }

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

    .hero-image {
        width: 45%;
    }

    .grid-4 > * {
        flex: 1 1 calc(50% - var(--gutter));
    }

    .process-step {
        flex: 1 1 calc(50% - var(--gutter));
    }

    .content-section {
        padding: var(--spacing-xl) 0;
    }
}

@media screen and (max-width: 768px) {
    :root {
        --fs-hero: 2.125rem;
        --fs-xxl: 1.75rem;
        --fs-xl: 1.375rem;
        --gutter: 16px;
    }

    .navbar {
        top: 0.5rem;
        padding: 0.5rem 1rem;
        border-radius: var(--radius-lg);
        gap: 0.5rem;
        width: calc(100% - 1rem);
    }

    .nav-menu {
        display: none;
    }

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

    .hero {
        min-height: auto;
        padding: 7rem 0 4rem;
        clip-path: none;
    }

    .hero::after {
        display: none;
    }

    .hero-image {
        display: none;
    }

    .hero-content {
        max-width: 100%;
        padding: 1.5rem;
        text-align: center;
    }

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

    .hero .btn-primary,
    .hero .btn-secondary {
        display: block;
        width: 100%;
        margin-bottom: 0.75rem;
    }

    .header-hero {
        padding: 6rem 0 3rem;
        clip-path: none;
    }

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

    .two-col-layout {
        flex-direction: column;
        gap: var(--spacing-lg);
    }

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

    .two-col-layout > * {
        min-width: 100%;
    }

    .section-header {
        margin-bottom: var(--spacing-lg);
    }

    .stats-row {
        gap: var(--spacing-sm);
    }

    .stat-item {
        flex: 1 1 calc(50% - var(--spacing-sm));
        padding: 1rem 0.5rem;
    }

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

    .gallery-grid img {
        flex: 1 1 calc(50% - var(--spacing-sm));
        min-width: 140px;
        height: 180px;
    }

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

    footer.footer-contact .footer-grid {
        flex-direction: column;
        gap: 2rem;
    }

    footer.footer-contact .footer-grid > * {
        min-width: 100%;
    }

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

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

    table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

@media screen and (max-width: 480px) {
    :root {
        --fs-hero: 1.875rem;
        --fs-xxl: 1.5rem;
        --fs-xl: 1.25rem;
        --fs-lg: 1.125rem;
    }

    .container {
        padding-left: var(--spacing-sm);
        padding-right: var(--spacing-sm);
    }

    .hero {
        padding: 6rem 0 3rem;
    }

    .card {
        padding: 1.5rem;
    }

    .feature {
        padding: 1.5rem;
    }

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

    .gallery-grid img {
        flex: 1 1 100%;
        height: 200px;
    }

    .btn-lg {
        padding: 0.85rem 1.75rem;
        font-size: var(--fs-sm);
        width: 100%;
    }

    .breadcrumb {
        font-size: var(--fs-xs);
    }

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

    .faq-question {
        padding: 1rem 1.25rem;
        font-size: var(--fs-sm);
    }

    .timeline {
        padding-left: 1.5rem;
    }

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

.gmb-card {
    font-family: Georgia, 'Times New Roman', Times, serif;
    background: rgba(var(--primary-rgb), 0.06);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(var(--primary-rgb), 0.15);
    border-radius: var(--radius-lg);
    padding: 2rem 2.5rem;
    margin: 2rem 0;
    line-height: 1.6;
}

.gmb-card h3 {
    font-family: Georgia, 'Times New Roman', serif;
    color: var(--primary-color);
    margin: 0 0 0.75rem 0;
    font-size: var(--fs-lg);
    font-weight: 600;
}

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

.gmb-card .gmb-rating {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.gmb-card .gmb-rating strong {
    color: var(--text-color);
    font-size: 1.05rem;
}

.gmb-card .gmb-rating .stars {
    font-size: 1.375rem;
    letter-spacing: 1px;
}

.gmb-card .gmb-rating .rating-text {
    color: var(--text-muted);
    font-size: var(--fs-sm);
    margin-left: 0.35rem;
}

.gmb-card .gmb-details {
    color: var(--text-muted);
    font-size: var(--fs-sm);
    margin-bottom: 1rem;
}

.gmb-card .gmb-link {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 999px;
    text-decoration: none;
    font-size: var(--fs-sm);
    font-weight: 600;
    font-family: Georgia, serif;
    transition: all var(--transition-base);
}

.gmb-card .gmb-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(var(--primary-rgb), 0.3);
    color: var(--white);
}

.nav-cta-btn {
    padding: 0.5rem 1.25rem;
    font-size: 0.825rem;
}

@media print {
    .navbar,
    .mobile-menu-toggle,
    .mobile-nav-sheet,
    .mobile-overlay {
        display: none !important;
    }

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

    .hero {
        min-height: auto;
        background: none;
        color: #000;
        padding: 1rem 0;
    }

    .hero h1,
    .hero p {
        color: #000;
    }

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

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