:root {
    --primary-bg: rgb(10, 10, 11);
    --primary-text: rgb(30, 40, 76);
    --secondary-text: rgba(255, 255, 255, 0.8);
    --accent-blue: rgb(0, 102, 255);
    --accent-blue-hover: rgb(20, 86, 255);
    --card-bg: rgba(255, 255, 255, 0.05);
    --border-color: rgba(255, 255, 255, 0.1);
    --success-green: rgb(34, 197, 94);
    --font-primary: "Suisse Int'l", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

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

body {
    font-family: var(--font-primary);
    background-color: var(--primary-bg);
    color: var(--secondary-text);
    line-height: 1.6;
    overflow-x: hidden;
}

.navbar {
    background-color: rgba(10, 10, 11, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
}

.navbar-brand .logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
}

.navbar-brand .logo i {
    margin-right: 0.5rem;
    color: var(--accent-blue);
}

.nav-link {
    color: var(--secondary-text) !important;
    font-weight: 400;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem !important;
}

.nav-link:hover {
    color: white !important;
}

.dropdown-menu {
    background-color: rgba(10, 10, 11, 0.95);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
}

.dropdown-item {
    color: var(--secondary-text);
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

.btn-primary {
    background-color: var(--accent-blue);
    border-color: var(--accent-blue);
    color: white;
    font-weight: 500;
    padding: 0.5rem 1.5rem;
    border-radius: 5px;
    transition: all 0.2s ease;
}

.btn-primary:hover {
    background-color: var(--accent-blue-hover);
    border-color: var(--accent-blue-hover);
    transform: translateY(-1px);
}

.btn-outline-primary {
    border-color: var(--accent-blue);
    color: var(--accent-blue);
    background-color: transparent;
    font-weight: 500;
    padding: 0.5rem 1.5rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: var(--accent-blue);
    border-color: var(--accent-blue);
    color: white;
    transform: translateY(-1px);
}

.hero-section {
    padding: 180px 0 120px;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-bg) 0%, rgba(0, 102, 255, 0.05) 100%);
}

.hero-title {
    font-size: 4rem;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.8px;
    color: white;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--secondary-text);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.hero-demo {
    max-width: 500px;
    margin: 0 auto;
}

.demo-input {
    display: flex;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 0.5rem;
    border: 1px solid var(--border-color);
}

.demo-input input {
    flex: 1;
    background: transparent;
    border: none;
    color: white;
    padding: 0.75rem 1rem;
    font-size: 1rem;
}

.demo-input input::placeholder {
    color: var(--secondary-text);
}

.demo-input input:focus {
    outline: none;
}

.demo-btn {
    background-color: var(--accent-blue);
    border: none;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    color: white;
    cursor: pointer;
    transition: all 0.2s ease;
}

.demo-btn:hover {
    background-color: var(--accent-blue-hover);
}

.trust-section {
    padding: 60px 0;
    border-bottom: 1px solid var(--border-color);
}

.trust-title {
    color: var(--secondary-text);
    font-size: 1rem;
    margin-bottom: 2rem;
}

.trust-logo {
    color: var(--secondary-text);
    font-size: 1.1rem;
    font-weight: 500;
    padding: 1rem;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

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

.features-section,
.pricing-preview-section,
.how-it-works-section,
.targeting-section,
.case-studies-section,
.testimonials-section {
    padding: 120px 0;
}

.feature-content h2,
.pricing-content h2,
.targeting-content h2 {
    font-size: 2.5rem;
    font-weight: 400;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.feature-content p,
.pricing-content p,
.targeting-content p {
    font-size: 1.1rem;
    color: var(--secondary-text);
    margin-bottom: 2rem;
}

.feature-list {
    list-style: none;
    margin-bottom: 2rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: var(--secondary-text);
}

.feature-list li i {
    color: var(--success-green);
    margin-right: 0.75rem;
    font-size: 0.9rem;
}

.feature-visual,
.pricing-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-card,
.pricing-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    width: 100%;
    max-width: 400px;
}

.card-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.card-header i {
    color: var(--accent-blue);
    font-size: 1.5rem;
    margin-right: 0.75rem;
}

.card-header span {
    color: white;
    font-weight: 500;
    font-size: 1.1rem;
}

.metric {
    text-align: center;
    margin-bottom: 1rem;
}

.metric .number {
    display: block;
    font-size: 2.5rem;
    font-weight: 600;
    color: white;
    line-height: 1;
}

.metric .label {
    color: var(--secondary-text);
    font-size: 0.9rem;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-blue), var(--success-green));
    border-radius: 4px;
    transition: width 0.3s ease;
}

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

.pricing-header p {
    color: var(--secondary-text);
    margin-bottom: 1.5rem;
}

.pricing-tiers {
    space-y: 1rem;
}

.tier {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    margin-bottom: 0.75rem;
}

.tier .channel {
    color: var(--secondary-text);
}

.tier .price {
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

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

.benefit {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.benefit i {
    color: var(--accent-blue);
    font-size: 1.2rem;
    margin-right: 1rem;
    margin-top: 0.25rem;
}

.benefit h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.benefit p {
    color: var(--secondary-text);
    font-size: 0.95rem;
    margin: 0;
}

.how-it-works-section h2,
.case-studies-section h2,
.testimonials-section h2 {
    font-size: 2.5rem;
    font-weight: 400;
    color: white;
    margin-bottom: 1rem;
}

.how-it-works-section p,
.case-studies-section p {
    color: var(--secondary-text);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.step-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 2.5rem 2rem;
    text-align: center;
    height: 100%;
    position: relative;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent-blue);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
}

.step-icon {
    margin-bottom: 1.5rem;
}

.step-icon i {
    font-size: 2.5rem;
    color: var(--accent-blue);
}

.step-card h3 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

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

.targeting-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.targeting-dashboard {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    width: 100%;
    max-width: 450px;
}

.dashboard-header h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

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

.option-group label {
    color: var(--secondary-text);
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.5rem;
}

.selected-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    background-color: var(--accent-blue);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
}

.range-slider {
    position: relative;
    height: 6px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    margin-bottom: 0.5rem;
}

.slider-track {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 3px;
}

.slider-fill {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    background: linear-gradient(90deg, var(--accent-blue), var(--success-green));
    border-radius: 3px;
}

.range-text {
    color: var(--secondary-text);
    font-size: 0.85rem;
}

.targeting-features {
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.feature-item i {
    color: var(--accent-blue);
    font-size: 1.2rem;
    margin-right: 1rem;
    margin-top: 0.25rem;
}

.feature-item h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.feature-item p {
    color: var(--secondary-text);
    font-size: 0.95rem;
    margin: 0;
}

.case-study-card,
.testimonial-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.case-study-card:hover,
.testimonial-card:hover {
    transform: translateY(-5px);
}

.case-study-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.company-logo {
    width: 50px;
    height: 50px;
    background-color: var(--accent-blue);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    margin-right: 1rem;
}

.company-info h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.company-info p {
    color: var(--secondary-text);
    font-size: 0.9rem;
    margin: 0;
}

.case-study-metrics {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.case-study-metrics .metric {
    text-align: left;
}

.case-study-metrics .number {
    font-size: 1.8rem;
    color: var(--success-green);
}

.case-study-metrics .label {
    font-size: 0.85rem;
}

.case-study-card p,
.testimonial-card p {
    color: var(--secondary-text);
    line-height: 1.6;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 1.5rem;
}

.author-avatar {
    width: 45px;
    height: 45px;
    background-color: var(--accent-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    margin-right: 1rem;
}

.author-info h5 {
    color: white;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.author-info p {
    color: var(--secondary-text);
    font-size: 0.85rem;
    margin: 0;
    font-style: normal;
}

.cta-section {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, var(--primary-bg) 100%);
    text-align: center;
}

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

.cta-section p {
    font-size: 1.1rem;
    color: var(--secondary-text);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.footer {
    background-color: rgba(0, 0, 0, 0.3);
    border-top: 1px solid var(--border-color);
    padding: 60px 0 30px;
}

.footer-brand .logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

.footer-brand .logo i {
    margin-right: 0.5rem;
    color: var(--accent-blue);
}

.footer-brand p {
    color: var(--secondary-text);
    max-width: 300px;
}

.footer h5 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--secondary-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.contact-info p {
    color: var(--secondary-text);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.contact-info a {
    color: var(--accent-blue);
    text-decoration: none;
}

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

.footer-divider {
    border-color: var(--border-color);
    margin: 2rem 0 1.5rem;
}

.copyright,
.powered-by {
    color: var(--secondary-text);
    font-size: 0.9rem;
    margin: 0;
}

.pricing-hero-section {
    padding: 180px 0 80px;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-bg) 0%, rgba(0, 102, 255, 0.05) 100%);
}

.pricing-hero-title {
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.8px;
    color: white;
    margin-bottom: 1.5rem;
}

.pricing-hero-subtitle {
    font-size: 1.25rem;
    color: var(--secondary-text);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-cards-section {
    padding: 80px 0;
}

.pricing-plan-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 2.5rem;
    height: 100%;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, border-color 0.3s ease;
    position: relative;
}

.pricing-plan-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-blue);
}

.pricing-plan-card.featured {
    border-color: var(--accent-blue);
    background: linear-gradient(135deg, var(--card-bg) 0%, rgba(0, 102, 255, 0.1) 100%);
}

.pricing-plan-card.premium {
    border-color: var(--success-green);
    background: linear-gradient(135deg, var(--card-bg) 0%, rgba(34, 197, 94, 0.1) 100%);
}

.plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent-blue);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.plan-icon {
    text-align: center;
    margin-bottom: 1.5rem;
}

.plan-icon i {
    font-size: 3rem;
    color: var(--accent-blue);
}

.premium .plan-icon i {
    color: var(--success-green);
}

.plan-title {
    color: white;
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
    text-align: center;
}

.plan-description {
    color: var(--secondary-text);
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.plan-price {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1.5rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.price-amount {
    display: block;
    font-size: 3rem;
    font-weight: 600;
    color: white;
    line-height: 1;
}

.price-unit {
    color: var(--secondary-text);
    font-size: 0.9rem;
}

.plan-features h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.plan-features ul {
    list-style: none;
    margin-bottom: 2rem;
}

.plan-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: var(--secondary-text);
}

.plan-features li i {
    color: var(--success-green);
    margin-right: 0.75rem;
    font-size: 0.9rem;
}

.pricing-comparison-section {
    padding: 80px 0;
    background-color: rgba(255, 255, 255, 0.02);
}

.pricing-comparison-section h2 {
    font-size: 2.5rem;
    font-weight: 400;
    color: white;
    margin-bottom: 1rem;
}

.pricing-comparison-section p {
    color: var(--secondary-text);
    font-size: 1.1rem;
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin-top: 3rem;
}

.comparison-table {
    width: 100%;
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.comparison-table th,
.comparison-table td {
    padding: 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
    background-color: rgba(255, 255, 255, 0.05);
    color: white;
    font-weight: 600;
    font-size: 1rem;
}

.comparison-table td {
    color: var(--secondary-text);
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 500;
    color: white;
}

.price-small {
    font-size: 0.8rem;
    color: var(--accent-blue);
    font-weight: 500;
}

.pricing-faq-section {
    padding: 80px 0;
}

.pricing-faq-section h2 {
    font-size: 2.5rem;
    font-weight: 400;
    color: white;
    margin-bottom: 2rem;
}

.accordion-item {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
}

.accordion-button {
    background-color: transparent;
    color: white;
    border: none;
    padding: 1.5rem;
    font-weight: 500;
    font-size: 1.1rem;
}

.accordion-button:not(.collapsed) {
    background-color: rgba(255, 255, 255, 0.05);
    color: white;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--accent-blue);
}

.accordion-button::after {
    filter: invert(1);
}

.accordion-body {
    color: var(--secondary-text);
    padding: 0 1.5rem 1.5rem;
    line-height: 1.6;
}

.pricing-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, var(--primary-bg) 100%);
    text-align: center;
}

.pricing-cta-section h2 {
    font-size: 2.5rem;
    font-weight: 400;
    color: white;
    margin-bottom: 1rem;
}

.pricing-cta-section p {
    font-size: 1.1rem;
    color: var(--secondary-text);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-hero-section {
    padding: 180px 0 80px;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-bg) 0%, rgba(0, 102, 255, 0.05) 100%);
}

.contact-hero-title {
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.8px;
    color: white;
    margin-bottom: 1.5rem;
}

.contact-hero-subtitle {
    font-size: 1.25rem;
    color: var(--secondary-text);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form-section {
    padding: 80px 0;
}

.contact-form-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 3rem;
    backdrop-filter: blur(10px);
}

.contact-form .form-label {
    color: white;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.contact-form .form-control,
.contact-form .form-select {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--border-color);
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 0.2rem rgba(0, 102, 255, 0.25);
    color: white;
}

.contact-form .form-control::placeholder {
    color: var(--secondary-text);
}

.contact-form .form-select option {
    background-color: var(--primary-bg);
    color: white;
}

.form-check-input {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--border-color);
}

.form-check-input:checked {
    background-color: var(--accent-blue);
    border-color: var(--accent-blue);
}

.form-check-label {
    color: var(--secondary-text);
    font-size: 0.9rem;
}

.success-message {
    text-align: center;
    padding: 3rem 2rem;
}

.success-icon {
    margin-bottom: 1.5rem;
}

.success-icon i {
    font-size: 4rem;
    color: var(--success-green);
}

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

.success-message p {
    color: var(--secondary-text);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.success-note {
    color: var(--accent-blue);
    font-style: italic;
    margin-bottom: 2rem;
}

.contact-info-section {
    padding: 80px 0;
    background-color: rgba(255, 255, 255, 0.02);
}

.contact-info-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    height: 100%;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
}

.info-icon {
    margin-bottom: 1.5rem;
}

.info-icon i {
    font-size: 2.5rem;
    color: var(--accent-blue);
}

.contact-info-card h4 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.contact-info-card p {
    color: var(--secondary-text);
    margin-bottom: 1rem;
}

.contact-link {
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 500;
}

.contact-link:hover {
    text-decoration: underline;
    color: var(--accent-blue-hover);
}

.contact-address {
    color: var(--secondary-text);
    font-style: normal;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .feature-content h2,
    .pricing-content h2,
    .targeting-content h2,
    .how-it-works-section h2,
    .case-studies-section h2,
    .testimonials-section h2,
    .cta-section h2 {
        font-size: 2rem;
    }
    
    .case-study-metrics {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 200px;
    }
    
    .pricing-hero-title {
        font-size: 2.5rem;
    }
    
    .pricing-plan-card {
        margin-bottom: 2rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 1rem 0.5rem;
        font-size: 0.9rem;
    }
    
    .price-amount {
        font-size: 2.5rem;
    }
    
    .contact-hero-title {
        font-size: 2.5rem;
    }
    
    .contact-form-card {
        padding: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 140px 0 80px;
    }
    
    .pricing-hero-section {
        padding: 140px 0 60px;
    }
    
    .pricing-hero-title {
        font-size: 2rem;
    }
    
    .contact-hero-section {
        padding: 140px 0 60px;
    }
    
    .contact-hero-title {
        font-size: 2rem;
    }
}

.legal-hero-section {
    padding: 180px 0 80px;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-bg) 0%, rgba(0, 102, 255, 0.05) 100%);
}

.legal-hero-title {
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.8px;
    color: white;
    margin-bottom: 1rem;
}

.legal-hero-subtitle {
    font-size: 1.1rem;
    color: var(--secondary-text);
}

.legal-content-section {
    padding: 80px 0;
}

.legal-content {
    color: var(--secondary-text);
    line-height: 1.7;
}

.legal-content h2 {
    color: white;
    font-size: 1.8rem;
    font-weight: 500;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    color: white;
    font-size: 1.3rem;
    font-weight: 500;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-content p {
    margin-bottom: 1.5rem;
}

.legal-content ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

.legal-content a {
    color: var(--accent-blue);
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

.contact-details {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 1rem;
    backdrop-filter: blur(10px);
}

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

@media (max-width: 768px) {
    .legal-hero-title {
        font-size: 2.5rem;
    }
    
    .legal-content h2 {
        font-size: 1.5rem;
    }
    
    .legal-content h3 {
        font-size: 1.2rem;
    }
}
}
