/* Feature, Problem, Guide, Sample, Step, Explainer Cards - Always Visible */
.feature-card, .problem-card, .guide-card, .sample-card, .step, .explainer-card, .story-card {
    opacity: 1 !important;
    transform: translateY(0) !important;
}/* ====================================================================
   PROPERTY INSPECTOR WEBSITE STYLES - ENHANCED VERSION
   ==================================================================== */

/* CSS Variables */
:root {
    --primary-blue: #2E86AB;
    --success-green: #06D6A0;
    --gold-accent: #F77F00;
    --warning-orange: #EF476F;
    
    --text-white: #FFFFFF;
    --text-light: rgba(255, 255, 255, 0.85);
    --text-dark: #1A1A1A;
    
    --gradient-primary: linear-gradient(135deg, #2E86AB, #06D6A0);
    --gradient-success: linear-gradient(135deg, #06D6A0, #28A745);
    --gradient-dark: linear-gradient(135deg, #1A1A1A, #2D2D2D);
    --gradient-warning: linear-gradient(135deg, #EF476F, #F77F00);
    
    --shadow-float: 0 10px 40px rgba(0, 0, 0, 0.3);
    --shadow-hover: 0 15px 50px rgba(0, 0, 0, 0.4);
    
    --border-radius: 20px;
    --border-radius-small: 12px;
    
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 100%);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    background: rgba(26, 26, 26, 0.98);
    box-shadow: var(--shadow-float);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-white);
    text-decoration: none;
}

.nav-logo img {
    height: 40px;
    width: 40px;
    border-radius: 8px;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 1.5rem;
    cursor: pointer;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 20px;
    align-items: center;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-smooth);
    padding: 8px 16px;
    border-radius: 8px;
    white-space: nowrap;
}

.nav-link:hover, .nav-link.active {
    color: var(--success-green);
    background: rgba(6, 214, 160, 0.1);
}

.btn-primary {
    background: var(--gradient-success);
    color: var(--text-white);
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(6, 214, 160, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(6, 214, 160, 0.5);
}

/* Google Play Badge */
.btn-download-image {
    display: inline-block;
    transition: var(--transition-smooth);
}

.btn-download-image:hover {
    transform: translateY(-3px);
}

.play-badge-large {
    height: 70px;
    width: auto;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 140px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(46, 134, 171, 0.15), transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(6, 214, 160, 0.1), transparent 50%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text {
    animation: fadeInUp 0.8s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(6, 214, 160, 0.15);
    color: var(--success-green);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 25px;
    border: 1px solid rgba(6, 214, 160, 0.3);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--text-white), var(--success-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border-left: 4px solid var(--success-green);
}

.stat-item i {
    font-size: 1.8rem;
    color: var(--success-green);
}

.stat-item strong {
    display: block;
    font-size: 1.1rem;
    color: var(--text-white);
}

.stat-item span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-smooth);
    font-size: 1.05rem;
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.1rem;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--success-green);
}

.hero-image {
    position: relative;
    animation: fadeInRight 0.8s ease-out 0.2s both;
}

.phone-mockup, .phone-showcase {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

.phone-mockup img, .phone-showcase img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, rgba(26, 26, 26, 1), transparent);
}

/* Real Stories Section */
.real-stories {
    background: linear-gradient(135deg, rgba(239, 71, 111, 0.08), rgba(247, 127, 0, 0.08));
    padding: 100px 0;
}

.stories-toggle {
    display: none;
    margin: 20px auto 0;
    padding: 12px 24px;
    background: var(--gradient-warning);
    color: var(--text-white);
    border: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-family: 'Poppins', sans-serif;
    gap: 10px;
    align-items: center;
}

.stories-toggle i {
    transition: transform 0.3s ease;
}

.stories-toggle.expanded i {
    transform: rotate(180deg);
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 35px;
    margin-bottom: 60px;
}

.story-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 35px;
    border: 2px solid rgba(239, 71, 111, 0.3);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.story-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-warning);
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--warning-orange);
}

.story-icon {
    width: 70px;
    height: 70px;
    background: rgba(239, 71, 111, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.story-icon i {
    font-size: 2rem;
    color: var(--warning-orange);
}

.story-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--text-white);
}

.story-cost {
    display: inline-block;
    background: rgba(239, 71, 111, 0.2);
    color: var(--warning-orange);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.story-text {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 1.05rem;
}

.story-result {
    background: rgba(239, 71, 111, 0.1);
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 20px;
    border-left: 3px solid var(--warning-orange);
}

.story-result strong {
    color: var(--warning-orange);
    display: block;
    margin-bottom: 5px;
}

.cta-box {
    background: var(--gradient-success);
    padding: 50px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-float);
}

.cta-box h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.cta-box p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* Section Styles */
section {
    padding: 80px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header.centered {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--text-white);
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
}

/* Problem Solution Section */
.problem-solution {
    background: linear-gradient(135deg, rgba(239, 71, 111, 0.05), rgba(247, 127, 0, 0.05));
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.problem-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 35px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-smooth);
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-float);
    border-color: var(--warning-orange);
}

.problem-icon {
    width: 70px;
    height: 70px;
    background: rgba(239, 71, 111, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.problem-icon i {
    font-size: 2rem;
    color: var(--warning-orange);
}

.problem-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-white);
}

.problem-text {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.solution-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(6, 214, 160, 0.15);
    color: var(--success-green);
    padding: 10px 18px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Features Section */
.features {
    background: rgba(46, 134, 171, 0.03);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 35px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-smooth);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-float);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--success-green);
}

.feature-icon {
    width: 65px;
    height: 65px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon i {
    font-size: 1.8rem;
    color: var(--text-white);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--text-white);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Benefits Tabs */
.benefits {
    background: linear-gradient(135deg, rgba(6, 214, 160, 0.05), rgba(40, 167, 69, 0.05));
}

.benefits-tabs {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tabs-nav {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    overflow-x: auto;
}

.tab-btn {
    flex: 1;
    padding: 20px 30px;
    background: none;
    border: none;
    color: var(--text-light);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1rem;
    white-space: nowrap;
}

.tab-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-white);
}

.tab-btn.active {
    background: var(--gradient-success);
    color: var(--text-white);
}

.tab-btn i {
    font-size: 1.2rem;
}

.tabs-content {
    padding: 50px;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
    animation: fadeIn 0.5s ease-out;
}

.benefit-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.benefit-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-float);
}

.benefit-text h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--text-white);
}

.benefit-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit-list li {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.benefit-list i {
    color: var(--success-green);
    font-size: 1.5rem;
    margin-top: 5px;
    flex-shrink: 0;
}

.benefit-list strong {
    display: block;
    color: var(--text-white);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.benefit-list p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Calculator Page Styles */
.calculator-hero {
    background: var(--gradient-primary);
    padding: 140px 0 80px;
    text-align: center;
}

.calculator-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.calculator-benefits {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.calc-benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-white);
    font-weight: 600;
}

.calc-benefit-item i {
    font-size: 1.5rem;
}

.calculator-main-section {
    padding: 80px 0;
}

.calculator-wrapper-page {
    max-width: 900px;
    margin: 0 auto 80px;
}

.calc-explainers {
    margin: 80px 0;
}

.explainer-heading {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--text-white);
}

.explainer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.explainer-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 30px;
}

.explainer-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.explainer-icon i {
    font-size: 1.6rem;
    color: var(--text-white);
}

.explainer-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-white);
}

.explainer-card p {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.7;
}

.explainer-list {
    list-style: none;
    padding-left: 0;
}

.explainer-list li {
    color: var(--text-light);
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

.explainer-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--success-green);
    font-weight: bold;
}

.calculator-tips {
    background: rgba(255, 255, 255, 0.03);
    padding: 60px 40px;
    border-radius: var(--border-radius);
    margin: 80px 0;
}

.calculator-tips h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.tip-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: var(--border-radius-small);
    border-left: 4px solid var(--success-green);
}

.tip-card h4 {
    color: var(--text-white);
    margin-bottom: 12px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tip-card h4 i {
    color: var(--success-green);
}

.tip-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

.calculator-cta {
    text-align: center;
    background: var(--gradient-primary);
    padding: 60px 40px;
    border-radius: var(--border-radius);
    margin-top: 60px;
}

.calculator-cta h3 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.calculator-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* Guide Section */
.guide-section {
    background: rgba(255, 255, 255, 0.02);
}

.guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.guide-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 30px;
    transition: var(--transition-smooth);
}

.guide-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-float);
    border-color: var(--primary-blue);
}

.guide-card.alert {
    border-left: 4px solid var(--warning-orange);
    background: rgba(239, 71, 111, 0.05);
}

.guide-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.guide-card.alert .guide-icon {
    background: rgba(239, 71, 111, 0.2);
}

.guide-icon i {
    font-size: 1.6rem;
    color: var(--text-white);
}

.guide-card.alert .guide-icon i {
    color: var(--warning-orange);
}

.guide-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-white);
}

.guide-card ul {
    list-style: none;
    padding: 0;
}

.guide-card li {
    color: var(--text-light);
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

.guide-card li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--success-green);
    font-weight: bold;
}

/* Samples Section */
.samples-section {
    background: linear-gradient(135deg, rgba(247, 127, 0, 0.05), rgba(239, 71, 111, 0.05));
}

.samples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.sample-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-smooth);
}

.sample-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--gold-accent);
}

.sample-card.featured {
    border: 2px solid var(--gold-accent);
    box-shadow: 0 10px 40px rgba(247, 127, 0, 0.2);
}

.sample-preview {
    background: var(--gradient-primary);
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.sample-preview i {
    font-size: 5rem;
    color: var(--text-white);
    margin-bottom: 15px;
}

.sample-badge {
    background: rgba(255, 255, 255, 0.2);
    color: var(--text-white);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.sample-content {
    padding: 35px;
}

.sample-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-white);
}

.sample-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.sample-features {
    list-style: none;
    margin-bottom: 25px;
}

.sample-features li {
    color: var(--text-light);
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sample-features i {
    color: var(--success-green);
    font-size: 1rem;
}

/* How It Works */
.how-it-works {
    background: rgba(46, 134, 171, 0.03);
}

.steps-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--success-green);
    transition: var(--transition-smooth);
}

.step:hover {
    transform: translateX(5px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-float);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--text-white);
}

.step-content p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Download Section */
.download-section {
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.download-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.download-text h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--text-white);
    font-weight: 800;
}

.download-text > p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

.download-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 35px;
}

.download-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-white);
    font-weight: 500;
    font-size: 1.05rem;
}

.download-feature i {
    color: var(--gold-accent);
    font-size: 1.3rem;
}

.download-note {
    margin-top: 15px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: #0D0D0D;
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 40px;
    width: 40px;
    border-radius: 8px;
}

.footer-logo span {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-white);
}

.footer-brand p {
    color: var(--text-light);
    line-height: 1.7;
}

.footer-column h4 {
    color: var(--text-white);
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-column a:hover {
    color: var(--success-green);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: 0 25px;
    }
    .nav-menu {
        gap: 15px;
    }
}

@media (max-width: 1024px) {
    .hero-content,
    .benefit-content,
    .download-content {
        grid-template-columns: 1fr;
    }
    .hero-image,
    .benefit-image {
        order: -1;
    }
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(26, 26, 26, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.5);
        padding: 30px 0;
    }
    .nav-menu.active {
        left: 0;
    }
    .nav-toggle {
        display: block;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-subtitle {
        font-size: 1.1rem;
    }
    .section-header h2 {
        font-size: 2rem;
    }
    .tabs-nav {
        flex-wrap: wrap;
    }
    .tab-btn {
        flex: 1 1 45%;
    }
    .tabs-content {
        padding: 30px 20px;
    }
    
    /* Collapsible stories on mobile */
    .stories-grid {
        grid-template-columns: 1fr;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s ease;
    }
    
    .stories-grid.collapsed {
        max-height: 0;
    }
    
    .stories-grid.expanded {
        max-height: 5000px;
    }
    
    .stories-toggle {
        display: inline-flex !important;
    }
    
    .download-text h2 {
        font-size: 2rem;
    }
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    section {
        padding: 50px 0;
    }
    .hero {
        padding: 100px 0 60px;
    }
    .hero-title {
        font-size: 2rem;
    }
    .hero-cta {
        flex-direction: column;
    }
    .btn {
        width: 100%;
        justify-content: center;
    }
    .calculator-benefits {
        flex-direction: column;
        gap: 20px;
    }
}
