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

:root {
    /* Kindwell Brand Colors */
    --color-primary: #FF6B35; /* Bright Pumpkin Orange */
    --color-primary-dark: #E55A2B;
    --color-primary-light: #FF8C5F;
    --color-black: #000000;
    --color-white: #FFFFFF;
    --color-gray-100: #F5F5F5;
    --color-gray-200: #E5E5E5;
    --color-gray-300: #D4D4D4;
    --color-gray-400: #A3A3A3;
    --color-gray-500: #737373;
    --color-gray-600: #525252;
    --color-gray-700: #404040;
    --color-gray-800: #262626;
    --color-gray-900: #171717;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: var(--color-gray-100);
}

body {
    font-family: var(--font-primary);
    color: var(--color-gray-800);
    line-height: 1.6;
    background-color: var(--color-gray-100);
    overflow-x: hidden;
    -webkit-tap-highlight-color: rgba(255, 107, 53, 0.2);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

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

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-black);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    margin-bottom: 1rem;
}

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

/* ===== Buttons ===== */
.btn-primary,
.btn-secondary,
.btn-primary-small {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    transition: var(--transition-normal);
    cursor: pointer;
    border: 2px solid transparent;
    font-size: 1rem;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    user-select: none;
    -webkit-user-select: none;
}

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

.btn-primary:hover {
    background-color: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(210, 105, 30, 0.3);
}

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

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

.btn-primary-small {
    padding: 0.6rem 1.5rem;
    background-color: var(--color-primary);
    color: var(--color-white);
    font-size: 0.95rem;
}

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

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--color-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: var(--transition-normal);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    transition: var(--transition-normal);
}

.logo:hover {
    opacity: 0.85;
}

.logo-image {
    height: 45px;
    width: auto;
    display: block;
    max-width: 280px;
}

.logo-text {
    color: var(--color-black);
}

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

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--color-gray-700);
    font-weight: 500;
    position: relative;
}

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

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

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

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--color-black);
}

/* ===== Hero Section ===== */
.hero {
    min-height: auto;
    display: flex;
    align-items: center;
    background: var(--color-gray-100);
    padding-top: 120px;
    padding-bottom: 6rem;
    margin-bottom: 0;
    position: relative;
    overflow: visible;
    z-index: 10;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(210, 105, 30, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    margin-bottom: var(--spacing-md);
    animation: fadeInUp 0.8s ease;
}

.text-accent {
    color: var(--color-primary);
    display: block;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-gray-600);
    margin-bottom: var(--spacing-md);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 0;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    max-width: 600px;
    margin: 4rem auto 2rem;
    padding: 0;
    animation: fadeInUp 0.8s ease 0.6s both;
    position: relative;
    z-index: 100;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--color-gray-600);
    font-weight: 500;
}

/* ===== Section Headers ===== */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-title {
    margin-bottom: var(--spacing-sm);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-gray-600);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== Services Section ===== */
.services {
    background-color: var(--color-gray-100);
}

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

.service-card {
    background-color: var(--color-white);
    border: 2px solid var(--color-gray-200);
    border-radius: 16px;
    padding: 2.5rem;
    transition: var(--transition-normal);
    position: relative;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--color-primary);
}

.service-card.featured {
    border-color: var(--color-primary);
    background: linear-gradient(135deg, rgba(210, 105, 30, 0.05) 0%, var(--color-white) 100%);
}

.featured-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

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

.service-icon i {
    font-size: 2rem;
    color: var(--color-white);
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-black);
}

.service-description {
    color: var(--color-gray-600);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-features {
    list-style: none;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--color-gray-700);
}

.service-features i {
    color: var(--color-primary);
    font-size: 1.1rem;
}

/* ===== AI Demo Section ===== */
.ai-demo {
    background: linear-gradient(135deg, var(--color-gray-900) 0%, var(--color-black) 100%);
    position: relative;
    overflow: hidden;
}

.ai-demo::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.ai-demo .section-header {
    position: relative;
    z-index: 1;
}

.ai-demo .section-title {
    color: var(--color-white);
}

.ai-demo .section-subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.2rem;
}

.ai-demo-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    position: relative;
    z-index: 1;
}

.ai-demo-video {
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
    background-color: var(--color-black);
}

.ai-demo-video video {
    width: 100%;
    height: auto;
    display: block;
}

.ai-demo-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: var(--color-white);
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
    animation: pulse 2s infinite;
}

.ai-demo-badge i {
    font-size: 1.1rem;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
    }
    50% {
        box-shadow: 0 5px 30px rgba(255, 107, 53, 0.6);
    }
}

.ai-demo-form {
    background-color: var(--color-white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.ai-demo-form-header {
    margin-bottom: 2rem;
}

.ai-demo-form-header h3 {
    font-size: 1.75rem;
    color: var(--color-black);
    margin-bottom: 0.75rem;
}

.ai-demo-form-header p {
    font-size: 1rem;
    color: var(--color-gray-600);
    line-height: 1.6;
    margin-bottom: 0;
}

.ai-demo-form-wrapper {
    min-height: 703px;
    position: relative;
}

.ai-demo-form-wrapper iframe {
    width: 100%;
    min-height: 703px;
    border: none;
    border-radius: 8px;
}

/* ===== Solutions Section ===== */
.solutions {
    background-color: var(--color-gray-100);
}

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

.solution-card {
    background-color: var(--color-white);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition-normal);
    border: 2px solid transparent;
}

.solution-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-primary);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.solution-card i {
    font-size: 3rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.solution-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}

.solution-card p {
    color: var(--color-gray-600);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* ===== About Section ===== */
.about {
    background-color: var(--color-gray-100);
}

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

.about-text .section-title {
    text-align: left;
    margin-bottom: 1.5rem;
}

.about-description {
    font-size: 1.1rem;
    color: var(--color-gray-600);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.about-feature i {
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-top: 0.25rem;
}

.about-feature h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.about-feature p {
    color: var(--color-gray-600);
    margin-bottom: 0;
}

.about-image {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.about-card {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: var(--color-white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(210, 105, 30, 0.3);
}

.about-card-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.about-card-icon i {
    font-size: 2rem;
}

.about-card h3 {
    color: var(--color-white);
    margin-bottom: 1rem;
}

.about-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

/* ===== Platforms & Integrations Section ===== */
.platforms {
    background-color: var(--color-white);
    text-align: center;
}

.platforms-content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
}

.platforms-image {
    width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: var(--transition-normal);
}

.platforms-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.platforms-description {
    font-size: 1.1rem;
    color: var(--color-gray-600);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* ===== Process Section ===== */
.process {
    background-color: var(--color-gray-100);
}

.process-timeline {
    max-width: 900px;
    margin: 0 auto;
}

.process-step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 40px;
    top: 80px;
    width: 2px;
    height: calc(100% + 3rem);
    background: linear-gradient(to bottom, var(--color-primary) 0%, var(--color-gray-300) 100%);
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-white);
    box-shadow: 0 5px 15px rgba(210, 105, 30, 0.3);
}

.step-content {
    background-color: var(--color-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition-normal);
}

.step-content:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.step-content h3 {
    margin-bottom: 1rem;
    color: var(--color-black);
}

.step-content p {
    color: var(--color-gray-600);
    margin-bottom: 0;
}

/* ===== Testimonial Section ===== */
.testimonial {
    background-color: var(--color-gray-100);
}

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

.testimonial-video {
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    background-color: var(--color-black);
}

.testimonial-video video {
    width: 100%;
    height: auto;
    display: block;
    max-height: 600px;
}

.testimonial-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonial-quote {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.testimonial-quote i {
    font-size: 1.5rem;
    color: var(--color-white);
}

.testimonial-text h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--color-black);
}

.testimonial-title {
    font-size: 1.1rem;
    color: var(--color-primary);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.testimonial-description {
    font-size: 1.1rem;
    color: var(--color-gray-600);
    line-height: 1.8;
    margin-bottom: 0;
}

.testimonial-stats {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 2px solid var(--color-gray-200);
}

.testimonial-stat {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 0 0 auto;
}

.testimonial-stat i {
    font-size: 1.5rem;
    color: var(--color-primary);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.testimonial-stat span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-gray-800);
    line-height: 1.4;
    white-space: nowrap;
}

/* ===== Trusted By Section ===== */
.trusted-by {
    background-color: var(--color-gray-100);
    padding: 0.5rem 0 4rem;
    text-align: center;
    overflow: hidden;
}

.trusted-by-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-gray-800);
    margin-bottom: 3rem;
    text-align: center;
}

.trusted-by-carousel {
    position: relative;
    width: 100%;
    max-width: 700px;
    height: 300px;
    margin: 0 auto;
    background: #FFFFFF;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.logo-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    pointer-events: none;
}

.logo-container.active {
    opacity: 1;
    pointer-events: auto;
}

.client-logo {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

/* ===== CTA Section ===== */
.cta {
    background: linear-gradient(135deg, var(--color-black) 0%, var(--color-gray-800) 100%);
    color: var(--color-white);
    text-align: center;
    padding: var(--spacing-xl) 0;
}

.cta-content h2 {
    color: var(--color-white);
    margin-bottom: 1rem;
    font-size: clamp(2rem, 4vw, 3rem);
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== Contact Section ===== */
.contact {
    background-color: var(--color-gray-100);
}

.contact-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.contact-info h3 {
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background-color: var(--color-gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--color-primary);
    flex-shrink: 0;
}

.contact-item h4 {
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.contact-item p {
    color: var(--color-gray-600);
    margin-bottom: 0;
}

.contact-item p a {
    color: var(--color-gray-600);
    text-decoration: none;
    transition: var(--transition-normal);
}

.contact-item p a:hover {
    color: var(--color-primary);
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    background-color: var(--color-gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--color-gray-700);
    transition: var(--transition-normal);
}

.social-links a:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-3px);
}

/* ===== Contact Form ===== */
.contact-form-wrapper {
    background-color: var(--color-gray-100);
    padding: 2rem;
    border-radius: 16px;
    min-height: 600px;
    position: relative;
}

.contact-form-wrapper iframe {
    width: 100%;
    min-height: 600px;
    border: none;
    border-radius: 8px;
}

/* ===== Contact Calendar ===== */
.contact-calendar-wrapper {
    background-color: var(--color-gray-100);
    padding: 2rem;
    border-radius: 16px;
    min-height: 1400px;
}

.contact-calendar-wrapper iframe {
    width: 100%;
    min-height: 1400px;
    border: none;
    border-radius: 8px;
    display: block;
}

/* ===== Footer ===== */
.footer {
    background-color: var(--color-black);
    color: var(--color-white);
    padding: var(--spacing-lg) 0 var(--spacing-md);
}

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

.footer-section h3,
.footer-section h4 {
    color: var(--color-white);
    margin-bottom: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.footer-logo-image {
    height: 50px;
    width: auto;
    display: block;
    max-width: 300px;
    transition: var(--transition-normal);
}

.footer-logo-image:hover {
    opacity: 0.85;
}

.footer-section p {
    color: var(--color-gray-400);
    line-height: 1.8;
}

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

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

.footer-section ul li a {
    color: var(--color-gray-400);
    transition: var(--transition-fast);
}

.footer-section ul li a:hover {
    color: var(--color-primary);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid var(--color-gray-800);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: var(--color-gray-400);
    margin-bottom: 0;
}

.footer-bottom a {
    color: var(--color-gray-400);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-bottom a:hover {
    color: var(--color-primary);
    text-decoration: underline;
}

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

/* ===== Responsive Design ===== */
@media (max-width: 968px) {
    .logo-image {
        height: 40px;
        max-width: 250px;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--color-white);
        flex-direction: column;
        justify-content: flex-start;
        padding: 1rem 2rem !important;
        gap: 0 !important;
        transition: var(--transition-normal);
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
        z-index: 999;
        -webkit-overflow-scrolling: touch;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-link {
        padding: 0.6rem 0 !important;
        font-size: 1.05rem;
        width: 100%;
        text-align: center;
        margin: 0 !important;
    }
    
    .btn-primary-small {
        width: 100%;
        padding: 0.875rem 0 !important;
        margin-top: 0.5rem !important;
        margin-bottom: 0 !important;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        line-height: 1;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-cta .btn-primary,
    .hero-cta .btn-secondary {
        width: 100%;
        max-width: 320px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .testimonial-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .ai-demo-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .ai-demo-form {
        padding: 2rem;
    }
}

/* iPhone Safari specific fixes for mobile menu */
@media (max-width: 968px) {
    .navbar .nav-links {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
    }
    
    .navbar .nav-links .nav-link {
        padding-top: 0.6rem !important;
        padding-bottom: 0.6rem !important;
        line-height: 1.2 !important;
    }
    
    .navbar .nav-links .btn-primary-small {
        margin-top: 0.5rem !important;
    }
}

@media (max-width: 768px) {
    :root {
        --spacing-lg: 2.5rem;
        --spacing-xl: 3.5rem;
    }
    
    section {
        padding: var(--spacing-lg) 0;
    }
    
    .container {
        padding: 0 1.25rem;
        max-width: 100%;
    }
    
    /* Navigation */
    .nav-content {
        padding: 1rem 0;
    }
    
    /* Hero Section */
    .hero {
        padding-top: 0 !important;
        min-height: auto;
        padding-bottom: 3rem;
        text-align: center;
        align-items: flex-start;
        justify-content: flex-start;
        margin-top: 100px !important;
        overflow: visible !important;
        z-index: 10 !important;
    }
    
    .hero-content {
        margin-top: 30px !important;
        margin-bottom: 0 !important;
    }
    
    .hero-title {
        margin-top: 0 !important;
    }
    
    .hero::before {
        display: none;
    }
    
    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.05rem;
        margin-bottom: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 2rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-icon i {
        font-size: 1.75rem;
    }
    
    .service-title {
        font-size: 1.35rem;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .solution-card {
        padding: 2rem;
    }
    
    .solution-card i {
        font-size: 2.5rem;
    }
    
    .process-step {
        grid-template-columns: 60px 1fr;
        gap: 1.5rem;
        margin-bottom: 2.5rem;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
    }
    
    .step-content {
        padding: 1.5rem;
    }
    
    .process-step:not(:last-child)::after {
        left: 30px;
        top: 60px;
        height: calc(100% + 2.5rem);
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 280px;
        margin: 3rem auto 0 !important;
        padding: 0 !important;
    }
    
    .stat-number {
        font-size: 2.8rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .about-feature {
        flex-direction: row;
        align-items: flex-start;
    }
    
    .about-feature i {
        font-size: 1.3rem;
        margin-top: 0.1rem;
    }
    
    .about-feature h4 {
        font-size: 1.1rem;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .cta-content p {
        font-size: 1.05rem;
        margin-bottom: 1.5rem;
    }
    
    .testimonial-video {
        border-radius: 16px;
    }
    
    .testimonial-video video {
        max-height: 400px;
    }
    
    .testimonial-text h3 {
        font-size: 1.75rem;
    }
    
    .testimonial-title {
        font-size: 1rem;
    }
    
    .testimonial-description {
        font-size: 1rem;
    }
    
    .testimonial-quote {
        width: 55px;
        height: 55px;
    }
    
    .testimonial-quote i {
        font-size: 1.3rem;
    }
    
    .platforms-content {
        gap: 2rem;
    }
    
    .platforms-image {
        border-radius: 12px;
    }
    
    .platforms-description {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .ai-demo .section-subtitle {
        font-size: 1.05rem;
    }
    
    .ai-demo-video {
        border-radius: 16px;
    }
    
    .ai-demo-badge {
        top: 15px;
        left: 15px;
        padding: 0.6rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .ai-demo-form {
        padding: 2rem 1.5rem;
    }
    
    .ai-demo-form-header h3 {
        font-size: 1.5rem;
    }
    
    .ai-demo-form-header p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    :root {
        --spacing-lg: 2rem;
        --spacing-xl: 3rem;
    }
    
    .container {
        padding: 0 1rem;
        max-width: 100%;
    }
    
    /* Navigation */
    .navbar {
        padding: 0;
        padding-top: env(safe-area-inset-top);
    }
    
    .nav-content {
        padding: 0.875rem 0;
    }
    
    /* Hero Section */
    .hero {
        padding-top: 0 !important;
        padding-bottom: 3rem;
        min-height: 100vh;
        align-items: flex-start;
        justify-content: flex-start;
        margin-top: 100px !important;
    }
    
    .hero-content {
        padding: 0 1rem;
        margin-top: 20px !important;
        padding-top: 0;
    }
    
    .hero-title {
        font-size: 1.75rem;
        line-height: 1.5;
        margin-top: 0 !important;
        margin-bottom: 1.5rem;
        padding: 0 0.5rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        text-align: center;
    }
    
    .title-line-1 {
        display: block;
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .title-line-2 {
        display: block;
        font-size: 1.35rem;
        margin-bottom: 0.5rem;
        text-align: center;
    }
    
    .text-accent {
        margin-top: 0.25rem;
        display: block;
        font-size: 1.65rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .hero-cta {
        gap: 1rem;
        margin-bottom: 2.5rem;
    }
    
    .hero-cta .btn-primary,
    .hero-cta .btn-secondary {
        padding: 0.9rem 1.75rem;
        font-size: 0.95rem;
        min-width: 200px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.75rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
        line-height: 1.6;
        padding: 0 0.5rem;
    }
    
    .section-header {
        margin-bottom: 2.5rem;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem 1rem;
        min-height: 550px;
    }
    
    .contact-form-wrapper iframe {
        min-height: 550px;
    }
    
    .contact-calendar-wrapper {
        padding: 1.5rem 1rem;
        min-height: 1800px;
    }
    
    .contact-calendar-wrapper iframe {
        min-height: 1800px;
    }
    
    .about-card {
        padding: 1.75rem;
    }
    
    .about-card-icon {
        width: 50px;
        height: 50px;
    }
    
    .about-card-icon i {
        font-size: 1.5rem;
    }
    
    .service-card {
        padding: 1.75rem 1.5rem;
        margin-bottom: 0;
    }
    
    .service-icon {
        width: 55px;
        height: 55px;
        margin-bottom: 1.25rem;
    }
    
    .service-icon i {
        font-size: 1.5rem;
    }
    
    .service-title {
        font-size: 1.25rem;
        margin-bottom: 0.875rem;
    }
    
    .service-description {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1.25rem;
    }
    
    .service-features {
        font-size: 0.9rem;
    }
    
    .service-features li {
        margin-bottom: 0.6rem;
    }
    
    .featured-badge {
        font-size: 0.8rem;
        padding: 0.35rem 0.85rem;
        top: -10px;
    }
    
    .solution-card {
        padding: 1.75rem;
    }
    
    .solution-card i {
        font-size: 2.25rem;
    }
    
    .solution-card h3 {
        font-size: 1.2rem;
    }
    
    .solution-card p {
        font-size: 0.9rem;
    }
    
    .process-step {
        grid-template-columns: 50px 1fr;
        gap: 1.25rem;
        margin-bottom: 2rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
    
    .step-content {
        padding: 1.25rem;
    }
    
    .step-content h3 {
        font-size: 1.15rem;
    }
    
    .step-content p {
        font-size: 0.9rem;
    }
    
    .process-step:not(:last-child)::after {
        left: 25px;
        top: 50px;
        height: calc(100% + 2rem);
    }
    
    .cta {
        padding: 2.5rem 0;
    }
    
    .cta-content {
        padding: 0 0.5rem;
    }
    
    .cta-content h2 {
        font-size: 1.6rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .cta-content p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    
    .cta-content .btn-primary {
        padding: 0.9rem 1.75rem;
        font-size: 0.95rem;
        width: 100%;
        max-width: 300px;
    }
    
    .contact-content {
        gap: 2.5rem;
        flex-direction: column;
    }
    
    .contact-info {
        order: 2;
    }
    
    .contact-calendar-wrapper {
        order: 1;
    }
    
    .contact-item {
        flex-direction: row;
        align-items: flex-start;
        margin-bottom: 1.5rem;
    }
    
    .contact-item i {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .contact-item h4 {
        font-size: 1rem;
        margin-bottom: 0.35rem;
    }
    
    .contact-item p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .contact-info h3 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .social-links a {
        width: 42px;
        height: 42px;
        font-size: 1.1rem;
    }
    
    .footer-section h3 {
        font-size: 1.3rem;
    }
    
    .footer-section h4 {
        font-size: 1.1rem;
    }
    
    .footer-section p,
    .footer-section ul li a {
        font-size: 0.9rem;
    }
    
    .nav-content {
        padding: 0.875rem 0;
    }
    
    .logo-image {
        height: 32px;
        max-width: 220px;
    }
    
    .footer-logo-image {
        height: 40px;
        max-width: 240px;
    }
    
    .testimonial-video {
        border-radius: 12px;
    }
    
    .testimonial-video video {
        max-height: 300px;
    }
    
    .testimonial-text h3 {
        font-size: 1.5rem;
    }
    
    .testimonial-title {
        font-size: 0.95rem;
    }
    
    .testimonial-description {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    .testimonial-quote {
        width: 50px;
        height: 50px;
    }
    
    .testimonial-quote i {
        font-size: 1.2rem;
    }
    
    .testimonial-stats {
        gap: 1.5rem;
        padding-top: 1.5rem;
        margin-top: 1.5rem;
        justify-content: flex-start;
    }
    
    .testimonial-stat {
        gap: 0.6rem;
    }
    
    .testimonial-stat i {
        font-size: 1.3rem;
        width: 28px;
        height: 28px;
    }
    
    .trusted-by {
        padding: 3rem 0;
    }
    
    .trusted-by-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .trusted-by-carousel {
        max-width: 95%;
        height: 220px;
    }
    
    .logo-container {
        padding: 2.5rem 2rem;
    }
    
    .client-logo {
        max-height: 140px;
    }
    
    .testimonial-stat span {
        font-size: 0.9rem;
    }
    
    .platforms-content {
        gap: 1.5rem;
    }
    
    .platforms-image {
        border-radius: 10px;
    }
    
    .platforms-description {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .ai-demo .section-subtitle {
        font-size: 0.95rem;
    }
    
    .ai-demo-content {
        gap: 2rem;
    }
    
    .ai-demo-video {
        border-radius: 12px;
    }
    
    .ai-demo-badge {
        top: 12px;
        left: 12px;
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
        gap: 0.5rem;
    }
    
    .ai-demo-badge i {
        font-size: 1rem;
    }
    
    .ai-demo-form {
        padding: 1.75rem 1.25rem;
    }
    
    .ai-demo-form-header {
        margin-bottom: 1.5rem;
    }
    
    .ai-demo-form-header h3 {
        font-size: 1.35rem;
    }
    
    .ai-demo-form-header p {
        font-size: 0.9rem;
    }
    
    .ai-demo-form-wrapper {
        min-height: 650px;
    }
    
    .ai-demo-form-wrapper iframe {
        min-height: 650px;
    }
    
    .ai-demo-video video {
        max-height: 280px;
    }
    
    /* Hero Stats */
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 260px;
        margin: 0 auto;
    }
    
    /* About Section */
    .about-grid {
        gap: 1.5rem;
    }
    
    .about-feature {
        flex-direction: row;
        align-items: flex-start;
        gap: 0.875rem;
    }
    
    .about-feature i {
        font-size: 1.2rem;
        width: 24px;
        flex-shrink: 0;
    }
    
    .about-feature h4 {
        font-size: 1.05rem;
        margin-bottom: 0.35rem;
    }
    
    .about-feature p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: left;
    }
    
    .footer-section {
        padding: 0;
    }
    
    .footer-brand {
        margin-bottom: 0;
    }
    
    .footer-brand p {
        margin-bottom: 1.25rem;
    }
    
    .footer-section ul {
        margin-top: 1rem;
    }
    
    .footer-section ul li {
        margin-bottom: 0.65rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1.25rem;
        padding-top: 1.75rem;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 0.875rem;
    }
    
    .footer-legal a {
        display: inline-block;
    }
    
    /* Platforms Section */
    .platforms-content {
        flex-direction: column;
    }
    
    .platforms-image img {
        max-height: 250px;
        object-fit: contain;
    }
    
    /* Solutions Grid */
    .solutions-grid {
        gap: 1.5rem;
    }
    
    /* Services Grid */
    .services-grid {
        gap: 1.5rem;
    }
    
    /* Section Padding */
    section {
        padding: var(--spacing-lg) 0;
    }
    
    section:first-of-type {
        padding-top: 0;
    }
    
    /* Forms - ensure proper sizing */
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    textarea,
    select {
        font-size: 16px;
        padding: 0.875rem 1rem;
        min-height: 44px;
    }
    
    button[type="submit"],
    .btn-primary,
    .btn-secondary {
        min-height: 44px;
        padding: 0.9rem 1.75rem;
    }
}

/* ===== Extra Small Mobile (360px and below) ===== */
@media (max-width: 360px) {
    .hero {
        padding-top: 0 !important;
        min-height: 100vh;
        align-items: flex-start;
        margin-top: 100px !important;
    }
    
    .hero-content {
        padding: 0 0.75rem;
        margin-top: 20px !important;
    }
    
    .hero-title {
        margin-top: 0 !important;
    }
    
    .title-line-1 {
        font-size: 1.35rem;
    }
    
    .title-line-2 {
        font-size: 1.2rem;
    }
    
    .text-accent {
        font-size: 1.5rem;
    }
    
    .hero-title {
        font-size: 1.5rem;
        line-height: 1.3;
        margin-bottom: 1.25rem;
        padding: 0 0.25rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        padding: 0 0.25rem;
    }
    
    .hero-cta .btn-primary,
    .hero-cta .btn-secondary {
        font-size: 0.9rem;
        padding: 0.85rem 1.5rem;
        min-width: 180px;
    }
}

/* ===== Mobile-Specific Optimizations ===== */
@media (max-width: 768px) {
    /* Touch-friendly spacing */
    a, button {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Prevent text selection on interactive elements */
    .nav-link,
    .btn-primary,
    .btn-secondary,
    .service-card,
    .solution-card {
        -webkit-user-select: none;
        user-select: none;
    }
    
    /* Smooth scrolling for iOS */
    .nav-links {
        -webkit-overflow-scrolling: touch;
    }
    
    /* Remove hover effects on touch devices */
    @media (hover: none) {
        .service-card:hover,
        .solution-card:hover,
        .step-content:hover {
            transform: none;
        }
        
        .btn-primary:hover,
        .btn-secondary:hover {
            transform: none;
        }
    }
    
    /* Optimize images for mobile */
    img {
        max-width: 100%;
        height: auto;
    }
    
    /* Prevent zoom on input focus (iOS) */
    input,
    textarea,
    select {
        font-size: 16px;
    }
}

/* ===== Landscape Mobile Optimization ===== */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 6rem 0 3rem;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        max-width: 100%;
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

/* ===== Safe Area Support (iPhone X+) ===== */
@supports (padding: env(safe-area-inset-left)) {
    body {
        padding-left: env(safe-area-inset-left);
        padding-right: env(safe-area-inset-right);
    }
    
    .navbar {
        padding-left: env(safe-area-inset-left);
        padding-right: env(safe-area-inset-right);
    }
    
    .footer {
        padding-bottom: calc(var(--spacing-md) + env(safe-area-inset-bottom));
    }
}

/* ===== Reduced Motion Support ===== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ===== Legal Pages (Privacy Policy, Terms) ===== */
.legal-content {
    background: linear-gradient(to bottom, var(--color-gray-50) 0%, var(--color-white) 300px);
    padding: calc(80px + var(--spacing-lg)) 0 var(--spacing-xl);
    min-height: 100vh;
}

.legal-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
    padding: var(--spacing-md) 0;
    background-color: var(--color-white);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.legal-header h1 {
    font-size: clamp(2rem, 5vw, 2.75rem);
    color: var(--color-black);
    margin-bottom: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.legal-meta {
    font-size: 0.95rem;
    color: var(--color-gray-600);
    margin: 1.25rem 0;
    line-height: 1.6;
    display: inline-block;
    background-color: var(--color-gray-100);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
}

.legal-meta strong {
    color: var(--color-gray-800);
}

.legal-contact {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-gray-200);
}

.legal-contact p {
    margin-bottom: 0.35rem;
    color: var(--color-gray-700);
    font-size: 0.95rem;
}

.legal-contact a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-fast);
}

.legal-contact a:hover {
    text-decoration: underline;
    color: var(--color-primary-dark);
}

.legal-intro {
    margin-top: 1.5rem;
    padding: 1.25rem;
    background-color: var(--color-gray-50);
    border-radius: 8px;
    border-left: 4px solid var(--color-primary);
}

.legal-intro p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-gray-800);
    margin-bottom: 0;
}

.legal-body {
    max-width: 850px;
    margin: 0 auto;
    background-color: var(--color-white);
    padding: var(--spacing-lg);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.legal-section {
    margin-bottom: 3rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--color-gray-200);
}

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

.legal-section h2 {
    font-size: 1.65rem;
    color: var(--color-black);
    margin-bottom: 1.5rem;
    padding-top: 0.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.legal-section h2::before {
    content: '';
    width: 4px;
    height: 28px;
    background: linear-gradient(to bottom, var(--color-primary), var(--color-primary-light));
    border-radius: 2px;
}

.legal-section h3 {
    font-size: 1.25rem;
    color: var(--color-gray-900);
    margin-bottom: 1rem;
    margin-top: 2rem;
    font-weight: 600;
    padding-left: 1rem;
    border-left: 3px solid var(--color-gray-300);
}

.legal-section p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-gray-700);
    margin-bottom: 1.5rem;
    text-align: justify;
}

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

.legal-section p strong {
    color: var(--color-gray-900);
    font-weight: 600;
}

.legal-section ul {
    margin: 1.25rem 0 1.75rem 0;
    padding-left: 2rem;
    line-height: 1.85;
}

.legal-section li {
    font-size: 1rem;
    color: var(--color-gray-700);
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 0.5rem;
}

.legal-section li::marker {
    color: var(--color-primary);
    font-weight: 600;
}

.legal-section a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-fast);
    border-bottom: 1px solid transparent;
}

.legal-section a:hover {
    border-bottom-color: var(--color-primary);
    color: var(--color-primary-dark);
}

.legal-contact-box {
    background: linear-gradient(135deg, var(--color-gray-100) 0%, var(--color-gray-50) 100%);
    padding: 1.75rem;
    border-radius: 12px;
    border-left: 5px solid var(--color-primary);
    margin-top: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.legal-contact-box p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.legal-contact-box strong {
    color: var(--color-black);
    font-size: 1.05rem;
}

.legal-footer-nav {
    text-align: center;
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-md);
}

/* Back to Home Section */
.back-to-home {
    background-color: var(--color-gray-100);
    padding: var(--spacing-lg) 0;
    text-align: center;
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-large:hover {
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.btn-large i {
    font-size: 1rem;
    transition: var(--transition-normal);
}

.btn-large:hover i {
    transform: translateX(-3px);
}

/* ===== Blog Page Styles ===== */
.blog-hero {
    background: linear-gradient(135deg, var(--color-black) 0%, var(--color-gray-800) 100%);
    color: var(--color-white);
    text-align: center;
    padding: calc(80px + var(--spacing-xl)) 0 var(--spacing-xl);
    position: relative;
    overflow: hidden;
}

.blog-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.blog-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--color-white);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.blog-hero p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.blog-grid-section {
    background-color: var(--color-white);
    padding: var(--spacing-xl) 0;
}

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

.blog-card {
    background-color: var(--color-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.blog-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: var(--color-white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--color-gray-500);
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-meta i {
    color: var(--color-primary);
}

.blog-content h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-content h2 a {
    color: var(--color-black);
    text-decoration: none;
    transition: var(--transition-fast);
}

.blog-content h2 a:hover {
    color: var(--color-primary);
}

.blog-content p {
    color: var(--color-gray-600);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-fast);
}

.blog-read-more:hover {
    gap: 0.75rem;
    color: var(--color-primary-dark);
}

.blog-read-more i {
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.blog-cta {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: var(--color-white);
    text-align: center;
    padding: var(--spacing-xl) 0;
}

.blog-cta h2 {
    color: var(--color-white);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.blog-cta p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

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

/* Legal Page Mobile Styles */
@media (max-width: 768px) {
    .legal-content {
        padding: calc(70px + var(--spacing-md)) 0 var(--spacing-lg);
    }
    
    .legal-header {
        padding: var(--spacing-md) 1rem;
        margin-bottom: var(--spacing-md);
    }
    
    .legal-header h1 {
        font-size: 1.85rem;
    }
    
    .legal-meta {
        font-size: 0.9rem;
        padding: 0.6rem 1.25rem;
    }
    
    .legal-body {
        padding: var(--spacing-md);
    }
    
    .legal-section {
        margin-bottom: 2.5rem;
        padding-bottom: 1.5rem;
    }
    
    .legal-section h2 {
        font-size: 1.4rem;
    }
    
    .legal-section h2::before {
        height: 24px;
    }
    
    .legal-section h3 {
        font-size: 1.15rem;
        margin-top: 1.5rem;
        padding-left: 0.75rem;
    }
    
    .legal-section p {
        font-size: 0.95rem;
        line-height: 1.75;
        text-align: left;
    }
    
    .legal-section li {
        font-size: 0.95rem;
    }
    
    .legal-section ul {
        padding-left: 1.5rem;
        margin: 1rem 0 1.5rem 0;
    }
    
    .legal-contact-box {
        padding: 1.5rem;
    }
    
    .legal-intro {
        padding: 1rem;
    }
    
    .legal-intro p {
        font-size: 0.95rem;
    }
    
    .back-to-home {
        padding: var(--spacing-md) 0;
    }
    
    .btn-large {
        padding: 1.1rem 2.5rem;
        font-size: 1rem;
    }
    
    .blog-hero {
        padding: calc(70px + var(--spacing-md)) 0 var(--spacing-md);
    }
    
    .blog-hero h1 {
        font-size: 2.5rem;
    }
    
    .blog-hero p {
        font-size: 1.1rem;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .blog-image {
        height: 220px;
    }
    
    .blog-content {
        padding: 1.75rem;
    }
    
    .blog-content h2 {
        font-size: 1.35rem;
    }
}

@media (max-width: 480px) {
    .legal-header {
        padding: 1.5rem 1rem;
        border-radius: 12px;
    }
    
    .legal-header h1 {
        font-size: 1.65rem;
        margin-bottom: 1rem;
    }
    
    .legal-meta {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }
    
    .legal-contact p {
        font-size: 0.9rem;
    }
    
    .legal-body {
        padding: 1.5rem 1.25rem;
        border-radius: 12px;
    }
    
    .legal-section {
        margin-bottom: 2rem;
        padding-bottom: 1.25rem;
    }
    
    .legal-section h2 {
        font-size: 1.3rem;
        gap: 0.5rem;
    }
    
    .legal-section h2::before {
        width: 3px;
        height: 22px;
    }
    
    .legal-section h3 {
        font-size: 1.1rem;
        padding-left: 0.6rem;
        border-left-width: 2px;
    }
    
    .legal-section p {
        font-size: 0.9rem;
        line-height: 1.7;
        margin-bottom: 1rem;
    }
    
    .legal-section li {
        font-size: 0.9rem;
        margin-bottom: 0.6rem;
        padding-left: 0.25rem;
    }
    
    .legal-section ul {
        padding-left: 1.25rem;
    }
    
    .legal-contact-box {
        padding: 1.25rem;
        border-left-width: 4px;
    }
    
    .legal-contact-box p {
        font-size: 0.9rem;
    }
    
    .legal-intro {
        padding: 0.875rem;
        border-left-width: 3px;
    }
    
    .legal-intro p {
        font-size: 0.9rem;
        line-height: 1.65;
    }
    
    .back-to-home {
        padding: 2rem 0;
    }
    
    .btn-large {
        padding: 1rem 2rem;
        font-size: 0.95rem;
        width: 100%;
        max-width: 300px;
    }
    
    .blog-hero {
        padding: calc(70px + 2rem) 0 2rem;
    }
    
    .blog-hero h1 {
        font-size: 2rem;
    }
    
    .blog-hero p {
        font-size: 1rem;
    }
    
    .blog-grid {
        gap: 1.75rem;
    }
    
    .blog-image {
        height: 200px;
    }
    
    .blog-category {
        font-size: 0.8rem;
        padding: 0.4rem 0.85rem;
    }
    
    .blog-content {
        padding: 1.5rem;
    }
    
    .blog-content h2 {
        font-size: 1.25rem;
    }
    
    .blog-content p {
        font-size: 0.95rem;
    }
    
    .blog-meta {
        font-size: 0.85rem;
        gap: 1rem;
    }
    
    .blog-cta h2 {
        font-size: 1.75rem;
    }
    
    .blog-cta p {
        font-size: 1rem;
    }
}