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

:root {
    --primary-color: #4D8C63;
    --primary-dark: #0F594C;
    --primary-light: #B8D9C0;
    --secondary-color: #D97E96;
    --accent-color: #D97E96;
    --success-color: #4D8C63;
    --background: #ffffff;
    --card-background: #ffffff;
    --text-primary: #0F594C;
    --text-secondary: #4D8C63;
    --border-color: #B8D9C0;
    --shadow: 0 1px 3px 0 rgba(15, 89, 76, 0.15);
    --shadow-lg: 0 10px 15px -3px rgba(15, 89, 76, 0.2);
}

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

/* ===========================
   TYPOGRAPHY
   =========================== */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

/* ===========================
   LAYOUT CONTAINERS
   =========================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

/* ===========================
   HEADER & NAVIGATION
   =========================== */
.main-header {
    background-color: var(--card-background);
    box-shadow: var(--shadow);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.logo a {
    text-decoration: none;
}

nav {
    display: flex;
    gap: 2rem;
}

nav a {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 1rem;
}

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

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

.btn-secondary:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
    background-color: rgba(217, 126, 150, 0.05);
}

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

/* ===========================
   HERO SECTION
   =========================== */
.hero {
    background: linear-gradient(135deg, #0F594C 0%, #4D8C63 100%);
    padding: 4rem 0;
    color: white;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.subtitle {
    font-size: 1.25rem;
    opacity: 0.95;
}

.hero-form-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
}

.hero-form-card h3 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

/* ===========================
   FORMS
   =========================== */
.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1rem;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(77, 140, 99, 0.1);
}

input.field-error,
select.field-error,
textarea.field-error {
    border-color: #f44336;
}

input.field-error:focus,
select.field-error:focus,
textarea.field-error:focus {
    border-color: #f44336;
    box-shadow: 0 0 0 3px rgba(244, 67, 54, 0.1);
}

textarea {
    resize: vertical;
}

.form-hint {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.form-note {
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-top: 1rem;
}

.form-note-center {
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-top: 1.5rem;
}

/* ===========================
   INFO SECTIONS
   =========================== */
.info-section,
.how-it-works,
.benefits {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

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

.info-card,
.benefit {
    background: var(--card-background);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -3px rgba(217, 126, 150, 0.25);
    border-top: 3px solid var(--accent-color);
}

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

.benefit-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    display: block;
}

/* ===========================
   STEPS (HOW IT WORKS)
   =========================== */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.step {
    text-align: center;
    padding: 2rem;
}

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

/* ===========================
   PROGRESS BAR
   =========================== */
.progress-bar-container {
    background: var(--card-background);
    padding: 2rem 0;
    border-bottom: 1px solid var(--border-color);
}

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

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
}

.progress-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--border-color);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.25rem;
}

.progress-step.active .progress-circle {
    background: var(--primary-color);
    color: white;
}

.progress-step.completed .progress-circle {
    background: var(--primary-color);
    color: white;
}

.progress-step span {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.progress-line {
    flex: 1;
    height: 3px;
    background: var(--border-color);
    margin: 0 0.5rem;
    margin-bottom: 25px;
}

.progress-line.active {
    background: var(--primary-color);
}

/* ===========================
   FORM SECTIONS
   =========================== */
.form-section {
    padding: 3rem 0;
    min-height: 60vh;
}

.form-card {
    background: var(--card-background);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    margin-bottom: 2rem;
}

.form-header {
    margin-bottom: 2.5rem;
    text-align: center;
}

.step-badge {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    margin-top: 2rem;
}

/* ===========================
   INFO BOXES
   =========================== */
.info-box,
.info-box-small {
    background: #f0f8f4;
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.info-box h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.checklist {
    list-style: none;
    margin-top: 1rem;
}

.checklist li {
    padding: 0.5rem 0;
    font-size: 1.05rem;
}

.highlight-box {
    background: linear-gradient(135deg, #4D8C63 0%, #0F594C 100%);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
}

.highlight-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.highlight-icon {
    font-size: 3rem;
}

.highlight-box h4 {
    margin-bottom: 0.5rem;
}

.highlight-box-final {
    background: #f0f8f4;
    border: 2px solid var(--primary-color);
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
}

.highlight-box-final h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.next-steps-list {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.next-steps-list li {
    margin: 0.75rem 0;
    font-size: 1.05rem;
}

.highlight-note {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 2px solid var(--primary-color);
}

/* ===========================
   RESULT PAGE
   =========================== */
.result-intro {
    text-align: center;
    padding: 2rem 0;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 2rem;
    box-shadow: 0 4px 15px rgba(217, 126, 150, 0.3);
}

.lead {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.time-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 2rem 0;
    font-size: 1.1rem;
}

.clock-icon {
    font-size: 1.5rem;
}

/* ===========================
   TRUST INDICATORS
   =========================== */
.trust-indicators {
    display: flex;
    justify-content: space-around;
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--card-background);
    border-radius: 8px;
}

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

.trust-item span {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.5rem;
}

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

/* ===========================
   SUMMARY SECTION
   =========================== */
.summary-section {
    background: var(--background);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    position: relative;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

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

.summary-label {
    font-weight: 600;
    color: var(--text-secondary);
}

.summary-value {
    color: var(--text-primary);
    text-align: right;
}

.edit-link {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background: transparent;
    color: var(--primary-color);
    font-size: 0.95rem;
    border: 1px solid var(--primary-color);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.edit-link:hover {
    background: var(--primary-color);
    color: white;
}

/* ===========================
   CONSENT SECTION
   =========================== */
.consent-section {
    margin: 2rem 0;
}

.checkbox-group {
    margin: 1rem 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 1rem;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.25rem;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

/* ===========================
   THANK YOU PAGE
   =========================== */
.thank-you-section {
    padding: 4rem 0;
    min-height: 70vh;
}

.thank-you-card {
    background: var(--card-background);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.success-animation {
    margin-bottom: 2rem;
}

.checkmark-circle {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    animation: scaleIn 0.5s ease;
    box-shadow: 0 4px 20px rgba(217, 126, 150, 0.4);
}

.checkmark {
    font-size: 4rem;
    color: white;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

.thank-you-content {
    text-align: left;
    margin-top: 3rem;
}

.timeline {
    margin: 2rem 0;
}

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

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

.timeline-content h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.confirmation-details {
    background: #fdf6f7;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.detail-box {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1rem 0;
}

.detail-box p {
    margin: 0.5rem 0;
}

.small-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-align: center;
}

.tips-list {
    list-style: none;
    margin: 1rem 0;
}

.tips-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.tips-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.next-steps-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0;
}

.social-proof {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
}

.testimonial {
    font-style: italic;
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin: 1rem 0;
}

.testimonial-author {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* ===========================
   CTA SECTION
   =========================== */
.cta-section {
    background: linear-gradient(135deg, #0F594C 0%, #4D8C63 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

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

.cta-section p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

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

.cta-section .btn-primary:hover {
    background: var(--background);
}

/* ===========================
   FOOTER
   =========================== */
.main-footer {
    background: var(--text-primary);
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h4 {
    margin-bottom: 1rem;
    color: white;
}

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

.footer-section ul li {
    margin: 0.5rem 0;
}

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

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* ===========================
   CONTENT PAGES STYLES
   =========================== */

/* Page Hero */
.page-hero {
    padding: 6rem 0;
    color: white;
    text-align: center;
}

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

.page-hero p {
    font-size: 1.3rem;
    opacity: 0.95;
}

/* Content Sections */
.content-section {
    padding: 4rem 0;
}

.content-card {
    background: var(--card-background);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    margin-bottom: 2rem;
}

.intro-box {
    background: #f0f8f4;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 3rem;
}

.intro-box h2 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

/* Legal Sections */
.legal-section {
    margin: 2.5rem 0;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.legal-section:last-child {
    border-bottom: none;
}

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

.legal-section h4 {
    color: var(--text-primary);
    margin: 1.5rem 0 0.75rem;
}

.legal-section ul {
    margin-left: 1.5rem;
    margin-top: 0.5rem;
}

.legal-section li {
    margin: 0.5rem 0;
}

/* Content Image Sections */
.content-image-section {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin: 3rem 0;
    box-shadow: var(--shadow-lg);
}

.content-image-section img {
    width: 100%;
    display: block;
    height: 400px;
    object-fit: cover;
}

.image-overlay-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(15, 89, 76, 0.95), transparent);
    color: white;
    padding: 2rem;
}

.image-overlay-text h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.image-overlay-text p {
    font-size: 1.1rem;
    margin: 0;
}

/* Highlight Info Box */
.highlight-box-info {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
}

.highlight-box-info h4 {
    color: white;
    margin-bottom: 1rem;
}

/* FAQ Styles */
.faq-category {
    margin: 3rem 0;
}

.category-title {
    color: var(--primary-dark);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--accent-color);
}

.faq-item {
    background: var(--card-background);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.faq-item h4 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.faq-item ul {
    margin-left: 1.5rem;
    margin-top: 0.5rem;
}

.faq-item li {
    margin: 0.5rem 0;
}

.process-steps {
    margin-top: 1rem;
}

.process-step {
    padding: 1rem;
    margin: 0.75rem 0;
    background: var(--background);
    border-left: 4px solid var(--accent-color);
    border-radius: 4px;
}

.text-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    margin-top: 0.5rem;
}

.text-link:hover {
    color: var(--accent-color);
}

/* CTA Box */
.cta-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    margin: 3rem 0;
}

.cta-box h3 {
    color: white;
    margin-bottom: 1rem;
}

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

/* Contact Page Styles */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-form-wrapper,
.contact-info-wrapper {
    background: var(--card-background);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.contact-form-wrapper h2 {
    margin-bottom: 1rem;
}

.contact-form {
    margin-top: 2rem;
}

.contact-info-card {
    background: var(--background);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--accent-color);
}

.contact-info-card h3 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.contact-info-card p {
    margin: 0.5rem 0;
}

.contact-info-card strong {
    color: var(--text-primary);
}

/* For Painters - Large Benefit Cards */
.benefit-card-large {
    background: var(--card-background);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -3px rgba(217, 126, 150, 0.25);
}

.benefit-card-large h3 {
    color: var(--primary-dark);
    margin: 1rem 0;
}

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

.step-large {
    background: var(--card-background);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
}

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

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.pricing-card {
    background: var(--card-background);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    border: 3px solid var(--accent-color);
    transform: scale(1.05);
}

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

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

.price {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-color);
    margin: 1rem 0;
}

.price-description {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin: 0;
    padding: 0;
}

.pricing-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.pricing-features li:last-child {
    border-bottom: none;
}

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

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

.stars {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

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

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

/* Requirements */
.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.requirement-item {
    display: flex;
    gap: 1.5rem;
    background: var(--card-background);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.check-icon {
    width: 50px;
    height: 50px;
    background: var(--success-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.requirement-item h4 {
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.requirement-item p {
    color: var(--text-secondary);
    margin: 0;
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */
@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.25rem; }

    .hero-content {
        grid-template-columns: 1fr;
    }

    .hero-text h2 {
        font-size: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

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

    .form-actions .btn-primary,
    .form-actions .btn-secondary {
        width: 100%;
    }

    nav {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .progress-bar {
        font-size: 0.85rem;
    }

    .progress-step span {
        font-size: 0.75rem;
    }

    .progress-circle {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .info-grid,
    .benefits-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }

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

    .next-steps-buttons {
        flex-direction: column;
    }

    .trust-indicators {
        flex-direction: column;
        gap: 1.5rem;
    }

    /* Content Pages Responsive */
    .page-hero h1 {
        font-size: 2rem;
    }

    .page-hero p {
        font-size: 1.1rem;
    }

    .content-card {
        padding: 1.5rem;
    }

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

    .image-overlay-text {
        padding: 1.5rem;
    }

    .image-overlay-text h3 {
        font-size: 1.3rem;
    }

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

    .requirement-item {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container,
    .container-small {
        padding: 0 15px;
    }

    .hero {
        padding: 2rem 0;
    }

    .hero-form-card {
        padding: 1.5rem;
    }

    .form-card {
        padding: 1.5rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}

