:root {
    /* Construction Theme Colors */
    --primary-color: #FF8C00; /* Safety Orange */
    --primary-dark: #CC7000;
    --text-main: #F4F5F6; /* High contrast Off-White */
    --text-muted: #A0AAB2;
    --bg-main: #1A1A1A; /* Deep Charcoal */
    --bg-light: #222222; /* Darker grey */
    --bg-dark: #121212; /* Deepest */
    --border-color: #333333;
    --font-family: 'Outfit', system-ui, -apple-system, sans-serif;
    
    --transition: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-family);
    color: var(--text-main);
    background-color: var(--bg-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* Utils */
.mx-auto { margin-left: auto; margin-right: auto; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }
.mt-4 { margin-top: 1.5rem; }
.w-100 { width: 100%; }
.text-xs { font-size: 0.85rem; }
.opacity-70 { opacity: 0.7; }
.text-center { text-align: center; }
.color-light { color: rgba(255,255,255,0.7) !important; }

/* Backgrounds */
.bg-light { background-color: var(--bg-light); }
.bg-dark { background-color: var(--bg-dark); }
.bg-white { 
    background-color: #ffffff; 
    color: #333333;
}
.bg-white h1, .bg-white h2, .bg-white h3, .bg-white h4 {
    color: #111111;
}
.bg-white .section-description {
    color: #555555;
}
.bg-white .section-subtitle {
    color: #888888;
}

/* Typography */
h1, h2, h3, h4 {
    line-height: 1.15;
    font-weight: 700;
    color: var(--text-main);
}

.highlight { color: var(--primary-color); }

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--primary-color);
    background: rgba(255, 140, 0, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 4px; /* More robust, less rounded */
    margin-bottom: 1.5rem;
}

.section-subtitle {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 1rem;
}

/* Layout */
.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section { padding: 6rem 0; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 4px; /* Solid look */
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(255, 107, 53, 0.2);
}

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

.btn-secondary:hover {
    border-color: var(--text-main);
    transform: translateY(-2px);
}

.btn-sm { padding: 0.6rem 1.2rem; font-size: 0.9rem; }
.btn-lg { padding: 1.2rem 2.5rem; font-size: 1.1rem; }

/* Navbar */
.navbar {
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(18, 18, 18, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 100;
    transition: all 0.3s ease;
}

.navbar .logo {
    color: #ffffff !important;
}

.lang-pill {
    display: inline-flex;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    padding: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.lang-pill-btn {
    padding: 6px 14px;
    font-size: 0.85rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    border-radius: 20px;
    transition: all 0.3s ease;
}
.lang-pill-btn.active {
    background: #ffffff;
    color: #111111;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.lang-pill-btn:hover:not(.active) {
    color: #ffffff;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--text-main);
    text-decoration: none;
}
.logo .dot { color: var(--primary-color); }

/* Nav Menu */
.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-menu a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}

.nav-menu a:hover {
    color: #E24B4A;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: #ffffff;
    cursor: pointer;
}

/* Mobile Menu Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 200;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}

.mobile-nav-overlay.active {
    transform: translateY(0);
}

.mobile-nav-overlay a {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
}

.mobile-nav-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    color: #fff;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
}

/* Hero */
.hero {
    padding-top: 10rem;
    padding-bottom: 5rem;
}

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

.hero-title {
    font-size: clamp(2.5rem, 4vw, 4rem);
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

/* Common Text */
.section-title {
    font-size: clamp(2rem, 3vw, 3rem);
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 650px;
}

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.card {
    background: var(--bg-light);
    padding: 2.5rem 2rem;
    border-radius: 4px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.2rem;
}

.card-title {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.card-text {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Process Layout (More UI Friendly than ZigZag) */
.process-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.process-image img {
    width: 100%;
    border-radius: 4px;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.step-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-icon {
    font-size: 2rem;
    color: var(--primary-color);
    background: var(--bg-dark);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    flex-shrink: 0;
}

.step-title {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.step-text {
    color: var(--text-muted);
}

/* Pricing Layout */
.pricing-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: stretch;
}

.pricing-content {
    display: flex;
    flex-direction: column;
}

.pricing-content img {
    margin-top: auto;
}

.pricing-card {
    background: var(--bg-light);
    color: var(--text-main);
    border-radius: 4px;
    position: relative;
    border: 4px solid var(--primary-color);
    padding: 3rem 2.5rem;
}

.popular-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--primary-color);
    color: white;
    padding: 0.4rem 1.5rem;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 4px;
}

.pricing-header {
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 2rem;
    margin-bottom: 2rem;
}

.pricing-header h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }

.price { color: var(--text-muted); }
.price span {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-main);
}

.features-list { list-style: none; margin-bottom: 2.5rem; }
.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.2rem;
}
.features-list i {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-top: 2px;
}

/* Utils Images */
.rounded-image { border-radius: 4px; width: 100%; object-fit: cover; }
.shadow-lg { box-shadow: 0 15px 30px rgba(0,0,0,0.5); }

/* CTA Section */
.cta-section {
    background: var(--bg-light);
    border-top: 1px solid var(--border-color);
}

.cta-title { font-size: clamp(2.5rem, 3vw, 3.5rem); margin-bottom: 1rem; }

/* Footer */
.footer {
    padding: 3rem 0;
    text-align: center;
    color: var(--text-muted);
}

/* Responsive */
@media (max-width: 992px) {
    .hero-grid, .process-layout, .pricing-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .process-image { order: 2; }
    .process-steps { order: 1; }
    
    .hero-buttons { justify-content: center; }
    .hero { text-align: center; }
}

@media (min-width: 992px) {
    #trades .cards-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
    }
}

.lang-switcher {
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--border-color);
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-family: var(--font-family);
    font-size: 0.9rem;
    cursor: pointer;
    outline: none;
}
.lang-switcher:hover {
    border-color: var(--primary-color);
}
.lang-switcher option {
    background: var(--bg-dark);
    color: var(--text-main);
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 35px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    color: #FFF;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
    .navbar .btn {
        display: none;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 30px;
    }
}

/* New Hero Styles */
.hero.hero-bg {
    position: relative;
    background-image: url('assets/hero_bg_construction.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 10rem;
    padding-bottom: 5rem;
    margin-top: 60px; /* Offset for fixed navbar */
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1;
}
.hero-title-new {
    font-size: 64px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}
.hero-red {
    color: #E24B4A;
}
.hero-subtitle-new {
    font-size: 18px;
    color: #ffffff;
    opacity: 0.8;
    max-width: 520px;
    margin-bottom: 2.5rem;
}
.hero-cta-row {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}
.btn-hero-primary {
    background-color: #E24B4A;
    color: #ffffff;
    height: 52px;
    display: inline-flex;
    align-items: center;
    padding: 0 2rem;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 0;
    transition: var(--transition);
}
.btn-hero-primary:hover {
    background-color: #C0392B;
    color: #ffffff;
    transform: translateY(-2px);
}
.hero-price-pill {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
}
.hero-trust {
    display: flex;
    gap: 1.5rem;
    color: #ffffff;
    font-size: 0.9rem;
    opacity: 0.9;
    flex-wrap: wrap;
}
.hero-trust span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.hero-trust i {
    color: #E24B4A;
}
.hero-scarcity-bar {
    width: 100%;
    background-color: #E24B4A;
    color: #ffffff;
    text-align: center;
    padding: 0.8rem 1rem;
    font-size: 0.95rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .hero-title-new {
        font-size: 40px;
    }
}

/* Problem Cards Redesign */
.problem-card {
    background: #0f0f0f;
    padding: 2.5rem 2rem;
    border-radius: 4px;
    border: 1px solid #222222;
    transition: var(--transition);
}

.problem-card:hover {
    border-color: #E24B4A;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transform: translateY(-5px);
}

.card-accent-line {
    width: 32px;
    height: 3px;
    background-color: #E24B4A;
    margin-bottom: 1.5rem;
}

.problem-card .card-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

    .problem-card .card-text {
    color: #A0AAB2;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* About Redesign */
.bg-white {
    background-color: #ffffff;
}

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

.about-content {
    color: #1a1a1a;
}

.about-content .section-title {
    color: #111;
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-align: left;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 1rem;
}

.about-quote {
    font-family: 'Georgia', serif;
    font-size: 1.35rem;
    font-style: italic;
    color: #E24B4A;
    margin-top: 2rem;
    padding-left: 1.5rem;
    border-left: 4px solid #E24B4A;
}

.about-quote cite {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5rem;
    font-family: var(--font-family);
    font-style: normal;
    font-weight: 600;
}

.about-photos {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.about-student {
    flex: 1;
}

.about-student img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: 2px;
    filter: grayscale(20%) contrast(1.1);
    margin-bottom: 0.8rem;
}

.about-student .byline {
    font-size: 0.85rem;
    line-height: 1.4;
    color: #555;
    border-top: 1px solid #ddd;
    padding-top: 0.5rem;
}

.about-student .byline strong {
    color: #111;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #f5f5f5;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #333;
    border: 1px solid #e0e0e0;
}

.about-badge i {
    color: #25d366;
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
}

/* Timeline Redesign */
.timeline-layout {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 5rem;
    gap: 2rem;
}

.timeline-layout::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #E24B4A;
    z-index: 0;
}

.timeline-step {
    flex: 1;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.timeline-number {
    font-size: 6rem;
    font-weight: 900;
    color: rgba(226, 75, 74, 0.12);
    line-height: 1;
    margin-bottom: -2rem;
    position: relative;
    z-index: -1;
}

.timeline-content {
    background-color: var(--bg-light);
    padding: 2rem 1.5rem;
    border-top: 3px solid #E24B4A;
    border-radius: 4px;
    width: 100%;
    margin-top: 1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.timeline-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--text-main);
}

.timeline-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

@media (max-width: 992px) {
    .timeline-layout {
        flex-direction: column;
        gap: 3rem;
        margin-top: 3rem;
    }
    .timeline-layout::before {
        display: none;
    }
    .timeline-step {
        border-left: 3px solid #E24B4A;
        padding-left: 1.5rem;
        margin-left: 1rem;
    }
    .timeline-number {
        font-size: 4.5rem;
        position: absolute;
        top: -20px;
        left: -15px;
    }
    .timeline-content {
        background-color: transparent;
        padding: 1rem 0 0 0;
        border-top: none;
        box-shadow: none;
    }
}

/* Apply Form Section */
.bg-form {
    background-color: #f5f5f5;
}

.form-card {
    background-color: #ffffff;
    max-width: 600px;
    border: 1px solid #e0e0e0;
    padding: 3rem;
    box-shadow: none;
    border-radius: 4px;
}

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

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #111;
    font-size: 0.95rem;
}

.label-hint {
    font-weight: 400;
    color: #777;
    font-size: 0.85rem;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    background-color: #fcfcfc;
    border: 1px solid #dcdcdc;
    border-radius: 4px;
    font-family: var(--font-family);
    font-size: 1rem;
    color: #111;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    background-color: #fff;
    border-color: #E24B4A;
    box-shadow: 0 0 0 3px rgba(226, 75, 74, 0.1);
}

.radio-group label {
    margin-bottom: 1rem;
}

.radio-options {
    display: flex;
    gap: 2rem;
}

.radio-label {
    font-weight: 400 !important;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    color: #111;
}

.form-privacy {
    font-size: 0.85rem;
    color: #666;
}

.form-submit {
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .form-card {
        padding: 2rem 1.5rem;
    }
    .radio-options {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Pricing Grid with Image */
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.pricing-visuals {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.mockup-container {
    position: relative;
    width: 100%;
    border-radius: 12px;
    padding: 1rem;
    background: linear-gradient(145deg, #1a1a1a, #111111);
    border: 1px solid #333;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    z-index: 2;
}

.pricing-mockup-img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    display: block;
}

.mockup-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(226,75,74,0.15) 0%, rgba(0,0,0,0) 70%);
    z-index: -1;
    filter: blur(40px);
}

.mockup-caption {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Pricing Section Redesign */
.pricing-section-new {
    background-color: #0a0a0a;
}

.pricing-card-new {
    background-color: #111111;
    border: 1px solid #222222;
    border-radius: 8px;
    padding: 3rem;
    max-width: 100%;
    margin-bottom: 0;
}

.pricing-label {
    color: #E24B4A;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    text-align: center;
}

.pricing-price-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.price-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.price-large {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    color: #ffffff;
}

.price-mo {
    font-size: 1.5rem;
    font-weight: 600;
    color: #888;
}

.price-desc {
    font-size: 0.9rem;
    color: #888;
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-plus {
    font-size: 3rem;
    font-weight: 300;
    color: #444;
}

.pricing-divider {
    border: none;
    border-top: 1px solid #222222;
    margin: 2.5rem 0;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem 0;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.05rem;
    color: #cccccc;
}

.pricing-features li i {
    color: #E24B4A;
    font-size: 1.2rem;
    margin-top: 3px;
}

.pricing-action {
    text-align: center;
}

.pricing-guarantees {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: #666;
}

.pricing-transparency {
    max-width: 600px;
    font-size: 0.95rem;
    color: #888;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .pricing-card-new {
        padding: 2rem 1.5rem;
    }
    .pricing-price-row {
        flex-direction: column;
        gap: 1rem;
    }
    .price-plus {
        line-height: 0.5;
    }
}

/* FAQ Section */
.faq-section {
    background-color: #0f0f0f;
}

.faq-accordion {
    max-width: 800px;
}

.faq-item {
    background-color: #1a1a1a;
    border: 1px solid #333;
    border-radius: 4px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: var(--transition);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    color: #ffffff;
    list-style: none; /* remove default triangle */
}

/* Remove default triangle in WebKit */
.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question i {
    transition: transform 0.3s ease;
    color: #E24B4A;
}

.faq-item[open] .faq-question i {
    transform: rotate(180deg);
}

.faq-item[open] .faq-question {
    border-bottom: 1px solid #333;
}

.faq-answer {
    padding: 1.5rem;
    color: #A0AAB2;
    line-height: 1.6;
    font-size: 0.95rem;
    background-color: #111;
}

/* Final CTA Section */
.final-cta-section {
    position: relative;
    background-image: url('assets/renovation_kitchen_bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 8rem 0;
    overflow: hidden;
}

.final-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.7;
    z-index: 0;
}

.position-relative { position: relative; }
.z-1 { z-index: 1; }

.final-cta-headline {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 0.5rem;
    color: #fff;
}

.final-cta-headline-red {
    font-size: 3.5rem;
    font-weight: 800;
    color: #E24B4A;
    margin-bottom: 1.5rem;
}

.final-cta-sub {
    font-size: 1.25rem;
    color: #ddd;
    max-width: 600px;
    font-weight: 500;
    margin-bottom: 2rem;
}

.btn-white-cta {
    background-color: #ffffff;
    color: #000000;
    border: none;
    font-weight: 700;
    padding: 18px 36px;
    border-radius: 4px;
    font-size: 1.1rem;
    display: inline-block;
    text-decoration: none;
    transition: var(--transition);
}

.btn-white-cta:hover {
    background-color: #eeeeee;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    color: #000000;
    text-decoration: none;
}

.final-cta-meta {
    font-size: 0.9rem;
    color: #aaa;
}

@media (max-width: 768px) {
    .final-cta-headline, .final-cta-headline-red {
        font-size: 2.5rem;
    }
}

/* Footer Redesign */
.footer {
    background-color: var(--dark-bg);
    padding: 5rem 0 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-tagline {
    color: #A0AAB2;
    font-size: 1.05rem;
    max-width: 300px;
}

.footer-heading {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

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

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

.footer-links a {
    color: #A0AAB2;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: #E24B4A;
}

.footer-contact {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #A0AAB2;
    margin-bottom: 0.8rem;
}

.footer-contact i {
    color: #E24B4A;
    font-size: 1.2rem;
}

.footer-meta {
    font-size: 0.85rem;
    color: #666;
}

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

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
    .footer-tagline {
        margin: 0 auto;
    }
    .footer-contact {
        justify-content: center;
    }
}

/* Portfolio Page */
.portfolio-section {
    padding: 8rem 0 4rem;
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.portfolio-placeholder {
    background-color: #111;
    border: 1px dashed #333;
    border-radius: 8px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.badge-soon {
    background-color: #222;
    color: #888;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Obrigado Page */
.obrigado-section {
    padding: 10rem 0 6rem;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.obrigado-icon {
    font-size: 4rem;
    color: #E24B4A;
    margin-bottom: 2rem;
}

.obrigado-steps {
    text-align: left;
    margin: 3rem auto;
    max-width: 400px;
    background-color: #111;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #222;
}

.obrigado-step {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    color: #ddd;
}
.obrigado-step:last-child {
    margin-bottom: 0;
}
.obrigado-step i {
    color: #E24B4A;
    font-size: 1.5rem;
}

/* Base thumb-friendly forms & Float Button adjustments */
.form-control {
    height: 48px; /* Thumb-friendly tapping */
}

.whatsapp-float {
    width: 56px !important;
    height: 56px !important;
    bottom: 24px !important;
    right: 24px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

.nav-whatsapp-mobile {
    display: none;
}

@media (max-width: 992px) {
    .nav-menu {
        display: none;
    }
    .mobile-toggle {
        display: block;
    }
}

/* Strict Mobile Rules (iPhone 14 / < 768px) */
@media (max-width: 768px) {
    /* Navbar collapse */
    .nav-cta-desktop, .nav-desktop-only {
        display: none !important;
    }
    
    .nav-whatsapp-mobile {
        display: flex;
        align-items: center;
        justify-content: center;
        color: #25D366;
        font-size: 32px;
        text-decoration: none;
        margin-left: 10px;
    }

    /* Hero Headline */
    .hero-title-new {
        font-size: 36px !important;
        line-height: 1.15;
    }

    /* Two-column layout collapse: Copy above, Image below */
    .hero-grid, .about-grid, .pricing-grid {
        display: flex !important;
        flex-direction: column !important;
    }
    
    .hero-content, .about-content, .pricing-card-new {
        order: 1; /* Copy Above */
    }
    
    .hero-mockup-wrapper, .about-images, .pricing-visuals {
        order: 2; /* Image Below */
        margin-top: 2.5rem;
    }

    /* Pricing card vertical padding */
    .pricing-card-new {
        width: 100%;
        padding: 4rem 1.5rem !important;
    }

    /* Form Fields thumb-friendly */
    .form-group, .form-control {
        width: 100%;
    }
}

/* Expert Mobile UI Optimizations */
.mobile-sticky-cta {
    display: none;
}

@media (max-width: 768px) {
    /* Sticky Mobile CTA */
    .mobile-sticky-cta {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        padding: 12px 16px;
        background: rgba(26, 26, 26, 0.85);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        z-index: 1000;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
    }
    
    /* Adjust WhatsApp Float to not overlap sticky CTA */
    .whatsapp-float {
        bottom: 80px !important; 
        right: 16px !important;
        width: 48px !important;
        height: 48px !important;
        font-size: 24px !important;
    }

    /* Section Padding Reduction for Mobile */
    .section {
        padding: 4rem 0;
    }

    /* Horizontal Scroll / Swipeable Containers for mobile app-like feel */
    .cards-grid, .portfolio-grid {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 20px;
        margin-left: -2rem;
        margin-right: -2rem;
        padding-left: 2rem;
        padding-right: 2rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    
    .cards-grid::-webkit-scrollbar, .portfolio-grid::-webkit-scrollbar {
        display: none;
    }

    .card, .portfolio-item, .problem-card {
        flex: 0 0 85% !important;
        scroll-snap-align: center;
    }

    /* Ensure body has padding at bottom so footer isn't hidden by sticky CTA */
    body {
        padding-bottom: 72px;
    }

    /* Clean up Timeline for Mobile */
    .timeline-layout {
        gap: 0;
        margin-top: 2rem;
        flex-direction: column !important;
    }
    
    .timeline-step {
        border-left: 2px dashed rgba(226, 75, 74, 0.5) !important;
        padding-left: 2rem !important;
        margin-left: 1rem !important;
        padding-bottom: 2.5rem !important;
    }
    
    .timeline-step:last-child {
        border-left-color: transparent !important;
        padding-bottom: 0 !important;
    }

    .timeline-number {
        font-size: 1rem !important;
        position: absolute;
        top: 0 !important;
        left: -15px !important;
        background: var(--bg-main) !important;
        color: #E24B4A !important;
        font-weight: 900;
        width: 28px !important;
        height: 28px !important;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        border: 2px solid #E24B4A !important;
        z-index: 2;
    }
    
    .timeline-content {
        padding: 0 !important;
        margin-top: 0 !important;
        background: transparent !important;
        border-top: none !important;
        box-shadow: none !important;
    }

    /* Card Focus Animation (Blur + Jiggle) */
    .card-focus-anim {
        animation: cardFocus 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) forwards !important;
        will-change: transform, filter;
    }

    @keyframes cardFocus {
        0% { 
            filter: blur(6px); 
            transform: scale(0.96) translateX(15px); 
        }
        50% { 
            filter: blur(0px); 
            transform: scale(1) translateX(-6px); 
        }
        75% { 
            transform: translateX(3px); 
        }
        100% { 
            transform: translateX(0); 
        }
    }

    /* Carousel Dot Indicators */
    .carousel-dots {
        display: flex;
        justify-content: center;
        gap: 6px;
        margin-top: 20px;
        width: 100%;
        padding-bottom: 10px;
    }
    .carousel-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background-color: rgba(226, 75, 74, 0.3);
        transition: all 0.3s ease;
    }
    .carousel-dot.active {
        background-color: #E24B4A;
        width: 24px;
        border-radius: 10px;
    }
}
