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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #f8f9fa;
}

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

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

a:hover {
    color: #2980b9;
}

/* Navigation */
.navbar {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    margin: 3px 0;
    transition: 0.3s;
}

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

.nav-menu a {
    color: #2c3e50;
    font-weight: 500;
    padding: 0.5rem 0;
}

.nav-cta {
    background: #3498db;
    color: #ffffff !important;
    padding: 0.6rem 1.5rem !important;
    border-radius: 6px;
}

.nav-cta:hover {
    background: #2980b9;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    z-index: 9999;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 250px;
}

.cookie-content a {
    color: #3498db;
}

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

.btn-cookie,
.btn-cookie-alt {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cookie {
    background: #27ae60;
    color: #ffffff;
}

.btn-cookie:hover {
    background: #229954;
}

.btn-cookie-alt {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-cookie-alt:hover {
    background: #ffffff;
    color: #2c3e50;
}

/* Hero Sections */
.hero-minimal {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 1.5rem;
    gap: 3rem;
    align-items: center;
}

.hero-card {
    flex: 1;
    min-width: 300px;
}

.hero-label {
    display: inline-block;
    background: #e8f4fd;
    color: #3498db;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.hero-card h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #1a252f;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
}

.hero-visual {
    flex: 1;
    min-width: 300px;
}

.hero-visual img {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-sticky {
    display: inline-block;
    padding: 0.9rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: #3498db;
    color: #ffffff;
}

.btn-primary:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.4);
}

.btn-secondary {
    background: #ecf0f1;
    color: #2c3e50;
}

.btn-secondary:hover {
    background: #d5dbdb;
}

.btn-full {
    width: 100%;
}

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

/* Stats Cards */
.stats-cards {
    background: #ffffff;
    padding: 3rem 1.5rem;
}

.container-cards {
    max-width: 1200px;
    margin: 0 auto;
}

.stat-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.container-cards .stat-card:nth-child(2) {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.container-cards .stat-card:nth-child(3) {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

/* Insight Section */
.insight-section {
    padding: 4rem 1.5rem;
}

.container-wide {
    max-width: 1300px;
    margin: 0 auto;
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.insight-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
}

.insight-visual,
.insight-content {
    flex: 1;
    min-width: 300px;
}

.insight-visual img {
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.insight-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

.insight-content p {
    margin-bottom: 1.2rem;
    color: #5a6c7d;
    font-size: 1.05rem;
}

.link-arrow {
    color: #3498db;
    font-weight: 600;
    font-size: 1.05rem;
}

.link-arrow:hover {
    text-decoration: underline;
}

/* Problem Cards */
.problem-amplify {
    background: #fff5f5;
    padding: 4rem 1.5rem;
}

.section-title-center {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: #1a252f;
}

.section-subtitle {
    text-align: center;
    font-size: 1.15rem;
    color: #5a6c7d;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.problem-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.problem-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.problem-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.problem-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #e74c3c;
}

.problem-card p {
    color: #5a6c7d;
}

/* Solution Section */
.solution-reveal {
    padding: 4rem 1.5rem;
    background: #ffffff;
}

.solution-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
}

.solution-text,
.solution-image {
    flex: 1;
    min-width: 300px;
}

.label-small {
    display: inline-block;
    background: #e8f4fd;
    color: #3498db;
    padding: 0.3rem 0.9rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.solution-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.benefit-list {
    list-style: none;
    margin-top: 1.5rem;
}

.benefit-list li {
    padding-left: 1.8rem;
    margin-bottom: 0.8rem;
    position: relative;
    color: #5a6c7d;
}

.benefit-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.solution-image img {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Tech Showcase */
.tech-showcase {
    padding: 4rem 1.5rem;
    background: #f8f9fa;
}

.tech-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.tech-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    flex: 1;
    min-width: 280px;
    max-width: 48%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.tech-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

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

.tech-content {
    padding: 1.8rem;
}

.tech-content h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

.tech-content p {
    color: #5a6c7d;
    line-height: 1.7;
}

/* Social Proof */
.social-proof {
    padding: 4rem 1.5rem;
    background: #ffffff;
}

.testimonial-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.testimonial-card.featured {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 3rem;
}

.testimonial-text {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
}

.testimonial-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.testimonial-row .testimonial-card {
    flex: 1;
    min-width: 280px;
}

/* Services & Pricing */
.services-pricing {
    padding: 4rem 1.5rem;
    background: #ffffff;
}

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

.pricing-card {
    background: #ffffff;
    border: 2px solid #e8ecef;
    border-radius: 12px;
    padding: 2rem;
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    border-color: #3498db;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.pricing-card.featured {
    border-color: #3498db;
    border-width: 3px;
    box-shadow: 0 10px 30px rgba(52, 152, 219, 0.2);
}

.featured-badge,
.premium-badge-large {
    position: absolute;
    top: -15px;
    right: 20px;
    background: #27ae60;
    color: #ffffff;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: #1a252f;
}

.pricing-desc {
    color: #5a6c7d;
    margin-bottom: 1.5rem;
    min-height: 60px;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #3498db;
    margin-bottom: 1.5rem;
}

.pricing-card.featured .price,
.service-price-featured {
    color: #27ae60;
}

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

.feature-list li {
    padding: 0.6rem 0;
    padding-left: 1.8rem;
    position: relative;
    color: #5a6c7d;
    border-bottom: 1px solid #f1f3f5;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.btn-select-service {
    width: 100%;
    padding: 1rem;
    background: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background: #2980b9;
}

/* CTA Sections */
.cta-intermediate {
    padding: 3rem 1.5rem;
    background: #f8f9fa;
}

.cta-card-inline {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.cta-card-inline h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

.cta-card-inline p {
    color: #5a6c7d;
    margin-bottom: 1.5rem;
}

/* Case Study */
.case-study {
    padding: 4rem 1.5rem;
    background: #ffffff;
}

.case-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
}

.case-content,
.case-visual {
    flex: 1;
    min-width: 300px;
}

.case-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.case-results {
    list-style: none;
    margin-top: 1.5rem;
}

.case-results li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: #27ae60;
    font-weight: 600;
}

.case-results li:before {
    content: "→";
    position: absolute;
    left: 0;
}

.case-visual img {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Urgency Section */
.urgency-section {
    padding: 4rem 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.urgency-card {
    text-align: center;
    color: #ffffff;
}

.urgency-label {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    margin-bottom: 1rem;
    font-weight: 600;
}

.urgency-card h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.urgency-timer {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.timer-item {
    background: rgba(255,255,255,0.15);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    min-width: 100px;
}

.timer-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
}

.timer-label {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Form Section */
.form-section {
    padding: 4rem 1.5rem;
    background: #f8f9fa;
}

.main-form {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    max-width: 600px;
    margin: 0 auto;
}

.selected-service {
    background: #e8f4fd;
    color: #3498db;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-align: center;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

.form-privacy {
    font-size: 0.9rem;
    color: #5a6c7d;
    text-align: center;
    margin-top: 1rem;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    padding: 1rem 1.5rem;
    box-shadow: 0 -4px 15px rgba(0,0,0,0.2);
    z-index: 999;
    display: none;
}

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

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

.sticky-text {
    color: #ffffff;
    font-weight: 600;
    font-size: 1.1rem;
}

.btn-sticky {
    background: #27ae60;
    color: #ffffff;
}

.btn-sticky:hover {
    background: #229954;
}

/* Footer */
.footer {
    background: #1a252f;
    color: #ffffff;
    padding: 3rem 1.5rem 1rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

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

.footer-col h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-col p {
    color: #b8c5d0;
    line-height: 1.7;
}

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

.footer-col ul li {
    margin-bottom: 0.6rem;
}

.footer-col ul li a {
    color: #b8c5d0;
}

.footer-col ul li a:hover {
    color: #ffffff;
}

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

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 4rem 1.5rem;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.2rem;
    opacity: 0.95;
    max-width: 800px;
    margin: 0 auto;
}

/* About Page */
.about-story {
    padding: 4rem 1.5rem;
    background: #ffffff;
}

.story-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
}

.story-image,
.story-content {
    flex: 1;
    min-width: 300px;
}

.story-image img {
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.story-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

.story-content p {
    margin-bottom: 1.2rem;
    color: #5a6c7d;
    font-size: 1.05rem;
}

/* Values Section */
.values-section {
    padding: 4rem 1.5rem;
    background: #f8f9fa;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.value-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    flex: 1;
    min-width: 250px;
    max-width: 48%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.value-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #3498db;
}

.value-card p {
    color: #5a6c7d;
}

/* Team Section */
.team-section {
    padding: 4rem 1.5rem;
    background: #ffffff;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.team-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.5rem;
    flex: 1;
    min-width: 250px;
    max-width: 48%;
    text-align: center;
}

.team-image {
    margin-bottom: 1rem;
}

.team-image img {
    border-radius: 50%;
    width: 150px;
    height: 150px;
    object-fit: cover;
    margin: 0 auto;
}

.team-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #1a252f;
}

.team-role {
    color: #3498db;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.team-card p {
    color: #5a6c7d;
    font-size: 0.95rem;
}

/* Achievements */
.achievements {
    padding: 4rem 1.5rem;
    background: #f8f9fa;
}

.achievements-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.achievement-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    flex: 1;
    min-width: 220px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.achievement-number {
    font-size: 3rem;
    font-weight: 800;
    color: #3498db;
    margin-bottom: 0.5rem;
}

.achievement-card p {
    color: #5a6c7d;
}

/* CTA Box */
.cta-section {
    padding: 4rem 1.5rem;
    background: #ffffff;
}

.cta-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
}

.cta-box h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-box p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-box .btn-primary {
    background: #ffffff;
    color: #667eea;
}

.cta-box .btn-primary:hover {
    background: #f8f9fa;
}

/* Services Detail Page */
.services-detailed {
    padding: 2rem 1.5rem;
}

.service-detail-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 3rem;
    margin-bottom: 3rem;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.service-detail-card.reverse {
    flex-direction: row-reverse;
}

.service-detail-content,
.service-detail-image {
    flex: 1;
    min-width: 300px;
}

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

.service-price,
.service-price-featured,
.service-price-premium {
    font-size: 2.5rem;
    font-weight: 800;
    color: #3498db;
    margin-bottom: 1.5rem;
}

.service-price-featured {
    color: #27ae60;
}

.service-price-premium {
    color: #e74c3c;
}

.service-intro {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
}

.service-detail-content h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    padding: 0.6rem 0;
    padding-left: 1.8rem;
    position: relative;
    color: #5a6c7d;
}

.service-features li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
    font-size: 1.5rem;
}

.service-detail-image img {
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.service-detail-card.premium {
    border: 3px solid #e74c3c;
    position: relative;
}

/* Comparison Table */
.comparison-section {
    padding: 4rem 1.5rem;
    background: #f8f9fa;
}

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

.comparison-table {
    width: 100%;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

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

.comparison-table thead {
    background: #3498db;
    color: #ffffff;
}

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

.comparison-table th:first-child,
.comparison-table td:first-child {
    text-align: left;
    font-weight: 600;
}

/* Contact Page */
.contact-info-section {
    padding: 4rem 1.5rem;
    background: #ffffff;
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.contact-info-card,
.contact-map-placeholder {
    flex: 1;
    min-width: 300px;
}

.contact-info-card h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1a252f;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e8ecef;
}

.info-icon {
    font-size: 2.5rem;
}

.info-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.info-content p {
    color: #5a6c7d;
    line-height: 1.7;
}

.info-note {
    font-size: 0.9rem;
    color: #95a5a6;
    margin-top: 0.3rem;
}

.contact-map-placeholder {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

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

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.75);
    color: #ffffff;
    padding: 1.5rem;
}

/* Contact Reasons */
.contact-reasons {
    padding: 4rem 1.5rem;
    background: #f8f9fa;
}

.reasons-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.reason-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    flex: 1;
    min-width: 250px;
    max-width: 48%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.reason-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #3498db;
}

.reason-card p {
    color: #5a6c7d;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 1.5rem;
    background: #ffffff;
}

.faq-list {
    margin-top: 2rem;
}

.faq-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.faq-item p {
    color: #5a6c7d;
    line-height: 1.7;
}

/* Final CTA Contact */
.final-cta-contact {
    padding: 4rem 1.5rem;
    background: #f8f9fa;
}

.cta-card-special {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
}

.cta-card-special h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-card-special p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.cta-card-special a {
    color: #ffffff;
    text-decoration: underline;
}

.cta-guarantee {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.cta-card-special .btn-primary {
    background: #ffffff;
    color: #667eea;
}

.cta-card-special .btn-primary:hover {
    background: #f8f9fa;
}

/* Thanks Page */
.thanks-hero {
    padding: 4rem 1.5rem;
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    color: #ffffff;
    min-height: 50vh;
    display: flex;
    align-items: center;
}

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

.success-icon {
    width: 80px;
    height: 80px;
    background: #ffffff;
    color: #27ae60;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: bold;
    margin: 0 auto 2rem;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.thanks-message {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.service-confirm {
    background: rgba(255,255,255,0.2);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    font-weight: 600;
}

.thanks-info-box {
    background: #ffffff;
    color: #2c3e50;
    padding: 2.5rem;
    border-radius: 12px;
    margin: 3rem 0;
    text-align: left;
}

.thanks-info-box h2 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #1a252f;
}

.next-steps {
    margin-top: 2rem;
}

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

.step-number {
    width: 50px;
    height: 50px;
    background: #3498db;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.step-content p {
    color: #5a6c7d;
}

.thanks-resources {
    margin: 3rem 0;
}

.thanks-resources h2 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.resource-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.resource-link {
    background: rgba(255,255,255,0.15);
    padding: 1.5rem;
    border-radius: 8px;
    flex: 1;
    min-width: 250px;
    color: #ffffff;
    transition: background 0.3s ease;
}

.resource-link:hover {
    background: rgba(255,255,255,0.25);
    color: #ffffff;
}

.resource-link h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.resource-link p {
    opacity: 0.9;
    font-size: 0.95rem;
}

.thanks-contact {
    margin: 2rem 0;
    color: #ffffff;
}

.thanks-contact a {
    color: #ffffff;
    text-decoration: underline;
}

/* Legal Pages */
.legal-page {
    padding: 4rem 1.5rem;
    background: #ffffff;
}

.legal-updated {
    color: #5a6c7d;
    font-style: italic;
    margin-bottom: 2rem;
}

.legal-content {
    line-height: 1.8;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.legal-content h4 {
    font-size: 1.1rem;
    margin-top: 1.5rem;
    margin-bottom: 0.6rem;
    color: #2c3e50;
}

.legal-content p {
    margin-bottom: 1rem;
    color: #5a6c7d;
}

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

.legal-content li {
    margin-bottom: 0.5rem;
    color: #5a6c7d;
}

.legal-content strong {
    color: #2c3e50;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
}

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

.cookie-table th {
    background: #3498db;
    color: #ffffff;
    font-weight: 600;
}

.cookie-table tr:last-child td {
    border-bottom: none;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        display: none;
    }

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

    .hero-card h1 {
        font-size: 2rem;
    }

    .section-title-center {
        font-size: 1.8rem;
    }

    .tech-card,
    .value-card,
    .team-card {
        max-width: 100%;
    }

    .pricing-card {
        max-width: 100%;
    }

    .sticky-content {
        justify-content: center;
    }

    .timer-item {
        min-width: 80px;
        padding: 1rem 1.5rem;
    }

    .timer-number {
        font-size: 2.5rem;
    }

    .comparison-table {
        font-size: 0.85rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.8rem 0.5rem;
    }

    .service-detail-card {
        padding: 2rem 1.5rem;
    }
}

@media (min-width: 769px) {
    .container-cards {
        display: flex;
        flex-wrap: wrap;
        gap: 2rem;
    }

    .stat-card {
        flex: 1;
        min-width: 280px;
    }
}
