/* ===================================
   BATERI KURSU - STYLE.CSS
   Mobile-First, Flexbox Only
   Asymmetric Creative Layout
   =================================== */

/* === RESET & BASE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #e63946;
    --secondary-color: #f1faee;
    --accent-color: #a8dadc;
    --dark: #1d3557;
    --text: #2b2d42;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --gray: #6c757d;
    --success: #06d6a0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text);
    line-height: 1.6;
    font-size: 16px;
    background: var(--white);
}

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

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

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
    transition: all 0.3s ease;
}

/* === COOKIE BANNER === */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: var(--white);
    padding: 1.5rem;
    z-index: 9999;
    display: none;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
}

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 2rem;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.9rem;
}

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

.btn-accept:hover {
    background: #d62839;
}

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

.btn-reject:hover {
    background: var(--white);
    color: var(--dark);
}

/* === NAVIGATION === */
.nav-floating {
    position: sticky;
    top: 0;
    background: var(--white);
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

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

.nav-links a {
    color: var(--text);
    font-weight: 500;
    position: relative;
}

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

.nav-cta {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
}

.nav-cta:hover {
    background: var(--dark);
    transform: translateY(-2px);
}

/* === HERO ASYMMETRIC === */
.hero-asymmetric {
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    padding: 3rem 5%;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.hero-content-offset {
    flex: 1;
    max-width: 600px;
    padding: 2rem 0;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.highlight-text {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-cta-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn-primary-large {
    background: var(--primary-color);
    color: var(--white);
    padding: 1.2rem 2.5rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    display: inline-block;
    text-align: center;
}

.btn-primary-large:hover {
    background: var(--dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.link-arrow {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.05rem;
}

.link-arrow:hover {
    color: var(--dark);
}

.hero-image-overlap {
    position: relative;
    margin-top: 2rem;
}

.hero-image-overlap img {
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.floating-badge {
    position: absolute;
    bottom: -20px;
    right: 20px;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    text-align: center;
}

.badge-number {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-color);
}

.badge-text {
    display: block;
    font-size: 0.85rem;
    color: var(--gray);
    margin-top: 0.3rem;
}

/* === STORY SECTION === */
.story-section {
    padding: 5rem 5%;
}

.story-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

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

.section-title-small {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

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

.inline-quote {
    background: var(--light-bg);
    padding: 1.5rem;
    border-left: 4px solid var(--primary-color);
    font-style: italic;
    margin: 2rem 0;
    border-radius: 5px;
}

.inline-quote cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-weight: 600;
    color: var(--primary-color);
}

/* === PROBLEM GRID === */
.problem-grid {
    padding: 5rem 5%;
    background: var(--light-bg);
}

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

.problem-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1rem;
}

.problem-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.problem-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

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

.problem-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.8rem;
}

.problem-card p {
    color: var(--gray);
    line-height: 1.7;
}

/* === INSIGHT OFFSET === */
.insight-offset {
    padding: 5rem 5%;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.insight-tag {
    display: inline-block;
    background: var(--accent-color);
    color: var(--dark);
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.insight-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 2rem;
    line-height: 1.3;
}

.insight-points {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.point-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.point-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    opacity: 0.3;
    line-height: 1;
}

.point-text h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.point-text p {
    color: var(--gray);
    line-height: 1.7;
}

/* === TESTIMONIALS SCATTER === */
.testimonials-scatter {
    padding: 5rem 5%;
    background: var(--dark);
    color: var(--white);
}

.testimonials-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 3rem;
}

.testimonial-grid-asymmetric {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.testimonial-card .stars {
    color: #ffc107;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.testimonial-card p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.testimonial-author strong {
    display: block;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.testimonial-author span {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* === BENEFITS VISUAL === */
.benefits-visual {
    padding: 5rem 5%;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.benefits-content-block h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 2rem;
}

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefit-row {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.benefit-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.benefit-text h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.benefit-text p {
    color: var(--gray);
    line-height: 1.7;
}

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

/* === HOW IT WORKS === */
.how-it-works {
    padding: 5rem 5%;
    background: var(--light-bg);
}

.how-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 3rem;
}

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

.step-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
}

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

.step-num {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    line-height: 60px;
    font-size: 1.8rem;
    font-weight: 800;
}

.step-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.8rem;
}

.step-card p {
    color: var(--gray);
    line-height: 1.7;
}

/* === PRICING REVEAL === */
.pricing-reveal {
    padding: 5rem 5%;
}

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

.pricing-intro h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1rem;
}

.pricing-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.price-card {
    background: var(--white);
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    padding: 2rem;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.price-card.featured {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(230,57,70,0.05) 0%, var(--white) 100%);
}

.featured-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
}

.price-header h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.price-desc {
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.price-amount {
    display: flex;
    align-items: baseline;
    gap: 0.3rem;
    margin: 2rem 0;
}

.price-amount .currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

.price-amount .period {
    font-size: 1.2rem;
    color: var(--gray);
}

.price-features {
    margin: 2rem 0;
}

.price-features li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #f0f0f0;
    color: var(--text);
}

.btn-price {
    width: 100%;
    background: var(--primary-color);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 700;
}

.btn-price:hover {
    background: var(--dark);
}

/* === CTA FORM SECTION === */
.cta-form-section {
    padding: 5rem 5%;
    background: linear-gradient(135deg, var(--dark) 0%, #2a4365 100%);
    color: var(--white);
}

.form-container-asymmetric {
    max-width: 800px;
    margin: 0 auto;
}

.form-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.form-intro h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.form-trust-badges {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.trust-badge {
    font-size: 0.95rem;
    opacity: 0.9;
}

.application-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    color: var(--text);
}

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

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

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

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

.btn-submit-form {
    width: 100%;
    background: var(--primary-color);
    color: var(--white);
    padding: 1.2rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 1rem;
}

.btn-submit-form:hover {
    background: var(--dark);
}

.form-privacy {
    text-align: center;
    font-size: 0.85rem;
    color: var(--gray);
    margin-top: 1rem;
}

.form-privacy a {
    color: var(--primary-color);
    text-decoration: underline;
}

/* === URGENCY BANNER === */
.urgency-banner {
    padding: 3rem 5%;
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.urgency-content h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.urgency-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.btn-urgency {
    background: var(--white);
    color: var(--primary-color);
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
}

.btn-urgency:hover {
    background: var(--dark);
    color: var(--white);
}

/* === FAQ SECTION === */
.faq-section {
    padding: 5rem 5%;
    max-width: 900px;
    margin: 0 auto;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 3rem;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.faq-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.8rem;
}

.faq-item p {
    color: var(--gray);
    line-height: 1.8;
}

/* === FINAL CTA === */
.final-cta {
    padding: 5rem 5%;
    background: var(--light-bg);
    text-align: center;
}

.final-cta h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1rem;
}

.final-cta p {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 2rem;
}

.btn-final-cta {
    background: var(--primary-color);
    color: var(--white);
    padding: 1.2rem 3rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
}

.btn-final-cta:hover {
    background: var(--dark);
}

/* === FOOTER === */
.site-footer {
    background: var(--dark);
    color: var(--white);
    padding: 4rem 5% 2rem;
}

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

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

.footer-col p,
.footer-col ul li {
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

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

/* === STICKY CTA === */
.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--primary-color);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 999;
    transition: all 0.3s ease;
}

.sticky-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(0,0,0,0.4);
}

.sticky-cta span {
    font-size: 0;
}

.btn-sticky {
    background: var(--white);
    color: var(--primary-color);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
}

/* === ABOUT PAGE === */
.about-hero {
    padding: 5rem 5%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    background: var(--light-bg);
}

.about-hero-content h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1rem;
}

.about-intro {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--gray);
}

.about-hero-image img {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.mission-section {
    padding: 5rem 5%;
}

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

.mission-content h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1rem;
}

.mission-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.stat-box {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    min-width: 150px;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
}

.stat-label {
    display: block;
    font-size: 0.95rem;
    color: var(--gray);
    margin-top: 0.5rem;
}

.team-section {
    padding: 5rem 5%;
    background: var(--light-bg);
}

.team-section h2 {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1rem;
}

.team-intro {
    text-align: center;
    color: var(--gray);
    margin-bottom: 3rem;
}

.team-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.member-image {
    margin-bottom: 1.5rem;
}

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

.team-member h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

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

.member-bio {
    color: var(--gray);
    line-height: 1.7;
}

.values-section {
    padding: 5rem 5%;
}

.values-section h2 {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 3rem;
}

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

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

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

.value-item h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.8rem;
}

.value-item p {
    color: var(--gray);
    line-height: 1.7;
}

.story-timeline {
    padding: 5rem 5%;
    background: var(--light-bg);
}

.story-timeline h2 {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 3rem;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.timeline-item {
    display: flex;
    gap: 2rem;
}

.timeline-year {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary-color);
    flex-shrink: 0;
}

.timeline-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--gray);
    line-height: 1.7;
}

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

.about-cta h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1rem;
}

.about-cta p {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 2rem;
}

/* === SERVICES PAGE === */
.services-hero {
    padding: 5rem 5%;
    background: var(--light-bg);
    text-align: center;
}

.services-hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1rem;
}

.all-services {
    padding: 5rem 5%;
}

.service-item {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 5rem;
    padding-bottom: 5rem;
    border-bottom: 2px solid #f0f0f0;
}

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

.service-badge {
    display: inline-block;
    background: var(--accent-color);
    color: var(--dark);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-badge.popular {
    background: var(--primary-color);
    color: var(--white);
}

.service-badge.premium {
    background: #ffd700;
    color: var(--dark);
}

.service-content h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1rem;
}

.service-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 2rem;
}

.service-features h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.service-features ul {
    list-style: none;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--text);
}

.service-pricing {
    margin-top: 2rem;
}

.price-tag {
    display: flex;
    align-items: baseline;
    gap: 0.3rem;
    margin-bottom: 1.5rem;
}

.price-tag .price-amount {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
}

.price-tag .price-period {
    font-size: 1.1rem;
    color: var(--gray);
}

.btn-service-select {
    background: var(--primary-color);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 700;
}

.btn-service-select:hover {
    background: var(--dark);
}

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

.comparison-section {
    padding: 5rem 5%;
    background: var(--light-bg);
}

.comparison-section h2 {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 3rem;
}

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

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
}

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

.comparison-table th {
    background: var(--dark);
    color: var(--white);
    font-weight: 700;
}

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

.guarantee-section {
    padding: 5rem 5%;
}

.guarantee-section h2 {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 3rem;
}

.guarantee-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.guarantee-item {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

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

.guarantee-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.8rem;
}

.guarantee-item p {
    color: var(--gray);
    line-height: 1.7;
}

.services-cta {
    padding: 5rem 5%;
    background: var(--dark);
    color: var(--white);
    text-align: center;
}

.services-cta h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.services-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* === CONTACT PAGE === */
.contact-hero {
    padding: 5rem 5%;
    background: var(--light-bg);
    text-align: center;
}

.contact-hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1rem;
}

.contact-info-section {
    padding: 5rem 5%;
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-card {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

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

.contact-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.contact-card p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 0.8rem;
}

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

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

.map-section {
    padding: 5rem 5%;
    background: var(--light-bg);
}

.map-section h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 2rem;
}

.map-container {
    max-width: 900px;
    margin: 0 auto;
}

.map-placeholder {
    background: var(--white);
    padding: 5rem 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px dashed #e0e0e0;
}

.map-placeholder p {
    font-size: 1.5rem;
    color: var(--gray);
}

.map-note {
    font-size: 1rem !important;
    margin-top: 1rem;
}

.contact-faq {
    padding: 5rem 5%;
}

.contact-faq h2 {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 3rem;
}

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

.faq-item-compact h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.faq-item-compact p {
    color: var(--gray);
    line-height: 1.7;
}

.alternative-contact {
    padding: 5rem 5%;
    background: var(--light-bg);
}

.alternative-contact h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 3rem;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
}

.social-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

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

.social-text strong {
    display: block;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.3rem;
}

.social-text p {
    color: var(--gray);
}

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

.contact-cta h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1rem;
}

.contact-cta p {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 2rem;
}

/* === THANKS PAGE === */
.thanks-hero {
    padding: 5rem 5%;
    background: linear-gradient(135deg, var(--success) 0%, #04a777 100%);
    color: var(--white);
    text-align: center;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: var(--white);
    color: var(--success);
    border-radius: 50%;
    line-height: 80px;
    font-size: 3rem;
    font-weight: 900;
    margin: 0 auto 2rem;
}

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

.thanks-subtitle {
    font-size: 1.2rem;
}

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

.next-steps h2 {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 3rem;
}

.steps-timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    gap: 2rem;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    line-height: 50px;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 800;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--gray);
    line-height: 1.7;
}

.what-to-expect {
    padding: 5rem 5%;
    background: var(--light-bg);
}

.what-to-expect h2 {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 3rem;
}

.expect-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.expect-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

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

.expect-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.8rem;
}

.expect-item p {
    color: var(--gray);
    line-height: 1.7;
}

.thanks-testimonial {
    padding: 5rem 5%;
    background: var(--dark);
    color: var(--white);
    text-align: center;
}

.thanks-testimonial blockquote {
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 1.5rem;
}

.thanks-testimonial cite {
    font-style: normal;
    font-weight: 600;
    opacity: 0.8;
}

.quick-links-section {
    padding: 5rem 5%;
}

.quick-links-section h2 {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 3rem;
}

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

.quick-link-card {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

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

.quick-link-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.quick-link-card p {
    color: var(--primary-color);
    font-weight: 600;
}

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

.social-proof-thanks h2 {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 3rem;
}

.social-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.social-stat {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    min-width: 200px;
}

.stat-big {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-color);
}

.social-stat p {
    margin-top: 0.5rem;
    color: var(--gray);
}

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

.thanks-final-cta h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1rem;
}

.thanks-final-cta p {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 2rem;
}

.social-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.social-btn {
    background: var(--primary-color);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 700;
    display: block;
}

.social-btn:hover {
    background: var(--dark);
}

/* === POLICY PAGES === */
.policy-header {
    padding: 5rem 5% 3rem;
    background: var(--light-bg);
    text-align: center;
}

.policy-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1rem;
}

.update-date {
    color: var(--gray);
    font-size: 0.95rem;
}

.policy-content {
    padding: 3rem 5% 5rem;
}

.policy-container {
    max-width: 900px;
    margin: 0 auto;
}

.policy-container h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark);
    margin: 2.5rem 0 1rem;
}

.policy-container h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
    margin: 1.5rem 0 0.8rem;
}

.policy-container p {
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 1rem;
}

.policy-container ul,
.policy-container ol {
    margin: 1rem 0 1rem 2rem;
}

.policy-container li {
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 0.5rem;
    list-style: disc;
}

.policy-container a {
    color: var(--primary-color);
    text-decoration: underline;
}

.policy-container a:hover {
    color: var(--dark);
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
}

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

.cookie-table th {
    background: var(--light-bg);
    font-weight: 700;
    color: var(--dark);
}

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

/* === RESPONSIVE DESIGN === */

/* Tablet (768px and up) */
@media (min-width: 768px) {
    .hero-asymmetric {
        flex-direction: row;
        align-items: center;
    }

    .hero-content-offset {
        flex: 1;
    }

    .hero-image-overlap {
        flex: 1;
        margin-top: 0;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .hero-cta-group {
        flex-direction: row;
        align-items: center;
    }

    .story-container {
        flex-direction: row;
        align-items: center;
    }

    .story-image-side,
    .story-content-side {
        flex: 1;
    }

    .problem-cards {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .problem-card {
        flex: 1;
        min-width: calc(50% - 1rem);
    }

    .insight-offset {
        flex-direction: row;
        align-items: center;
    }

    .insight-visual,
    .insight-content {
        flex: 1;
    }

    .testimonial-grid-asymmetric {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .testimonial-card {
        flex: 1;
        min-width: calc(50% - 1rem);
    }

    .benefits-visual {
        flex-direction: row;
        align-items: center;
    }

    .benefits-content-block,
    .benefits-image-stack {
        flex: 1;
    }

    .how-steps {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .step-card {
        flex: 1;
        min-width: calc(33.333% - 1.5rem);
    }

    .pricing-cards {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .price-card {
        flex: 1;
        min-width: calc(33.333% - 1.5rem);
    }

    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .sticky-cta span {
        font-size: 0.95rem;
    }

    .nav-floating {
        flex-wrap: nowrap;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-col {
        flex: 1;
    }

    .team-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .team-member {
        flex: 1;
        min-width: calc(50% - 1rem);
    }

    .values-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value-item {
        flex: 1;
        min-width: calc(50% - 1rem);
    }

    .about-hero {
        flex-direction: row;
        align-items: center;
    }

    .about-hero-content,
    .about-hero-image {
        flex: 1;
    }

    .service-item {
        flex-direction: row;
        align-items: center;
    }

    .service-item.reverse {
        flex-direction: row-reverse;
    }

    .service-content,
    .service-image {
        flex: 1;
    }

    .guarantee-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .guarantee-item {
        flex: 1;
        min-width: calc(50% - 1rem);
    }

    .contact-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .contact-card {
        flex: 1;
        min-width: calc(50% - 1rem);
    }

    .social-links {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .social-item {
        flex: 1;
        min-width: calc(50% - 1rem);
    }

    .expect-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .expect-item {
        flex: 1;
        min-width: calc(50% - 1rem);
    }

    .quick-links-grid {
        flex-direction: row;
    }

    .quick-link-card {
        flex: 1;
    }

    .social-buttons {
        flex-direction: row;
        max-width: 100%;
        justify-content: center;
    }
}

/* Desktop (1024px and up) */
@media (min-width: 1024px) {
    .hero-title {
        font-size: 4rem;
    }

    .problem-card {
        min-width: calc(25% - 1.5rem);
    }

    .testimonial-card {
        min-width: calc(25% - 1.5rem);
    }

    .team-member {
        min-width: calc(25% - 1.5rem);
    }

    .value-item {
        min-width: calc(25% - 1.5rem);
    }

    .guarantee-item {
        min-width: calc(25% - 1.5rem);
    }

    .contact-card {
        min-width: calc(25% - 1.5rem);
    }

    .expect-item {
        min-width: calc(25% - 1.5rem);
    }
}
