/* Reset and Base Styles */
:root {
    --primary-color: #131138;      /* Deep Midnight Purple */
    --secondary-color: #3730a3;    /* Royal Blue-Purple */
    --accent-color: #a855f7;       /* Vibrant Purple */
    --text-color: #334155;         /* Steel Gray */
    --light-text: #64748b;         /* Lighter Steel Gray */
    --background: #fafafa;         /* Pure White */
    --light-background: #f8fafc;   /* Subtle Light Gray */
    --border-color: #e2e8f0;       /* Light Border */
    --success-color: #22d3ee;      /* Electric Cyan */
    --error-color: #ef4444;        /* Modern Red */
}

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

html, body {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
    color: var(--text-color);
    background-color: var(--primary-color);
    padding-top: 70px;
}

.page-wrapper {
    margin: 0;
    padding: 0;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

h1 {
    font-size: 4rem;
    color: white;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: var(--light-text);
}

.lead {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--accent-color), #6366f1);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(168, 85, 247, 0.4);
}

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

.arrow-icon {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.btn:hover .arrow-icon {
    transform: translateX(4px);
}

/* Navigation */
nav.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color) !important;
    z-index: 1000;
    padding: 0.7rem 0;
    transition: background-color 0.3s ease;
    border: none;
    box-shadow: none;
    border-bottom: none;
}

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

.logo {
    color: white;
    font-size: 1.5rem;
    font-weight: 800;
    text-decoration: none;
}

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

.menu-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 25px;
}

.menu-btn span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Side Navigation */
.side-nav {
    position: fixed;
    top: 0;
    right: -350px;
    width: 350px;
    height: 100vh;
    background: var(--primary-color);
    z-index: 1001;
    transition: right 0.3s ease;
    overflow-y: auto;
}

.side-nav.active {
    right: 0;
}

.side-nav-header {
    padding: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-section h3 {
    color: white;
    margin: 0;
    font-size: 1.5rem;
    font-weight: 800;
}

.close-nav {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.close-nav:hover {
    background: rgba(255, 255, 255, 0.1);
}

.side-nav-content {
    padding: 1rem 0;
}

.nav-item {
    display: block;
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    font-weight: 500;
}

.nav-item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent-color);
}

/* Overlay */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

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

.menu-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    display: block; /* Always visible */
}

.menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: white;
    margin: 5px 0;
    transition: all 0.3s ease;
}

.menu-btn:hover span {
    background-color: var(--accent-color);
}

/* Mobile Menu Animation */
.menu-btn.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.menu-btn.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Side Navigation */
.side-nav {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background-color: var(--primary-color);
    z-index: 9999;
    transition: right 0.3s ease;
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
}

.side-nav.active {
    right: 0;
}

.side-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.side-nav-header h3 {
    color: white;
    margin: 0;
    font-size: 1.2rem;
}

.close-nav {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.side-nav-content {
    padding: 2rem 0;
}

.nav-item {
    display: block;
    padding: 1rem 2rem;
    color: white;
    text-decoration: none;
    transition: background-color 0.3s ease;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.nav-item:hover {
    background-color: rgba(255,255,255,0.1);
    color: var(--accent-color);
}

/* Navigation Overlay */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.profile {
    position: relative;
    min-width: 40px;
    min-height: 40px;
}

.profile-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    display: none; /* Hide until photo is available */
}

.wave {
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 1.25rem;
    animation: wave 1s infinite;
}

@keyframes wave {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-20deg); }
    75% { transform: rotate(20deg); }
}

/* Hero Section */
.hero {
    position: relative;
    min-height: calc(100vh - 70px);
    height: calc(100vh - 70px);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 0;
}

.hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Design Grid */
.design-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.grid-line {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
}

.grid-line.vertical {
    width: 1px;
    height: 100%;
    top: 0;
}

.grid-line.horizontal {
    height: 1px;
    width: 100%;
    left: 0;
}

/* Vertical lines */
.v1 { left: 25%; }
.v2 { left: 50%; }

/* Horizontal lines */
.h1 { top: 25%; }
.h2 { top: 50%; }

/* Hero Content */
.hero-content {
    max-width: 700px;
}

.hero-content h1 {
    font-size: 4rem;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-content .lead {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px; /* Maintain space for when image is added */
}

.profile-img-large {
    width: 200px;
    height: 300px;
    border-radius: 20px;
    object-fit: cover;
    animation: float 6s ease-in-out infinite;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    /* Position adjustments - modify these values to move the image */
    transform: translateX(50px) translateY(-50x);
    margin-left: 120px;
    margin-top: -70px;
}

.wave-hero {
    position: absolute;
    top: 50%;
    left: 50%;
    /* transform: translate(300px, -280px); */
    font-size: 2rem;
    animation: wave-float 6s ease-in-out infinite;
    z-index: 10;
    /* margin-left: 90px;
    margin-top: -250px; */
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes wave-float {
    0%, 100% { 
        transform: translate(-60px, 80px) translateY(0) rotate(0deg);
    }
    25% { 
        transform: translate(-60px, 80px) translateY(-10px) rotate(-20deg);
    }
    50% { 
        transform: translate(-60px, 80px) translateY(-20px) rotate(0deg);
    }
    75% { 
        transform: translate(-60px, 80px) translateY(-10px) rotate(20deg);
    }
}



/* Case Study Section */
.case-study {
    padding: 6rem 0;
    background: var(--light-background);
    overflow: hidden;
}

.case-study h2 {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    font-size: 2.8rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.case-study-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.case-study-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.case-study-block {
    background: white;
    padding: 2.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.case-study-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--accent-color), #6366f1);
    transform: scaleX(0);
    transition: transform 0.6s ease;
}

.case-study-block.animate-on-scroll {
    transform: translateY(0);
    opacity: 1;
}

.case-study-block.animate-on-scroll::before {
    transform: scaleX(1);
}

.case-study-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.block-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    animation: bounce 2s infinite;
}

.case-study-block h3 {
    margin-bottom: 1rem;
    font-size: 1.75rem;
    color: var(--primary-color);
}

.case-study-block p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--light-text);
}

/* Horizontal Workflow System */
.workflow-section {
    grid-column: 1 / -1;
    background: var(--light-background);
    padding: 4rem 2rem;
    border-radius: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
}

.workflow-section h3 {
    margin-bottom: 4rem;
    font-size: 2.5rem;
    text-align: center;
    color: var(--primary-color);
    font-weight: 800;
}

.horizontal-workflow {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.workflow-step {
    text-align: center;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.workflow-step[data-step="1"] { animation-delay: 0.2s; }
.workflow-step[data-step="2"] { animation-delay: 0.4s; }
.workflow-step[data-step="3"] { animation-delay: 0.6s; }
.workflow-step[data-step="4"] { animation-delay: 0.8s; }

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--accent-color), #6366f1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.step-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.step-icon:hover::before {
    opacity: 1;
}

.step-icon:hover {
    transform: translateY(-5px) scale(1.05);
}

.step-icon svg {
    width: 32px;
    height: 32px;
}

.step-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent-color);
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.workflow-step h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
    line-height: 1.3;
}

.workflow-step p {
    color: var(--light-text);
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 250px;
    margin: 0 auto;
}

/* Animated Connectors */
.animated-connector {
    position: absolute;
    top: 40px;
    right: -50%;
    width: 100%;
    height: 2px;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.workflow-step:last-child .animated-connector {
    display: none;
}

.connector-line {
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-color), transparent, var(--accent-color));
    background-size: 200% 100%;
    animation: flowLine 3s ease-in-out infinite;
    border-radius: 1px;
    position: relative;
}

.connector-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-color);
    border-radius: 50%;
    position: absolute;
    left: 0;
    animation: flowDot 3s ease-in-out infinite;
}

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

@keyframes flowLine {
    0%, 100% {
        background-position: 0% 50%;
        opacity: 0.6;
    }
    50% {
        background-position: 100% 50%;
        opacity: 1;
    }
}

@keyframes flowDot {
    0% {
        left: 0;
        opacity: 0;
        transform: scale(0.5);
    }
    50% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        left: calc(100% - 8px);
        opacity: 0;
        transform: scale(0.5);
    }
}

/* Responsive Design for Workflow */
@media (max-width: 1024px) {
    .horizontal-workflow {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem 2rem;
    }
    
    .workflow-step:nth-child(2) .animated-connector,
    .workflow-step:nth-child(4) .animated-connector {
        display: none;
    }
    
    .workflow-step:nth-child(1) .animated-connector {
        top: 50%;
        right: -50%;
        width: 100%;
        transform: rotate(90deg);
    }
    
    .workflow-step:nth-child(3) .animated-connector {
        top: 50%;
        right: -50%;
        width: 100%;
        transform: rotate(90deg);
    }
}

@media (max-width: 768px) {
    .horizontal-workflow {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .animated-connector {
        top: 100%;
        right: 50%;
        width: 2px;
        height: 3rem;
        transform: translateX(50%) rotate(90deg);
    }
    
    .connector-line {
        width: 3rem;
        height: 2px;
    }
}

/* Stats Section */
.case-study-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
    padding: 3rem;
    background: var(--primary-color);
    border-radius: 1.5rem;
    text-align: center;
}

.stat-item {
    color: white;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    display: block;
    margin-bottom: 0.5rem;
    animation: countUp 2s ease-out;
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.case-study-cta {
    text-align: center;
    margin-top: 4rem;
}

/* Animations */
@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

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

/* Services Section */
.services {
    padding: 6rem 0;
    background-color: white;
}

.services h2 {
    text-align: center;
    margin-bottom: 4rem;
}

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

.service-card {
    background: var(--light-background);
    padding: 2rem;
    border-radius: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.service-card p {
    color: var(--light-text);
    line-height: 1.6;
}

/* Reviews Section */
.reviews {
    padding: 4rem 0;
}

.review-card {
    background-color: var(--light-background);
    padding: 2rem;
    border-radius: 0.5rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-4px);
}

.review-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
}

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

.review-card .role {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.review-card .quote {
    font-style: italic;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background-color: var(--primary-color);
    color: white;
    text-align: center;
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
}

.contact h2 {
    color: white;
    margin-bottom: 1.5rem;
}

.contact .lead {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

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

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 800;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-contact {
    text-align: right;
}

.footer-contact h4 {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0.25rem 0;
    font-size: 0.9rem;
}

.footer-contact a {
    color: white !important;
    text-decoration: none !important;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: rgba(255, 255, 255, 0.9) !important;
    opacity: 0.9;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 0.75rem;
    justify-content: flex-end;
}

.footer-social a {
    color: rgba(255, 255, 255, 0.8) !important;
    transition: all 0.3s ease;
}

.footer-social a:visited {
    color: rgba(255, 255, 255, 0.8) !important;
}

.footer-social a:hover {
    color: white !important;
    transform: translateY(-2px);
}

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

/* Appointment Section */
.appointment-section {
    padding: 2rem 0 8rem 0;
    background: var(--light-background);
}

.appointment-content {
    max-width: 1400px;
    margin: 0 auto;
}

.appointment-header {
    text-align: center;
    margin-bottom: 5rem;
}

.appointment-header h2 {
    color: var(--primary-color);
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.appointment-subtitle {
    color: var(--light-text);
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
}

.appointment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: stretch;
}

.appointment-info {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.appointment-info h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 3rem;
}

.consultation-points {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.consultation-points li {
    display: flex;
    gap: 2rem;
    margin-bottom: 0;
    align-items: center;
}

.point-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(168, 85, 247, 0.05);
    border: 2px solid rgba(168, 85, 247, 0.2);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.point-icon svg {
    width: 40px;
    height: 40px;
    color: rgba(168, 85, 247, 0.6);
    stroke-width: 1.5;
}

.consultation-points li:hover .point-icon {
    background: rgba(168, 85, 247, 0.1);
    border-color: rgba(168, 85, 247, 0.4);
    transform: translateY(-5px);
}

.consultation-points li:hover .point-icon svg {
    color: var(--accent-color);
}

.point-content h4 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.point-content p {
    color: var(--light-text);
    font-size: 1rem;
    line-height: 1.6;
}

.consultation-details {
    background: var(--light-background);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid var(--border-color);
    margin-top: auto;
}

.detail-item {
    color: var(--text-color);
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.detail-item:last-child {
    margin-bottom: 0;
}

.detail-item strong {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.appointment-cta {
    position: sticky;
    top: 100px;
}

.cta-card {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: 2px solid rgba(168, 85, 247, 0.3);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 8px 24px rgba(19, 17, 56, 0.3);
}

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

.cta-card > p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn-icon {
    width: 20px;
    height: 20px;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.5);
}

.trust-indicators {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-item {
    text-align: center;
}

.trust-number {
    display: block;
    color: white;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.trust-label {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

.guarantee-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }
    
    .profile-img-large {
        width: 350px;
        height: 350px;
    }

    .case-study-grid {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 0 1rem;
    }

    .hero-content {
        margin: 0 auto;
    }

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

    .profile-img-large {
        width: 300px;
        height: 300px;
    }

    /* Adjust grid lines for mobile */
    .v1 { left: 33.33%; }
    .v2 { left: 66.66%; }
    .v3 { display: none; }

    .case-study-grid {
        grid-template-columns: 1fr;
    }

    .case-study-block,
    .system-diagram {
        padding: 1.5rem;
    }

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

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .pricing-card {
        margin-bottom: 2rem;
    }

    .pricing-tabs {
        justify-content: center;
    }

    .nav-right {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .profile-img-large {
        width: 250px;
        height: 250px;
    }

    /* Further adjust grid lines for smaller screens */
    .v1 { left: 50%; }
    .v2 { display: none; }
    .h1 { top: 33.33%; }
    .h2 { top: 66.66%; }
    .h3 { display: none; }

    .case-study h2 {
        font-size: 2rem;
    }
    
    .pain-points {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .step-text {
        font-size: 1rem;
    }

    .pricing h2 {
        font-size: 2rem;
    }

    .card-header h3 {
        font-size: 1.5rem;
    }

    .amount {
        font-size: 2.5rem;
    }

    .tab-btn {
        padding: 0.5rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2000;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.3s ease, opacity 0.3s ease;
}

.mobile-menu.active {
    visibility: visible;
    opacity: 1;
}

.menu-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu.active .menu-overlay {
    opacity: 1;
}

.menu-content {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 300px;
    background-color: var(--primary-color);
    padding: 2rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.mobile-menu.active .menu-content {
    transform: translateX(0);
}

.menu-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 2rem;
}

.close-menu {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    position: relative;
    width: 30px;
    height: 30px;
}

.close-menu span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transition: transform 0.3s ease;
}

.close-menu span:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
}

.close-menu span:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.menu-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-nav li {
    margin-bottom: 1.5rem;
}

.menu-nav a {
    color: white;
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 600;
    display: block;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.menu-nav a:hover {
    color: var(--accent-color);
}

/* Service Page Styles */
.service-hero {
    min-height: 100vh;
    height: 100vh;
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}



.full-width-container {
    width: 100%;
    margin: 0;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

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

.service-hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.hero-cta {
    margin-top: 3rem;
}

.credibility {
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* Problem Section */
.problem-section {
    padding: 5rem 0;
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}

.problem-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="%23a855f7" opacity="0.1"/><circle cx="80" cy="40" r="0.5" fill="%23a855f7" opacity="0.1"/><circle cx="40" cy="80" r="1.5" fill="%23a855f7" opacity="0.1"/></svg>');
    pointer-events: none;
}

.problem-section h2 {
    font-size: 3rem;
    margin-bottom: 3.75rem;
    text-align: center;
    color: #131138;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.pain-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto 3rem auto;
}

.pain-point {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: #fafafa;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(19, 17, 56, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.pain-point::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(168, 85, 247, 0.05), transparent);
    transition: left 0.6s ease;
}

.pain-point:hover::before {
    left: 100%;
}

.pain-point:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(19, 17, 56, 0.15);
    border-color: #e2e8f0;
}

.pain-point:hover .pain-icon {
    transform: scale(1.1);
}

.pain-point:hover .pain-content h3 {
    color: var(--accent-color);
}

.pain-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

/* Gradient backgrounds for different icons */
.pain-point:nth-child(1) .pain-icon {
    background: linear-gradient(135deg, #f97316, #ea580c);
}

.pain-point:nth-child(2) .pain-icon {
    background: linear-gradient(135deg, #ec4899, #be185d);
}

.pain-point:nth-child(3) .pain-icon {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.pain-point:nth-child(4) .pain-icon {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.pain-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: #131138;
    font-weight: 600;
    transition: color 0.3s ease;
    line-height: 1.3;
}

.pain-content p {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 400;
    margin: 0;
}

.cost-statement {
    text-align: center;
    background: #131138;
    color: white;
    padding: 2.5rem;
    border-radius: 1rem;
    position: relative;
    overflow: hidden;
}

.cost-statement::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #a855f7, #22d3ee);
}

.cost-statement p:first-child {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cost-statement p:last-child {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 0;
    font-size: 1.2rem;
    box-shadow: 0 8px 20px rgba(19, 17, 56, 0.3);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.cost-statement:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(19, 17, 56, 0.4);
}

.cost-statement p {
    margin-bottom: 1rem;
    color: white;
}

.cost-statement p:last-child {
    margin-bottom: 0;
    font-style: italic;
    opacity: 0.9;
    color: white;
}

/* Pain Point Animations */
@keyframes painPulse {
    0%, 100% {
        box-shadow: 0 4px 6px rgba(19, 17, 56, 0.08), 0 0 0 0 rgba(168, 85, 247, 0.2);
    }
    50% {
        box-shadow: 0 4px 6px rgba(19, 17, 56, 0.08), 0 0 0 8px rgba(168, 85, 247, 0);
    }
}

@keyframes iconBounce {
    0%, 100% {
        transform: scale(1) rotate(0deg);
    }
    50% {
        transform: scale(1.1) rotate(3deg);
    }
}

.pain-point:hover {
    animation: painPulse 2s ease-in-out infinite;
}

.pain-point:hover .pain-icon {
    animation: iconBounce 0.6s ease-in-out infinite;
}

/* Solution Section */
.solution-section {
    padding: 4rem 0;
    background: var(--light-background);
    position: relative;
    overflow: hidden;
}

.solution-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="%2322d3ee" opacity="0.1"/><circle cx="80" cy="40" r="0.5" fill="%2322d3ee" opacity="0.1"/><circle cx="40" cy="80" r="1.5" fill="%2322d3ee" opacity="0.1"/></svg>');
    pointer-events: none;
}

.solution-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    color: var(--primary-color);
    position: relative;
    z-index: 2;
}

.solution-intro {
    font-size: 1.2rem;
    color: var(--light-text);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.solution-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto 4rem auto;
    padding: 0 2rem;
}

.benefit {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: var(--background);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--border-color);
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    max-width: 500px;
}

.benefit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(168, 85, 247, 0.1), transparent);
    transition: left 0.6s ease;
}

.benefit:hover::before {
    left: 100%;
}

.benefit:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 30px rgba(168, 85, 247, 0.2);
    border-color: rgba(168, 85, 247, 0.3);
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(55, 48, 163, 0.1));
}

.benefit:hover .benefit-arrow {
    transform: scale(1.3) translateX(8px);
    color: var(--accent-color);
    filter: drop-shadow(0 4px 8px rgba(168, 85, 247, 0.4));
}

.benefit:hover .benefit-content h3 {
    color: var(--accent-color);
}

.benefit-arrow {
    color: var(--accent-color);
    font-size: 2rem;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 0.25rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(168, 85, 247, 0.1);
}

.benefit-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-weight: 700;
    transition: color 0.3s ease;
}

.benefit-content p {
    color: var(--light-text);
    font-size: 1.1rem;
    line-height: 1.6;
    font-weight: 500;
}

/* Benefit Animation Keyframes */
@keyframes benefitGlow {
    0%, 100% {
        box-shadow: 0 4px 6px rgba(168, 85, 247, 0.1), 0 0 0 0 rgba(168, 85, 247, 0.2);
    }
    50% {
        box-shadow: 0 4px 6px rgba(168, 85, 247, 0.1), 0 0 0 8px rgba(168, 85, 247, 0);
    }
}

@keyframes arrowPulse {
    0%, 100% {
        transform: scale(1) translateX(0);
        background: rgba(168, 85, 247, 0.1);
    }
    50% {
        transform: scale(1.2) translateX(5px);
        background: rgba(168, 85, 247, 0.2);
    }
}

.benefit:hover {
    animation: benefitGlow 2s ease-in-out infinite;
}

.benefit:hover .benefit-arrow {
    animation: arrowPulse 1s ease-in-out infinite;
}

.testimonial {
    background: var(--light-background);
    padding: 3rem;
    border-radius: 1rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial blockquote {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    font-style: italic;
}

.testimonial cite {
    color: var(--accent-color);
    font-weight: 600;
    font-style: normal;
}

/* Process Section */
.process-section {
    padding: 8rem 0;
    background: var(--light-background);
    position: relative;
    overflow: hidden;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="%233730a3" opacity="0.1"/><circle cx="80" cy="40" r="0.5" fill="%233730a3" opacity="0.1"/><circle cx="40" cy="80" r="1.5" fill="%233730a3" opacity="0.1"/></svg>');
    pointer-events: none;
}

.process-section h2 {
    text-align: center;
    margin-bottom: 4rem;
    color: var(--primary-color);
    position: relative;
    z-index: 2;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(400px, 450px));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
    justify-content: center;
}

.process-steps .process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    background: var(--light-background);
    padding: 2rem 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(55, 48, 163, 0.08);
    border: 1px solid var(--border-color);
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    width: 100%;
    text-align: center;
    justify-self: center;
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(55, 48, 163, 0.05), transparent);
    transition: left 0.6s ease;
}

.process-step:hover::before {
    left: 100%;
}

.process-step:hover {
    transform: translateY(-3px) scale(1.01);
    box-shadow: 0 8px 20px rgba(55, 48, 163, 0.15);
    border-color: rgba(55, 48, 163, 0.25);
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.12), rgba(55, 48, 163, 0.08));
}

.process-step:hover .step-number {
    transform: scale(1.08) rotate(3deg);
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.3);
}

.process-step:hover .step-content h3 {
    color: var(--accent-color);
}

.step-number {
    background: var(--accent-color);
    color: white;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: bold;
    flex-shrink: 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(168, 85, 247, 0.3);
}

.step-content {
    flex: 1;
    text-align: left;
}

.step-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
    font-weight: 600;
    transition: color 0.3s ease;
    text-align: left;
    line-height: 1.3;
}

.step-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.step-content li {
    margin-bottom: 0.5rem;
    color: var(--text-color);
    line-height: 1.4;
    padding-left: 0;
    font-weight: 400;
    text-align: left;
    font-size: 0.85rem;
}

.step-content li:last-child {
    margin-bottom: 0;
}

/* Process Step Animation Keyframes */
@keyframes processGlow {
    0%, 100% {
        box-shadow: 0 4px 6px rgba(55, 48, 163, 0.08), 0 0 0 0 rgba(55, 48, 163, 0.2);
    }
    50% {
        box-shadow: 0 4px 6px rgba(55, 48, 163, 0.08), 0 0 0 8px rgba(55, 48, 163, 0);
    }
}

@keyframes numberSpin {
    0%, 100% {
        transform: scale(1) rotate(0deg);
    }
    50% {
        transform: scale(1.15) rotate(10deg);
    }
}

.process-step:hover {
    animation: processGlow 2s ease-in-out infinite;
}

.process-step:hover .step-number {
    animation: numberSpin 1.5s ease-in-out infinite;
}

/* Results Section */
.results-section {
    padding: 4rem 0;
    background: white;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
    max-width: 1200px;
    margin: 0 auto 4rem auto;
    padding: 0 2rem;
}

.result-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 1rem;
    text-align: center;
    border: 1px solid #e2e8f0;
    max-width: 380px;
    width: 100%;
    justify-self: center;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.result-details {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0 0;
}

.result-details li {
    padding: 0.75rem 0;
    color: #64748b;
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.5;
}

.result-details li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #22d3ee;
    font-size: 1.2rem;
    font-weight: bold;
}

/* Selective purple highlights for only the most important metrics */
.metric-highlight {
    color: #a855f7 !important;
    font-weight: 800;
    font-size: 1.1em;
}

/* Style for key numbers in main result stats */
.result-stat .big-number {
    color: #a855f7;
    font-weight: 800;
    font-size: 1.1em;
}

/* Success icon for key metrics */
.metric-highlight::after {
    content: ' ⭐';
    color: #22d3ee;
    font-size: 0.8em;
    margin-left: 2px;
}

.result-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #a855f7;
    font-weight: 700;
    position: relative;
}

.result-stat {
    font-size: 1.3rem;
    font-weight: 700;
    color: #131138;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.result-outcome {
    color: var(--light-text);
    line-height: 1.6;
}

.result-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border-color: #cbd5e1;
}

.case-study-preview {
    background: var(--primary-color);
    color: white;
    padding: 3rem;
    border-radius: 1rem;
    text-align: center;
}

.case-study-preview h3 {
    color: white;
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.case-study-preview p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

/* Included Section */
.included-section {
    padding: 4rem 0;
    background: var(--light-background);
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 2rem;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin: 0 auto 3rem auto;
    padding: 0 2rem;
    grid-auto-rows: 1fr;
}

.included-column {
    display: contents;
}

.included-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    width: 100%;
    height: 100%;
}

.included-item .check {
    color: #22d3ee;
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
    font-weight: bold;
}

.included-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #131138;
    font-weight: 700;
}

.included-content p {
    color: var(--light-text);
    line-height: 1.6;
}

.tech-stack {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.tech-stack h3 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.tech-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.tech-item {
    background: linear-gradient(135deg, #a855f7, #3730a3);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(168, 85, 247, 0.2);
}

.tech-item:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(168, 85, 247, 0.3);
}

/* Investment Section */
.discovery-cta-section {
    padding: 5rem 0 8rem 0;
    background: var(--primary-color);
    position: relative;
    overflow: hidden;
}

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

.discovery-cta-content h2 {
    color: white;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.discovery-intro {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.3rem;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.discovery-benefits {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.discovery-benefit {
    background: rgba(255, 255, 255, 0.08);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid rgba(168, 85, 247, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    flex: 1;
    min-width: 220px;
    max-width: 320px;
    transition: all 0.3s ease;
}

.discovery-benefit:hover {
    border-color: var(--accent-color);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(168, 85, 247, 0.3);
    background: rgba(255, 255, 255, 0.12);
}

.discovery-benefit h4 {
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    margin: 0 0 0.75rem 0;
    line-height: 1.3;
}

.discovery-benefit p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

.discovery-cta-buttons {
    margin-bottom: 2rem;
}

.discovery-cta-buttons h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.discovery-note {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.discovery-testimonial {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-style: italic;
    margin: 0;
}

.guarantee-badge {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(34, 211, 238, 0.1));
    padding: 1.5rem;
    border-radius: 15px;
    border: 2px solid var(--accent-color);
    backdrop-filter: blur(10px);
}

.guarantee-badge p {
    color: white;
    margin: 0;
    font-size: 1.1rem;
}

/* ROI Hero Section */
.roi-hero {
    max-width: 800px;
    margin: 0 auto 3rem;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(34, 211, 238, 0.05));
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    border: 2px solid rgba(168, 85, 247, 0.2);
}

.roi-hero h3 {
    color: #131138;
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.roi-breakdown {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.roi-return-hero {
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    color: #a855f7;
    font-size: 1.5rem;
    font-weight: 800;
    background: rgba(168, 85, 247, 0.1);
    border-radius: 1rem;
    border: 2px solid #a855f7;
}

.roi-value.highlight {
    color: #a855f7;
    font-size: 1.4rem;
    font-weight: 800;
}

/* Value Anchoring */
.value-anchor {
    text-align: center;
    margin: 2rem auto;
    max-width: 600px;
}

.value-anchor p {
    color: #64748b;
    font-size: 1.1rem;
    font-style: italic;
    padding: 1rem 2rem;
    background: rgba(168, 85, 247, 0.05);
    border-radius: 0.5rem;
    border-left: 4px solid #a855f7;
}

/* Compact Pricing Card */
.pricing-card-compact {
    max-width: 400px;
    margin: 0 auto;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(19, 17, 56, 0.08);
    border: 1px solid rgba(168, 85, 247, 0.1);
    position: relative;
    transform: translateY(0);
    transition: all 0.3s ease;
}

.pricing-card {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(19, 17, 56, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.1);
    position: relative;
    transform: translateY(0);
    transition: all 0.4s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(19, 17, 56, 0.15);
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--success-color));
}

.pricing-header-compact {
    background: #f8fafc;
    color: #131138;
    padding: 2rem;
    text-align: center;
    border-bottom: 1px solid #e2e8f0;
}

.pricing-header-compact h3 {
    color: #131138;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.investment-text p {
    margin: 0.5rem 0;
    font-size: 1.1rem;
    color: #334155;
}

.price-highlight {
    color: #a855f7;
    font-weight: 700;
    font-size: 1.2em;
}

.ongoing {
    font-size: 1rem !important;
    color: #64748b !important;
    font-weight: 500;
}

.pricing-header {
    background: #131138;
    color: white;
    padding: 3rem 2rem 2rem;
    text-align: center;
    position: relative;
}

.pricing-header::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 20px solid var(--secondary-color);
}

.pricing-header h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.currency {
    font-size: 1.5rem;
    font-weight: 500;
    margin-right: 0.25rem;
}

.amount {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
}

.period {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-left: 0.5rem;
}

.monthly {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.roi-calculation {
    padding: 2.5rem 2rem;
    background: #fafbfc;
    max-width: 800px;
    margin: 0 auto;
}

.roi-calculation h4 {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 700;
}

.roi-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(168, 85, 247, 0.1);
}

.roi-item:last-child {
    border-bottom: none;
}

.roi-metric {
    font-weight: 500;
    color: var(--text-color);
    flex: 1;
}

.roi-value {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.roi-total {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(34, 211, 238, 0.1));
    margin: 1rem -2rem 0 -2rem;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.roi-total .roi-value {
    font-size: 1.3rem;
    color: var(--accent-color);
}

.roi-return {
    text-align: center;
    margin-top: 1.5rem;
    padding: 1rem;
    color: #a855f7;
    font-size: 1.25rem;
    font-weight: 800;
    background: rgba(168, 85, 247, 0.1);
    border-radius: 0.5rem;
    border: 2px solid #a855f7;
}

.guarantee {
    background: #f8fafc;
    padding: 2rem;
    border-top: 1px solid rgba(168, 85, 247, 0.1);
}

.guarantee h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.guarantee h4::before {
    content: '✓';
    color: #22d3ee;
    font-weight: bold;
    font-size: 1.4rem;
    margin-right: 0.5rem;
}

.guarantee p {
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
}

.guarantee strong {
    color: var(--primary-color);
}

.included-note {
    background: #fff5f5;
    border: 1px solid #fed7d7;
    border-radius: 8px;
    padding: 1.5rem 2rem;
    margin-top: 1rem;
}

.included-note p {
    color: #c53030;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.included-note strong {
    font-weight: 600;
}

/* Animation for pricing card */
@keyframes priceGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(168, 85, 247, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(168, 85, 247, 0.5);
    }
}

.pricing-card:hover {
    animation: priceGlow 2s ease-in-out infinite;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
    background: var(--light-background);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid var(--border-color);
    width: 100%;
}

.faq-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.faq-item p {
    color: var(--light-text);
    line-height: 1.6;
}

/* Guarantee Section */
.guarantee-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.guarantee-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: guaranteeFloat 20s linear infinite;
}

@keyframes guaranteeFloat {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-50px, -50px); }
}

.guarantee-section h2 {
    color: white;
    margin-bottom: 3rem;
    font-size: 3rem;
    position: relative;
    z-index: 2;
}

.guarantee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.guarantee-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.guarantee-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.6s ease;
}

.guarantee-item:hover::before {
    left: 100%;
}

.guarantee-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.guarantee-item h3 {
    color: white;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.guarantee-item p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
}

.guarantee-item strong {
    color: var(--success-color);
    font-weight: 700;
}

.guarantee-footer {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.guarantee-footer p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    margin: 0;
}

/* Final CTA Section */
.final-cta {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><path d="M0,100 Q50,50 100,100 T200,100 V200 H0 Z" fill="%23ffffff" opacity="0.05"/></svg>') no-repeat center bottom;
    background-size: cover;
}

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

.final-cta h2 {
    color: white;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.cta-subtext {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
}

.urgency-note {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1.5rem 2rem;
    margin: 2rem auto 3rem;
    max-width: 500px;
    position: relative;
    overflow: hidden;
}

.urgency-note::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-color), var(--success-color));
}

.urgency-note p {
    margin: 0;
    font-size: 1.1rem;
    color: white;
    font-weight: 600;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--accent-color), var(--success-color));
    border: none;
    color: white;
    text-decoration: none;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    min-width: 300px;
    text-align: center;
}

.btn-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
}

.btn-large:hover::before {
    left: 100%;
}

.btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(168, 85, 247, 0.4);
}

.btn-secondary {
    background: none;
    color: white;
    border: 2px solid white;
}

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

.contact-info {
    color: rgba(255, 255, 255, 0.8);
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.contact-info em {
    color: var(--accent-color);
}

/* Responsive Adjustments for Service Pages */

/* Tablet Styles */
@media (max-width: 1024px) and (min-width: 769px) {
    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .service-hero h1 {
        font-size: 2.5rem;
    }
    
    .discovery-cta-section {
        padding: 4rem 0;
    }
    
    .discovery-cta-content h2 {
        font-size: 2rem;
    }
    
    .discovery-intro {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .discovery-benefits {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .discovery-benefit {
        padding: 1rem;
        min-width: auto;
        max-width: none;
    }
    
    .guarantee-badge {
        padding: 1rem;
    }
    
    .guarantee-badge p {
        font-size: 1rem;
    }
    
    .pricing-card-compact {
        max-width: 95%;
        margin: 0 auto 2rem;
    }
    
    .pricing-card {
        max-width: 95%;
        margin: 0 auto 2rem;
    }
    
    .roi-calculation {
        max-width: 95%;
        margin: 2rem auto 0;
        padding: 2rem 1.5rem;
    }
    
    .pricing-header {
        padding: 2rem 1.5rem 1.5rem;
    }
    
    .amount {
        font-size: 2.8rem;
    }
    
    .roi-calculation {
        padding: 2rem 1.5rem;
    }
    
    .roi-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .roi-total {
        margin: 1rem -1.5rem 0 -1.5rem;
        padding: 1rem 1.5rem;
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .guarantee-section {
        padding: 4rem 0;
    }
    
    .guarantee-section h2 {
        font-size: 2rem;
    }
    
    .guarantee-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .guarantee-item {
        padding: 2rem 1.5rem;
    }
    
    .final-cta {
        padding: 4rem 0;
    }
    
    .final-cta h2 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .cta-subtext {
        font-size: 1.1rem;
    }
    
    .urgency-note {
        margin: 2rem 1rem 3rem;
        padding: 1.25rem 1.5rem;
    }
    
    .btn-large {
        min-width: auto;
        width: 90%;
        max-width: 350px;
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
    
    .solution-benefits {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .pain-points {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .process-step {
        max-width: 100%;
        text-align: center;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .benefit {
        flex-direction: column;
        text-align: center;
    }
    
    .included-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .included-column {
        gap: 1rem;
    }
    
    .investment-details {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Contact Form Styles for Main Page */
.contact-form {
    margin-top: 2rem;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.form-group.half-width {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: white;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #a855f7;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

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

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .form-group.half-width {
        margin-bottom: 1.5rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
}

/* Legal Pages Styles */
.legal-section {
    padding: 100px 0 80px;
    background: #f8fafc;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.legal-content h1 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.legal-intro {
    text-align: center;
    color: var(--light-text);
    font-size: 0.9rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.legal-text h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 0.5rem;
}

.legal-text h3 {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

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

.legal-text ul {
    margin: 1rem 0 1.5rem 1.5rem;
    color: var(--text-color);
}

.legal-text li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.legal-text strong {
    color: var(--primary-color);
    font-weight: 600;
}

@media (max-width: 768px) {
    .legal-content {
        margin: 0 1rem;
        padding: 2rem 1.5rem;
    }
    
    .legal-content h1 {
        font-size: 2rem;
    }
    
    .legal-text h2 {
        font-size: 1.3rem;
    }
} 