/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

/* Respect user's motion preferences */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

:root {
    --primary-color: #0ea5e9;
    --primary-dark: #0284c7;
    --primary-light: #38bdf8;
    --secondary-color: #0f172a;
    --text-primary: #f1f5f9;
    --text-secondary: #cbd5e1;
    --bg-light: #1e293b;
    --bg-white: #0f172a;
    --border-color: #334155;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.6);
    --transition: all 0.3s ease;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

/* Typography */
h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0.75rem;
}

p {
    margin-bottom: 1rem;
    color: #cbd5e1;
    font-weight: 400;
    line-height: 1.7;
}

/* Navigation */
.navbar {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease, border-bottom-color 0.3s ease;
    will-change: box-shadow;
}

.navbar-scrolled {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(14, 165, 233, 0.3);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.logo:hover {
    color: var(--primary-light);
    transform: scale(1.05);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
    align-items: center;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-primary);
    margin: 3px 0;
    transition: var(--transition);
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: var(--transition);
    padding: 0.5rem 0;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.btn-nav {
    background-color: var(--primary-color);
    color: white !important;
    padding: 0.625rem 1.5rem !important;
    border-radius: 0.5rem;
    transition: all 0.3s ease !important;
}

.btn-nav::after {
    display: none;
}

.btn-nav:hover {
    background-color: var(--primary-light);
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(14, 165, 233, 0.4);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

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

.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 10px 25px rgba(14, 165, 233, 0.4);
    filter: brightness(1.1);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 10px 25px rgba(14, 165, 233, 0.3);
}

.btn-large {
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
}

.btn-full {
    width: 100%;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #0ea5e9 100%);
    color: white;
    padding: 9rem 0 7rem;
    text-align: center;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    color: white;
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.35rem;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-cta .btn-secondary {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    border-color: white;
}

.hero-cta .btn-secondary:hover {
    background-color: white;
    color: var(--primary-color);
}

/* Value Proposition Section */
.value-prop {
    padding: 5rem 0 6rem;
    background: linear-gradient(to bottom, #0f172a 0%, #1e293b 100%);
    position: relative;
}

.value-prop::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(14, 165, 233, 0.3), transparent);
}

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

.value-prop h2 {
    margin-bottom: 2.5rem;
    color: white;
    font-weight: 700;
}

.value-prop-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    text-align: left;
}

.value-prop-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    border-radius: 0.5rem;
    transition: var(--transition);
}

.value-prop-item:hover {
    background-color: rgba(14, 165, 233, 0.1);
    transform: translateX(5px);
}

.value-prop-item svg {
    flex-shrink: 0;
    color: var(--primary-color);
    margin-top: 0.25rem;
}

.value-prop-item p {
    margin: 0;
    color: #cbd5e1;
    font-size: 1.05rem;
    font-weight: 400;
    line-height: 1.6;
}

.value-prop-item strong {
    color: white;
    font-weight: 600;
}

/* Services Section */
.services {
    padding: 7rem 0;
    background: linear-gradient(to bottom, #0f172a 0%, #1e293b 100%);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, rgba(14, 165, 233, 0.1), transparent);
    pointer-events: none;
}

.services .section-header h2 {
    color: white;
}

.services .section-header p {
    color: #cbd5e1;
}

.services .service-card {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border: 1px solid rgba(14, 165, 233, 0.2);
    transition: all 0.3s ease;
}

.services .service-card h3 {
    color: white;
    font-weight: 600;
}

.services .service-card p {
    color: #cbd5e1;
    font-weight: 400;
    line-height: 1.7;
}

.services .service-punchline {
    color: white;
    font-weight: 600;
}

.services .service-card:hover {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, #334155 0%, #1e293b 100%);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(14, 165, 233, 0.3);
}

.services .service-card:hover .service-icon {
    color: var(--primary-light);
    filter: drop-shadow(0 0 12px rgba(14, 165, 233, 0.8));
}

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

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

.section-header p {
    font-size: 1.125rem;
    color: #cbd5e1;
    font-weight: 400;
}

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

.service-card {
    background-color: var(--bg-white);
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    box-shadow: 0 20px 40px rgba(14, 165, 233, 0.2);
}

.service-icon {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    color: var(--primary-light);
    filter: drop-shadow(0 0 8px rgba(14, 165, 233, 0.6));
}

.service-card h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-punchline {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1.05rem;
    margin-bottom: 0.75rem;
}

.service-card p {
    margin-bottom: 1rem;
    color: #cbd5e1;
    font-weight: 400;
    line-height: 1.7;
}

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-top: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

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

.service-link:hover {
    color: var(--primary-light);
    transform: translateX(5px);
}

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

/* Process Section */
.process {
    padding: 7rem 0;
    background: linear-gradient(to bottom, #0f172a 0%, #1e293b 100%);
    position: relative;
}

.process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(14, 165, 233, 0.3), transparent);
}

.process .section-header h2 {
    color: white;
    font-weight: 700;
}

.process .section-header p {
    color: #cbd5e1;
    font-weight: 400;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.process-step {
    text-align: center;
    padding: 2rem 1.5rem;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    position: relative;
    border-top: 4px solid var(--primary-color);
}

.process-step:hover {
    box-shadow: 0 20px 40px rgba(14, 165, 233, 0.3);
    background: linear-gradient(135deg, #334155 0%, #1e293b 100%);
    border-top-color: var(--primary-light);
}

.process-step .step-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-light);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    line-height: 1;
    display: inline-block;
}

.process-step:hover .step-number {
    filter: brightness(1.2);
}

.process-step h3 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.process-step p {
    color: #cbd5e1;
    line-height: 1.7;
    font-size: 0.95rem;
    font-weight: 400;
}

/* Testimonials Section */
.testimonials-section {
    padding: 7rem 0;
    background: linear-gradient(to bottom, #0f172a 0%, #1e293b 100%);
    position: relative;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(14, 165, 233, 0.3), transparent);
}

.testimonials-section .section-header h2 {
    color: white;
}

.testimonials-section .section-header p {
    color: #cbd5e1;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    padding: 2.5rem;
    border-radius: 1rem;
    border: 1px solid rgba(14, 165, 233, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    box-shadow: 0 20px 40px rgba(14, 165, 233, 0.3);
    border-color: var(--primary-color);
}

.testimonial-featured {
    border: 2px solid var(--primary-color);
    background: linear-gradient(135deg, #334155 0%, #1e293b 100%);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: white;
    padding: 0.35rem 1rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
    color: #fbbf24;
}

.testimonial-text {
    color: #cbd5e1;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-style: italic;
}

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

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
}

.author-info {
    flex: 1;
}

.author-name {
    color: white;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.author-title {
    color: #94a3b8;
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #0ea5e9 100%);
    color: white;
    padding: 6rem 0 8rem;
    text-align: center;
    position: relative;
    margin-top: 3rem;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -3rem;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.1), transparent);
    border-radius: 50%;
    pointer-events: none;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-section h2 {
    color: white;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.125rem;
    margin-bottom: 2rem;
    font-weight: 400;
    line-height: 1.6;
}

.cta-section .btn-primary {
    background-color: white;
    color: var(--primary-color);
}

.cta-section .btn-primary:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

/* Founder Statement Bar */
.founder-bar {
    background: linear-gradient(135deg, #1e3a8a 0%, #0ea5e9 100%);
    padding: 1.5rem 0;
    text-align: center;
    border-top: 1px solid rgba(14, 165, 233, 0.3);
    border-bottom: 1px solid rgba(14, 165, 233, 0.3);
}

.founder-bar p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.5;
}

.founder-bar strong {
    color: white;
    font-weight: 600;
}

/* Services Page Styles */
.services-page-content {
    padding: 5rem 0;
    background: linear-gradient(to bottom, #0f172a 0%, #1e293b 100%);
    min-height: 100vh;
}

/* Service Sections */
.services-content {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}

.service-section {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border-radius: 1rem;
    padding: 2.5rem;
    margin-bottom: 2.5rem;
    border: 1px solid rgba(14, 165, 233, 0.2);
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 2.5rem;
    align-items: center;
    transform: translateZ(0);
    backface-visibility: hidden;
    contain: layout style paint;
}

.service-section:hover {
    box-shadow: 0 10px 20px rgba(14, 165, 233, 0.2);
    border-color: var(--primary-color);
}

/* Service Visual Container */
.service-visual-container {
    position: relative;
}

.service-visual {
    width: 100%;
    height: 280px;
    border-radius: 0.75rem;
    overflow: hidden;
    position: relative;
}

.service-visual-simple {
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-visual-simple svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* Service Content */
.service-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-header-compact {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(14, 165, 233, 0.2);
}

.service-header-compact h2 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 2rem;
}

.service-tagline {
    color: var(--primary-light);
    font-size: 1.05rem;
    font-weight: 500;
    margin: 0;
    line-height: 1.5;
}

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

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: #cbd5e1;
    font-size: 0.95rem;
    line-height: 1.5;
}

.feature-item svg {
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 0.125rem;
}

/* Pricing Cards Section */
.pricing-card-section {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border-radius: 1rem;
    padding: 3rem;
    margin-bottom: 2.5rem;
    border: 1px solid rgba(14, 165, 233, 0.2);
    contain: style;
}

.pricing-header {
    text-align: center;
    margin-bottom: 3rem;
}

.pricing-header h2 {
    color: white;
    margin-bottom: 0.5rem;
}

.pricing-header p {
    color: #94a3b8;
    font-size: 1.05rem;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding-top: 12px;
}

.pricing-card {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(14, 165, 233, 0.2);
    border-radius: 0.75rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    will-change: box-shadow, border-color;
    overflow: visible;
}

.pricing-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.2);
}

.pricing-card.featured {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.4) 0%, rgba(14, 165, 233, 0.2) 100%);
    border: 2px solid var(--primary-color);
}

.pricing-service-name {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.pricing-amount {
    margin-bottom: 1.5rem;
}

.pricing-label {
    display: block;
    color: #94a3b8;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.pricing-price {
    display: block;
    color: var(--primary-light);
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
}

.pricing-description {
    color: #cbd5e1;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    flex: 1;
}

.pricing-cta {
    display: block;
    text-align: center;
    padding: 0.875rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: white;
    text-decoration: none;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: box-shadow 0.3s ease, opacity 0.3s ease;
}

.pricing-cta:hover {
    opacity: 0.9;
    box-shadow: 0 2px 6px rgba(14, 165, 233, 0.25);
}

/* Pricing Features List */
.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.pricing-features li {
    color: #cbd5e1;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

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

.pricing-features li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
}

/* Pricing Badge */
.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
    color: white;
    padding: 0.375rem 1rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

/* Pricing Period */
.pricing-period {
    color: #94a3b8;
    font-size: 1.25rem;
    font-weight: 400;
}

/* Care Plans Section Spacing */
.care-plans-section {
    margin-top: 2rem;
}

/* AI Value Section */
.ai-value-section {
    background: linear-gradient(135deg, #1e3a8a 0%, #0ea5e9 100%);
    border-radius: 1rem;
    padding: 3rem;
    margin-bottom: 3rem;
    position: relative;
    border: 2px solid var(--primary-color);
    box-shadow: 0 10px 20px rgba(14, 165, 233, 0.3);
    contain: layout style paint;
}

.ai-value-content {
    position: relative;
    z-index: 2;
}

.ai-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.ai-badge svg {
    color: white;
}

.ai-value-section h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.ai-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.ai-features-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}

.ai-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    color: white;
    font-weight: 500;
    transition: background 0.3s ease;
}

.ai-feature-item svg {
    flex-shrink: 0;
    color: white;
}

.ai-feature-item:hover {
    background: rgba(255, 255, 255, 0.25);
}

/* Mobile Styles for Services */
@media (max-width: 968px) {
    .service-section {
        grid-template-columns: 1fr;
        padding: 2rem;
        gap: 2rem;
    }

    .service-visual {
        height: 240px;
    }

    .service-features-grid {
        grid-template-columns: 1fr;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pricing-card {
        padding: 1.5rem;
    }

    .pricing-service-name {
        font-size: 1.25rem;
    }

    .pricing-price {
        font-size: 1.75rem;
    }
    
    .ai-features-grid {
        grid-template-columns: 1fr;
    }
}

/* Footer */
.footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 0rem 0 2rem;
    margin-top: 0rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    padding-top: 4rem;
}

.footer-col h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-col p,
.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
}

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

.footer-col a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #0ea5e9 100%);
    color: white;
    padding: 5rem 0 4rem;
    text-align: center;
}

.page-header h1 {
    color: white;
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.page-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.35rem;
    line-height: 1.6;
    font-weight: 400;
}

/* Service Detail */
.service-detail {
    padding: 5rem 0;
}

.service-detail-alt {
    background-color: var(--bg-light);
}

.service-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.service-intro {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.service-features {
    list-style: none;
    margin: 1.5rem 0;
}

.service-features li {
    padding-left: 2rem;
    margin-bottom: 1rem;
    position: relative;
    color: var(--text-secondary);
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.visual-placeholder {
    background-color: var(--bg-light);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
}

/* About Page */
/* About Page Styles */

/* Wave Divider */
.wave-divider {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.wave-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

/* Story Section */
.about-story {
    padding: 7rem 0;
    background: linear-gradient(to bottom, #0f172a 0%, #1e293b 100%);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-content h2 {
    color: white;
    margin-bottom: 3rem;
    text-align: center;
}

.about-two-col {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
    max-width: 1100px;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    max-width: 350px;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.about-text h2 {
    text-align: left;
    margin-bottom: 2rem;
}

.story-text {
    border-left: 4px solid;
    border-image: linear-gradient(to bottom, var(--primary-color), var(--primary-light)) 1;
    padding-left: 2.5rem;
}

.story-text p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #cbd5e1;
    margin-bottom: 2rem;
}

.story-text p:last-child {
    margin-bottom: 0;
}

/* Timeline Section */
.timeline-section {
    padding: 7rem 0;
    background: linear-gradient(to bottom, #1e293b 0%, #0f172a 100%);
}

.timeline-section h2 {
    text-align: center;
    color: white;
    margin-bottom: 4rem;
}

.timeline {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--primary-light));
}

.timeline-item {
    text-align: center;
    position: relative;
}

.timeline-year {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 700;
    color: white;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(14, 165, 233, 0.4);
}

.timeline-content h3 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.timeline-content p {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Why Choose Us Section */
.why-choose {
    padding: 7rem 0;
    background: linear-gradient(to bottom, #0f172a 0%, #1e293b 100%);
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.reason-card {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    padding: 2.5rem;
    border-radius: 1rem;
    border: 1px solid rgba(14, 165, 233, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
}

.reason-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(14, 165, 233, 0.3);
    border-color: var(--primary-color);
}

.reason-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
}

.reason-card h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.reason-card p {
    color: #cbd5e1;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Trust Builder Section */
.trust-builder {
    padding: 7rem 0;
    background: linear-gradient(to bottom, #1e293b 0%, #0f172a 100%);
}

.trust-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    text-align: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: #06b6d4;
    margin-bottom: 0.5rem;
    display: inline-block;
}

/* Apply gradient only if browser supports it properly */
@supports (background-clip: text) or (-webkit-background-clip: text) {
    .stat-number {
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
}

.stat-label {
    color: #94a3b8;
    font-weight: 500;
}

.trust-content {
    max-width: 900px;
    margin: 4rem auto 0;
}

.trust-content h3 {
    color: white;
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.75rem;
}

/* Testimonials Slider */
.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

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

.testimonial {
    min-width: 100%;
    max-width: 100%;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    padding: 3rem;
    border-radius: 1rem;
    border: 1px solid rgba(14, 165, 233, 0.2);
    border-left: 4px solid var(--primary-color);
    flex-shrink: 0;
    box-sizing: border-box;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #cbd5e1;
    line-height: 1.8;
    font-size: 1.125rem;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-light);
}

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

.slider-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    transition: opacity 0.3s ease, box-shadow 0.3s ease;
}

.slider-btn:hover {
    opacity: 0.9;
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.4);
}

.slider-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

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

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(14, 165, 233, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* Contact Page */
.contact-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, #0f172a 0%, #1e293b 100%);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-form-container h2 {
    color: white;
    margin-bottom: 1rem;
}

.contact-intro {
    color: #cbd5e1;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-grid {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

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

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

.form-group label {
    margin-bottom: 0.375rem;
    font-weight: 600;
    color: #e2e8f0;
    font-size: 0.875rem;
}

.form-group-optional label {
    color: #94a3b8;
    font-weight: 500;
}

.form-group-optional label::after {
    content: " (optional)";
    font-size: 0.75rem;
    font-weight: 400;
    color: #64748b;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.625rem 0.875rem;
    min-height: 44px;
    border: 1px solid rgba(14, 165, 233, 0.2);
    border-radius: 0.5rem;
    font-size: 0.9rem;
    font-family: inherit;
    background: rgba(30, 41, 59, 0.5);
    color: white;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #64748b;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(30, 41, 59, 0.7);
    box-shadow: 0 0 0 2px rgba(14, 165, 233, 0.1);
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: #1e293b;
    color: white;
}

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

/* Primary message field styling */
.form-group-message {
    margin-top: 0.5rem;
}

/* Optional fields toggle */
.optional-fields-toggle {
    display: flex;
    justify-content: center;
    margin: 0.5rem 0;
}

.toggle-optional-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: transparent;
    border: 1px solid rgba(14, 165, 233, 0.3);
    border-radius: 2rem;
    color: #94a3b8;
    font-size: 0.875rem;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s ease;
}

.toggle-optional-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: rgba(14, 165, 233, 0.05);
}

.toggle-optional-btn .toggle-icon {
    transition: transform 0.3s ease;
}

.toggle-optional-btn.active .toggle-icon {
    transform: rotate(180deg);
}

/* Optional fields container */
.optional-fields {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s ease;
}

.optional-fields.expanded {
    grid-template-rows: 1fr;
}

.optional-fields-inner {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.optional-fields.expanded .optional-fields-inner {
    opacity: 1;
    padding-top: 0.5rem;
}

.form-group-message label {
    font-size: 0.95rem;
    color: white;
}

.form-group-message textarea {
    border: 2px solid rgba(14, 165, 233, 0.3);
    background: rgba(30, 41, 59, 0.6);
    font-size: 0.95rem;
    padding: 0.875rem 1rem;
}

.form-group-message textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.15);
}

/* Mobile: single column */
@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0.875rem;
    }
}

.form-success {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.1) 100%);
    border: 2px solid #10b981;
    border-radius: 1rem;
    padding: 3rem 2rem;
    text-align: center;
}

.success-icon {
    margin: 0 auto 1.5rem;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #10b981;
}

.form-success h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.75rem;
}

.form-success p {
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.form-success p:last-child {
    margin-bottom: 0;
}

.form-success a {
    color: var(--primary-light);
    text-decoration: underline;
    font-weight: 600;
}

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

/* Contact Info Sidebar */
.contact-info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-card {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid rgba(14, 165, 233, 0.2);
}

.contact-info-card h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.contact-info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(14, 165, 233, 0.1);
}

.contact-info-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.contact-info-item h4 {
    color: var(--primary-light);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-info-item p,
.contact-info-item a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 1rem;
}

.contact-info-item a:hover {
    color: white;
    text-decoration: underline;
}

/* Next Steps */
.next-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.next-step {
    display: flex;
    gap: 1rem;
    align-items: start;
}

.next-step .step-number {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.step-content h4 {
    color: white;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: #94a3b8;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(14, 165, 233, 0.1);
    border-radius: 0.5rem;
    color: #cbd5e1;
    font-size: 0.9rem;
    font-weight: 500;
}

.trust-badge svg {
    color: var(--primary-color);
    flex-shrink: 0;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, #1e293b 0%, #0f172a 100%);
}

/* FAQ Accordion Styles */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #1e293b;
    border-radius: 0.75rem;
    border: 1px solid rgba(14, 165, 233, 0.2);
    overflow: hidden;
}

.faq-item[open] {
    border-color: var(--primary-color);
}

.faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    color: white;
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.4;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '';
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    transform: rotate(-45deg);
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item summary:hover {
    color: var(--primary-light);
}

.faq-item summary:focus {
    outline: none;
}

.faq-item summary:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: -2px;
}

.faq-item p {
    padding: 0 1.5rem 1.5rem;
    color: #94a3b8;
    line-height: 1.8;
    margin: 0;
    font-size: 0.95rem;
}

/* FAQ Mobile Styles */
@media (max-width: 768px) {
    .faq-list {
        gap: 0.5rem;
    }

    .faq-item summary {
        padding: 1rem 1.25rem;
        font-size: 0.95rem;
    }

    .faq-item p {
        padding: 0 1.25rem 1.25rem;
        font-size: 0.9rem;
    }
}

/* Responsive Design */
@media (max-width: 968px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .service-detail-content {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-info-sidebar {
        order: -1;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--bg-white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero {
        padding: 5rem 0 4rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .hero-cta {
        flex-direction: column;
    }

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

    h1 {
        font-size: 2rem;
    }

    .services,
    .process,
    .service-detail {
        padding: 3rem 0;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}
/* Mobile Styles for About Page */
@media (max-width: 968px) {
    .page-header h1 {
        font-size: 2.5rem;
    }

    .page-header p {
        font-size: 1.125rem;
    }

    .wave-divider svg {
        height: 40px;
    }

    .about-story,
    .timeline-section,
    .why-choose,
    .trust-builder {
        padding: 4rem 0;
    }

    .story-text {
        padding-left: 1.5rem;
    }

    .story-text p {
        font-size: 1rem;
    }

    .about-two-col {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .about-image img {
        max-width: 280px;
        margin: 0 auto;
    }

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

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

    .timeline::before {
        display: none;
    }

    .timeline-year {
        width: 80px;
        height: 80px;
        font-size: 0.75rem;
    }

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

    .reason-card {
        padding: 2rem;
    }

    .reason-icon {
        width: 56px;
        height: 56px;
    }

    .trust-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

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

    .testimonials-slider {
        max-width: 100%;
    }

    .testimonial {
        padding: 2rem;
    }

    .testimonial p {
        font-size: 1rem;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
    }

    .slider-controls {
        gap: 1rem;
    }
}

/* Legal Pages Styles */
.legal-content {
    padding: 5rem 0;
    background: linear-gradient(to bottom, #0f172a 0%, #1e293b 100%);
}

.legal-document {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border: 1px solid rgba(14, 165, 233, 0.2);
    border-radius: 1rem;
    padding: 3rem;
}

.legal-update {
    color: #94a3b8;
    font-size: 0.875rem;
    font-style: italic;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(14, 165, 233, 0.2);
}

.legal-notice {
    background: rgba(14, 165, 233, 0.1);
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    margin-bottom: 3rem;
    border-radius: 0.5rem;
}

.legal-notice p {
    color: #cbd5e1;
    margin: 0;
    line-height: 1.7;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section:last-child {
    margin-bottom: 0;
}

.legal-section h2 {
    color: white;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(14, 165, 233, 0.3);
}

.legal-section h3 {
    color: var(--primary-light);
    font-size: 1.25rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-section p {
    color: #cbd5e1;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.legal-section ul,
.legal-section ol {
    color: #cbd5e1;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-section li {
    margin-bottom: 0.75rem;
}

.legal-section li strong {
    color: var(--primary-light);
}

.contact-info-box {
    background: rgba(14, 165, 233, 0.1);
    border: 1px solid rgba(14, 165, 233, 0.3);
    border-radius: 0.75rem;
    padding: 2rem;
    margin-top: 1.5rem;
}

.contact-info-box p {
    margin-bottom: 0.5rem;
    color: #cbd5e1;
}

.contact-info-box p:last-child {
    margin-bottom: 0;
}

.contact-info-box strong {
    color: white;
    font-size: 1.1rem;
}

/* Mobile Styles for Legal Pages */
@media (max-width: 968px) {
    .legal-content {
        padding: 3rem 0;
    }

    .legal-document {
        padding: 2rem;
    }

    .legal-section h2 {
        font-size: 1.5rem;
    }

    .legal-section h3 {
        font-size: 1.125rem;
    }

    .legal-section ul,
    .legal-section ol {
        padding-left: 1.5rem;
    }

    .contact-info-box {
        padding: 1.5rem;
    }
}

/* FAQ Page Specific Styles */
.faq-category {
    margin-bottom: 5rem;
}

.faq-category:last-child {
    margin-bottom: 0;
}

.faq-category h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 2.5rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.faq-category h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: 2px;
}

/* Ultra-small devices (320px and below) */
@media (max-width: 320px) {
    .hero h1 {
        font-size: 1.75rem;
    }

    .hero .subtitle {
        font-size: 1rem;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .container {
        padding: 0 0.75rem;
    }

    .cta-buttons {
        gap: 0.5rem;
    }

    .cta-buttons .btn {
        padding: 0.625rem 1rem;
        font-size: 0.875rem;
        width: 100%;
    }

    .testimonial-card {
        padding: 1.25rem;
    }

    .service-card {
        padding: 1.25rem;
    }

    .pricing-card {
        padding: 1.5rem;
    }

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