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

:root {
    --primary-color: #0066cc;
    --secondary-color: #004999;
    --accent-color: #00aaff;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #28a745;
    --warning-color: #ffc107;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    font-size: 16px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.split-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-left .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

.nav-right a {
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

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

.nav-cta {
    background: var(--primary-color);
    color: var(--bg-white) !important;
    padding: 0.6rem 1.5rem;
    border-radius: 4px;
}

.nav-cta:hover {
    background: var(--secondary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    background: var(--bg-white);
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    padding: 1rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    z-index: 999;
}

.mobile-menu a {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.mobile-menu.active {
    display: flex;
}

.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: center;
}

.hero-left {
    flex: 1;
    padding: 4rem 5% 4rem 8%;
}

.hero-left h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.btn-hero {
    display: inline-block;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-hero:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,102,204,0.3);
}

.hero-right {
    flex: 1;
    overflow: hidden;
}

.hero-right img {
    width: 100%;
    height: 85vh;
    object-fit: cover;
}

.intro-split {
    display: flex;
    align-items: center;
    padding: 6rem 0;
}

.intro-split.reverse {
    flex-direction: row-reverse;
}

.split-image {
    flex: 1;
    overflow: hidden;
}

.split-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.split-content {
    flex: 1;
    padding: 4rem 8%;
}

.split-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.split-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.problem-amplify {
    display: flex;
    background: var(--bg-light);
    padding: 5rem 5%;
    gap: 4rem;
}

.problem-left {
    flex: 1;
}

.problem-left h2 {
    font-size: 2.3rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.problem-list {
    list-style: none;
}

.problem-list li {
    padding: 1rem 0 1rem 2rem;
    position: relative;
    font-size: 1.1rem;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
}

.problem-list li:before {
    content: "×";
    position: absolute;
    left: 0;
    color: #dc3545;
    font-size: 1.8rem;
    font-weight: bold;
}

.problem-right {
    flex: 1;
    display: flex;
    align-items: center;
}

blockquote {
    background: var(--bg-white);
    padding: 3rem;
    border-left: 5px solid var(--primary-color);
    font-size: 1.3rem;
    line-height: 1.7;
    font-style: italic;
    color: var(--text-dark);
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

cite {
    display: block;
    margin-top: 1.5rem;
    font-style: normal;
    font-size: 1rem;
    color: var(--text-light);
}

.services-preview-split {
    padding: 6rem 5%;
}

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

.services-intro h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.services-intro p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.services-grid {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.service-card {
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 2.5rem;
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    position: relative;
    transition: all 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-card.featured {
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(0,102,204,0.15);
}

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

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.price span {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 400;
}

.service-card ul {
    list-style: none;
    margin-bottom: 2rem;
}

.service-card ul li {
    padding: 0.7rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

.service-card ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.btn-card {
    display: block;
    text-align: center;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 1rem;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
}

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

.insights-split {
    display: flex;
    background: var(--bg-light);
    min-height: 600px;
}

.insights-content {
    flex: 1;
    padding: 5rem 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.insights-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.insights-content > p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

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

.feature-item {
    background: var(--bg-white);
    padding: 1.5rem;
    border-left: 4px solid var(--primary-color);
    border-radius: 4px;
}

.feature-item strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.feature-item p {
    color: var(--text-light);
    margin: 0;
}

.insights-visual {
    flex: 1;
    overflow: hidden;
}

.insights-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.trust-split {
    display: flex;
    align-items: center;
    padding: 6rem 0;
}

.trust-split.reverse {
    flex-direction: row-reverse;
}

.trust-image {
    flex: 1;
}

.trust-image img {
    width: 100%;
    height: 550px;
    object-fit: cover;
}

.trust-content {
    flex: 1;
    padding: 4rem 8%;
}

.trust-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.trust-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.trust-stats {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    flex-direction: column;
}

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

.stat-label {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.testimonials-split {
    background: var(--bg-light);
    padding: 6rem 5%;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 4rem;
}

.testimonials-header h2 {
    font-size: 2.8rem;
    color: var(--text-dark);
}

.testimonials-container {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial-item {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 8px;
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.testimonial-item p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.testimonial-item cite {
    font-size: 0.95rem;
    color: var(--text-light);
}

.additional-services-split {
    display: flex;
    padding: 6rem 5%;
    gap: 4rem;
}

.additional-left {
    flex: 0.8;
}

.additional-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.additional-left p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.additional-right {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-addon {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    border-left: 5px solid var(--accent-color);
}

.service-addon h3 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.service-addon .price {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.service-addon p {
    color: var(--text-light);
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.btn-inline {
    color: var(--primary-color);
    font-weight: 600;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 2px;
    transition: all 0.3s;
}

.btn-inline:hover {
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.form-section-split {
    display: flex;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 6rem 5%;
    gap: 4rem;
}

.form-left {
    flex: 1;
}

.form-left h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.form-left p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.form-benefits {
    list-style: none;
}

.form-benefits li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
}

.form-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.3rem;
}

.form-right {
    flex: 1;
}

.contact-form {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 8px;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-submit {
    width: 100%;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 1.1rem;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--secondary-color);
    padding: 1.2rem 5%;
    display: none;
    z-index: 900;
    box-shadow: 0 -4px 15px rgba(0,0,0,0.15);
}

.sticky-cta.visible {
    display: block;
}

.sticky-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.sticky-content span {
    color: var(--bg-white);
    font-size: 1.1rem;
    font-weight: 600;
}

.btn-sticky {
    background: var(--bg-white);
    color: var(--primary-color);
    padding: 0.8rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-sticky:hover {
    transform: scale(1.05);
}

.footer-split {
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 4rem 5% 2rem;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h3,
.footer-col h4 {
    margin-bottom: 1rem;
    color: var(--bg-white);
}

.footer-col p,
.footer-col a {
    color: #cccccc;
    line-height: 2;
    display: block;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--bg-white);
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 1.5rem;
    text-align: center;
    color: #999;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 1.5rem 5%;
    display: none;
    z-index: 1100;
    box-shadow: 0 -4px 15px rgba(0,0,0,0.2);
}

.cookie-banner.visible {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-content p {
    flex: 1;
    margin: 0;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-primary,
.btn-secondary {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

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

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

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

.btn-secondary:hover {
    background: var(--bg-white);
    color: var(--text-dark);
}

.page-hero-split {
    display: flex;
    align-items: center;
    padding: 6rem 5%;
    background: var(--bg-light);
    gap: 4rem;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.lead {
    font-size: 1.3rem;
    color: var(--text-light);
    line-height: 1.7;
}

.hero-image {
    flex: 1;
}

.hero-image img {
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.story-split {
    display: flex;
    padding: 6rem 5%;
    gap: 4rem;
    align-items: center;
}

.story-left {
    flex: 1;
}

.story-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.story-left p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.story-right {
    flex: 1;
}

.story-right img {
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.values-split {
    display: flex;
    background: var(--bg-light);
    padding: 6rem 5%;
    gap: 4rem;
}

.values-split.reverse {
    flex-direction: row-reverse;
}

.values-image {
    flex: 1;
}

.values-image img {
    border-radius: 8px;
    height: 100%;
    object-fit: cover;
}

.values-content {
    flex: 1;
}

.values-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.value-item {
    margin-bottom: 2rem;
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.value-item p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
}

.team-section-split {
    padding: 6rem 5%;
}

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

.team-intro h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.team-intro p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.team-grid {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.team-member {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    text-align: center;
}

.member-image {
    margin-bottom: 1.5rem;
    overflow: hidden;
    border-radius: 50%;
    width: 200px;
    height: 200px;
    margin-left: auto;
    margin-right: auto;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
}

.team-member p {
    color: var(--text-light);
    line-height: 1.7;
}

.technology-split {
    display: flex;
    background: var(--bg-light);
    padding: 6rem 5%;
    gap: 4rem;
    align-items: center;
}

.tech-content {
    flex: 1;
}

.tech-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.tech-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.tech-list {
    list-style: none;
}

.tech-list li {
    padding: 1rem 0 1rem 2.5rem;
    position: relative;
    font-size: 1.05rem;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
}

.tech-list li:before {
    content: "⚡";
    position: absolute;
    left: 0;
    font-size: 1.5rem;
}

.tech-visual {
    flex: 1;
}

.tech-visual img {
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.mission-split {
    display: flex;
    padding: 6rem 5%;
    gap: 4rem;
}

.mission-split.reverse {
    flex-direction: row-reverse;
}

.mission-image {
    flex: 1;
}

.mission-image img {
    border-radius: 8px;
    height: 100%;
    object-fit: cover;
}

.mission-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mission-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.mission-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.cta-about {
    text-align: center;
    padding: 6rem 5%;
    background: var(--bg-light);
}

.cta-about h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.cta-about p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.services-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--bg-white);
}

.services-hero h1,
.services-hero p {
    color: var(--bg-white);
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
}

.stat-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.stat-box .number {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}

.stat-box .label {
    margin-top: 0.5rem;
    font-size: 0.95rem;
}

.services-main-split {
    padding: 6rem 5%;
}

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

.services-intro-text h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.services-intro-text p {
    font-size: 1.2rem;
    color: var(--text-light);
}

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

.service-detail-card {
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.service-detail-card.featured-card {
    border-color: var(--primary-color);
    box-shadow: 0 8px 30px rgba(0,102,204,0.15);
}

.badge-large {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    z-index: 10;
}

.card-header {
    background: var(--bg-light);
    padding: 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.price-large {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price-large span {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text-light);
}

.card-body {
    padding: 2.5rem;
}

.service-description {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.card-body h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

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

.detailed-features li {
    padding: 1rem 0 1rem 2rem;
    position: relative;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
}

.detailed-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
    font-size: 1.3rem;
}

.btn-card-large {
    display: block;
    text-align: center;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 1.2rem;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
}

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

.addons-split {
    background: var(--bg-light);
    padding: 6rem 5%;
}

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

.addons-intro h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.addons-intro p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.addons-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.addon-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 8px;
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.addon-header {
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
}

.addon-header h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.addon-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.addon-card ul {
    list-style: none;
    margin-bottom: 2rem;
}

.addon-card ul li {
    padding: 0.7rem 0 0.7rem 1.5rem;
    position: relative;
    color: var(--text-light);
}

.addon-card ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.btn-addon {
    display: block;
    text-align: center;
    background: var(--accent-color);
    color: var(--bg-white);
    padding: 1rem;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
}

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

.comparison-split {
    padding: 6rem 5%;
}

.comparison-split h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3rem;
}

.comparison-table-wrapper {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    border-collapse: collapse;
}

.comparison-table thead {
    background: var(--primary-color);
    color: var(--bg-white);
}

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

.comparison-table th {
    font-weight: 600;
}

.comparison-table tbody tr:nth-child(even) {
    background: var(--bg-light);
}

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

.faq-split {
    background: var(--bg-light);
    padding: 6rem 5%;
}

.faq-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-intro h2 {
    font-size: 2.8rem;
}

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

.faq-item {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.faq-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

.cta-services {
    text-align: center;
    padding: 6rem 5%;
}

.cta-services h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.cta-services p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.btn-primary-large {
    display: inline-block;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary-large:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,102,204,0.3);
}

.contact-hero {
    background: var(--bg-light);
}

.contact-main-split {
    display: flex;
    padding: 6rem 5%;
    gap: 4rem;
}

.contact-info-side {
    flex: 1;
}

.contact-info-side h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.contact-detail {
    margin-bottom: 2.5rem;
}

.contact-detail h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.contact-detail p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
}

.contact-detail a {
    color: var(--primary-color);
    font-weight: 600;
}

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

.contact-note {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.contact-note p {
    margin: 0;
    color: var(--text-light);
}

.contact-note a {
    color: var(--primary-color);
    font-weight: 600;
}

.contact-map-side {
    flex: 1;
}

.map-placeholder {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.map-placeholder img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.location-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.location-info p {
    color: var(--text-light);
    line-height: 1.7;
}

.support-split {
    background: var(--bg-light);
    padding: 6rem 5%;
}

.support-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.support-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.support-content p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.support-options {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.support-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

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

.support-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

.cta-contact {
    text-align: center;
    padding: 6rem 5%;
}

.cta-contact h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.cta-contact p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.thanks-hero {
    padding: 8rem 5%;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--bg-white);
}

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

.success-icon {
    width: 100px;
    height: 100px;
    background: var(--success-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--bg-white);
    margin: 0 auto 2rem;
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.thanks-message {
    font-size: 1.3rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-confirm {
    background: rgba(255,255,255,0.1);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
    font-size: 1.1rem;
}

.next-steps-split {
    padding: 6rem 5%;
}

.steps-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.steps-intro h2 {
    font-size: 2.8rem;
}

.steps-grid {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.step-card {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 8px;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.step-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

.thanks-resources {
    background: var(--bg-light);
    padding: 6rem 5%;
}

.resources-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.resources-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.resources-content > p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.resource-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.resource-link {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    flex: 1;
    min-width: 280px;
    max-width: 400px;
    text-align: left;
    border: 2px solid var(--border-color);
    transition: all 0.3s;
}

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

.resource-link h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.resource-link p {
    color: var(--text-light);
    margin: 0;
}

.thanks-cta {
    text-align: center;
    padding: 6rem 5%;
}

.thanks-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.thanks-cta p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.legal-page {
    padding: 4rem 5%;
    background: var(--bg-light);
    min-height: 70vh;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 4rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.legal-container h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.last-updated {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 3rem;
}

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

.legal-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

.legal-section p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-section ul,
.legal-section ol {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-section li {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

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

.cookie-table {
    width: 100%;
    margin: 2rem 0;
    border-collapse: collapse;
}

.cookie-table thead {
    background: var(--primary-color);
    color: var(--bg-white);
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid var(--border-color);
}

.cookie-table tbody tr:nth-child(even) {
    background: var(--bg-light);
}

@media (max-width: 1024px) {
    .hero-left h1 {
        font-size: 2.8rem;
    }

    .services-grid,
    .addons-grid,
    .testimonials-container {
        flex-direction: column;
        align-items: center;
    }

    .comparison-table-wrapper {
        overflow-x: scroll;
    }
}

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

    .hamburger {
        display: flex;
    }

    .hero-split,
    .intro-split,
    .problem-amplify,
    .additional-services-split,
    .form-section-split,
    .contact-main-split,
    .story-split,
    .values-split,
    .technology-split,
    .mission-split,
    .trust-split,
    .insights-split {
        flex-direction: column;
    }

    .intro-split.reverse,
    .trust-split.reverse,
    .values-split.reverse,
    .mission-split.reverse {
        flex-direction: column;
    }

    .hero-left,
    .hero-right,
    .split-content,
    .split-image {
        flex: none;
        width: 100%;
    }

    .hero-left {
        padding: 3rem 5%;
    }

    .hero-right img {
        height: 50vh;
    }

    .hero-left h1 {
        font-size: 2.2rem;
    }

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

    .split-content h2 {
        font-size: 2rem;
    }

    .page-hero-split {
        flex-direction: column;
    }

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

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .sticky-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

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

    .footer-main {
        flex-direction: column;
    }

    .card-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .legal-container {
        padding: 2rem;
    }

    .legal-container h1 {
        font-size: 2.2rem;
    }
}

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

    .service-card,
    .addon-card,
    .testimonial-item {
        min-width: 100%;
    }

    .btn-hero,
    .btn-primary-large {
        width: 100%;
        text-align: center;
    }
}