/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Mobile Touch Optimizations */
html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    touch-action: manipulation;
}

/* Improve tap targets for mobile */
a, button, input, select, textarea {
    touch-action: manipulation;
}

/* Prevent zoom on focus for iOS */
input, select, textarea {
    font-size: 16px;
}

:root {
    --primary-color: #3b82f6;
    --secondary-color: #10b981;
    --accent-color: #f59e0b;
    --danger-color: #ef4444;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    background-color: var(--bg-white);
    overflow-x: hidden;
    max-width: 100vw;
    word-wrap: break-word;
}

/* Prevent horizontal overflow globally */
* {
    max-width: 100%;
    box-sizing: border-box;
}

/* Aggressive text wrapping for all text elements */
h1, h2, h3, h4, h5, h6, p, span, div {
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    overflow-x: hidden;
    width: 100%;
}

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

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

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

/* Header & Navigation */
.header {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.navbar {
    padding: 1rem 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1.25rem;
}

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

.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Buttons */
.primary-button, .secondary-button, .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

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

.primary-button:hover {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

.secondary-button:hover {
    background: var(--primary-color);
    color: white;
}

.cta-button {
    background: var(--accent-color);
    color: white;
}

.cta-button:hover {
    background: #d97706;
}

.large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* Hero Section */
.hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

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

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

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

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    width: 100%;
    height: auto;
    max-width: 600px;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    object-fit: cover;
}

/* Hero Call Button */
.hero-call-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: var(--radius-lg);
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

.hero-call-button:hover {
    background: #d97706;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.5);
}

.hero-call-button i {
    font-size: 1.25rem;
    animation: ring 2s ease-in-out infinite;
}

.call-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.call-now {
    font-size: 0.875rem;
    opacity: 0.9;
}

.phone-number {
    font-size: 1.25rem;
    font-weight: 700;
}

.call-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--danger-color);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
    font-size: 0.625rem;
    font-weight: 600;
    text-transform: uppercase;
}

@keyframes ring {
    0% { transform: rotate(0deg); }
    10% { transform: rotate(-15deg); }
    20% { transform: rotate(15deg); }
    30% { transform: rotate(-15deg); }
    40% { transform: rotate(15deg); }
    50% { transform: rotate(0deg); }
    100% { transform: rotate(0deg); }
}

/* Section Styles */
section {
    padding: 5rem 0;
}

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

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.125rem;
    margin-bottom: 3rem;
}

/* Brands Section */
.brands-section {
    background: var(--bg-light);
}

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

.brand-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.brand-card h3 {
    margin: 1rem 0 0.5rem;
    color: var(--text-primary);
}

.brand-card p {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* Problems Section */
.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.problem-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.problem-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

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

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

.problem-card p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.problem-card ul {
    list-style: none;
    padding-left: 0;
}

.problem-card li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.problem-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* How It Works */
.how-it-works {
    background: var(--bg-light);
}

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

.step-card {
    text-align: center;
    position: relative;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.25rem;
}

.step-icon {
    margin: 2rem 0;
}

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

.step-card p {
    color: var(--text-secondary);
}

/* Form Section */
.setup-form-section {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
}

.form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

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

.form-wrapper > p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.camera-setup-form {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    text-align: left;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.submit-button {
    background: var(--primary-color);
    color: white;
    padding: 1rem 3rem;
    border: none;
    border-radius: var(--radius-md);
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.form-disclaimer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* Reviews Section */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.review-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.review-stars {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.review-text {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.review-author strong {
    display: block;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.review-author span {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* FAQ Section */
.faq-section {
    background: var(--bg-light);
}

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

.faq-item {
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
}

.faq-item h3 {
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.faq-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Final CTA */
.final-cta {
    background: var(--text-primary);
    color: white;
    text-align: center;
}

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

.cta-content > p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

.support-hours {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    opacity: 0.8;
}

/* Footer */
.footer {
    background: var(--bg-light);
    padding: 3rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.footer-section p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

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

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

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-badges {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
    /* Container and Typography */
    .container {
        padding: 0 15px;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    h1 { 
        font-size: 1.75rem;
        line-height: 1.2;
        word-wrap: break-word;
        hyphens: auto;
    }
    h2 { 
        font-size: 1.5rem;
        line-height: 1.3;
        word-wrap: break-word;
    }
    h3 { 
        font-size: 1.25rem;
        line-height: 1.3;
        word-wrap: break-word;
    }
    
    /* Navigation */
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: var(--shadow-lg);
        z-index: 1000;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-link {
        padding: 0.75rem 0;
        border-bottom: 1px solid var(--border-color);
    }
    
    /* Hero Section - Optimized for Mobile First View */
    .hero {
        padding: 1rem 0;
        overflow-x: hidden;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
        width: 100%;
        max-width: 100%;
    }
    
    .hero-text {
        width: 100%;
        max-width: 100%;
        overflow-wrap: break-word;
    }
    
    .hero-title {
        word-wrap: break-word;
        hyphens: auto;
        overflow-wrap: break-word;
        word-break: break-word;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        max-width: 100% !important;
        width: 100% !important;
        font-size: 1.5rem !important;
        margin-bottom: 0.75rem !important;
    }
    
    .hero-image {
        order: -1;
        width: 100%;
        max-width: 100%;
        margin-bottom: 1rem;
    }
    
    .hero-image img {
        width: 100% !important;
        height: 180px !important;
        max-width: 100% !important;
        border-radius: 12px;
        object-fit: cover;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        margin-bottom: 1rem !important;
        line-height: 1.4;
    }
    
    .trust-badges {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
        margin-bottom: 1rem !important;
    }
    
    .badge {
        justify-content: center;
        font-size: 0.8rem;
        gap: 0.4rem;
    }
    
    .badge i {
        font-size: 16px !important;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 0.8rem;
        align-items: center;
    }
    
    .hero-cta .primary-button,
    .hero-cta .secondary-button {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    /* Mobile Hero Call Button */
    .hero-call-button {
        width: 100%;
        max-width: 320px;
        padding: 1.2rem 1rem;
        font-size: 1rem;
        justify-content: center;
        background: linear-gradient(135deg, #f59e0b 0%, #dc2626 100%);
        box-shadow: 0 6px 20px rgba(245, 158, 11, 0.5);
        animation: pulse 2s ease-in-out infinite;
    }
    
    .hero-call-button i {
        font-size: 1.5rem;
    }
    
    .call-text {
        align-items: center;
    }
    
    .call-now {
        font-size: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }
    
    .phone-number {
        font-size: 1.3rem;
    }
    
    .call-badge {
        top: -10px;
        right: 10px;
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
    }
    
    @keyframes pulse {
        0% { box-shadow: 0 6px 20px rgba(245, 158, 11, 0.5); }
        50% { box-shadow: 0 8px 25px rgba(245, 158, 11, 0.7); }
        100% { box-shadow: 0 6px 20px rgba(245, 158, 11, 0.5); }
    }
    
    /* Sections */
    section {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    /* Brands Grid */
    .brands-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        width: 100%;
    }
    
    .brand-card {
        padding: 1.5rem;
        width: 100%;
        max-width: 100%;
        overflow-wrap: break-word;
    }
    
    .brand-card h3 {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .brand-card p {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    /* Problems Grid */
    .problems-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .problem-card {
        padding: 1.5rem;
    }
    
    /* Steps Grid */
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .step-card {
        padding: 1.5rem;
    }
    
    /* Instructions */
    .instructions-wrapper {
        gap: 1.5rem;
    }
    
    .instruction-card {
        padding: 1.5rem;
    }
    
    .instruction-number {
        top: -12px;
        right: 15px;
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
    
    /* Common Issues */
    .issues-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .issue-item {
        padding: 0.75rem;
    }
    
    /* Choice Section - Mobile Single Column */
    .choice-section {
        margin-top: 2rem;
        padding: 1rem;
        width: 100%;
    }
    
    .choice-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 1.5rem;
        width: 100%;
        grid-template-columns: none !important;
    }
    
    .choice-card {
        padding: 1.5rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        flex: none;
    }
    
    .choice-card h3 {
        font-size: 1.1rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        line-height: 1.3;
        margin-bottom: 0.8rem;
    }
    
    .choice-card p {
        font-size: 0.9rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        line-height: 1.4;
        margin-bottom: 1rem;
    }
    
    .pros strong {
        font-size: 0.85rem;
        display: block;
        margin-bottom: 0.3rem;
    }
    
    .professional-choice::before {
        top: 12px;
        right: -20px;
        padding: 3px 25px;
        font-size: 0.55rem;
    }
    
    /* Form */
    .form-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-wrapper {
        padding: 1.5rem;
    }
    
    .camera-setup-form {
        padding: 1.5rem;
    }
    
    .submit-button {
        width: 100%;
        padding: 1rem;
        font-size: 1rem;
    }
    
    /* Reviews */
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .review-card {
        padding: 1.5rem;
    }
    
    /* FAQ */
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .faq-item {
        padding: 1.25rem;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-badges {
        justify-content: center;
    }
    
    /* General Mobile Optimizations */
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .cta-buttons a {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    /* Button Improvements */
    .primary-button, .secondary-button {
        min-height: 48px; /* Better touch target */
        font-size: 1rem;
    }
    
    /* Spacing Adjustments */
    .mt-mobile { margin-top: 1rem; }
    .mb-mobile { margin-bottom: 1rem; }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .container {
        padding: 0 10px;
        max-width: 100vw;
        overflow-x: hidden;
    }
    
    body {
        overflow-x: hidden;
        max-width: 100vw;
    }
    
    h1 { 
        font-size: 1.4rem;
        line-height: 1.2;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    h2 { 
        font-size: 1.2rem;
        line-height: 1.3;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    h3 { 
        font-size: 1.1rem;
        line-height: 1.3;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .hero {
        padding: 1.5rem 0;
        overflow-x: hidden;
    }
    
    .hero-title {
        font-size: 1.3rem !important;
        line-height: 1.2;
        word-break: break-all !important;
        overflow-wrap: break-word !important;
        word-wrap: break-word !important;
        hyphens: auto !important;
        -webkit-hyphens: auto !important;
        max-width: 100% !important;
        width: 100% !important;
    }
    
    section {
        padding: 2rem 0;
        overflow-x: hidden;
    }
    
    .instruction-card,
    .brand-card,
    .problem-card,
    .choice-card,
    .review-card,
    .faq-item {
        padding: 1rem;
        width: 100%;
        max-width: 100%;
        overflow-wrap: break-word;
    }
    
    /* Choice Cards - Small Mobile */
    .choice-section {
        padding: 0.8rem;
    }
    
    .choice-card {
        padding: 1.2rem;
    }
    
    .choice-card h3 {
        font-size: 1rem;
        line-height: 1.2;
        margin-bottom: 0.6rem;
    }
    
    .choice-card p {
        font-size: 0.85rem;
        line-height: 1.3;
        margin-bottom: 0.8rem;
    }
    
    .pros strong {
        font-size: 0.8rem;
        margin-bottom: 0.2rem;
    }
    
    /* Hero optimizations for small screens */
    .hero {
        padding: 0.75rem 0 !important;
    }
    
    .hero-image img {
        height: 150px !important;
    }
    
    .hero-title {
        font-size: 1.3rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    .hero-subtitle {
        font-size: 0.85rem !important;
        margin-bottom: 0.75rem !important;
    }
    
    .trust-badges {
        gap: 0.4rem !important;
        margin-bottom: 0.75rem !important;
    }
    
    .badge {
        font-size: 0.75rem !important;
    }
    
    .choice-section {
        padding: 1rem;
        width: 100%;
        max-width: 100%;
    }
    
    .form-wrapper {
        padding: 1rem;
        width: 100%;
        max-width: 100%;
    }
    
    .camera-setup-form {
        padding: 1rem;
        width: 100%;
        max-width: 100%;
    }
    
    /* Fix specific text overflow issues */
    .hero-subtitle,
    .section-subtitle,
    .brand-card p,
    .problem-card p,
    .instruction-card p,
    .brand-card h3,
    .problem-card h3,
    .instruction-card h3,
    .choice-card h3,
    .choice-card p {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
        hyphens: auto !important;
        -webkit-hyphens: auto !important;
        max-width: 100% !important;
        width: 100% !important;
    }
}

/* Extra small screens - very aggressive text breaking */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.1rem !important;
        word-break: break-all !important;
    }
    
    .container {
        padding: 0 8px !important;
    }
    
    h2 {
        font-size: 1.1rem !important;
        word-break: break-word !important;
    }
    
    h3 {
        font-size: 1rem !important;
        word-break: break-word !important;
    }
    
    .brand-card h3,
    .problem-card h3,
    .choice-card h3 {
        word-break: break-all !important;
        line-height: 1.3 !important;
    }
    
    /* Choice Cards - Extra Small */
    .choice-section {
        padding: 0.5rem;
        margin-top: 1rem;
    }
    
    .choice-card {
        padding: 1rem;
    }
    
    .choice-card h3 {
        font-size: 0.9rem !important;
        line-height: 1.2;
        margin-bottom: 0.5rem;
        word-break: break-word !important;
    }
    
    .choice-card p {
        font-size: 0.8rem !important;
        line-height: 1.3;
        margin-bottom: 0.6rem;
        word-break: break-word !important;
    }
    
    .pros strong {
        font-size: 0.75rem !important;
        margin-bottom: 0.1rem;
        word-break: break-word !important;
    }
    
    .professional-choice::before {
        top: 8px;
        right: -15px;
        padding: 2px 20px;
        font-size: 0.5rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.brand-card,
.problem-card,
.step-card,
.review-card,
.faq-item {
    animation: fadeIn 0.6s ease-out forwards;
}

/* Setup Instructions Section */
.setup-instructions-section {
    background: var(--bg-light);
    padding: 5rem 0;
}

.instructions-wrapper {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 2rem;
}

.instruction-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.instruction-number {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.instruction-card h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.instruction-card ul {
    list-style: none;
    padding: 0;
}

.instruction-card li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
}

.instruction-card li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.tip-box, .warning-box {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: var(--radius-md);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.tip-box {
    background: #f0f9ff;
    border: 1px solid #3b82f6;
    color: #1e40af;
}

.warning-box {
    background: #fef3c7;
    border: 1px solid #f59e0b;
    color: #92400e;
}

.tip-box i, .warning-box i {
    font-size: 1.25rem;
    margin-top: 0.125rem;
}

/* Common Issues */
.common-issues {
    margin-top: 3rem;
    padding: 2rem;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

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

.issues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    align-items: start;
}

.issue-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: #fef2f2;
    border-radius: var(--radius-md);
    border-left: 4px solid #ef4444;
}

.issue-item i {
    font-size: 1.25rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.issue-item div {
    flex: 1;
}

.issue-item strong {
    color: var(--text-primary);
    display: block;
    margin-bottom: 0.25rem;
}

.issue-item span {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* Expert Help CTA */
.expert-help-cta {
    margin-top: 3rem;
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    border-radius: var(--radius-xl);
    color: white;
}

.expert-help-cta h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.expert-help-cta p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.expert-help-cta .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.expert-help-cta .primary-button {
    background: white;
    color: var(--primary-color);
}

.expert-help-cta .primary-button:hover {
    background: var(--bg-light);
}

.expert-help-cta .secondary-button {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.expert-help-cta .secondary-button:hover {
    background: white;
    color: var(--primary-color);
}

.help-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    opacity: 0.8;
}

/* Choice Section */
.choice-section {
    margin-top: 3rem;
    padding: 2rem;
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.choice-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.choice-card {
    text-align: center;
    padding: 2rem;
    border-radius: var(--radius-lg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.diy-choice {
    background: #f0f9ff;
    border: 2px solid #e0f2fe;
}

.professional-choice {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    position: relative;
    overflow: visible;
}

.professional-choice::before {
    content: "RECOMMENDED";
    position: absolute;
    top: 15px;
    right: -25px;
    background: #f59e0b;
    color: white;
    padding: 4px 35px;
    font-size: 0.6rem;
    font-weight: bold;
    transform: rotate(45deg);
    z-index: 10;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    white-space: nowrap;
}

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

.choice-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.professional-choice h3 {
    color: white;
}

.choice-card p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.pros-cons {
    margin-bottom: 1.5rem;
}

.pros strong {
    display: block;
    margin-bottom: 0.5rem;
    color: #10b981;
}

.professional-choice .pros strong {
    color: #a7f3d0;
}

.choice-cta {
    margin-top: 1.5rem;
}

.choice-cta .primary-button {
    background: white;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.choice-cta .primary-button:hover {
    background: var(--bg-light);
}

.quick-call {
    font-size: 0.875rem;
    margin: 0;
}

.quick-call a {
    color: #a7f3d0;
    text-decoration: none;
    font-weight: 600;
}

.quick-call a:hover {
    color: white;
}


/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }