/* ========================================
   LENZ CONSULTING - STYLESHEET
   Professional & Modern Design
   ======================================== */

/* Variables & Reset */
:root {
    --primary-dark: #1a1a2e;
    --accent-red: #e94560;
    --text-dark: #4a4a5a;
    --text-light: #6c757d;
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --border-color: #e0e0e0;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.6;
    font-weight: 400;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.2;
}

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

h3 {
    font-size: 1.5rem;
    color: var(--primary-dark);
}

h4 {
    font-size: 1.1rem;
    font-weight: 700;
}

p {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

a {
    color: var(--accent-red);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: #d63447;
}

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

li {
    margin-bottom: 0.5rem;
}

/* ========================================
   CONTAINER
   ======================================== */

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

/* ========================================
   NAVIGATION
   ======================================== */

.navbar {
    background-color: var(--bg-white);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.navbar-logo a {
    font-weight: 900;
    font-size: 1.3rem;
    color: var(--primary-dark);
    letter-spacing: 1px;
}

.navbar-logo a:hover {
    color: var(--accent-red);
}

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

.nav-item {
    display: flex;
}

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-red);
    border-bottom-color: var(--accent-red);
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-dark);
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translateY(10px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-10px);
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
    display: inline-block;
    padding: 12px 28px;
    border: none;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    text-decoration: none;
    font-family: 'Lato', sans-serif;
}

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

.btn-primary:hover {
    background-color: #d63447;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(233, 69, 96, 0.3);
}

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

.btn-secondary:hover {
    background-color: #0f0f1e;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--accent-red);
    border: 2px solid var(--accent-red);
}

.btn-outline:hover {
    background-color: var(--accent-red);
    color: white;
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

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

.cta-button {
    background-color: var(--accent-red);
    color: white;
    padding: 8px 18px;
    border-radius: 4px;
    font-weight: 600;
}

.cta-button:hover {
    background-color: #d63447;
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #2d2d47 100%);
    color: white;
    padding: 120px 20px;
    text-align: center;
}

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

.hero-title {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    color: white;
    line-height: 1.3;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   SECTIONS
   ======================================== */

section {
    padding: 80px 20px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* Problem Section */
.problem-section {
    background-color: var(--bg-light);
}

.problem-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.problem-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    border-top: 4px solid var(--accent-red);
    transition: var(--transition);
}

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

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

/* Process Section */
.process-section {
    background-color: white;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    align-items: center;
    margin-top: 3rem;
}

.step {
    text-align: center;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.step-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent-red);
    margin-bottom: 1rem;
}

.step h3 {
    margin-bottom: 0.8rem;
}

.step-arrow {
    text-align: center;
    font-size: 1.5rem;
    color: var(--text-light);
    display: none;
}

/* Packages Section */
.packages-section {
    background-color: var(--bg-light);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.package-card {
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    border: 2px solid transparent;
    transition: var(--transition);
    position: relative;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.package-card h3 {
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.package-card .price {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent-red);
    margin-bottom: 0.5rem;
}

.package-card .price-note {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.package-card.featured {
    border: 2px solid var(--accent-red);
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(233, 69, 96, 0.2);
}

.package-card.featured .btn-primary {
    width: 100%;
}

.badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--accent-red);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

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

.features li {
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.features li:before {
    content: "";
    display: inline-block;
    width: 20px;
    margin-right: 10px;
}

.package-card .btn {
    width: 100%;
    margin-top: 1.5rem;
}

/* About Teaser */
.about-teaser-section {
    background-color: white;
}

.about-teaser-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 2rem;
}

.about-teaser-image {
    display: flex;
    justify-content: center;
}

.placeholder-image {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, #e0e0e0 0%, #f0f0f0 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1rem;
    text-align: center;
}

.about-teaser-content h2 {
    margin-bottom: 0.5rem;
}

.about-teaser-content h3 {
    color: var(--accent-red);
    font-weight: 400;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.about-teaser-content p {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

/* For Whom Section */
.for-whom-section {
    background-color: var(--bg-light);
}

.for-whom-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.for-whom-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

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

/* Trust & Quality Section */
.trust-section {
    background-color: white;
}

.trust-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.trust-badge {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
    border-top: 4px solid var(--accent-red);
    transition: var(--transition);
}

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

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

.trust-badge h3 {
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.trust-badge p {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* Lead Magnet */
.lead-magnet-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #2d2d47 100%);
    color: white;
    padding: 60px 20px;
}

.lead-magnet-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.lead-magnet-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.lead-magnet-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.email-form {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.email-form input {
    flex: 1;
    min-width: 200px;
    padding: 12px 16px;
    border: none;
    border-radius: 4px;
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
}

.email-form button {
    padding: 12px 28px;
}

.form-note {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

/* ========================================
   PAGE HEADER
   ======================================== */

.page-header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #2d2d47 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.page-header h1 {
    color: white;
    margin-bottom: 0.5rem;
}

.page-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
}

/* ========================================
   ABOUT PAGE
   ======================================== */

.about-section {
    background-color: white;
    padding: 80px 20px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    display: flex;
    justify-content: center;
}

.about-content h2 {
    margin-bottom: 1rem;
}

.about-content h3 {
    color: var(--accent-red);
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

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

.background-section {
    background-color: var(--bg-light);
    padding: 80px 20px;
}

.timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.timeline-item {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-red);
}

.timeline-date {
    color: var(--accent-red);
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.timeline-item h3 {
    margin-bottom: 1rem;
}

.usp-section {
    background-color: white;
    padding: 80px 20px;
}

.usp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.usp-card {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
    border-top: 4px solid var(--accent-red);
}

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

.beliefs-section {
    background-color: var(--bg-light);
    padding: 80px 20px;
}

.beliefs-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.belief-item {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-red);
}

.belief-item h3 {
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

/* ========================================
   SERVICES PAGE
   ======================================== */

.packages-detailed-section {
    background-color: white;
    padding: 80px 20px;
}

.package-detailed {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border-left: 5px solid var(--accent-red);
}

.package-detailed.featured {
    background: var(--primary-dark);
    color: white;
    border-left-color: var(--accent-red);
}

.package-detailed.featured h3,
.package-detailed.featured h4 {
    color: white;
}

.package-detailed.featured .package-tagline {
    color: rgba(255, 255, 255, 0.9);
}

.package-detailed-header {
    margin-bottom: 2rem;
}

.package-detailed-header h3 {
    margin-bottom: 0.5rem;
}

.package-tagline {
    color: var(--text-light);
    font-size: 1.05rem;
}

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

.package-left h4,
.package-right h4 {
    margin-bottom: 1.5rem;
}

.detailed-features {
    list-style: none;
}

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

.package-detailed.featured .detailed-features li {
    color: rgba(255, 255, 255, 0.95);
}

.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.timeline-step {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.step-indicator {
    width: 40px;
    height: 40px;
    background-color: var(--accent-red);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.package-detailed.featured .step-indicator {
    background-color: white;
    color: var(--primary-dark);
}

.timeline-step p {
    margin: 0;
    color: var(--text-dark);
}

.package-detailed.featured .timeline-step p {
    color: rgba(255, 255, 255, 0.95);
}

.package-meta {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    font-weight: 600;
}

.package-detailed.featured .package-meta {
    border-top-color: rgba(255, 255, 255, 0.2);
}

.package-meta .highlight {
    color: var(--accent-red);
    font-size: 1.1rem;
}

.addons-section {
    background-color: var(--bg-light);
    padding: 80px 20px;
}

.addons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.addon-card {
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    border: 2px solid var(--border-color);
    transition: var(--transition);
}

.addon-card:hover {
    border-color: var(--accent-red);
    box-shadow: 0 10px 30px rgba(233, 69, 96, 0.15);
}

.addon-card h3 {
    margin-bottom: 1rem;
}

.addon-price {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-red);
    margin-bottom: 1.5rem;
}

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

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

.addon-note {
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: italic;
}

.process-overview-section {
    background-color: white;
    padding: 80px 20px;
}

.process-steps-large {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-step-large {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.step-number-large {
    font-size: 3rem;
    font-weight: 900;
    color: var(--accent-red);
    margin-bottom: 1rem;
}

.whats-included-section {
    background-color: var(--bg-light);
    padding: 80px 20px;
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.included-item {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.included-item h3 {
    margin-bottom: 1rem;
}

/* ========================================
   FAQ PAGE
   ======================================== */

.faq-section {
    background-color: white;
    padding: 80px 20px;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    margin-top: 3rem;
}

.faq-item {
    margin-bottom: 1.5rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background-color: var(--bg-light);
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-dark);
    transition: var(--transition);
    text-align: left;
    font-family: 'Lato', sans-serif;
}

.faq-question:hover {
    background-color: #efefef;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 300;
    transition: var(--transition);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    display: none;
    padding: 1.5rem;
    background-color: white;
    color: var(--text-dark);
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    margin-bottom: 1rem;
}

.faq-answer ul,
.faq-answer ol {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.faq-answer li {
    margin-bottom: 0.5rem;
}

/* ========================================
   CONTACT PAGE
   ======================================== */

.contact-section {
    background-color: white;
    padding: 80px 20px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form-wrapper h2,
.contact-info-wrapper h2 {
    margin-bottom: 2rem;
}

.contact-form {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    color: var(--text-dark);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-red);
    box-shadow: 0 0 0 3px rgba(233, 69, 96, 0.1);
}

.form-group.checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.form-group.checkbox input {
    width: auto;
    margin-top: 0.35rem;
}

.form-group.checkbox label {
    margin: 0;
    font-weight: 400;
}

.form-group button {
    width: 100%;
    padding: 14px;
    background-color: var(--accent-red);
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Lato', sans-serif;
}

.form-group button:hover {
    background-color: #d63447;
    transform: translateY(-2px);
}

.form-success-message {
    color: #28a745;
    text-align: center;
    padding: 1rem;
    background-color: #f0f8f5;
    border-radius: 4px;
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
}

.contact-info-item {
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--border-color);
}

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

.contact-info-item h3 {
    margin-bottom: 0.8rem;
}

.contact-info-item p {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.contact-info-item.highlight {
    background-color: #fff5f5;
    padding: 1.5rem;
    border-radius: 8px;
    border: none;
    margin-bottom: 0;
    padding-bottom: 1.5rem;
}

.calendly-embed {
    margin-top: 1.5rem;
    border-radius: 8px;
    overflow: hidden;
}

.calendly-inline-widget {
    min-width: 100%;
    height: 700px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--primary-dark);
    color: white;
    border-radius: 4px;
    font-weight: 600;
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--accent-red);
    transform: translateY(-2px);
}

.next-steps-section {
    background-color: var(--bg-light);
    padding: 80px 20px;
}

.next-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.next-step {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.next-step .step-number {
    font-size: 2rem;
    color: var(--accent-red);
    margin-bottom: 1rem;
}

.faq-cta-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #2d2d47 100%);
    color: white;
    text-align: center;
    padding: 60px 20px;
}

.faq-cta-section h2 {
    color: white;
    margin-bottom: 1rem;
}

.faq-cta-section p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

/* ========================================
   CTA SECTION
   ======================================== */

.cta-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #2d2d47 100%);
    color: white;
    text-align: center;
    padding: 60px 20px;
}

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

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

/* ========================================
   LEGAL PAGES
   ======================================== */

.legal-section {
    background-color: white;
    padding: 80px 20px;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h2 {
    margin-top: 2rem;
    margin-bottom: 1.5rem;
}

.legal-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.legal-content h4 {
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.legal-content p {
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.legal-content ul,
.legal-content ol {
    margin-bottom: 1.5rem;
}

.legal-content li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.disclaimer-box {
    background-color: #fff5f5;
    border-left: 4px solid var(--accent-red);
    padding: 2rem;
    border-radius: 4px;
    margin: 2rem 0;
}

.disclaimer-box p {
    margin-bottom: 1rem;
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background-color: var(--primary-dark);
    color: white;
    padding: 60px 20px 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 2rem;
}

.footer-column h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.footer-column ul {
    list-style: none;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 0.7rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-column a:hover {
    color: var(--accent-red);
}

.footer-email {
    color: var(--accent-red);
    font-weight: 700;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* ========================================
   ANIMATIONS
   ======================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.fade-in:nth-child(1) { animation-delay: 0.1s; }
.fade-in:nth-child(2) { animation-delay: 0.2s; }
.fade-in:nth-child(3) { animation-delay: 0.3s; }
.fade-in:nth-child(4) { animation-delay: 0.4s; }
.fade-in:nth-child(5) { animation-delay: 0.5s; }
.fade-in:nth-child(6) { animation-delay: 0.6s; }

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

@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    h3 {
        font-size: 1.2rem;
    }

    .navbar-container {
        height: 60px;
    }

    .nav-menu {
        position: absolute;
        left: -100%;
        top: 60px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: left;
        transition: 0.3s;
        padding: 2rem 0;
        gap: 0;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        padding: 1rem 2rem;
        border-bottom: none;
    }

    .nav-link:hover,
    .nav-link.active {
        background-color: var(--bg-light);
        border-left: 3px solid var(--accent-red);
        border-bottom: none;
    }

    .hamburger {
        display: flex;
    }

    .hero {
        padding: 60px 20px;
    }

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

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

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    section {
        padding: 60px 20px;
    }

    .page-header {
        padding: 60px 20px;
    }

    .about-teaser-grid,
    .about-grid,
    .contact-grid,
    .package-detailed-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .placeholder-image {
        width: 250px;
        height: 250px;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .step-arrow {
        display: block !important;
        margin: 1rem 0;
    }

    .package-card.featured {
        transform: scale(1);
    }

    .email-form {
        flex-direction: column;
    }

    .email-form input,
    .email-form button {
        width: 100%;
    }

    .testimonials-grid,
    .for-whom-grid,
    .usp-grid,
    .beliefs-content,
    .included-grid,
    .addons-grid,
    .process-overview-section,
    .process-steps-large,
    .next-steps-grid {
        grid-template-columns: 1fr;
    }

    .faq-question {
        font-size: 0.95rem;
        padding: 1.2rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .social-links {
        flex-direction: column;
    }

    .social-link {
        width: 100%;
        text-align: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-column ul {
        margin-left: 0;
    }

    .timeline {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.6rem;
    }

    h2 {
        font-size: 1.5rem;
    }

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

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

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .btn-large {
        padding: 12px 24px;
        font-size: 1rem;
    }

    .package-card,
    .addon-card,
    .contact-form,
    .step,
    .problem-card,
    .for-whom-card,
    .testimonial-card {
        padding: 1.5rem;
    }

    .price {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .problem-cards,
    .packages-grid {
        gap: 1.5rem;
    }

    .about-teaser-content h2 {
        font-size: 1.5rem;
    }

    .timeline-step {
        flex-wrap: wrap;
    }

    .step-indicator {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}
