/**
 * Pro-Fyxer - Homepage Styles
 * Blue Theme - Clean, Organized, Fully Responsive
 * All sections properly structured with consistent spacing
 */

/* ========================================
   CSS CUSTOM PROPERTIES (VARIABLES)
   ======================================== */
:root {
    /* Primary Brand Colors */
    --color-primary: #2563eb;
    --color-primary-dark: #1d4ed8;
    --color-primary-light: #dbeafe;
    
    --color-secondary: #0ea5e9;
    --color-accent: #38bdf8;
    
    /* Background Colors */
    --color-bg-light: #f8faff;
    --color-bg-white: #ffffff;
    --color-bg-gray: #f1f5f9;
    --color-bg-gradient: linear-gradient(135deg, #eff6ff, #e0f2fe);
    
    /* Text Colors */
    --color-text-primary: #1f2937;
    --color-text-secondary: #6b7280;
    --color-text-muted: #9ca3af;
    
    /* Accent Colors */
    --color-success: #22c55e;
    --color-orange: #f97316;
    
    /* Spacing Scale */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.12);
    --shadow-md: 0 4px 6px rgba(15, 23, 42, 0.16);
    --shadow-lg: 0 8px 16px rgba(37, 99, 235, 0.35);
    --shadow-xl: 0 12px 24px rgba(37, 99, 235, 0.4);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--color-bg-light);
    color: var(--color-text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* ========================================
   NAVIGATION BAR
   ======================================== */
.navbar {
    padding: 0.75rem 0;
    box-shadow: var(--shadow-sm);
    background-color: var(--color-bg-white) !important;
    transition: all 0.3s ease;
}

.navbar-brand {
    margin-right: 3rem;
}

.nav-brand-img {
    height: 45px;
    width: auto;
}

.navbar-nav .nav-link {
    color: var(--color-text-secondary);
    font-weight: 600;
    padding: 0.5rem 1.25rem !important;
    transition: color 0.2s;
    font-size: 0.95rem;
}

.navbar-nav .nav-link:hover {
    color: var(--color-primary);
}

.dropdown-toggle::after {
    vertical-align: middle;
    margin-left: 0.4rem;
}

/* Navigation CTA Buttons */
.btn-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0 1.5rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.9rem;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.btn-primary.btn-nav {
    background: var(--color-primary);
    border: none;
    color: #ffffff !important;
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.2);
}

.btn-outline-primary.btn-nav {
    background: transparent;
    border: 1.5px solid var(--color-primary);
    color: var(--color-primary) !important;
}

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

.btn-outline-primary.btn-nav:hover {
    background: var(--color-primary-light);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero-section {
    background: var(--color-bg-gradient);
    padding: 100px 0;
}

.hero-logo-container {
    margin-bottom: 1.5rem;
}

.hero-floating-logo {
    width: 150px;
    height: auto;
    animation: float 3s ease-in-out infinite;
}

.hero-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero-tagline {
    font-size: 0.95rem;
    color: #475569;
    max-width: 440px;
    margin-bottom: 2rem;
    line-height: 1.6;
}
.hero-main-image {
    max-width: 650px;  /* adjust as you like */
    width: 100%;
    height: auto;
}
@media (min-width: 992px) {
    .hero-main-image {
        max-width: 750px;
    }
}

/* NEW: Dashboard Image Style */
.hero-dashboard-img {
    width: 100%;
    max-width: 600px; /* Limits size on ultra-wide screens */
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1); /* Makes it look like it's floating */
    border: 1px solid rgba(0,0,0,0.05); /* Soft border for light backgrounds */
    animation: float 4s ease-in-out infinite; /* Matches the mascot's vibe */
}

/* CTA Buttons */
.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-cta,
.btn-cta-secondary {
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1.8rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-cta {
    background: var(--color-primary);
    color: #ffffff !important;
    border: none;
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.2);
}

.btn-cta-secondary {
    background: #ffffff;
    color: var(--color-primary) !important;
    border: 1.5px solid #e2e8f0;
}

.trust-line-text {
    font-size: 0.9rem;
    color: #64748b;
    display: flex;
    align-items: center;
}

/* Shared Animation */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* ========================================
   PROBLEM SECTION (NEW - 3 CARDS)
   ======================================== */
.problem-section {
    padding: var(--spacing-xl) var(--spacing-sm);
    background: var(--color-bg-white);
}

.problem-heading {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-text-primary);
    margin-bottom: var(--spacing-md);
    text-align: center;
    line-height: 1.3;
}

.problem-card {
    background: var(--color-bg-white);
    border: 2px solid rgba(37, 99, 235, 0.2);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(37, 99, 235, 0.25);
    border-color: rgba(37, 99, 235, 0.35);
}

.problem-icon {
    width: 70px;
    height: 70px;
     background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.problem-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 1rem;
}

.problem-card-description {
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-bottom: 0;
}

.problem-solution-text {
    text-align: center;
    font-size: 1.125rem;
    color: var(--color-text-primary);
    font-weight: 600;
    margin-top: var(--spacing-md);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ========================================
   SOLUTION SECTION (3 Feature Columns)
   ======================================== */
.solution-section {
    padding: var(--spacing-xl) var(--spacing-sm);
    background: var(--color-bg-gradient);
}

.solution-card {
    background: var(--color-bg-white);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.solution-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: var(--radius-md);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.solution-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 1rem;
}

.solution-description {
    color: var(--color-text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

/* ========================================
   LINKEDIN SCORE VISUAL SECTION
   ======================================== */
.score-visual-section {
    padding: var(--spacing-xl) var(--spacing-sm);
    background: var(--color-bg-white);
}
.score-visual-container .btn-cta-centered {
    display: inline-flex;    /* Forces button to shrink to text width */
    width: auto;             /* Removes the full-width stretching */
    max-width: fit-content;  /* Ensures it doesn't grow past the text */
    margin: 0 auto;          /* Centers it perfectly in the container */
    padding: 0 2.5rem;       /* Keeps nice horizontal spacing inside */
    text-align: center;
}
.score-visual-container {
    display: flex;
    flex-direction: column;
    align-items: center;    /* Centers all children horizontally without stretching them */
}
.score-visual-heading {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-text-primary);
    margin-bottom: 1.5rem;
}

.score-visual-text {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    max-width: 650px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.score-graphic {
    width: 200px;
    height: 200px;
    margin: 2rem auto;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-xl);
    position: relative;
}

.score-graphic::before {
    content: "?";
    font-size: 5rem;
    font-weight: 800;
    color: white;
}

/* ========================================
   FEATURES SECTION
   ======================================== */
.features-section {
    padding: var(--spacing-xl) var(--spacing-sm);
    background: var(--color-bg-gradient);
}
.feature-card {
    padding: 2rem;
    background: var(--color-bg-white);
    border: 2px solid rgba(37, 99, 235, 0.18);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(37, 99, 235, 0.35);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: var(--radius-lg);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 1rem;
}

.feature-description {
    color: var(--color-text-secondary);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* ========================================
   HOW IT WORKS SECTION
   ======================================== */
.how-it-works-section {
    padding: var(--spacing-xl) var(--spacing-sm);
    background: var(--color-bg-white);
}

.step-card {
    padding: 2.5rem 2rem;
    background: var(--color-bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    box-shadow: var(--shadow-md);
}

.step-icon {
    width: 70px;
    height: 70px;
    background: var(--color-primary-light);
    border-radius: var(--radius-md);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    margin-top: 1rem;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 1rem;
}

.step-description {
    color: var(--color-text-secondary);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* ========================================
   SAFETY & COMPLIANCE SECTION
   ======================================== */
.safety-section {
    padding: var(--spacing-xl) var(--spacing-sm);
    background: var(--color-bg-gradient);
}

.safety-heading {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-text-primary);
    margin-bottom: 1.5rem;
    text-align: center;
}

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

.safety-list {
    list-style: none;
    padding: 0;
    /* Added width and margin to keep the list centered like the image */
    width: fit-content;
    margin: 2rem auto;
}

.safety-list li {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    padding: 0.5rem 0;
    /* ADJUSTED: 2rem provides the perfect gap between check and text */
    padding-left: 2rem; 
    position: relative;
    line-height: 1.6;
    text-align: left;
}

.safety-list li::before {
    content: "✓";
    position: absolute;
    /* Keeps the checkmark aligned to the left of the padding */
    left: 0;
    color: var(--color-success);
    font-weight: 700;
    font-size: 1.5rem;
    /* Ensures the checkmark is vertically centered with the first line */
    top: 0.25rem; 
}

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

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--color-text-primary);
    font-size: 0.95rem;
}

.trust-badge i {
    color: var(--color-success);
    font-size: 1.5rem;
}
/* ========================================
   TESTIMONIALS SECTION
   ======================================== */
.testimonials-section {
    padding: var(--spacing-xl) var(--spacing-sm);
    background: var(--color-bg-white);
}

.testimonial-card {
    background: var(--color-bg-white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    height: 100%;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

.testimonial-text {
    font-size: 1rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
    flex: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.author-info {
    flex: 1;
    text-align: left;
}

.author-name {
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 0.25rem;
}

.author-title {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

/* ========================================
   PRICING/PLANS SECTION
   ======================================== */
.plans-section {
    padding: var(--spacing-xl) var(--spacing-sm);
    background-color: var(--color-bg-gradient);
}

.plan-card {
    background: var(--color-bg-white);
    border: 2px solid rgba(37, 99, 235, 0.18);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: var(--shadow-sm);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(37, 99, 235, 0.35);
}

.plan-card-featured {
    border: 2px solid var(--color-primary);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.06), rgba(14, 165, 233, 0.06));
    box-shadow: var(--shadow-lg);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.plan-card-header {
    text-align: center;
    margin-bottom: 2rem;
}

.plan-icon {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-md);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.plan-icon-free {
    background: linear-gradient(135deg, var(--color-success), #16a34a);
    color: white;
}

.plan-icon-solo {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: white;
}

.plan-icon-pro {
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    color: white;
}

.plan-name {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 0.5rem;
}

.plan-price {
    margin-bottom: 1rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
}

.price-period {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    font-weight: 500;
}

.plan-description {
    color: var(--color-text-secondary);
    font-size: 0.9375rem;
    margin-bottom: 0;
}

.plan-card-body {
    margin-bottom: 2rem;
    flex: 1;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f3f4f6;
}

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

.plan-features li i {
    color: var(--color-success);
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.plan-features li span {
    color: var(--color-text-secondary);
    font-size: 0.9375rem;
    line-height: 1.5;
}

.plan-card-footer {
    margin-top: auto;
}

.btn-plan {
    font-weight: 600;
    padding: 0.875rem 2rem;
    border-radius: var(--radius-md);
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
    width: 100%;
    text-align: center;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.btn-primary {
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    border: none;
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(90deg, var(--color-primary-dark), #0284c7);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: white;
}

.cta-subtext {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.cta-subtext a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
}

.cta-subtext a:hover {
    text-decoration: underline;
}

/* ========================================
   FAQ SECTION
   ======================================== */
.faq-section {
    padding: var(--spacing-xl) var(--spacing-sm);
    background: var(--color-bg-white);
}

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

.accordion-button {
    font-weight: 600;
    font-size: 1.125rem;
    color: var(--color-text-primary);
    background-color: var(--color-bg-white);
}

.accordion-button:not(.collapsed) {
    background-color: var(--color-primary-light);
    color: var(--color-primary);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(37, 99, 235, 0.25);
}

.accordion-body {
    font-size: 1rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

.accordion-item {
    border: 1px solid rgba(37, 99, 235, 0.18);
    margin-bottom: 1rem;
    border-radius: var(--radius-md) !important;
    overflow: hidden;
}

/* ========================================
   FINAL CTA SECTION
   ======================================== */
.final-cta-section {
    padding: 80px 20px; /* Vertical padding for the section */
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: white;
    text-align: center;
}

.final-cta-heading {
    /* Slightly smaller font to ensure the long first sentence stays on one line */
    font-size: clamp(1.5rem, 5vw, 2.2rem); 
    font-weight: 800;
    color: white;
    /* Increased max-width to prevent premature wrapping */
    max-width: 1000px; 
    margin: 0 auto 40px auto;
    line-height: 1.4;
}

.cta-line {
    display: block;
    /* This creates the spacing BETWEEN the two lines of text */
    margin-bottom: 10px; 
}

.cta-line:last-child {
    margin-bottom: 0;
}

.final-cta-button-container {
    /* Creates the padding/spacing between the text and the button */
    padding-top: 10px;
}

.btn-cta-final {
    background: white;
    color: var(--color-primary) !important;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 0.8rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.btn-cta-final:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
    background-color: #ffffff;
    opacity: 0.95;
}

/* Mobile Fix */
@media (max-width: 768px) {
    .final-cta-heading {
        font-size: 1.5rem;
    }
    .cta-line {
        display: inline; /* Allow natural wrapping on very small phones */
    }
}
/* ========================================
   SECTION TITLES & SUBTITLES
   ======================================== */
.section-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--color-text-primary);
    margin-bottom: var(--spacing-sm);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   FOOTER SECTION 
   ======================================== */
.footer-section {
    background: linear-gradient(135deg, #1e3a8a, #1e40af);
    color: white;
    padding: 80px 0 30px 0; /* Top/Bottom padding */
    overflow: hidden;
}

.footer-brand-img {
    height: 45px;
    width: auto;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 350px; /* Prevents text from stretching too wide */
}

.footer-heading {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-link:hover {
    color: white;
    padding-left: 5px; /* Slight movement effect */
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: white;
    color: #1e40af;
    transform: translateY(-3px);
}

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

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

.footer-company-note {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
}

/* ========================================
   RESPONSIVE FIXES
   ======================================== */

/* Tablets (iPad) */
@media (max-width: 991px) {
    .footer-section {
        padding: 60px 0 30px 0;
    }
    .footer-description {
        max-width: 100%; /* Let it use full width on smaller screens */
    }
}

/* Mobile Phones */
@media (max-width: 576px) {
    .footer-heading {
        margin-top: 1rem;
    }
    .footer-bottom {
        margin-top: 30px;
    }
}
/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

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

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

/* Large Tablets and Below (max-width: 991px) */
@media (max-width: 991.98px) {
    .navbar-brand {
        margin-right: 0;
    }
    
    .navbar-nav .nav-link {
        padding: 0.75rem 0 !important;
        border-bottom: 1px solid #f1f5f9;
    }
    
    .btn-nav {
        margin: 0.5rem 0;
        width: 100%;
    }
    
    .hero-section {
        text-align: center;
        padding: 60px 0;
    }
    
    .hero-logo-container,
    .hero-cta-group,
    .trust-line-text {
        justify-content: center;
    }
    
    .hero-floating-logo {
        width: 140px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-tagline {
        max-width: 100%;
    }
    
    .profile-score-card {
        flex-direction: row;
        text-align: left;
        max-width: 100%;
    }
    
    .section-title {
        font-size: 2.25rem;
    }
    
    .problem-heading,
    .safety-heading,
    .score-visual-heading,
    .final-cta-heading {
        font-size: 2rem;
    }
}

/* Tablets (max-width: 767px) */
@media (max-width: 767.98px) {
    .hero-title {
        font-size: 1.6rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .problem-heading,
    .safety-heading,
    .score-visual-heading {
        font-size: 1.75rem;
    }
    
    .final-cta-heading {
        font-size: 1.75rem;
    }
    
    .solution-card,
    .feature-card,
    .step-card,
    .testimonial-card,
    .problem-card {
        padding: 1.5rem;
    }
    
    .solution-icon,
    .feature-icon,
    .problem-icon {
        width: 65px;
        height: 65px;
        font-size: 2rem;
    }
    
    .solution-title,
    .feature-title,
    .step-title,
    .problem-card-title {
        font-size: 1.25rem;
    }
    
    .plan-card {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .plan-name {
        font-size: 1.5rem;
    }
    
    .price-amount {
        font-size: 2.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-brand {
        justify-content: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-contact-list li {
        justify-content: center;
    }
    
    .profile-score-card {
        flex-direction: column;
        text-align: center;
    }
}

/* Mobile Devices (max-width: 575px) */
@media (max-width: 575.98px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-tagline {
        font-size: 0.9rem;
    }
    
    .hero-floating-logo {
        width: 120px;
    }
    
    .btn-cta,
    .btn-cta-secondary,
    .btn-cta-centered {
        width: 100%;
        font-size: 0.875rem;
        padding: 0 1.25rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .problem-heading,
    .safety-heading,
    .score-visual-heading {
        font-size: 1.5rem;
    }
    
    .final-cta-heading {
        font-size: 1.5rem;
    }
    
    .featured-badge {
        font-size: 0.75rem;
        padding: 0.375rem 1rem;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }
    
    .score-graphic {
        width: 150px;
        height: 150px;
    }
    
    .score-graphic::before {
        font-size: 3.5rem;
    }
    
    .btn-cta-final {
        font-size: 1rem;
        padding: 0.875rem 2rem;
        width: 100%;
    }
    
    .trust-badges {
        gap: 1rem;
    }
    
    .trust-badge {
        font-size: 0.85rem;
    }
    
    .profile-score-card {
        padding: 20px;
    }
    
    .circle-progress-outer {
        width: 80px;
        height: 80px;
    }
    
    .score-num {
        font-size: 1.75rem;
    }
    
    .card-headline {
        font-size: 1.2rem;
    }
    
    .card-subtext {
        font-size: 0.8rem;
    }
}

/* Large Screens (min-width: 1400px) */
@media (min-width: 1400px) {
    .hero-floating-logo {
        width: 180px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-tagline {
        font-size: 1.125rem;
    }
}

/* ========================================
   ACCESSIBILITY
   ======================================== */
a:focus,
button:focus,
.btn:focus {
    outline: 3px solid var(--color-primary-light);
    outline-offset: 3px;
}

@media (prefers-contrast: high) {
    .hero-title,
    .brand-name {
        color: var(--color-text-primary);
    }
    
    .btn-cta,
    .btn-primary {
        border: 2px solid var(--color-text-primary);
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .footer-social,
    .btn-cta,
    .btn-cta-secondary,
    .btn-cta-final {
        display: none;
    }
    
    body {
        background: white;
    }
}
