/* =========================================
   RESET & BASIC STYLES
   ========================================= */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8fbfd;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(255, 192, 203, 0.15) 0%, transparent 40%), /* Pastel Red/Pink hint */
        radial-gradient(circle at 90% 10%, rgba(173, 216, 230, 0.2) 0%, transparent 40%), /* Pastel Blue hint */
        radial-gradient(circle at 80% 80%, rgba(135, 206, 235, 0.15) 0%, transparent 40%), /* Blue effect */
        radial-gradient(circle at 20% 90%, rgba(255, 182, 193, 0.1) 0%, transparent 40%); /* Faint red hint */
    background-attachment: fixed;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* =========================================
   LAYOUT UTILITIES
   ========================================= */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.screen {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    background: transparent; /* Changed from #f0f2f5 to allow body gradient to show */
}

.screen.active {
    display: block;
    opacity: 1;
}

/* Header & Navigation */
header {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #333333;
    padding: 0;
    min-height: 80px;
    border-bottom: 3px solid #e8491d;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    min-height: 80px;
}

header a {
    color: #333333;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s;
}

header ul {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 0;
    padding: 0;
    list-style: none;
}

header li {
    display: inline-block;
    padding: 0 10px;
}

header #branding h1 {
    margin: 0;
    padding: 0;
}

header .logo {
    max-width: 100px;
    height: auto;
    display: block;
}

header nav {
    margin: 0;
}

header .current a, header a:hover {
    color: #00bcd4;
    font-weight: bold;
}

/* =========================================
   HERO & BANNER
   ========================================= */
.banner-full-width {
    display: block;
    width: 100%;
    margin-bottom: 20px;
    overflow: hidden; /* Prevent horizontal scroll when scaling */
}

.banner-full-width img {
    width: 100%;
    max-height: 350px;
    object-fit: cover;
    transform: scale(1.03); /* Slightly bump size out */
    transform-origin: center;
    transition: transform 0.3s ease; /* Smooth transition if we ever animate it */
}

.hero-section {
    background: white;
    padding: 60px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.hero-section h2 {
    color: #e8491d;
    margin-bottom: 20px;
    font-size: 2.2rem;
}

/* =========================================
   BUTTONS
   ========================================= */
.cta-button, .cta-button-large, .btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, #e8491d, #ff6b3d);
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 10px rgba(232, 73, 29, 0.3);
    text-decoration: none;
    text-align: center;
}

.cta-button:hover, .cta-button-large:hover, .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(232, 73, 29, 0.4);
}

.btn-secondary {
    display: inline-block;
    background: linear-gradient(135deg, #6f42c1, #a66efa);
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 10px rgba(111, 66, 193, 0.3);
    text-decoration: none;
    text-align: center;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(111, 66, 193, 0.4);
      color: white; /* Ensure text remains white on hover */
}

.btn-danger {
    display: inline-block;
    background: linear-gradient(135deg, #dc3545, #ff6b6b);
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 10px rgba(220, 53, 69, 0.3);
    text-decoration: none;
    text-align: center;
}

.btn-danger:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(220, 53, 69, 0.4);
}

/* =========================================
   FRAMEWORK CHIPS
   ========================================= */
.framework-chip {
    display: inline-block;
    padding: 10px 20px;
    background: white;
    border: 2px solid #00bcd4;
    border-radius: 30px;
    color: #00bcd4;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 4px 6px rgba(0,188,212,0.1);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    text-decoration: none;
    margin-bottom: 10px;
}

.framework-chip:hover {
    background: #00bcd4;
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 15px rgba(0,188,212,0.3);
}

.framework-chip:active {
    transform: translateY(-1px);
}

/* =========================================
   ACCORDION STYLES
   ========================================= */
.framework-accordion-container {
    max-width: 900px;
    margin: 0 auto;
}

.framework-accordion-item {
    background: white;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.framework-accordion-item.active {
    border-left: 4px solid #00bcd4;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.framework-accordion-header {
    width: 100%;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
    outline: none;
}

.framework-accordion-header:hover {
    background: #f9f9f9;
}

.header-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-content i {
    color: #00bcd4;
    font-size: 24px;
    width: 30px;
    text-align: center;
}

.framework-accordion-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.toggle-icon {
    font-size: 24px;
    color: #ccc;
    transition: transform 0.3s;
}

.framework-accordion-item.active .toggle-icon {
    transform: rotate(45deg);
    color: #00bcd4;
}

.framework-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
    background: #fafafa;
    padding: 0 20px;
}

.framework-accordion-item.active .framework-accordion-content {
    padding-bottom: 20px;
}

.framework-accordion-content p {
    margin-top: 15px;
    color: #555;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    margin-top: 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* =========================================
   AUDIENCE CARDS
   ========================================= */
.audience-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #eee;
    background: linear-gradient(to bottom right, #ffffff, #f9f9f9);
}

.audience-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.audience-card i {
    font-size: 50px;
    color: #e8491d;
    margin-bottom: 25px;
    background: #fff5f2;
    padding: 20px;
    border-radius: 50%;
    transition: transform 0.5s;
}

.audience-card:hover i {
    transform: rotateY(180deg);
}

.audience-card h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.audience-card p {
    color: #666;
    font-size: 1rem;
}

.audience-card .toggle-hint i {
    font-size: 16px;
    padding: 0;
    margin-bottom: 0;
    margin-left: 5px;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
}

/* =========================================
   HOW IT WORKS (PROCESS STEPS)
   ========================================= */
.process-connector {
    display: flex;
    justify-content: space-between;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding-top: 20px;
}

/* The connecting line */
.process-connector::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 4px;
    background: linear-gradient(90deg, #00bcd4, #28a745); /* Gradient line */
    z-index: 1;
    border-radius: 4px;
}

.process-step-new {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2; /* Above the line */
    padding: 0 15px;
}

.step-icon-circle {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border: 4px solid white; /* Creates gap from line if needed, but background covers it */
    font-size: 32px;
    position: relative; /* Ensure it stacks correctly */
    z-index: 2;
}

.process-step-new h3 {
    margin-bottom: 15px;
    color: #333;
    font-size: 1.2rem;
    font-weight: 700;
}

.process-step-new p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

/* =========================================
   FOOTER STYLES
   ========================================= */
footer {
    background-color: #ffffff;
    color: #555;
    padding: 60px 0 20px;
    margin-top: 60px;
    font-size: 14px;
    border-top: 5px solid #00bcd4;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.05);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-col {
    flex: 1;
    min-width: 250px;
}

.footer-col h3 {
    color: #00bcd4;
    margin-bottom: 25px;
    font-size: 18px;
    border-bottom: 2px solid #00bcd4;
    display: inline-block;
    padding-bottom: 5px;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #666;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: #e8491d;
    padding-left: 5px;
}

/* SOCIAL ICONS ANIMATIONS - FIXED & ENHANCED */
.social-icons {
    margin-top: 15px;
    display: flex;
    gap: 15px; /* Increased gap */
    justify-content: flex-start; /* Ensure left alignment */
    flex-wrap: wrap; /* Safety for small screens */
}

.copyright {
    text-align: center;
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid #eee;
    color: #999;
    width: 100%;
}

.social-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px; /* Slightly larger for better clickability */
    height: 45px; /* Slightly larger */
    background: #f0f0f0;
    color: #555;
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    font-size: 20px;
    margin-right: 5px; /* Fallback for gap */
}

.social-icons a:hover {
    background: #00bcd4;
    color: white;
    transform: translateY(-5px) rotate(360deg);
    box-shadow: 0 5px 15px rgba(0, 188, 212, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #eee;
    color: #999;
}

/* =========================================
   FAQ PAGE STYLES
   ========================================= */
.faq-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eee;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 20px 25px;
    background: white;
    border: none;
    font-size: 1.1em;
    font-weight: 600;
    color: #2c3e50;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
    outline: none;
}

.faq-question:hover {
    color: #e8491d;
    background: #fff9f5;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    background: #fafafa;
    padding: 0 25px;
}

.faq-answer p {
    margin: 20px 0;
    color: #555;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    border-top: 1px solid #eee;
}

.faq-item.active .faq-question {
    color: #e8491d;
    background: #fff9f5;
}

/* FAQ Contact Section */
.faq-contact {
    text-align: center;
    margin-top: 60px;
    margin-bottom: 60px;
    padding: 50px 30px;
    background: linear-gradient(135deg, #f9fcff 0%, #eef6ff 100%);
    border-radius: 20px;
    border: 1px solid #e0efff;
    box-shadow: 0 10px 30px rgba(0,188,212,0.1);
    position: relative;
    overflow: hidden;
}

.whatsapp-float {
    position: fixed;
    width: auto;
    height: 50px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 16px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: bold;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.05);
    color: #fff;
    box-shadow: 2px 4px 15px rgba(0,0,0,0.3);
}

.whatsapp-float i {
    margin-left: 10px;
    font-size: 24px;
}

.faq-contact h3 {
    font-size: 2em;
    color: #333;
    margin-bottom: 10px;
}

.faq-contact p {
    color: #666;
    font-size: 1.1em;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    color: white;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.email-btn {
    background: linear-gradient(45deg, #e8491d, #ff6b3d);
}

.whatsapp-btn {
    background: linear-gradient(45deg, #25d366, #128c7e);
}

/* =========================================
   DIAGNOSTIC / RESULTS PAGE STYLES (RESTORED & ENHANCED)
   ========================================= */

/* Ensure the main container on diagnostic page has white background where needed */
#results-screen .container,
#question-screen .container {
    max-width: 1000px;
}

/* Progress Bar */
.progress-container {
    width: 100%;
    background-color: #e9ecef;
    border-radius: 20px;
    margin: 30px 0;
    height: 25px;
    overflow: hidden;
    box-shadow: inset 0 2px 5px rgba(0,0,0,0.1);
}

.progress-bar {
    display: block; /* Ensure it is displayed */
    height: 100%;
    background: linear-gradient(90deg, #00bcd4, #00acc1);
    width: 0%;
    transition: width 0.5s ease;
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(0, 188, 212, 0.5);
    min-width: 10px; /* Force minimum width to be visible */
}

/* Question Cards */
.question-card {
    background: white;
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    text-align: center;
    border: 1px solid #eee;
}

.question-card h3 {
    font-size: 1.2rem;
    color: #e8491d;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.question-card h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.3;
}

#tooltip-text {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
    font-style: italic;
}

.options-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 700px;
    margin: 0 auto;
}

.option-card {
    background: #ffffff;
    border: 2px solid #e9ecef;
    padding: 20px 25px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    font-size: 1.2rem;
    text-align: left;
    position: relative;
    display: flex;
    align-items: center;
    color: #444;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.option-card:hover {
    border-color: #00bcd4;
    background: #f0fbfc;
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(0, 188, 212, 0.15);
}

.option-card.selected {
    background: #00bcd4;
    color: white;
    border-color: #00bcd4;
    box-shadow: 0 8px 20px rgba(0, 188, 212, 0.3);
    transform: translateY(-2px);
}

.option-card input[type="radio"] {
    margin-right: 15px;
    transform: scale(1.5);
    accent-color: #e8491d;
}

.option-card.selected input[type="radio"] {
    accent-color: white;
}

/* Results Tables & Analysis */
.analysis-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}

.analysis-card h3 {
    border-bottom: 2px solid #00bcd4;
    padding-bottom: 10px;
    margin-bottom: 20px;
    color: #333;
}

/* Enhanced Text Formatting for Results Content */
#results-screen p, 
#results-screen .analysis-card p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #444;
}

#results-screen ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 15px;
    padding-left: 10px;
}

#results-screen li {
    margin-bottom: 8px;
    line-height: 1.5;
}

#results-screen strong {
    color: #00bcd4;
    font-weight: 700;
}

/* Specific Table Styles for Results */
table#scores-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
    background: white;
}

table#scores-table th, 
table#scores-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
    font-size: 15px;
}

table#scores-table th {
    background-color: #f8f9fa;
    font-weight: 700;
    color: #2c3e50;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
}

table#scores-table tr:hover {
    background-color: #f1f1f1;
}

/* Charts */
.chart-container {
    position: relative;
    margin: 20px auto;
    height: 400px;
    width: 100%;
    max-width: 700px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

/* Strengths & Weaknesses */
.sw-grid {
    display: flex;
    gap: 30px;
    margin-top: 20px;
}

.sw-col {
    flex: 1;
    background: #fdfdfd;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #eee;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

.strengths-header {
    color: #28a745;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    font-size: 1.1em;
}

.weaknesses-header {
    color: #dc3545;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    font-size: 1.1em;
}

.sw-col ul li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    line-height: 1.5;
    color: #555;
    text-align: justify !important;
}

.sw-col ul li:before {
    content: "\f00c"; /* FontAwesome check */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #28a745;
}

.sw-col.weaknesses ul li:before {
    content: "\f00d"; /* FontAwesome times */
    color: #dc3545;
}

/* Fix for double markers in Strengths/Weaknesses due to results-screen list styles */
#results-screen .sw-col ul {
    list-style-type: none;
    margin-left: 0;
    padding-left: 0;
}

/* Alerts */
.alert-box {
    padding: 20px;
    background-color: #fff3cd;
    border-left: 5px solid #ffc107;
    color: #856404;
    border-radius: 4px;
    margin-bottom: 25px;
    font-weight: 500;
}

.hidden {
    display: none;
}

/* Nav Buttons */
.nav-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 50px;
}

/* RESTORE TEXT FORMATTING FOR INJECTED RESULTS CONTENT */
#results-screen #winner-desc,
#results-screen #winner-desc p,
#results-screen #extended-analysis,
#results-screen #extended-analysis p,
#results-screen #alignment-text,
#results-screen #alignment-text p,
#results-screen #structure-details,
#results-screen #structure-details p,
#results-screen .analysis-card p {
    margin-bottom: 15px;
    line-height: 1.6;
    text-align: justify !important;
}

#results-screen #winner-desc ul,
#results-screen #extended-analysis ul,
#results-screen #alignment-text ul,
#results-screen #structure-details ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 15px;
    padding-left: 20px;
}

#results-screen #winner-desc li,
#results-screen #extended-analysis li,
#results-screen #alignment-text li,
#results-screen #structure-details li {
    margin-bottom: 5px;
}

#results-screen #winner-desc h3,
#results-screen #extended-analysis h3 {
    margin-top: 25px;
    margin-bottom: 15px;
    color: #00bcd4;
    font-size: 1.3rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
}

#results-screen strong {
    color: #333;
    font-weight: 700;
}

/* =========================================
   MOBILE RESPONSIVENESS
   ========================================= */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 10px;
        padding-bottom: 10px;
    }

    header nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .footer-content {
        flex-direction: column;
    }

    .footer-col {
        width: 100%;
    }

    .audience-card {
        min-width: 100%;
    }
    
    .sw-grid {
        flex-direction: column;
    }
    
    .nav-buttons {
        flex-direction: column;
    }
    
    .cta-button, .cta-button-large, .btn-primary, .btn-secondary, .btn-danger {
        width: 100%;
    }
    
    /* Process Steps Mobile */
    .process-connector {
        flex-direction: column;
        gap: 40px;
    }
    
    .process-connector::before {
        width: 4px;
        height: 80%;
        left: 50%;
        top: 0;
        transform: translateX(-50%);
        background: linear-gradient(180deg, #00bcd4, #28a745);
    }

    .process-step-new {
        margin-bottom: 0;
    }
}

/* =========================================
   PRINT STYLES
   ========================================= */
@media print {
    .video-container {
        display: none !important;
    }
}
