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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #0D0D0D;
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

h1 {
    font-size: clamp(2rem, 4vw, 3.5rem);
}

h2 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
}

h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Mobile Typography Enhancements */
@media (max-width: 768px) {
    h1 {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
        line-height: 1.25;
    }
    
    h2 {
        font-size: clamp(1.5rem, 5vw, 2rem);
        line-height: 1.3;
    }
    
    h3 {
        font-size: clamp(1.25rem, 4vw, 1.5rem);
        line-height: 1.35;
    }
    
    p {
        font-size: 1rem;
        line-height: 1.65;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: clamp(1.5rem, 7vw, 2.25rem);
    }
    
    h2 {
        font-size: clamp(1.375rem, 6vw, 1.875rem);
    }
    
    h3 {
        font-size: clamp(1.125rem, 5vw, 1.375rem);
    }
    
    p {
        font-size: 0.95rem;
        line-height: 1.7;
    }
}

@media (max-width: 420px) {
    h1 {
        font-size: clamp(1.375rem, 8vw, 2rem);
    }
    
    h2 {
        font-size: clamp(1.25rem, 6.5vw, 1.75rem);
    }
    
    h3 {
        font-size: clamp(1rem, 5.5vw, 1.25rem);
    }
}

a {
    color: #a387c1;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #bbd8a7;
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    width: 100%;
}

@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }
}

@media (max-width: 420px) {
    .container {
        padding: 0 0.875rem;
    }
}

/* Skip Link for Accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #000;
    color: #fff;
    padding: 8px;
    text-decoration: none;
    z-index: 1000;
    border-radius: 4px;
}

.skip-link:focus {
    top: 6px;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 2500;
}

.header__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    flex-wrap: nowrap;
    position: relative;
}

@media (max-width: 1023px) {
    .header__content {
        justify-content: space-between;
    }
    
    .logo {
        order: 1;
        flex: 0 0 auto;
    }
    
    .mobile-menu-toggle {
        order: 3;
        margin-left: auto;
    }
    
    .nav {
        order: 4;
    }
    
    .header__cta {
        display: none !important;
    }
}

.logo__link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.5rem;
    color: #1a1a1a;
}

.logo__image {
    max-height: 50px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

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

.nav__link {
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #a387c1;
    transition: width 0.3s ease;
}

.nav__link:hover::after,
.nav__link--active::after {
    width: 100%;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    -webkit-tap-highlight-color: transparent;
}

@media (max-width: 768px) {
    .btn {
        min-height: 44px;
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .btn--large {
        padding: 1rem 1.75rem;
        font-size: 1.05rem;
    }
}

@media (max-width: 576px) {
    .btn {
        padding: 0.875rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .btn--large {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
}

.btn--primary {
    background: linear-gradient(135deg, #a387c1 0%, #C9B1D3 100%);
    color: #ffffff !important;
    box-shadow: 0 4px 14px rgba(163, 135, 193, 0.3);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(163, 135, 193, 0.4);
    color: #ffffff !important;
}

.btn--secondary {
    background: transparent;
    color: #a387c1;
    border: 2px solid #a387c1;
}

.btn--secondary:hover {
    background: #a387c1;
    color: white;
}

.btn--outline {
    background: transparent;
    color: #a387c1;
    border: 2px solid #a387c1;
}

.btn--outline:hover {
    background: #a387c1;
    color: white;
}

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

.btn--full {
    width: 100%;
}

/* Hero Section */
.hero {
    position: relative;
    background: linear-gradient(135deg, #a387c1 0%, #C9B1D3 100%);
    color: white;
    padding: 6rem 0 4rem;
    overflow: hidden;
    min-height: 500px;
}

@media (max-width: 768px) {
    .hero {
        padding: 3rem 0 2.5rem;
        min-height: 400px;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 2.5rem 0 2rem;
        min-height: 350px;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero__content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

@media (min-width: 1024px) {
    .hero__content {
        grid-template-columns: 1fr 400px;
    }
}

.hero__title {
    margin-bottom: 1.5rem;
}

.hero__highlight {
    background: linear-gradient(135deg, #F8CBAD 0%, #bbd8a7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero__stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .hero__stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .hero__stats {
        grid-template-columns: 1fr;
        gap: 0.875rem;
    }
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.stat__number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat__label {
    font-size: 0.875rem;
    opacity: 0.8;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    color: #1a1a1a;
}

.contact-form__title {
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    text-align: center;
}

.form__group {
    margin-bottom: 1rem;
}

.form__label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #374151;
}

.form__input,
.form__textarea,
.form__select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: white;
}

.form__input:focus,
.form__textarea:focus,
.form__select:focus {
    outline: none;
    border-color: #a387c1;
    box-shadow: 0 0 0 3px rgba(163, 135, 193, 0.1);
}

.form__textarea {
    resize: vertical;
    min-height: 100px;
}

.form__select {
    cursor: pointer;
}

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

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

/* Fieldset Styling */
.form-fieldset {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-legend {
    font-weight: 600;
    color: #1a1a1a;
    padding: 0 0.5rem;
    margin-bottom: 1rem;
}

/* Checkbox Styling */
.checkbox-group {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .checkbox-group {
        grid-template-columns: 1fr 1fr;
    }
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.875rem;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    margin: 0;
}

.checkbox-custom {
    width: 18px;
    height: 18px;
    border: 2px solid #e5e7eb;
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
    background: #a387c1;
    border-color: #a387c1;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.checkbox-label a {
    color: #a387c1;
    text-decoration: underline;
}

.checkbox-label a:hover {
    color: #C9B1D3;
}

/* Form Disclaimer */
.form-disclaimer {
    font-size: 0.875rem;
    color: #6b7280;
    text-align: center;
    margin-top: 1rem;
    font-style: italic;
}

/* Trust Indicators */
.trust-indicators {
    padding: 3rem 0;
    background: #f9fafb;
}

.trust-indicators__logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.trust-logo {
    height: 40px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.trust-logo:hover {
    opacity: 1;
}

.trust-indicators__text {
    text-align: center;
    margin-top: 1rem;
    color: #6b7280;
    font-style: italic;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: #ffffff;
}

@media (max-width: 992px) {
    .services {
        padding: 4rem 0;
    }
}

@media (max-width: 768px) {
    .services {
        padding: 3rem 0;
    }
}

@media (max-width: 576px) {
    .services {
        padding: 2.5rem 0;
    }
}

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

@media (min-width: 576px) and (max-width: 767px) {
    .services__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.75rem;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1200px) {
    .services__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-card__icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #a387c1 0%, #C9B1D3 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.service-card__title {
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-card__description {
    margin-bottom: 1.5rem;
    color: #6b7280;
}

.service-card__features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-tag {
    background: #DDEBD3;
    color: #0D0D0D;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Services Overview with Colorful Cards */
.services-overview {
    padding: 6rem 0;
    background: linear-gradient(135deg, #DEEBF7 0%, #ffffff 100%);
}

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

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.service-detail {
    background: white;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 3px solid transparent;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-detail::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(90deg, #a387c1, #bbd8a7, #F8CBAD);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-detail:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: #a387c1;
}

.service-detail:hover::before {
    opacity: 1;
}

.service-detail:nth-child(1) {
    background: linear-gradient(135deg, #C9B1D3 0%, #ffffff 100%);
}

.service-detail:nth-child(2) {
    background: linear-gradient(135deg, #DEEBF7 0%, #ffffff 100%);
}

.service-detail:nth-child(3) {
    background: linear-gradient(135deg, #DDEBD3 0%, #ffffff 100%);
}

.service-detail__header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #e5e7eb;
}

.service-detail__icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #a387c1 0%, #C9B1D3 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(163, 135, 193, 0.3);
}

.service-detail__icon .icon {
    width: 40px;
    height: 40px;
}

.service-detail__title {
    font-size: 2rem;
    color: #1a1a1a;
    margin: 0;
}

.service-detail__price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #bbd8a7;
    background: #DDEBD3;
    padding: 0.5rem 1.5rem;
    border-radius: 12px;
    margin-left: auto;
}

.service-detail__description {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.service-detail__features,
.service-detail__benefits {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 16px;
    margin-bottom: 2rem;
    border-left: 4px solid #a387c1;
}

.service-detail__features h4,
.service-detail__benefits h4 {
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-detail__features h4::before,
.service-detail__benefits h4::before {
    content: '⭐';
    font-size: 1.5rem;
}

.service-detail__features ul,
.service-detail__benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-detail__features li,
.service-detail__benefits li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: #374151;
    font-size: 1.05rem;
    line-height: 1.6;
}

.service-detail__features li::before,
.service-detail__benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #bbd8a7;
    font-weight: bold;
    font-size: 1.25rem;
}

.service-detail .btn {
    margin-top: 2rem;
    width: 100%;
    font-size: 1.125rem;
    padding: 1.25rem 2rem;
}

/* Process Section with Enhanced Design */
.process {
    padding: 6rem 0;
    background: white;
}

.process-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .process-steps {
        grid-template-columns: repeat(3, 1fr);
    }
}

.process-step {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #F8CBAD, #bbd8a7, #a387c1);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
}

.process-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    border-color: #a387c1;
}

.process-step:hover::before {
    transform: translateX(0);
}

.process-step__number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #a387c1 0%, #C9B1D3 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 20px rgba(163, 135, 193, 0.3);
}

.process-step__title {
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.process-step__description {
    color: #6b7280;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Pricing Section with Vibrant Cards */
.pricing {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0D0D0D 0%, #a387c1 100%);
    color: white;
}

.pricing .section-title,
.pricing .section-subtitle {
    color: white;
}

.pricing-table {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .pricing-table {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .pricing-table {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pricing-card {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 24px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    border: 3px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    border-color: #a387c1;
}

.pricing-card--popular {
    background: linear-gradient(135deg, #a387c1 0%, #C9B1D3 100%);
    color: white;
    transform: scale(1.05);
    box-shadow: 0 15px 50px rgba(163, 135, 193, 0.4);
}

.pricing-card--popular .pricing-card__title,
.pricing-card--popular .pricing-card__price {
    color: white;
}

.pricing-card--popular:hover {
    transform: scale(1.08) translateY(-12px);
}

.pricing-card__badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #F8CBAD 0%, #bbd8a7 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(248, 203, 173, 0.4);
}

.pricing-card__title {
    font-size: 1.75rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.pricing-card__price {
    font-size: 3rem;
    font-weight: 700;
    color: #bbd8a7;
    margin-bottom: 2rem;
}

.pricing-card__unit {
    font-size: 1.25rem;
    font-weight: 400;
    color: #6b7280;
}

.pricing-card--popular .pricing-card__unit {
    color: rgba(255, 255, 255, 0.8);
}

.pricing-card__features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    text-align: left;
}

.pricing-card__features li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    color: #374151;
    font-size: 1.05rem;
    border-bottom: 1px solid #e5e7eb;
}

.pricing-card--popular .pricing-card__features li {
    color: white;
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.pricing-card__features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #bbd8a7;
    font-weight: bold;
    font-size: 1.25rem;
}

.pricing-card--popular .pricing-card__features li::before {
    color: #F8CBAD;
}

.pricing-card .btn {
    margin-top: 2rem;
    width: 100%;
}

.pricing-card--popular .btn--primary {
    background: white;
    color: #a387c1;
}

.pricing-card--popular .btn--primary:hover {
    background: #DEEBF7;
}

/* FAQ Section */
.faq {
    padding: 6rem 0;
    background: #f9fafb;
}

@media (max-width: 992px) {
    .faq {
        padding: 4rem 0;
    }
}

@media (max-width: 768px) {
    .faq {
        padding: 3rem 0;
    }
}

@media (max-width: 576px) {
    .faq {
        padding: 2.5rem 0;
    }
}

.faq__content {
    max-width: 800px;
    margin: 0 auto;
}

.faq h3 {
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.faq p {
    color: #6b7280;
    line-height: 1.7;
}

/* Comparison Table */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
}

.comparison-table th {
    background: #f9fafb;
    font-weight: 600;
    color: #1a1a1a;
}

.comparison-table td {
    color: #6b7280;
}

.highlight-row {
    background: #DEEBF7 !important;
}

.highlight-row td {
    color: #a387c1 !important;
    font-weight: 600;
}

/* Facts Section */
.facts {
    padding: 6rem 0;
    background: linear-gradient(135deg, #a387c1 0%, #C9B1D3 100%);
    color: white;
}

@media (max-width: 992px) {
    .facts {
        padding: 4rem 0;
    }
}

@media (max-width: 768px) {
    .facts {
        padding: 3rem 0;
    }
}

@media (max-width: 576px) {
    .facts {
        padding: 2.5rem 0;
    }
}

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

@media (max-width: 768px) {
    .facts__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
}

@media (max-width: 420px) {
    .facts__grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.fact-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.fact-card__number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #F8CBAD 0%, #bbd8a7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.fact-card__label {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.fact-card__source {
    font-size: 0.875rem;
    opacity: 0.7;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: #1a1a1a;
    color: white;
    text-align: center;
}

@media (max-width: 992px) {
    .cta-section {
        padding: 4rem 0;
    }
}

@media (max-width: 768px) {
    .cta-section {
        padding: 3rem 0;
    }
}

@media (max-width: 576px) {
    .cta-section {
        padding: 2.5rem 0;
    }
}

.cta-title {
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 4rem 0 2rem;
}

.footer__content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer__content {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

.footer__title {
    margin-bottom: 1rem;
    color: white;
}

.footer__description {
    color: #9ca3af;
    margin-bottom: 1rem;
}

.footer__address {
    color: #9ca3af;
    font-style: normal;
    margin-bottom: 1rem;
}

.footer__contact a {
    color: #9ca3af;
    display: block;
    margin-bottom: 0.5rem;
}

.footer__links {
    list-style: none;
}

.footer__links li {
    margin-bottom: 0.5rem;
}

.footer__links a {
    color: #9ca3af;
    transition: color 0.3s ease;
}

.footer__links a:hover {
    color: white;
}

.footer__bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer__legal {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer__legal a {
    color: #9ca3af;
    font-size: 0.875rem;
}

.footer__social {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: #9ca3af;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: white;
}

.footer__copyright {
    color: #9ca3af;
    font-size: 0.875rem;
    width: 100%;
    text-align: center;
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

@media (min-width: 768px) {
    .footer__copyright {
        width: auto;
        margin-top: 0;
        flex-direction: column;
        gap: 0.25rem;
    }
}

.powered-by {
    font-size: 0.75rem;
    color: #a387c1;
    margin: 0;
    font-weight: 400;
}

.powered-by strong {
    font-weight: 700;
}

/* Icons */
.icon {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

/* ============================================
   MOBILE NAVIGATION & BURGER MENU
   ============================================ */

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 3100;
    position: relative;
    -webkit-tap-highlight-color: transparent;
}

.mobile-menu-toggle:focus {
    outline: 2px solid #a387c1;
    outline-offset: 4px;
    border-radius: 8px;
}

/* Force display on mobile */
@media (max-width: 1023px) {
    .mobile-menu-toggle {
        display: block !important;
    }
    
    .header__cta {
        display: none !important;
    }
}

.hamburger {
    display: block;
    width: 28px;
    height: 3px;
    background: #1a1a1a;
    position: relative;
    transition: background 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 3px;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background: #1a1a1a;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 3px;
    left: 0;
}

.hamburger::before {
    top: -9px;
}

.hamburger::after {
    top: 9px;
}

/* Animated Hamburger to X */
.mobile-menu-toggle.is-active .hamburger {
    background: transparent;
}

.mobile-menu-toggle.is-active .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.mobile-menu-toggle.is-active .hamburger::after {
    transform: rotate(-45deg);
    top: 0;
}

/* Mobile Navigation Overlay */
.nav {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 1023px) {
    .mobile-menu-toggle {
        display: block;
    }

    .nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 85%;
        max-width: 420px;
        height: 100vh;
        height: 100dvh; /* Dynamic viewport height for mobile */
        background: #ffffff;
        box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
        z-index: 3000;
        padding: 6rem 2rem 2rem;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
        transform: translateX(110%);
        border-left: 1px solid #e5e7eb;
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
    }

    .nav.is-open {
        transform: translateX(0);
        box-shadow: -6px 0 32px rgba(0, 0, 0, 0.18);
    }

    .nav__list {
        flex-direction: column;
        gap: 0;
        align-items: stretch;
    }

    .nav__item {
        border-bottom: 1px solid #e5e7eb;
    }

    .nav__link {
        display: flex;
        align-items: center;
        padding: 1.25rem 0;
        font-size: 1.125rem;
        font-weight: 600;
        color: #1a1a1a;
        transition: all 0.3s ease;
        min-height: 48px;
    }

    .nav__link:active {
        background: #f3f4f6;
        padding-left: 1rem;
    }

    /* Mobile Menu Backdrop */
    .mobile-menu-backdrop {
        position: fixed;
        inset: 0;
        background: rgba(13, 13, 13, 0.7);
        backdrop-filter: blur(4px);
        z-index: 500;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .mobile-menu-backdrop.is-visible {
        opacity: 1;
        pointer-events: auto;
    }

    /* Mobile CTA in Menu */
    .mobile-cta-item {
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 2px solid #e5e7eb;
        border-bottom: none;
    }

    .mobile-cta-item .btn {
        width: 100%;
        margin-top: 0.5rem;
    }

    /* Body Lock when Menu Open */
    body.menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
        touch-action: none;
        -ms-touch-action: none;
    }

    /* Prevent scroll on backdrop */
    .mobile-menu-backdrop {
        overscroll-behavior: contain;
    }
}

/* Hide mobile CTA on desktop */
@media (min-width: 1024px) {
    .mobile-cta-item {
        display: none;
    }
    
    .header__cta {
        display: flex;
    }
}

@media (max-width: 1023px) {
    .header__content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
    }

    .nav {
        width: 85%;
        max-width: 420px;
    }

    .nav__list {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        flex-wrap: nowrap;
    }

    .nav__item {
        flex: 0 0 auto;
    }

    .nav__link {
        display: flex;
    }

    .header__cta {
        display: none !important;
    }

    .hero__content {
        text-align: center;
    }

    .hero__stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 767px) {
    .hero__stats {
        grid-template-columns: 1fr;
    }

    .trust-indicators__logos {
        gap: 2rem;
    }

    .trust-logo {
        height: 30px;
    }

    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* Loading and Animation States */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero__text,
.hero__form,
.service-card,
.fact-card {
    animation: fadeInUp 0.6s ease-out;
}

.service-card:nth-child(2) {
    animation-delay: 0.1s;
}

.service-card:nth-child(3) {
    animation-delay: 0.2s;
}

/* Focus States for Accessibility */
.btn:focus,
.form__input:focus,
.form__textarea:focus,
.nav__link:focus {
    outline: 2px solid #a387c1;
    outline-offset: 2px;
}

/* Benefits Section */
.benefits {
    padding: 6rem 0;
    background: #f9fafb;
}

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

@media (min-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.benefit-card__icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #bbd8a7 0%, #DDEBD3 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.benefit-card__title {
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.benefit-card__description {
    color: #6b7280;
    line-height: 1.6;
}

/* Process Timeline */
.process-section {
    padding: 6rem 0;
    background: white;
}

.process-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(135deg, #a387c1 0%, #C9B1D3 100%);
}

@media (min-width: 768px) {
    .process-timeline::before {
        left: 100px;
    }
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-number {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #a387c1 0%, #C9B1D3 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

@media (min-width: 768px) {
    .timeline-number {
        width: 200px;
        height: 200px;
        font-size: 3rem;
    }
}

.timeline-content {
    flex: 1;
    padding-top: 1rem;
}

@media (min-width: 768px) {
    .timeline-content {
        padding-top: 3rem;
    }
}

.timeline-content h3 {
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: #6b7280;
    line-height: 1.6;
}

/* Form Wrapper */
.form-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
}

@media (min-width: 1024px) {
    .form-wrapper {
        grid-template-columns: 1fr 1fr;
    }
}

.form-info {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
}

.form-info h2 {
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.form-info p {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.guarantee {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #bbd8a7;
    margin-bottom: 1.5rem;
}

.guarantee h3 {
    color: #bbd8a7;
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.guarantee p {
    color: #0D0D0D;
    margin: 0;
    font-size: 0.875rem;
}

.testimonial-small {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #a387c1;
}

.testimonial-small blockquote {
    font-style: italic;
    color: #374151;
    margin: 0 0 1rem 0;
    line-height: 1.6;
}

.testimonial-small cite {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 500;
}

.form-container {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
}

/* Legal Content */
.legal-content {
    padding: 4rem 0;
    background: #f9fafb;
}

.legal-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.legal-section {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border: 1px solid #e5e7eb;
}

.legal-section h2 {
    color: #1a1a1a;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #a387c1;
}

.legal-section h3 {
    color: #374151;
    margin: 1.5rem 0 0.5rem 0;
    font-size: 1.125rem;
}

.legal-section p {
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-section ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.legal-section li {
    color: #6b7280;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.company-info {
    background: #DEEBF7;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #a387c1;
    margin: 1rem 0;
}

.company-info h3 {
    color: #a387c1;
    margin-bottom: 0.5rem;
}

/* Article Styles */
.article-hero {
    background: linear-gradient(135deg, #a387c1 0%, #C9B1D3 100%);
    color: white;
    padding: 4rem 0;
}

.article-hero__content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.article-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.post-category {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.post-date,
.read-time,
.word-count {
    font-size: 0.875rem;
    opacity: 0.8;
}

.article-hero__title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.article-hero__subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

@media (min-width: 1024px) {
    .article-grid {
        grid-template-columns: 2fr 1fr;
    }
}

.article-main {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.article-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-section {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.sidebar-section h3 {
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.share-buttons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.share-btn {
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.share-btn:hover {
    background: #a387c1;
    color: white;
    border-color: #a387c1;
}

.related-articles {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.related-link {
    color: #6b7280;
    font-size: 0.875rem;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.related-link:hover {
    color: #a387c1;
}

.resources {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.resource-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #a387c1;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.resource-link:hover {
    color: #C9B1D3;
}

/* Table of Contents */
.toc {
    background: #f9fafb;
    padding: 2rem 0;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.toc__content {
    max-width: 800px;
    margin: 0 auto;
}

.toc__content h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.toc__list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
}

@media (min-width: 768px) {
    .toc__list {
        grid-template-columns: 1fr 1fr;
    }
}

.toc__list li {
    list-style: none;
}

.toc__list a {
    display: block;
    padding: 0.75rem 1rem;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    color: #374151;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.toc__list a:hover {
    background: #a387c1;
    color: white;
    border-color: #a387c1;
}

/* Newsletter Form */
.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.newsletter-form input {
    padding: 0.75rem;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    font-size: 1rem;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #a387c1;
    box-shadow: 0 0 0 3px rgba(163, 135, 193, 0.1);
}

.newsletter__privacy {
    font-size: 0.875rem;
    color: #6b7280;
    text-align: center;
    margin: 0;
}

/* Contact Info Cards */
.contact-info {
    padding: 6rem 0;
    background: #f9fafb;
}

.contact-info__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .contact-info__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .contact-info__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.contact-card__icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #a387c1 0%, #C9B1D3 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.contact-card__title {
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.contact-card__description {
    color: #6b7280;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.contact-card__link {
    font-weight: 600;
    color: #a387c1;
    font-size: 1.125rem;
}

/* Map Section */
.map-section {
    padding: 6rem 0;
    background: white;
}

.map-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
}

@media (min-width: 1024px) {
    .map-wrapper {
        grid-template-columns: 1fr 1fr;
    }
}

.map-info h2 {
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.map-info p {
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.office-features {
    background: #f9fafb;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.office-features h3 {
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.office-features ul {
    list-style: none;
    padding: 0;
}

.office-features li {
    color: #6b7280;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.office-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #bbd8a7;
    font-weight: bold;
}

.directions h3 {
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.direction-item {
    background: #f9fafb;
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 1rem;
    border-left: 4px solid #a387c1;
}

.direction-item strong {
    color: #1a1a1a;
    display: block;
    margin-bottom: 0.5rem;
}

.map-container {
    background: #f3f4f6;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    border: 1px solid #e5e7eb;
}

.map-placeholder {
    color: #6b7280;
}

.map-placeholder p {
    margin: 0.5rem 0;
}

/* Contact Form Section */
.contact-form-section {
    padding: 6rem 0;
    background: #f9fafb;
}

.contact-form-wrapper {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
}

.consultation-modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 1600;
}

.consultation-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(13, 13, 13, 0.85);
    backdrop-filter: blur(12px);
    transition: backdrop-filter 0.3s ease;
}

.consultation-modal.is-open {
    opacity: 1;
    pointer-events: auto;
}

.consultation-modal__dialog {
    position: relative;
    z-index: 1;
    background: #ffffff;
    border-radius: 28px;
    width: 100%;
    max-width: 1200px;
    padding: 0;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    max-height: 95vh;
    overflow: hidden;
    animation: modal-fade-in 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.consultation-modal__close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid #e5e7eb;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: #1a1a1a;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.consultation-modal__close:hover {
    background: #ef4444;
    border-color: #ef4444;
    color: white;
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 8px 20px rgba(239, 68, 68, 0.3);
}

.consultation-modal__close svg {
    width: 24px;
    height: 24px;
}

.consultation-modal__layout {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 500px;
    max-height: 90vh;
}

@media (min-width: 768px) {
    .consultation-modal__layout {
        grid-template-columns: 340px 1fr;
        max-height: 85vh;
    }
}

/* Left Side - Benefits */
.consultation-modal__benefits {
    background: linear-gradient(165deg, #a387c1 0%, #8b6fb8 50%, #7458a8 100%);
    padding: 2rem 1.75rem;
    color: white;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    overflow-y: auto;
    position: relative;
    order: 2;
}

@media (min-width: 768px) {
    .consultation-modal__benefits {
        padding: 2.5rem 2rem;
        order: 1;
    }
}

.consultation-modal__benefits::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.consultation-modal__benefits::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(187,216,167,0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.consultation-modal__header {
    position: relative;
    z-index: 1;
}

.consultation-modal__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #F8CBAD 0%, #f5ba94 100%);
    color: #1a1a1a;
    padding: 0.5rem 1.25rem;
    border-radius: 30px;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(248, 203, 173, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.consultation-modal__badge svg {
    width: 18px;
    height: 18px;
}

.consultation-modal__title {
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 0.75rem;
    color: white;
}

@media (min-width: 768px) {
    .consultation-modal__title {
        font-size: 2rem;
    }
}

.consultation-modal__subtitle {
    font-size: 1rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 0;
}

/* Value Propositions */
.consultation-modal__value-props {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.value-props__title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.875rem;
}

.value-prop {
    display: flex;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.value-prop:last-child {
    border-bottom: none;
}

.value-prop--icon-only {
    display: inline-flex;
    padding: 0;
    border-bottom: none;
}

.value-prop__icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: rgba(187, 216, 167, 0.25);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #bbd8a7;
}

.value-prop__icon svg {
    width: 18px;
    height: 18px;
}

.value-prop__icon-large {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.value-prop--icon-only:hover .value-prop__icon-large {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.value-prop__icon-large svg {
    width: 28px;
    height: 28px;
}

.value-prop__content {
    display: flex;
    align-items: center;
}

.value-prop__content strong {
    font-size: 0.95rem;
    font-weight: 600;
    color: white;
    line-height: 1.4;
}

/* Trust Section */
.consultation-modal__trust {
    position: relative;
    z-index: 1;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    text-align: center;
}

.trust-text {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-weight: 600;
}

.trust-text-small {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-weight: 500;
    line-height: 1.5;
    text-align: center;
}

.trust-text-compact {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    font-weight: 600;
    line-height: 1.6;
    text-align: center;
}

.social-proof__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

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

.stat-item__number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #F8CBAD;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-item__label {
    display: block;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.social-proof__logos {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.logos__title {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 600;
}

.logos__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    align-items: center;
}

.client-logo {
    width: 100%;
    height: 40px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.client-logo:hover {
    opacity: 1;
}

.social-proof__testimonial {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    border-left: 4px solid #bbd8a7;
    position: relative;
    backdrop-filter: blur(10px);
}

.quote-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    opacity: 0.15;
}

.social-proof__testimonial blockquote {
    font-size: 1rem;
    font-style: italic;
    line-height: 1.6;
    margin: 0 0 1rem 0;
    color: white;
}

.social-proof__testimonial cite {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    font-style: normal;
    font-weight: 600;
}

.social-proof__urgency {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, rgba(248, 203, 173, 0.25) 0%, rgba(248, 203, 173, 0.15) 100%);
    border-radius: 12px;
    border: 1px solid rgba(248, 203, 173, 0.3);
    font-size: 0.9rem;
    font-weight: 600;
    color: #F8CBAD;
}

.social-proof__urgency svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

/* Right Side - Form */
.consultation-modal__form-wrapper {
    background: white;
    padding: 2rem 1.75rem;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    order: 1;
}

@media (min-width: 768px) {
    .consultation-modal__form-wrapper {
        padding: 2.5rem 2rem;
        order: 2;
    }
}

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

.form-wrapper__header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .form-wrapper__header h3 {
        font-size: 1.625rem;
    }
}

.trust-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #DDEBD3;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #1a1a1a;
}

.trust-badge svg {
    width: 16px;
    height: 16px;
    fill: #bbd8a7;
}

.consultation-form__field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.consultation-form__field label {
    font-weight: 700;
    color: #1a1a1a;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.consultation-form__field label .required {
    color: #ef4444;
    font-weight: 700;
}

.consultation-form__field input,
.consultation-form__field textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border-radius: 14px;
    border: 2px solid #e5e7eb;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #ffffff;
    font-family: inherit;
}

.consultation-form__field input:hover,
.consultation-form__field textarea:hover {
    border-color: #d1d5db;
}

.consultation-form__field input:focus,
.consultation-form__field textarea:focus {
    border-color: #a387c1;
    box-shadow: 0 0 0 4px rgba(163, 135, 193, 0.12);
    outline: none;
    background: #fefefe;
}

.consultation-form__field input::placeholder,
.consultation-form__field textarea::placeholder {
    color: #9ca3af;
}

.consultation-form__row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 0;
}

.consultation-form__note {
    font-size: 0.8rem;
    color: #6b7280;
    margin: -0.5rem 0 1rem 0;
    font-style: italic;
}

.consultation-form__privacy-wrapper {
    background: #f9fafb;
    padding: 1rem;
    border-radius: 12px;
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
    border: 2px solid #e5e7eb;
}

.consultation-form__privacy-wrapper .consultation-form__privacy-check {
    margin-top: 10px;
}

.consultation-form__privacy-check {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    cursor: pointer;
}

.consultation-form__privacy-check input[type="checkbox"] {
    margin-top: 0.25rem;
    width: 22px;
    height: 22px;
    cursor: pointer;
    accent-color: #a387c1;
    flex-shrink: 0;
}

.consultation-form__privacy-check label {
    font-size: 0.875rem;
    color: #374151;
    line-height: 1.7;
    cursor: pointer;
    user-select: none;
}

.consultation-form__privacy-check label a {
    color: #a387c1;
    text-decoration: underline;
    font-weight: 600;
}

.consultation-form__privacy-check label a:hover {
    color: #8b6fb8;
}

.consultation-form__submit {
    margin-top: 0;
    font-size: 1.125rem;
    padding: 1.125rem 2rem;
    font-weight: 700;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(163, 135, 193, 0.3);
}

@media (min-width: 768px) {
    .consultation-form__submit {
        font-size: 1.2rem;
        padding: 1.25rem 2.5rem;
    }
}

.consultation-form__submit::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.consultation-form__submit:hover::before {
    width: 400px;
    height: 400px;
}

.consultation-form__submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.form-wrapper__footer {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid #f3f4f6;
}

.risk-reversal {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, #DDEBD3 0%, #f0f9eb 100%);
    border-radius: 14px;
    border: 2px solid #bbd8a7;
}

.risk-reversal svg {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    fill: #bbd8a7;
}

.risk-reversal div {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.risk-reversal strong {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
}

.risk-reversal span {
    font-size: 0.875rem;
    color: #4b5563;
}

.form__hint,
.contact-form__hint {
    font-size: 0.875rem;
    color: #6b7280;
    margin-top: 0.75rem;
}

body.modal-open {
    overflow: hidden;
}

@keyframes modal-fade-in {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Mobile Styles */

@media (max-width: 767px) {
    .consultation-modal {
        padding: 0.5rem;
    }

    .consultation-modal__dialog {
        border-radius: 16px;
        max-height: 96vh;
    }

    .consultation-modal__close {
        width: 38px;
        height: 38px;
        top: 0.75rem;
        right: 0.75rem;
    }

    .consultation-modal__benefits {
        padding: 1.5rem 1.25rem;
    }

    .consultation-modal__form-wrapper {
        padding: 1.5rem 1.25rem;
    }

    .consultation-modal__title {
        font-size: 1.5rem;
    }

    .consultation-modal__subtitle {
        font-size: 0.95rem;
    }

    .consultation-form__row {
        grid-template-columns: 1fr;
    }

    .form-wrapper__header h3 {
        font-size: 1.375rem;
    }

    .consultation-form__submit {
        font-size: 1rem;
        padding: 1rem 1.5rem;
    }

    .consultation-form__field input,
    .consultation-form__field textarea {
        padding: 0.875rem 1rem;
        font-size: 0.95rem;
    }
}

/* Content Section with Enhanced Structure */
.content-section {
    padding: 6rem 0;
    background: white;
}

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

@media (min-width: 1024px) {
    .content-grid {
        grid-template-columns: 2fr 1fr;
    }
}

.content-text {
    background: white;
}

.content-text h3 {
    color: #1a1a1a;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid #a387c1;
    position: relative;
}

.content-text h3::before {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #F8CBAD, #bbd8a7);
}

.content-text h4 {
    color: #1a1a1a;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    background: linear-gradient(135deg, #DEEBF7 0%, #ffffff 100%);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #a387c1;
}

.content-text p {
    color: #374151;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.content-text strong {
    color: #1a1a1a;
    font-weight: 700;
}

.content-text ul {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.content-text ul li {
    padding: 1rem 0;
    padding-left: 2.5rem;
    position: relative;
    color: #374151;
    font-size: 1.05rem;
    line-height: 1.7;
    border-bottom: 1px solid #e5e7eb;
}

.content-text ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #bbd8a7;
    font-weight: bold;
    font-size: 1.5rem;
    background: #DDEBD3;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* Testimonial Cards with Color */
.testimonial {
    background: linear-gradient(135deg, #DDEBD3 0%, #ffffff 100%);
    padding: 2.5rem;
    border-radius: 20px;
    margin: 2.5rem 0;
    border-left: 6px solid #bbd8a7;
    box-shadow: 0 8px 30px rgba(187, 216, 167, 0.15);
    position: relative;
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 6rem;
    color: #bbd8a7;
    opacity: 0.2;
    font-family: Georgia, serif;
}

.testimonial blockquote {
    font-style: italic;
    color: #374151;
    font-size: 1.125rem;
    margin: 0 0 1.5rem 0;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.testimonial cite {
    font-size: 1rem;
    color: #1a1a1a;
    font-weight: 700;
    font-style: normal;
    display: block;
}

/* Sidebar Widgets with Enhanced Styling */
.content-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-widget {
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
    padding: 2rem;
    border-radius: 16px;
    border: 2px solid #e5e7eb;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.sidebar-widget:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #a387c1;
}

.sidebar-widget h3 {
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e5e7eb;
}

.sidebar-widget ul {
    list-style: none;
    padding: 0;
}

.sidebar-widget ul li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: #374151;
    border-bottom: 1px solid #f3f4f6;
}

.sidebar-widget ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #bbd8a7;
    font-weight: bold;
}

.sidebar-widget p {
    color: #6b7280;
    margin: 0.5rem 0;
    line-height: 1.6;
}

.sidebar-widget a {
    color: #a387c1;
    font-weight: 500;
    transition: color 0.3s ease;
}

.sidebar-widget a:hover {
    color: #C9B1D3;
}

/* FAQ Items with Beautiful Design */
.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    margin-bottom: 1.5rem;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.faq-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border-color: #a387c1;
}

.faq-item h4 {
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.faq-item h4::before {
    content: '?';
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #a387c1 0%, #C9B1D3 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.faq-item p {
    color: #6b7280;
    line-height: 1.7;
    margin: 0;
}

/* CTA Box with Vibrant Colors */
.cta-box {
    background: linear-gradient(135deg, #a387c1 0%, #C9B1D3 100%);
    padding: 3rem;
    border-radius: 24px;
    text-align: center;
    margin: 3rem 0;
    box-shadow: 0 15px 50px rgba(163, 135, 193, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

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

.cta-box p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

.cta-box .btn {
    background: white;
    color: #a387c1;
    font-weight: 700;
    font-size: 1.25rem;
    padding: 1.25rem 3rem;
    position: relative;
    z-index: 1;
}

.cta-box .btn:hover {
    background: #DEEBF7;
    transform: translateY(-4px);
}

/* Hero Small Variant */
.hero--small {
    padding: 4rem 0 3rem;
}

.hero--small .hero__content {
    grid-template-columns: 1fr;
    text-align: center;
}

/* Enhanced Table Styling */
.comparison-table {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.comparison-table th {
    background: linear-gradient(135deg, #0D0D0D 0%, #a387c1 100%);
    color: white;
    font-weight: 700;
    padding: 1.5rem 1rem;
}

.comparison-table tr:hover {
    background: #f9fafb;
}

.comparison-table td {
    padding: 1.25rem 1rem;
    font-size: 1.05rem;
}

/* Info Boxes */
.info-box {
    background: linear-gradient(135deg, #DEEBF7 0%, #ffffff 100%);
    padding: 2rem;
    border-radius: 16px;
    margin: 2rem 0;
    border-left: 6px solid #a387c1;
    box-shadow: 0 4px 20px rgba(163, 135, 193, 0.15);
}

.info-box h4 {
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.info-box p {
    color: #374151;
    line-height: 1.7;
    margin: 0;
}

.warning-box {
    background: linear-gradient(135deg, #F8CBAD 0%, #ffffff 100%);
    padding: 2rem;
    border-radius: 16px;
    margin: 2rem 0;
    border-left: 6px solid #F8CBAD;
    box-shadow: 0 4px 20px rgba(248, 203, 173, 0.15);
}

.warning-box h4 {
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.warning-box p {
    color: #374151;
    line-height: 1.7;
    margin: 0;
}

.success-box {
    background: linear-gradient(135deg, #DDEBD3 0%, #ffffff 100%);
    padding: 2rem;
    border-radius: 16px;
    margin: 2rem 0;
    border-left: 6px solid #bbd8a7;
    box-shadow: 0 4px 20px rgba(187, 216, 167, 0.15);
}

.success-box h4 {
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.success-box p {
    color: #374151;
    line-height: 1.7;
    margin: 0;
}

/* Stats Grid with Colors */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.stat-box {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    border-color: #a387c1;
}

.stat-box:nth-child(1) {
    background: linear-gradient(135deg, #DEEBF7 0%, #ffffff 100%);
    border-color: #a387c1;
}

.stat-box:nth-child(2) {
    background: linear-gradient(135deg, #F8CBAD 0%, #ffffff 100%);
    border-color: #F8CBAD;
}

.stat-box:nth-child(3) {
    background: linear-gradient(135deg, #DDEBD3 0%, #ffffff 100%);
    border-color: #bbd8a7;
}

.stat-box:nth-child(4) {
    background: linear-gradient(135deg, #C9B1D3 0%, #ffffff 100%);
    border-color: #a387c1;
}

.stat-box__number {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-box__label {
    font-size: 1.125rem;
    color: #6b7280;
    font-weight: 600;
}

/* Feature Cards */
.feature-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .feature-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .feature-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    border-color: #a387c1;
}

.feature-card__icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #a387c1 0%, #C9B1D3 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 2rem;
}

.feature-card h4 {
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.feature-card p {
    color: #6b7280;
    line-height: 1.7;
    margin: 0;
}

/* Blog Search and Filter Styles */
.blog-search {
    padding: 3rem 0;
    background: #f9fafb;
    border-bottom: 1px solid #e5e7eb;
}

.search-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.search-box {
    position: relative;
    margin-bottom: 2rem;
}

.search-icon {
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    color: #6b7280;
    pointer-events: none;
}

.search-input {
    width: 100%;
    padding: 1.25rem 1.5rem 1.25rem 4rem;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.search-input:focus {
    outline: none;
    border-color: #a387c1;
    box-shadow: 0 6px 25px rgba(163, 135, 193, 0.2);
}

.filter-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid #e5e7eb;
    border-radius: 24px;
    background: white;
    color: #6b7280;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.filter-btn:hover {
    border-color: #a387c1;
    color: #a387c1;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(163, 135, 193, 0.2);
}

.filter-btn.active {
    background: linear-gradient(135deg, #a387c1 0%, #8b5fbf 100%);
    color: white;
    border-color: #a387c1;
    box-shadow: 0 4px 12px rgba(163, 135, 193, 0.3);
}

.search-results-info {
    text-align: center;
    margin-top: 1rem;
}

.results-count {
    font-size: 1rem;
    color: #6b7280;
    font-weight: 500;
}

/* Blog Posts Section */
.blog-posts {
    padding: 4rem 0;
    background: white;
}

.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

@media (min-width: 768px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid #f3f4f6;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-card.hidden {
    display: none;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: #a387c1;
}

.blog-card__image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    position: relative;
}

.blog-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-card__image img {
    transform: scale(1.08);
}

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

.blog-card__meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.blog-card__title {
    font-size: 1.375rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.blog-card__title a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card__title a:hover {
    color: #a387c1;
}

.blog-card__excerpt {
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex: 1;
}

.blog-card__stats {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #f3f4f6;
    font-size: 0.875rem;
    color: #9ca3af;
}

.blog-card__stats span {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.blog-card__stats span::before {
    content: '⏱️';
    font-size: 1rem;
}

.blog-card__stats .word-count::before {
    content: '📄';
}

/* Featured Article */
.featured-article {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
}

.featured-post {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.1);
    border: 3px solid #f3f4f6;
    transition: all 0.4s ease;
}

@media (min-width: 1024px) {
    .featured-post {
        grid-template-columns: 1fr 1fr;
    }
}

.featured-post:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: #a387c1;
}

.featured-post__image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%);
}

@media (min-width: 1024px) {
    .featured-post__image {
        height: 100%;
        min-height: 500px;
    }
}

.featured-post__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.featured-post:hover .featured-post__image img {
    transform: scale(1.05);
}

.featured-post__content {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-post__meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.featured-post__title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.featured-post__title a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.featured-post__title a:hover {
    color: #a387c1;
}

.featured-post__excerpt {
    color: #4b5563;
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.featured-post__stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f9fafb;
    border-radius: 12px;
    font-size: 0.95rem;
    color: #6b7280;
}

.featured-post__stats span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.featured-post__stats span::before {
    content: '⏱️';
    font-size: 1.25rem;
}

.featured-post__stats .word-count::before {
    content: '📄';
}

/* Blog Actions */
.blog-actions {
    text-align: center;
    margin-top: 4rem;
}

/* Newsletter Section */
.newsletter {
    padding: 6rem 0;
    background: linear-gradient(135deg, #a387c1 0%, #C9B1D3 100%);
    color: white;
    text-align: center;
}

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

.newsletter__title {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.newsletter__subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

.newsletter__form-group {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto 1rem;
}

@media (max-width: 640px) {
    .newsletter__form-group {
        flex-direction: column;
    }
}

.newsletter__input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
}

.newsletter__input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.newsletter__privacy {
    font-size: 0.875rem;
    opacity: 0.8;
}

/* Categories Section */
.categories {
    padding: 6rem 0;
    background: #f9fafb;
}

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

@media (min-width: 768px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.category-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid #f3f4f6;
    transition: all 0.3s ease;
    text-align: center;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: #a387c1;
}

.category-card__icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #a387c1 0%, #C9B1D3 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.category-card__icon .icon {
    width: 36px;
    height: 36px;
    fill: currentColor;
}

.category-card__title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.category-card__description {
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.category-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #a387c1;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.category-card__link:hover {
    color: #C9B1D3;
    transform: translateX(4px);
}

/* No Results Message */
.no-results {
    text-align: center;
    padding: 4rem 2rem;
    background: #f9fafb;
    border-radius: 16px;
    margin: 2rem 0;
}

.no-results p {
    font-size: 1.125rem;
    color: #6b7280;
    margin: 0;
}

/* Pagination Styles */
.pagination {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid #e5e7eb;
}

.pagination__container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.pagination__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    color: #374151;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.pagination__btn:hover:not(:disabled) {
    background: #a387c1;
    border-color: #a387c1;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(163, 135, 193, 0.3);
}

.pagination__btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    background: #f9fafb;
}

.pagination__btn .icon {
    width: 18px;
    height: 18px;
}

.pagination__pages {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.pagination__number {
    min-width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 0.75rem;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    color: #374151;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination__number:not(.ellipsis):hover {
    background: #f3f4f6;
    border-color: #a387c1;
    color: #a387c1;
    transform: translateY(-2px);
}

.pagination__number.active {
    background: linear-gradient(135deg, #a387c1 0%, #8b5fbf 100%);
    border-color: #a387c1;
    color: white;
    box-shadow: 0 4px 12px rgba(163, 135, 193, 0.3);
    cursor: default;
}

.pagination__number.ellipsis {
    border: none;
    background: transparent;
    cursor: default;
    color: #9ca3af;
    font-weight: 700;
    pointer-events: none;
}

.pagination__info {
    text-align: center;
    color: #6b7280;
    font-size: 0.95rem;
    font-weight: 500;
    margin-top: 1rem;
    padding: 0.75rem;
    background: #f9fafb;
    border-radius: 8px;
}

/* Responsive Pagination */
@media (max-width: 640px) {
    .pagination__btn {
        padding: 0.625rem 1rem;
        font-size: 0.875rem;
    }

    .pagination__btn span:not(.icon) {
        display: none;
    }
    
    /* ============================================
       RESPONSIVE BREAKPOINTS & MOBILE LAYOUTS
       ============================================ */
    
    /* Tablet Landscape: 1200px */
    @media (max-width: 1200px) {
        .container {
            max-width: 1000px;
        }
    
        h1 {
            font-size: clamp(1.875rem, 5vw, 3rem);
        }
    
        h2 {
            font-size: clamp(1.5rem, 4vw, 2.25rem);
        }
    }
    
    /* Tablet Portrait: 992px */
    @media (max-width: 992px) {
        .container {
            padding: 0 1.5rem;
        }
    
        .hero {
            padding: 4rem 0 3rem;
        }
    
        .section-header {
            margin-bottom: 3rem;
        }
    
        .content-section {
            padding: 4rem 0;
        }
    }
    
    /* Mobile Large: 768px */
    @media (max-width: 768px) {
        html {
            font-size: 15px;
        }
    
        p {
            font-size: 1rem;
        }
    
        .container {
            padding: 0 1.25rem;
        }
    
        .hero {
            padding: 3rem 0 2rem;
        }
    
        .section-header {
            margin-bottom: 2.5rem;
        }
    
        .section-title {
            font-size: clamp(1.5rem, 6vw, 2rem);
            line-height: 1.3;
        }
    
        .section-subtitle {
            font-size: 1rem;
        }
    
        .content-section {
            padding: 3rem 0;
        }
    
        .services,
        .facts,
        .pricing,
        .process {
            padding: 3rem 0;
        }
    
        /* Header Mobile */
        .header {
            padding: 0;
        }
    
        .header__content {
            padding: 1rem 0;
            justify-content: space-between;
            align-items: center;
        }
    
        .logo__image {
            max-height: 40px;
        }
    
        .header__cta {
            display: none;
        }
    
        /* Hero Mobile */
        .hero__content {
            text-align: center;
            gap: 2rem;
        }
    
        .hero__title {
            font-size: clamp(1.75rem, 7vw, 2.5rem);
            line-height: 1.2;
            margin-bottom: 1rem;
        }
    
        .hero__subtitle {
            font-size: 1.05rem;
            margin-bottom: 1.5rem;
        }
    
        .hero__stats {
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
        }
    
        .stat {
            padding: 1.25rem 0.75rem;
        }
    
        .stat__number {
            font-size: 1.75rem;
        }
    
        .stat__label {
            font-size: 0.8rem;
        }
    
        .hero__cta {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }
    
        .hero__cta .btn {
            width: 100%;
        }
    
        /* Layout Stacking */
        .content-grid,
        .form-wrapper,
        .map-wrapper,
        .article-grid {
            grid-template-columns: 1fr !important;
            gap: 2rem;
        }
    
        .services__grid,
        .feature-cards,
        .blog-grid {
            grid-template-columns: 1fr !important;
            gap: 1.5rem;
        }
    
        .stats-grid,
        .facts__grid {
            grid-template-columns: repeat(2, 1fr) !important;
            gap: 1rem;
        }
    
        .pricing-table {
            grid-template-columns: 1fr !important;
            gap: 2rem;
        }
    
        .pricing-card--popular {
            transform: none;
        }
    
        /* Team Section Mobile */
        .eb-team-section > div[style*="grid"] {
            grid-template-columns: 1fr !important;
            gap: 2rem !important;
        }
    
        .process-steps {
            grid-template-columns: 1fr !important;
            gap: 2rem;
        }
    
        .form-row,
        .consultation-form__row {
            grid-template-columns: 1fr !important;
            gap: 1rem;
        }
    
        /* Sidebar to Bottom */
        .content-sidebar {
            order: 2;
        }
    
        .content-text {
            order: 1;
        }
    }
    
    /* Mobile Medium: 576px */
    @media (max-width: 576px) {
        html {
            font-size: 14px;
        }
    
        .container {
            padding: 0 1rem;
        }
    
        h1 {
            font-size: clamp(1.75rem, 8vw, 2.5rem);
            line-height: 1.2;
        }
    
        h2 {
            font-size: clamp(1.375rem, 6vw, 1.875rem);
            line-height: 1.3;
        }
    
        h3 {
            font-size: clamp(1.125rem, 5vw, 1.5rem);
        }
    
        .btn {
            padding: 0.875rem 1.25rem;
            font-size: 0.95rem;
        }
    
        .btn--large {
            padding: 1rem 1.5rem;
            font-size: 1rem;
        }
    }
    
    /* Mobile Small: 420px */
    @media (max-width: 420px) {
        html {
            font-size: 13px;
        }
    
        .container {
            padding: 0 0.875rem;
        }
    
        .section-header {
            margin-bottom: 2rem;
        }
    
        .content-section {
            padding: 2.5rem 0;
        }
    }
    
    /* Mobile Specific Optimizations */
    @media (max-width: 767px) {
        .hero {
            padding: 2.5rem 0 2rem;
        }
    
        .hero__title {
            font-size: clamp(1.5rem, 8vw, 2.25rem);
            margin-bottom: 0.875rem;
        }
    
        .hero__subtitle {
            font-size: 1rem;
            margin-bottom: 1.25rem;
        }
    
        .hero__stats {
            grid-template-columns: 1fr;
            gap: 0.75rem;
        }
    
        .stat {
            padding: 1rem;
        }
    
        .hero__background img {
            object-position: center;
        }
    
        /* Trust Indicators */
        .trust-indicators {
            padding: 2rem 0;
        }
    
        .trust-indicators__logos {
            gap: 1.5rem;
            flex-wrap: wrap;
            justify-content: center;
        }
    
        .trust-logo {
            height: 28px;
            max-width: 100px;
        }
    
        .trust-indicators__text {
            font-size: 0.875rem;
            padding: 0 1rem;
        }
    
        /* Footer */
        .footer {
            padding: 3rem 0 1.5rem;
        }
    
        .footer__content {
            gap: 2.5rem;
        }
    
        .footer__bottom {
            flex-direction: column;
            text-align: center;
            gap: 1.5rem;
        }
    
        .footer__legal {
            flex-direction: column;
            gap: 0.75rem;
        }
    
        .footer__social {
            justify-content: center;
        }
    
        .cta-buttons {
            flex-direction: column;
            align-items: stretch;
            gap: 0.75rem;
        }
    
        .cta-buttons .btn {
            width: 100%;
        }
    }
    
    /* ============================================
       MOBILE TOUCH OPTIMIZATIONS
       ============================================ */
    
    @media (max-width: 768px) {
        /* Larger Touch Targets - Min 44x44px */
        .btn,
        .nav__link,
        a.btn,
        button {
            min-height: 44px;
            padding: 0.875rem 1.5rem;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }
    
        /* Remove Hover Effects on Touch Devices */
        @media (hover: none) and (pointer: coarse) {
            .btn:hover,
            .service-card:hover,
            .feature-card:hover,
            .blog-card:hover {
                transform: none;
            }
    
            /* Replace with Active/Tap Effects */
            .btn:active {
                transform: scale(0.97);
                opacity: 0.9;
            }
    
            .service-card:active,
            .feature-card:active,
            .blog-card:active {
                transform: translateY(-4px);
                transition: transform 0.1s ease;
            }
        }
    
        /* Form Elements Touch Optimization */
        .form__input,
        .form__textarea,
        .form__select {
            min-height: 48px;
            font-size: 16px;
            padding: 1rem;
        }
    
        .form__textarea {
            min-height: 120px;
        }
    
        input[type="checkbox"],
        input[type="radio"] {
            min-width: 24px;
            min-height: 24px;
            cursor: pointer;
        }
    
        * {
            -webkit-tap-highlight-color: rgba(163, 135, 193, 0.2);
        }
    
        a, button {
            -webkit-tap-highlight-color: rgba(163, 135, 193, 0.3);
        }
    }
    
    /* ============================================
       MOBILE PERFORMANCE OPTIMIZATIONS
       ============================================ */
    
    @media (max-width: 768px) {
        .service-card,
        .feature-card,
        .blog-card {
            animation: none;
        }
    
        .service-card,
        .blog-card,
        .feature-card {
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
        }
    
        .service-card:hover,
        .blog-card:hover,
        .feature-card:hover {
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
        }
    
        .hero::before {
            opacity: 0.2;
        }
    
        .mobile-menu-backdrop {
            backdrop-filter: blur(2px);
        }
    
        img {
            image-rendering: -webkit-optimize-contrast;
            image-rendering: crisp-edges;
        }
    }
    
    /* ============================================
       MOBILE TYPOGRAPHY OPTIMIZATION
       ============================================ */
    
    @media (max-width: 768px) {
        body {
            font-size: 1rem;
            line-height: 1.6;
            -webkit-text-size-adjust: 100%;
            text-size-adjust: 100%;
        }
    
        h1, h2, h3, h4, h5, h6 {
            word-wrap: break-word;
            overflow-wrap: break-word;
            hyphens: auto;
        }
    
        p, li {
            max-width: 100%;
            word-wrap: break-word;
            overflow-wrap: break-word;
        }
    
        .content-text p {
            line-height: 1.75;
            margin-bottom: 1.25rem;
        }
    
        .content-text h3 {
            margin-top: 2rem;
            margin-bottom: 1rem;
            font-size: 1.375rem;
        }
    
        .content-text h4 {
            margin-top: 1.5rem;
            font-size: 1.125rem;
        }
    
        .comparison-table {
            font-size: 0.8rem;
            display: block;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
        }
    
        .comparison-table th,
        .comparison-table td {
            padding: 0.75rem 0.5rem;
            min-width: 100px;
        }
    }
    
    /* ============================================
       MOBILE MODAL OPTIMIZATIONS
       ============================================ */
    
    @media (max-width: 768px) {
        .consultation-modal {
            padding: 0;
        }
    
        .consultation-modal__dialog {
            max-width: 100%;
            width: 100%;
            height: 100vh;
            max-height: 100vh;
            border-radius: 0;
            margin: 0;
        }
    
        .consultation-modal__layout {
            grid-template-columns: 1fr;
            max-height: 100vh;
        }
    
        .consultation-modal__benefits {
            max-height: 35vh;
            overflow-y: auto;
            order: 2;
        }
    
        .consultation-modal__form-wrapper {
            flex: 1;
            overflow-y: auto;
            order: 1;
        }
    
        .consultation-modal__close {
            top: 1rem;
            right: 1rem;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.98);
        }
    
        .consultation-form__field input,
        .consultation-form__field textarea {
            font-size: 16px;
        }
    
        .value-props__title {
            font-size: 0.8rem;
        }
    
        .social-proof__stats {
            grid-template-columns: repeat(3, 1fr);
            gap: 0.75rem;
            padding: 1rem;
        }
    
        .stat-item__number {
            font-size: 1.5rem;
        }
    
        .stat-item__label {
            font-size: 0.7rem;
        }
    }
    
    /* ============================================
       MOBILE IMAGE & MEDIA OPTIMIZATIONS
       ============================================ */
    
    @media (max-width: 768px) {
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
    
        .blog-card__image,
        .featured-post__image {
            height: 200px;
        }
    
        .service-card__icon,
        .benefit-card__icon,
        .contact-card__icon {
            width: 50px;
            height: 50px;
        }
    
        .feature-card__icon {
            width: 60px;
            height: 60px;
        }
    
        .logo__image {
            max-height: 36px;
        }
    
        .client-logo {
            height: 32px;
        }
    
        .eb-team-section img {
            max-width: 150px;
            height: 150px;
            margin: 0 auto;
        }
    }
    
    /* ============================================
       MOBILE CTA SECTIONS
       ============================================ */
    
    @media (max-width: 768px) {
        .cta-section {
            padding: 3rem 0;
        }
    
        .cta-title {
            font-size: clamp(1.5rem, 6vw, 2rem);
            margin-bottom: 0.875rem;
        }
    
        .cta-subtitle {
            font-size: 1rem;
            margin-bottom: 2rem;
        }
    
        .cta-section > div > div[style*="grid-template-columns"] {
            grid-template-columns: 1fr !important;
            gap: 2rem !important;
            text-align: center;
        }
    
        .cta-section img {
            width: 150px !important;
            height: 150px !important;
            margin: 0 auto !important;
        }
    
        .cta-section a[href^="mailto"],
        .cta-section a[href^="tel"] {
            font-size: 0.95rem;
            justify-content: center;
        }
    }
    
    /* ============================================
       MOBILE FAQ & BLOG SECTIONS
       ============================================ */
    
    @media (max-width: 768px) {
        .faq {
            padding: 3rem 0;
        }
    
        .faq h3 {
            font-size: 1.125rem;
            line-height: 1.4;
        }
    
        .faq p {
            font-size: 0.95rem;
            line-height: 1.7;
        }
    
        .faq-item {
            padding: 1.5rem;
            margin-bottom: 1rem;
        }
    
        .blog-search {
            padding: 2rem 0;
        }
    
        .search-input {
            padding: 1rem 1rem 1rem 3.5rem;
            font-size: 16px;
        }
    
        .search-icon {
            left: 1rem;
            width: 20px;
            height: 20px;
        }
    
        .filter-buttons {
            justify-content: flex-start;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            padding-bottom: 0.5rem;
        }
    
        .filter-btn {
            flex-shrink: 0;
            min-height: 44px;
            padding: 0.875rem 1.5rem;
        }
    
        .blog-card__title {
            font-size: 1.125rem;
        }
    
        .blog-card__content {
            padding: 1.5rem;
        }
    
        .featured-post {
            gap: 0;
        }
    
        .featured-post__content {
            padding: 2rem 1.5rem;
        }
        
        /* ============================================
           COMPREHENSIVE MOBILE OPTIMIZATIONS
           ============================================ */
        
        /* Mobile Touch Optimizations */
        @media (max-width: 768px) {
            /* Larger touch targets for all interactive elements */
            a, button, .btn, .nav__link,
            input[type="submit"], input[type="button"] {
                min-height: 44px;
                min-width: 44px;
                -webkit-tap-highlight-color: rgba(163, 135, 193, 0.2);
            }
            
            /* Improve spacing between clickable elements */
            .nav__list {
                gap: 0.5rem;
            }
            
            .btn + .btn {
                margin-top: 0.75rem;
            }
            
            /* Active state feedback for touch */
            @media (hover: none) and (pointer: coarse) {
                .btn:active {
                    transform: scale(0.97);
                    transition: transform 0.1s ease;
                }
                
                .service-card:active,
                .blog-card:active,
                .feature-card:active {
                    transform: translateY(-4px);
                    transition: transform 0.15s ease;
                }
                
                .nav__link:active {
                    background-color: rgba(163, 135, 193, 0.1);
                }
            }
            
            /* Prevent text selection on tap */
            .btn, .service-card, .blog-card {
                -webkit-user-select: none;
                user-select: none;
            }
        }
        
        /* Mobile Performance Optimizations */
        @media (max-width: 768px) {
            /* Reduce animations for better performance */
            .service-card,
            .feature-card,
            .blog-card,
            .fact-card {
                animation: none !important;
            }
            
            /* Simplify box shadows */
            .service-card,
            .blog-card,
            .feature-card,
            .sidebar-widget {
                box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
            }
            
            .service-card:hover,
            .blog-card:hover,
            .feature-card:hover {
                box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
            }
            
            /* Reduce backdrop blur for performance */
            .mobile-menu-backdrop {
                backdrop-filter: blur(2px);
            }
            
            .hero::before {
                opacity: 0.2;
            }
            
            /* Optimize images */
            img {
                image-rendering: -webkit-optimize-contrast;
                image-rendering: crisp-edges;
                max-width: 100%;
                height: auto;
            }
        }
        
        /* Mobile Modal Optimizations */
        @media (max-width: 768px) {
            .consultation-modal {
                padding: 0;
            }
            
            .consultation-modal__dialog {
                max-width: 100%;
                width: 100%;
                height: 100vh;
                height: 100dvh;
                max-height: 100vh;
                border-radius: 0;
                margin: 0;
            }
            
            .consultation-modal__layout {
                grid-template-columns: 1fr;
                max-height: 100vh;
                height: 100vh;
            }
            
            .consultation-modal__benefits {
                max-height: 35vh;
                overflow-y: auto;
                order: 2;
            }
            
            .consultation-modal__form-wrapper {
                flex: 1;
                overflow-y: auto;
                order: 1;
            }
            
            .consultation-modal__close {
                width: 42px;
                height: 42px;
                top: 1rem;
                right: 1rem;
                z-index: 100;
            }
        }
        
        /* Mobile Table Optimizations */
        @media (max-width: 768px) {
            .comparison-table {
                font-size: 0.8rem;
                display: block;
                overflow-x: auto;
                -webkit-overflow-scrolling: touch;
                border-radius: 12px;
            }
            
            .comparison-table th,
            .comparison-table td {
                padding: 0.75rem 0.5rem;
                min-width: 100px;
                white-space: nowrap;
            }
            
            .comparison-table th:first-child,
            .comparison-table td:first-child {
                position: sticky;
                left: 0;
                background: white;
                z-index: 1;
            }
        }
        
        /* Mobile Image Optimizations */
        @media (max-width: 768px) {
            .blog-card__image,
            .featured-post__image {
                height: 200px;
            }
            
            .service-card__icon,
            .benefit-card__icon,
            .contact-card__icon {
                width: 50px;
                height: 50px;
            }
            
            .feature-card__icon {
                width: 60px;
                height: 60px;
            }
            
            .logo__image {
                max-height: 40px;
            }
        }
        
        /* Mobile CTA Section Optimizations */
        @media (max-width: 768px) {
            .cta-section [style*="grid-template-columns"] {
                grid-template-columns: 1fr !important;
                gap: 2rem !important;
                text-align: center;
            }
            
            .cta-section img[style*="200px"] {
                width: 150px !important;
                height: 150px !important;
                margin: 0 auto !important;
            }
        }
        
        /* Mobile Team Section */
        @media (max-width: 768px) {
            .eb-team-section [style*="grid"] {
                grid-template-columns: 1fr !important;
                gap: 2rem !important;
            }
            
            .eb-team-section img {
                max-width: 150px;
                height: 150px;
                margin: 0 auto;
            }
        }
        
        /* Mobile Landscape Optimizations */
        @media (max-width: 768px) and (orientation: landscape) {
            .hero {
                padding: 2rem 0;
                min-height: 300px;
            }
            
            .consultation-modal__benefits {
                display: none;
            }
            
            .consultation-modal__form-wrapper {
                order: 1;
            }
        }
        
        /* Reduce Motion for Accessibility */
        @media (prefers-reduced-motion: reduce) {
            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
                scroll-behavior: auto !important;
            }
        }
        
        /* High DPI Display Optimizations */
        @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
            img {
                image-rendering: -webkit-optimize-contrast;
            }
        }
        
        /* Mobile Utility Classes */
        @media (max-width: 768px) {
            .mobile-hidden {
                display: none !important;
            }
            
            .mobile-visible {
                display: block !important;
            }
            
            .mobile-text-center {
                text-align: center !important;
            }
            
            .mobile-full-width {
                width: 100% !important;
            }
            
            .mobile-stack {
                display: flex;
                flex-direction: column;
            }
        }
        
        /* Safe Area Insets for Notched Devices */
        @supports (padding: max(0px)) {
            .header,
            .footer,
            .consultation-modal__dialog {
                padding-left: max(1rem, env(safe-area-inset-left));
                padding-right: max(1rem, env(safe-area-inset-right));
            }
            
            .nav {
                padding-left: max(2rem, env(safe-area-inset-left));
                padding-right: max(2rem, env(safe-area-inset-right));
            }
        }
        
        /* Print Optimizations */
        @media print {
            .header__cta,
            .mobile-menu-toggle,
            .cta-section,
            .blog-search,
            .pagination,
            .consultation-modal {
                display: none !important;
            }
            
            .hero {
                background: none;
                color: #1a1a1a;
            }
            
            * {
                break-inside: avoid;
            }
        }
    
        .featured-post__title {
            font-size: 1.5rem;
        }
    
        .featured-post__excerpt {
            font-size: 1rem;
        }
    
        .pagination__container {
            gap: 0.375rem;
        }
    
        .pagination__btn {
            padding: 0.75rem 1rem;
            font-size: 0.875rem;
        }
    
        .pagination__number {
            min-width: 40px;
            height: 40px;
            font-size: 0.875rem;
        }
    }
    
    /* ============================================
       MOBILE PERFORMANCE: Reduce Motion
       ============================================ */
    
    @media (prefers-reduced-motion: reduce) {
        *,
        *::before,
        *::after {
            animation-duration: 0.01ms !important;
            animation-iteration-count: 1 !important;
            transition-duration: 0.01ms !important;
            scroll-behavior: auto !important;
        }
    }
    
    /* ============================================
       MOBILE LANDSCAPE ORIENTATION
       ============================================ */
    
    @media (max-width: 768px) and (orientation: landscape) {
        .hero {
            padding: 2rem 0;
        }
    
        .consultation-modal__layout {
            overflow-y: auto;
        }
    
        .consultation-modal__benefits {
            display: none;
        }
    }
    
    /* ============================================
       HIGH DPI DISPLAYS (RETINA)
       ============================================ */
    
    @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
        img {
            image-rendering: -webkit-optimize-contrast;
        }
    }
    
    /* ============================================
       MOBILE UTILITY CLASSES
       ============================================ */
    
    @media (max-width: 768px) {
        .mobile-hidden {
            display: none !important;
        }
    
        .mobile-visible {
            display: block !important;
        }
    
        .mobile-text-center {
            text-align: center !important;
        }
    
        .mobile-full-width {
            width: 100% !important;
        }
    
        .mobile-no-padding {
            padding: 0 !important;
        }
    
        .mobile-no-margin {
            margin: 0 !important;
        }
    }

    .pagination__number {
        min-width: 38px;
        height: 38px;
        font-size: 0.875rem;
    }

    .pagination__container {
        gap: 0.375rem;
    }

    .pagination__pages {
        gap: 0.375rem;
    }
}

/* Enhanced Blog Card Styles */
.blog-card {
    position: relative;
}

.blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #a387c1, #bbd8a7, #F8CBAD);
    border-radius: 20px 20px 0 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.post-category {
    background: linear-gradient(135deg, #a387c1 0%, #8b5fbf 100%);
    color: white;
    padding: 0.375rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.post-date {
    font-size: 0.875rem;
    color: #9ca3af;
    font-weight: 500;
}

/* Loading State (optional for future enhancements) */
.blog-grid--loading {
    opacity: 0.6;
    pointer-events: none;
}

.blog-grid--loading .blog-card {
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* Accessibility Improvements */
.pagination__btn:focus,
.pagination__number:focus {
    outline: 3px solid #a387c1;
    outline-offset: 2px;
}

.skip-to-pagination {
    position: absolute;
    left: -9999px;
    z-index: 999;
}

.skip-to-pagination:focus {
    position: static;
    left: auto;
}

/* Enhanced Search Results */
.search-results-info {
    background: linear-gradient(135deg, #DEEBF7 0%, #ffffff 100%);
    padding: 1rem 2rem;
    border-radius: 12px;
    margin: 1rem auto;
    max-width: 400px;
    border: 2px solid #a387c1;
}

.results-count {
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

/* Print Styles */
@media print {
    .header__cta,
    .mobile-menu-toggle,
    .cta-section,
    .blog-search,
    .pagination {
        display: none;
    }

    .hero {
        background: none;
        color: #1a1a1a;
    }

    .service-card,
    .fact-card {
        break-inside: avoid;
    }

    .blog-card {
        break-inside: avoid;
        margin-bottom: 1rem;
    }
}
