/* Sara Sharp Family Chiropractor - v2 Theme */
/* Color Scheme: Dark plum, purple, mauve, lavender, blush */

:root {
    --plum: #251d35;
    --purple: #40335C;
    --mauve: #935d8c;
    --lavender: #a89cc8;
    --sky: #8cc9f0;
    --blush: #efa8b0;
    --white: #ffffff;
    --cream: #fdfcfe;
    --gray: #636363;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--white);
    background: var(--plum);
}

h1, h2, h3 {
    font-weight: 700;
    line-height: 1.15;
}

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

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

sup {
    font-size: 0.6em;
    vertical-align: super;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.active { opacity: 1; transform: translateY(0); }

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s ease;
}
header.scrolled {
    background: rgba(37, 29, 53, 0.95);
    backdrop-filter: blur(20px);
    padding: 16px 0;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo img { height: 40px; }
nav { display: flex; gap: 40px; }
nav a {
    font-size: 14px;
    font-weight: 500;
    color: var(--lavender);
    text-decoration: none;
    transition: color 0.3s ease;
}
nav a:hover { color: var(--blush); }
.header-cta { display: flex; align-items: center; gap: 24px; }
.phone-link {
    font-size: 14px;
    color: var(--lavender);
    text-decoration: none;
}

/* Buttons */
.btn {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 14px 32px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}
.btn-glow {
    background: linear-gradient(135deg, var(--mauve), var(--blush));
    color: var(--white);
}
.btn-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(147, 93, 140, 0.5);
    color: var(--white);
}
.btn-ghost {
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.2);
}
.btn-ghost:hover {
    background: rgba(255,255,255,0.15);
    color: var(--white);
}
.btn-dark {
    background: linear-gradient(135deg, var(--purple), var(--mauve));
    color: var(--white);
}
.btn-dark:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(64, 51, 92, 0.5);
    color: var(--white);
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 70% 30%, var(--purple) 0%, var(--plum) 60%);
}
.hero-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
}
.hero-glow-1 {
    top: -200px;
    right: 10%;
    background: var(--mauve);
}
.hero-glow-2 {
    bottom: -200px;
    left: 10%;
    background: var(--lavender);
}
.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.hero-text { max-width: 560px; }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: var(--blush);
    margin-bottom: 24px;
}
.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--blush);
    border-radius: 50%;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}
.hero h1 {
    font-size: clamp(48px, 6vw, 72px);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}
.hero h1 span {
    background: linear-gradient(135deg, var(--blush), var(--lavender));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-subtitle {
    font-size: 22px;
    font-weight: 500;
    color: var(--blush);
    margin-bottom: 24px;
    letter-spacing: 0.02em;
}
.hero p {
    font-size: 18px;
    color: var(--lavender);
    margin-bottom: 40px;
    line-height: 1.8;
}
.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
}
.hero-stats {
    display: flex;
    gap: 48px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.stat-number {
    font-size: 36px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--blush), var(--lavender));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.stat-label {
    font-size: 14px;
    color: var(--lavender);
    opacity: 0.8;
}
.hero-image {
    position: relative;
}
.hero-image img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.3);
}
.hero-card {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--white);
    padding: 20px 28px;
    border-radius: 16px;
    color: var(--plum);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}
.hero-card-rating {
    font-size: 28px;
    font-weight: 700;
    color: var(--mauve);
}
.hero-card-text {
    font-size: 12px;
    color: var(--gray);
}

/* Features */
.features {
    padding: 120px 0;
    background: var(--white);
    color: var(--plum);
}
.features-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 80px;
}
.features-header h2 {
    font-size: clamp(32px, 4vw, 48px);
    margin-bottom: 16px;
}
.features-header p {
    color: var(--gray);
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.feature-card {
    padding: 40px;
    background: var(--cream);
    border-radius: 20px;
    transition: all 0.4s ease;
}
.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(37, 29, 53, 0.1);
}
.feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--lavender), var(--blush));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}
.feature-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--white);
}
.feature-icon i {
    font-size: 24px;
    color: var(--white);
}
.feature-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}
.feature-card p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.7;
}

/* About */
.about {
    padding: 120px 0;
    background: var(--plum);
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}
.about-image img {
    width: 100%;
    border-radius: 24px;
}
.about-content h2 {
    font-size: clamp(32px, 4vw, 48px);
    margin-bottom: 24px;
}
.about-content h2 span {
    color: var(--blush);
}
.about-content p {
    color: var(--lavender);
    margin-bottom: 20px;
    line-height: 1.8;
}
.about-list {
    list-style: none;
    margin-top: 32px;
}
.about-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--lavender);
}
.about-list li svg {
    width: 20px;
    height: 20px;
    stroke: var(--blush);
    flex-shrink: 0;
}
.about-list li i {
    color: var(--blush);
    width: 20px;
}

/* Testimonials */
.testimonials {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--purple), var(--plum));
}
.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
}
.testimonials-header h2 {
    font-size: clamp(32px, 4vw, 48px);
    margin-bottom: 16px;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.testimonial-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 40px;
    border-radius: 20px;
    transition: all 0.3s ease;
}
.testimonial-card:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-4px);
}
.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}
.testimonial-stars svg {
    width: 18px;
    height: 18px;
    fill: var(--blush);
}
.testimonial-stars i {
    color: var(--blush);
    font-size: 16px;
}
.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: rgba(255,255,255,0.85);
}
.testimonial-author {
    font-weight: 600;
    color: var(--blush);
}

/* CTA */
.cta {
    padding: 120px 0;
    background: var(--white);
    text-align: center;
}
.cta h2 {
    font-size: clamp(36px, 5vw, 56px);
    color: var(--plum);
    margin-bottom: 16px;
}
.cta p {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}
.cta-contact {
    margin-top: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--mauve);
    font-weight: 500;
}
.cta-contact a {
    color: var(--mauve);
    text-decoration: none;
    transition: color 0.3s ease;
}
.cta-contact a:hover {
    color: var(--purple);
}
.cta-dot {
    width: 4px;
    height: 4px;
    background: var(--mauve);
    border-radius: 50%;
    opacity: 0.6;
}

/* Footer */
footer {
    padding: 80px 0 48px;
    background: linear-gradient(180deg, var(--plum) 0%, #1a1425 100%);
    text-align: center;
    position: relative;
}
footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}
footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--mauve), transparent);
}
.footer-logo {
    height: 56px;
    margin-bottom: 32px;
    opacity: 0.95;
    transition: opacity 0.3s ease;
}
.footer-logo:hover {
    opacity: 1;
}
.footer-address {
    font-style: normal;
    color: var(--lavender);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 32px;
    letter-spacing: 0.02em;
}
.footer-address a {
    color: var(--lavender);
    transition: color 0.3s ease;
}
.footer-address a:hover {
    color: var(--blush);
}
.footer-social {
    margin-bottom: 32px;
    display: flex;
    gap: 16px;
}
.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(168, 156, 200, 0.1);
    border: 1px solid rgba(168, 156, 200, 0.2);
    color: var(--lavender);
    font-size: 18px;
    transition: all 0.3s ease;
}
.footer-social a:hover {
    background: var(--mauve);
    border-color: var(--mauve);
    color: var(--white);
    transform: translateY(-3px);
}
.footer-links {
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-links a {
    color: var(--lavender);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
    transition: color 0.3s ease;
}
.footer-links a:hover {
    color: var(--blush);
}
.footer-sep {
    display: none;
}
.footer-text {
    font-size: 13px;
    color: rgba(168, 156, 200, 0.6);
    letter-spacing: 0.02em;
}
.footer-text a {
    color: rgba(168, 156, 200, 0.8);
    transition: color 0.3s ease;
}
.footer-text a:hover {
    color: var(--blush);
}
.appointment-only {
    display: inline-block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--mauve);
    margin-top: 8px;
    font-weight: 500;
}

/* Page Header (for subpages) */
.page-header {
    padding: 160px 0 80px;
    background: var(--plum);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-header::before {
    content: '';
    position: absolute;
    top: -200px;
    right: 10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: var(--mauve);
    filter: blur(100px);
    opacity: 0.3;
}
.page-header h1 {
    font-size: clamp(36px, 5vw, 56px);
    margin-bottom: 16px;
    position: relative;
}
.page-header p {
    color: var(--lavender);
    font-size: 18px;
    position: relative;
}
.page-header .logo {
    margin-bottom: 32px;
    position: relative;
}
.page-header .logo img {
    height: 48px;
}

/* Content Section (for subpages) */
.content-section {
    padding: 80px 0;
    background: var(--white);
    color: var(--plum);
}
.content-section h2 {
    font-size: clamp(24px, 3vw, 36px);
    margin-bottom: 24px;
    color: var(--plum);
}
.content-section h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: var(--plum);
}
.content-section h4 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--purple);
}
.content-section p {
    color: var(--gray);
    margin-bottom: 16px;
    line-height: 1.8;
}
.content-section a {
    color: var(--mauve);
}
.content-section a:hover {
    color: var(--purple);
}
.content-section .btn {
    color: var(--white);
}
.content-section .btn:hover {
    color: var(--white);
}
.content-section ul, .content-section ol {
    color: var(--gray);
    margin-bottom: 16px;
    padding-left: 24px;
}
.content-section li {
    margin-bottom: 8px;
}

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}
.contact-map iframe {
    width: 100%;
    height: 400px;
    border-radius: 16px;
    border: none;
}
.contact-info h2 {
    font-size: 28px;
    margin-bottom: 24px;
}
.contact-info p {
    margin-bottom: 16px;
    line-height: 1.8;
}
.contact-info a {
    color: var(--mauve);
    font-weight: 500;
}
.contact-info a:hover {
    color: var(--purple);
}

/* Appointment Notice */
.appointment-notice {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: linear-gradient(135deg, rgba(64, 51, 92, 0.08), rgba(147, 93, 140, 0.08));
    border: 1px solid rgba(147, 93, 140, 0.2);
    padding: 28px 32px;
    border-radius: 16px;
    margin-bottom: 40px;
}
.notice-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--purple), var(--mauve));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
}
.notice-content p {
    margin-bottom: 8px;
    color: var(--plum);
    line-height: 1.6;
}
.notice-content p:last-of-type {
    margin-bottom: 12px;
    color: var(--gray);
}
.notice-content strong {
    color: var(--plum);
    font-weight: 600;
}
.notice-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--mauve);
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s ease, gap 0.3s ease;
}
.notice-link:hover {
    color: var(--purple);
    gap: 12px;
}

/* Booking iframe */
.booking-frame {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
}
.booking-frame iframe {
    width: 100%;
    min-height: 800px;
    border: none;
}

/* ============================================
   REVIEWS PAGE - Editorial Wellness Design
   ============================================ */

.reviews-section {
    padding: 100px 0 120px;
    background: var(--plum);
    position: relative;
    overflow: hidden;
}

/* Atmospheric background elements */
.reviews-section::before {
    content: '';
    position: absolute;
    top: -300px;
    left: -200px;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--mauve) 0%, transparent 70%);
    opacity: 0.08;
    pointer-events: none;
}

.reviews-section::after {
    content: '';
    position: absolute;
    bottom: -400px;
    right: -300px;
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, var(--lavender) 0%, transparent 70%);
    opacity: 0.06;
    pointer-events: none;
}

/* Section header */
.reviews-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.reviews-header h2 {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--white) 0%, var(--lavender) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.reviews-header p {
    font-size: 18px;
    color: var(--lavender);
    opacity: 0.8;
    max-width: 500px;
    margin: 0 auto;
}

/* Stats bar */
.reviews-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 80px;
    padding: 32px 48px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

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

.reviews-stat-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--blush);
    line-height: 1;
    margin-bottom: 4px;
}

.reviews-stat-label {
    font-size: 13px;
    color: var(--lavender);
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Masonry-inspired grid */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    position: relative;
}

/* Review card - Editorial style */
.review-card {
    position: relative;
    background: linear-gradient(
        165deg,
        rgba(64, 51, 92, 0.5) 0%,
        rgba(37, 29, 53, 0.8) 100%
    );
    border: 1px solid rgba(168, 156, 200, 0.12);
    border-radius: 24px;
    padding: 40px 36px 36px;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    overflow: hidden;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        165deg,
        rgba(147, 93, 140, 0.1) 0%,
        transparent 50%
    );
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.review-card:hover {
    transform: translateY(-8px);
    border-color: rgba(168, 156, 200, 0.25);
    box-shadow:
        0 32px 64px -16px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(168, 156, 200, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.review-card:hover::before {
    opacity: 1;
}

/* Large decorative quote mark */
.review-card .quote-mark {
    position: absolute;
    top: 20px;
    right: 28px;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 120px;
    line-height: 1;
    color: var(--mauve);
    opacity: 0.12;
    pointer-events: none;
    transition: all 0.5s ease;
}

.review-card:hover .quote-mark {
    opacity: 0.2;
    transform: scale(1.05);
}

/* Stars at top */
.review-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 24px;
    position: relative;
}

.review-stars i {
    color: var(--blush);
    font-size: 14px;
    filter: drop-shadow(0 0 4px rgba(239, 168, 176, 0.4));
}

/* Testimonial text - The hero */
.review-content {
    position: relative;
    margin-bottom: 28px;
}

.review-content p {
    font-size: 16px;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.88);
    font-weight: 400;
    letter-spacing: 0.01em;
}

/* Author name */
.review-card h3 {
    font-size: 15px;
    font-weight: 600;
    color: var(--lavender);
    margin: 0;
    padding-top: 20px;
    border-top: 1px solid rgba(168, 156, 200, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-card h3::before {
    content: '';
    width: 24px;
    height: 2px;
    background: linear-gradient(90deg, var(--blush), var(--mauve));
    border-radius: 2px;
}

/* Featured card variant (every 4th) */
.review-card:nth-child(4n+1) {
    grid-column: span 1;
    background: linear-gradient(
        165deg,
        rgba(147, 93, 140, 0.2) 0%,
        rgba(64, 51, 92, 0.5) 50%,
        rgba(37, 29, 53, 0.8) 100%
    );
}

/* Staggered reveal animations */
.review-card.reveal {
    opacity: 0;
    transform: translateY(40px);
}

.review-card.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.review-card:nth-child(1) { transition-delay: 0s; }
.review-card:nth-child(2) { transition-delay: 0.1s; }
.review-card:nth-child(3) { transition-delay: 0.2s; }
.review-card:nth-child(4) { transition-delay: 0.1s; }
.review-card:nth-child(5) { transition-delay: 0.2s; }
.review-card:nth-child(6) { transition-delay: 0.3s; }

/* Pagination - Refined */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 72px;
    position: relative;
}

.pagination a, .pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    height: 48px;
    padding: 0 16px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--lavender);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.pagination a:hover {
    background: rgba(147, 93, 140, 0.3);
    border-color: rgba(147, 93, 140, 0.4);
    color: var(--white);
    transform: translateY(-2px);
}

.pagination .active {
    background: linear-gradient(135deg, var(--mauve), var(--blush));
    border-color: transparent;
    color: var(--white);
    box-shadow: 0 8px 24px -8px rgba(147, 93, 140, 0.5);
}

/* Page indicator text */
.pagination-info {
    font-size: 14px;
    color: var(--lavender);
    opacity: 0.6;
    margin: 0 16px;
}

/* Responsive */
@media (max-width: 1024px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .review-card:nth-child(4n+1) {
        grid-column: span 1;
    }

    .reviews-stats {
        gap: 40px;
        padding: 28px 40px;
    }
}

@media (max-width: 768px) {
    .reviews-section {
        padding: 80px 0 100px;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .review-card {
        padding: 32px 28px 28px;
    }

    .review-card .quote-mark {
        font-size: 80px;
        top: 12px;
        right: 20px;
    }

    .reviews-stats {
        flex-direction: column;
        gap: 24px;
        border-radius: 24px;
        padding: 32px;
    }

    .reviews-header {
        margin-bottom: 48px;
    }
}

/* Privacy/Cookie Policy styles */
.policy-content {
    max-width: 800px;
    margin: 0 auto;
}
.policy-content h2 {
    margin-top: 40px;
}
.policy-content h3 {
    margin-top: 32px;
}

/* Action buttons row */
.actions-row {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 48px;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-content, .about-grid, .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .hero-text { max-width: 100%; text-align: center; }
    .hero-buttons, .hero-stats { justify-content: center; }
    .hero-card { display: none; }
    nav { display: none; }
    .features-grid, .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    .hero-stats {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    .cta-contact {
        flex-direction: column;
        gap: 12px;
    }
    .cta-dot {
        display: none;
    }
    .page-header {
        padding: 120px 0 60px;
    }
    .content-section {
        padding: 60px 0;
    }
    .features, .about, .testimonials, .cta {
        padding: 80px 0;
    }
}
