/* =====================================================
   MAIN STYLESHEET
   Color Palette:
   - Primary Black: #1b1b1b
   - Accent Orange: #fe7101
   - Dark Red: #9f1a03
   - White: #ffffff
   ===================================================== */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #1b1b1b;
    background: #fff;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
a:hover { text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* --- Accessibility --- */
:focus-visible { outline: 2px solid #fe7101; outline-offset: 2px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
#main-content { outline: none; }

/* --- Container --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* =====================================================
   TYPOGRAPHY
   ===================================================== */
h1, h2, h3, h4, h5 { font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

/* =====================================================
   BUTTONS
   ===================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.25s ease;
    cursor: pointer;
    border: 2px solid transparent;
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background: #fe7101;
    color: #fff;
    border-color: #fe7101;
}
.btn-primary:hover {
    background: #e56400;
    border-color: #e56400;
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(254, 113, 1, 0.35);
}

.btn-outline {
    background: transparent;
    color: #1b1b1b;
    border-color: #1b1b1b;
}
.btn-outline:hover {
    background: #1b1b1b;
    color: #fff;
}

.btn-outline-light {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.6);
}
.btn-outline-light:hover {
    background: #fff;
    color: #1b1b1b;
    border-color: #fff;
}

.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-sm { padding: 8px 18px; font-size: 0.875rem; }
.btn-block { width: 100%; justify-content: center; }

/* =====================================================
   HEADER / NAV
   ===================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #fff;
    box-shadow: 0 1px 0 rgba(0,0,0,0.08);
    transition: box-shadow 0.3s ease;
}

.site-header.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.12); }

.navbar { padding: 0; }
.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 84px;
    gap: 24px;
}

.nav-brand a { display: flex; align-items: center; }
.nav-logo {
    display: block;
    height: 56px;
    width: auto;
    max-width: min(320px, 40vw);
}
.nav-logo-text {
    font-size: 1.4rem;
    font-weight: 800;
    color: #1b1b1b;
    letter-spacing: -0.5px;
}
.nav-logo-text span { color: #fe7101; }

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
    flex: 1;
    justify-content: flex-end;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links a {
    padding: 6px 14px;
    font-weight: 500;
    font-size: 0.95rem;
    color: #1b1b1b;
    border-radius: 4px;
    transition: color 0.2s, background 0.2s;
}
.nav-links a:hover, .nav-links a.active {
    color: #fe7101;
}

.nav-cta { display: flex; align-items: center; gap: 10px; }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: none;
    border: none;
}
.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #1b1b1b;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* =====================================================
   HERO SECTION
   ===================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #1b1b1b;
    padding-top: 84px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1b1b1b 0%, #2d2d2d 40%, #1a0a00 70%, #2b0d00 100%);
}
.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(254,113,1,0.15) 0%, transparent 60%);
}

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

.hero-content {
    max-width: 760px;
    padding: 80px 0;
}

.hero-headline {
    color: #fff;
    font-size: clamp(2.4rem, 6vw, 4.2rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-tagline {
    color: rgba(255,255,255,0.75);
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-weight: 400;
    margin-bottom: 40px;
    letter-spacing: 0.5px;
}

.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}
.hero-scroll-indicator span {
    display: block;
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, #fe7101, transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }

/* =====================================================
   SECTION COMMON
   ===================================================== */
.section { padding: 96px 0; }

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fe7101;
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #1b1b1b;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.7;
}

.section-cta { text-align: center; margin-top: 48px; }
.text-primary { color: #fe7101; }

.empty-state {
    max-width: 760px;
    margin: 0 auto;
    padding: 40px 32px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 16px rgba(0,0,0,0.04);
}
.empty-state p {
    color: #666;
    font-size: 0.98rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* =====================================================
   SERVICES SECTION (HOMEPAGE CARDS)
   ===================================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}

.service-card {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    padding: 36px 32px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: #fe7101;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}
.service-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.1); transform: translateY(-4px); }
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
    width: 56px;
    height: 56px;
    background: rgba(254,113,1,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #fe7101;
    font-size: 1.4rem;
}

.service-title { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; }
.service-desc { color: #666; font-size: 0.95rem; line-height: 1.7; margin-bottom: 20px; }
.service-link {
    color: #fe7101;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s ease;
}
.service-link:hover { gap: 10px; }

/* =====================================================
   STATS SECTION
   ===================================================== */
.stats-section {
    background: #1b1b1b;
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.stat-item { padding: 20px; }
.stat-number {
    display: block;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: #fe7101;
    margin-bottom: 8px;
    letter-spacing: -1px;
}
.stat-label {
    display: block;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.65);
    font-weight: 500;
}

/* =====================================================
   TESTIMONIALS
   ===================================================== */
.testimonials-section { background: #f9f9f9; overflow: hidden; }

.testimonials-carousel-wrapper {
    overflow: hidden;
    position: relative;
    margin: 0 -24px;
}

.testimonials-track {
    display: flex;
    gap: 24px;
    animation: scrollLeft 40s linear infinite;
    width: max-content;
    padding: 12px 24px;
}

.testimonials-track.reverse { animation: scrollRight 40s linear infinite; margin-top: 24px; }

@keyframes scrollLeft { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes scrollRight { from { transform: translateX(-50%); } to { transform: translateX(0); } }

.testimonials-carousel-wrapper:hover .testimonials-track { animation-play-state: paused; }

.testimonial-card {
    background: #fff;
    border-radius: 12px;
    padding: 32px;
    width: 340px;
    flex-shrink: 0;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}

.testimonial-stars { color: #fe7101; font-size: 0.9rem; margin-bottom: 12px; }
.testimonial-metric {
    display: inline-block;
    background: rgba(254,113,1,0.1);
    color: #fe7101;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 16px;
}
.testimonial-quote { font-size: 0.95rem; color: #444; line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-photo { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.author-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: #fe7101; color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 1rem;
    flex-shrink: 0;
}
.author-name { display: block; font-weight: 700; font-size: 0.9rem; }
.author-company { display: block; font-size: 0.8rem; color: #999; }

/* =====================================================
   CTA SECTION
   ===================================================== */
.cta-section {
    background: linear-gradient(135deg, #1b1b1b 0%, #2d2d2d 100%);
    padding: 96px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(254,113,1,0.12) 0%, transparent 70%);
}
.cta-content { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.cta-title { color: #fff; margin-bottom: 20px; }
.cta-text { color: rgba(255,255,255,0.75); font-size: 1.05rem; margin-bottom: 40px; line-height: 1.7; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* =====================================================
   PAGE HERO
   ===================================================== */
.page-hero {
    position: relative;
    background: #1b1b1b;
    padding: 140px 0 80px;
    overflow: hidden;
}
.page-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1b1b1b 0%, #2d2d2d 50%, #1a0a00 100%);
}
.page-hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 80% 50%, rgba(254,113,1,0.12) 0%, transparent 60%);
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero-title { color: #fff; margin-bottom: 16px; }
.page-hero-subtitle { color: rgba(255,255,255,0.7); font-size: 1.15rem; max-width: 600px; }

/* =====================================================
   ABOUT PAGE
   ===================================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 80px;
    align-items: center;
}

.about-text p { color: #555; font-size: 1.05rem; line-height: 1.8; margin-bottom: 20px; }

.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 32px;
}
.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #1b1b1b;
}
.highlight-item i { color: #fe7101; font-size: 1rem; }

.about-image-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.about-stat-card {
    background: #f9f9f9;
    border-radius: 12px;
    padding: 28px;
    border-left: 4px solid #fe7101;
    text-align: center;
}
.stat-big { display: block; font-size: 2.5rem; font-weight: 900; color: #fe7101; }
.stat-desc { display: block; font-size: 0.9rem; color: #666; margin-top: 4px; }

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 40px;
}

.team-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.team-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,0,0,0.12); }

.team-photo-wrapper { aspect-ratio: 4/3; overflow: hidden; background: #f0f0f0; }
.team-photo { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.team-card:hover .team-photo { transform: scale(1.04); }
.team-photo-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    font-size: 4rem; color: #ccc;
    background: linear-gradient(135deg, #f0f0f0, #e8e8e8);
}

.team-info { padding: 32px; }
.team-name { font-size: 1.3rem; font-weight: 800; margin-bottom: 6px; }
.team-role { color: #fe7101; font-weight: 600; font-size: 0.95rem; margin-bottom: 12px; }
.team-experience { font-size: 0.85rem; color: #999; margin-bottom: 16px; }
.team-experience i { margin-right: 4px; }
.team-bio { font-size: 0.95rem; color: #555; line-height: 1.7; margin-bottom: 16px; }
.team-specializations { font-size: 0.85rem; color: #777; }
.team-specializations strong { display: block; color: #1b1b1b; margin-bottom: 4px; }

/* Values Section */
.values-section { background: #f9f9f9; }
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 28px;
}
.value-card {
    background: #fff;
    border-radius: 12px;
    padding: 36px 28px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}
.value-card:hover { transform: translateY(-4px); }
.value-icon {
    width: 60px; height: 60px;
    background: #1b1b1b;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
    color: #fe7101; font-size: 1.5rem;
}
.value-card h3 { margin-bottom: 12px; font-size: 1.1rem; }
.value-card p { color: #666; font-size: 0.93rem; line-height: 1.7; }

/* =====================================================
   SERVICES PAGE — ACCORDION
   ===================================================== */
.services-accordion { display: flex; flex-direction: column; gap: 12px; }

.accordion-item {
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow 0.3s;
}
.accordion-item:has(.accordion-header.active) { box-shadow: 0 8px 30px rgba(0,0,0,0.08); }

.accordion-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 28px;
    background: #fff;
    text-align: left;
    transition: background 0.2s;
    gap: 16px;
}
.accordion-header:hover { background: #fafafa; }
.accordion-header.active { background: #1b1b1b; }

.accordion-header-content { display: flex; align-items: center; gap: 20px; flex: 1; }

.accordion-icon {
    width: 48px; height: 48px; min-width: 48px;
    border-radius: 10px;
    background: rgba(254,113,1,0.1);
    display: flex; align-items: center; justify-content: center;
    color: #fe7101; font-size: 1.2rem;
    transition: background 0.2s;
}
.accordion-header.active .accordion-icon { background: rgba(254,113,1,0.2); }

.accordion-title-group { display: flex; flex-direction: column; gap: 2px; }
.accordion-number { font-size: 0.75rem; font-weight: 700; color: #fe7101; letter-spacing: 1px; }
.accordion-title {
    font-size: 1.1rem; font-weight: 700; color: #1b1b1b;
    transition: color 0.2s;
}
.accordion-header.active .accordion-title { color: #fff; }
.accordion-subtitle { font-size: 0.85rem; color: #999; transition: color 0.2s; }
.accordion-header.active .accordion-subtitle { color: rgba(255,255,255,0.6); }

.accordion-arrow {
    color: #999; transition: transform 0.3s, color 0.2s;
    font-size: 0.9rem;
}
.accordion-header.active .accordion-arrow { transform: rotate(180deg); color: #fe7101; }

.accordion-panel { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.accordion-panel.open { max-height: 1200px; }

.accordion-body { padding: 0 28px 28px; }
.accordion-content-grid { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: start; }
.accordion-text p { color: #555; line-height: 1.8; margin-bottom: 16px; font-size: 0.97rem; }

.service-features { margin: 24px 0; }
.service-features h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 12px; color: #1b1b1b; }
.features-list { display: flex; flex-direction: column; gap: 8px; }
.features-list li {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 0.93rem; color: #555;
}
.features-list li i { color: #fe7101; margin-top: 2px; flex-shrink: 0; }

.accordion-cta { display: flex; gap: 12px; margin-top: 24px; flex-wrap: wrap; }
.accordion-image img { width: 360px; max-width: 100%; border-radius: 10px; object-fit: cover; }

/* Why Us */
.why-us-section { background: #1b1b1b; }
.why-us-section .section-title { color: #fff; }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 28px; }
.why-item { padding: 28px; border-radius: 12px; border: 1px solid rgba(255,255,255,0.08); }
.why-icon {
    width: 52px; height: 52px;
    background: rgba(254,113,1,0.15);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: #fe7101; font-size: 1.3rem;
    margin-bottom: 16px;
}
.why-item h3 { color: #fff; font-size: 1.05rem; margin-bottom: 10px; }
.why-item p { color: rgba(255,255,255,0.6); font-size: 0.9rem; line-height: 1.7; }

/* =====================================================
   PRICING PAGE
   ===================================================== */
.pricing-intro-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 80px;
    align-items: start;
}
.pricing-intro-text h2 { margin-bottom: 20px; }
.pricing-intro-text p { color: #555; line-height: 1.8; margin-bottom: 16px; }
.pricing-intro-text a.text-primary { font-weight: 600; }

.pricing-intro-highlights { display: flex; flex-direction: column; gap: 16px; }
.highlight-box {
    background: #f9f9f9;
    border-radius: 12px;
    padding: 24px;
    border-left: 4px solid #fe7101;
}
.highlight-box i { color: #fe7101; font-size: 1.2rem; margin-bottom: 10px; display: block; }
.highlight-box h4 { font-size: 1rem; margin-bottom: 6px; }
.highlight-box p { font-size: 0.88rem; color: #666; }

.pricing-plans-section { background: #f9f9f9; }

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

.pricing-card {
    background: #fff;
    border-radius: 16px;
    padding: 36px 32px;
    border: 1px solid #eee;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.09); }

.pricing-card--featured {
    border-color: #fe7101;
    box-shadow: 0 8px 40px rgba(254,113,1,0.15);
}
.pricing-badge {
    position: absolute;
    top: -12px; left: 50%; transform: translateX(-50%);
    background: #fe7101; color: #fff;
    font-size: 0.75rem; font-weight: 700;
    padding: 4px 16px; border-radius: 20px;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.pricing-header { margin-bottom: 24px; }
.pricing-name { font-size: 1.1rem; font-weight: 700; margin-bottom: 12px; }
.pricing-price { margin-bottom: 12px; }
.price-amount { font-size: 2.4rem; font-weight: 900; color: #fe7101; }
.price-suffix { font-size: 0.9rem; color: #999; margin-left: 4px; }
.pricing-desc { font-size: 0.9rem; color: #666; line-height: 1.6; }

.pricing-features {
    flex: 1;
    margin-bottom: 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.pricing-features li {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 0.9rem; color: #555;
}
.pricing-features li i { color: #fe7101; margin-top: 2px; flex-shrink: 0; }

/* Custom Quote */
.custom-quote-grid {
    display: grid;
    grid-template-columns: 1fr 500px;
    gap: 80px;
    align-items: start;
}
.custom-quote-text h2 { margin-bottom: 16px; }
.custom-quote-text p { color: #555; line-height: 1.8; margin-bottom: 20px; }

.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item { border: 1px solid #eee; border-radius: 8px; overflow: hidden; }
.faq-question {
    width: 100%; text-align: left; padding: 16px 20px;
    font-weight: 600; font-size: 0.95rem; color: #1b1b1b;
    background: #fff; cursor: pointer;
    transition: background 0.2s;
    display: flex; justify-content: space-between; align-items: center;
}
.faq-question::after {
    content: '+';
    font-size: 1.2rem;
    color: #fe7101;
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 12px;
}
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-question:hover { background: #fafafa; }
.faq-answer { display: none; padding: 0 20px 16px; }
.faq-item.open .faq-answer { display: block; }
.faq-answer p { font-size: 0.9rem; color: #666; line-height: 1.7; }

/* FAQ Page */
.faq-page-section { background: #f9f9f9; }
.faq-page-layout { max-width: 980px; margin: 0 auto; }
.faq-page-header { margin-bottom: 48px; }
.faq-category + .faq-category { margin-top: 40px; }
.faq-category-header { margin-bottom: 16px; }
.faq-category-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: #1b1b1b;
    letter-spacing: -0.3px;
}
.faq-page-list .faq-item { background: #fff; }

/* =====================================================
   CONTACT PAGE
   ===================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info-title { font-size: 1.6rem; margin-bottom: 16px; }
.contact-info-text { color: #666; line-height: 1.8; margin-bottom: 32px; }

.contact-details { display: flex; flex-direction: column; gap: 20px; margin-bottom: 40px; }
.contact-detail-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-detail-icon {
    width: 44px; height: 44px; min-width: 44px;
    background: rgba(254,113,1,0.1);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: #fe7101; font-size: 1rem;
}
.contact-detail-text strong { display: block; font-size: 0.85rem; color: #999; margin-bottom: 4px; }
.contact-detail-text a, .contact-detail-text span { font-size: 0.97rem; color: #1b1b1b; }
.contact-detail-text a:hover { color: #fe7101; }

.contact-newsletter h3 { font-size: 1rem; margin-bottom: 6px; }
.contact-newsletter p { font-size: 0.88rem; color: #666; margin-bottom: 12px; }

/* =====================================================
   FORMS
   ===================================================== */
.form-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 40px rgba(0,0,0,0.08);
}
.form-title { font-size: 1.5rem; margin-bottom: 8px; }
.form-subtitle { color: #666; font-size: 0.95rem; margin-bottom: 28px; }

.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.form-label {
    display: block;
    font-weight: 600;
    font-size: 0.87rem;
    color: #1b1b1b;
    margin-bottom: 6px;
}
.form-label span { color: #fe7101; }

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #e5e5e5;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: inherit;
    color: #1b1b1b;
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
    -webkit-appearance: none;
    appearance: none;
}
.form-control:focus {
    border-color: #fe7101;
    box-shadow: 0 0 0 3px rgba(254,113,1,0.12);
    outline: none;
}
.form-control.is-invalid { border-color: #dc3545; }
textarea.form-control { resize: vertical; min-height: 100px; }

.form-error { display: block; color: #dc3545; font-size: 0.82rem; margin-top: 4px; }
.form-hint { display: block; color: #999; font-size: 0.8rem; margin-top: 4px; }
.form-disclaimer { font-size: 0.8rem; color: #999; margin-top: 16px; text-align: center; }

.form-checkbox-group { margin-top: 4px; }
.form-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.88rem;
    color: #555;
    cursor: pointer;
    line-height: 1.5;
}
.form-checkbox-label input[type="checkbox"] {
    width: 16px; height: 16px; min-width: 16px;
    margin-top: 2px;
    accent-color: #fe7101;
}

.form-success-msg {
    background: #f0fdf4;
    border: 1px solid #86efac;
    border-radius: 8px;
    padding: 24px;
    text-align: center;
    margin-bottom: 20px;
}
.form-success-msg i { font-size: 2rem; color: #22c55e; margin-bottom: 12px; display: block; }
.form-success-msg p { color: #166534; font-weight: 600; }

.alert {
    padding: 14px 18px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
}
.alert-success { background: #f0fdf4; color: #166534; border: 1px solid #86efac; }
.alert-danger { background: #fef2f2; color: #991b1b; border: 1px solid #fca5a5; }

/* =====================================================
   FREE AUDIT PAGE
   ===================================================== */
.audit-grid {
    display: grid;
    grid-template-columns: 1fr 520px;
    gap: 80px;
    align-items: start;
}

.audit-info-title { font-size: 1.6rem; margin-bottom: 16px; }
.audit-info-intro { color: #555; line-height: 1.8; margin-bottom: 32px; font-size: 1rem; }

.audit-includes {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
}
.audit-includes li { display: flex; align-items: flex-start; gap: 16px; }
.audit-include-icon {
    width: 40px; height: 40px; min-width: 40px;
    background: rgba(254,113,1,0.1);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: #fe7101; font-size: 1rem;
    margin-top: 2px;
}
.audit-includes li > div > strong { display: block; font-size: 0.97rem; margin-bottom: 4px; }
.audit-includes li > div > p { font-size: 0.88rem; color: #666; line-height: 1.6; }

.audit-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #f9f9f9;
    border-radius: 10px;
    padding: 20px;
    border-left: 4px solid #fe7101;
}
.audit-note i { color: #fe7101; margin-top: 2px; flex-shrink: 0; }
.audit-note p { font-size: 0.88rem; color: #666; line-height: 1.6; }

/* Newsletter Section */
.newsletter-section { background: #f9f9f9; }
.newsletter-box {
    background: #1b1b1b;
    border-radius: 16px;
    padding: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}
.newsletter-content h2 { color: #fff; font-size: 1.6rem; margin-bottom: 8px; }
.newsletter-content p { color: rgba(255,255,255,0.65); font-size: 0.95rem; }
.newsletter-form-inline { display: flex; gap: 12px; min-width: 380px; }
.newsletter-form-inline input {
    flex: 1; padding: 12px 16px; border-radius: 8px;
    border: none; font-family: inherit; font-size: 0.95rem;
}
.newsletter-form-inline input:focus { outline: 2px solid #fe7101; }

/* Footer newsletter */
.footer-newsletter { margin-top: 24px; }
.newsletter-label { font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-bottom: 10px; }
.newsletter-input-group { display: flex; gap: 8px; }
.newsletter-input-group input {
    flex: 1;
    padding: 10px 14px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 6px;
    color: #fff;
    font-size: 0.88rem;
    font-family: inherit;
}
.newsletter-input-group input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-input-group input:focus { outline: none; border-color: #fe7101; background: rgba(255,255,255,0.15); }
.newsletter-success .success-text { color: #4ade80; font-size: 0.88rem; display: flex; align-items: center; gap: 6px; }

/* =====================================================
   FOOTER
   ===================================================== */
.site-footer { background: #1b1b1b; color: rgba(255,255,255,0.8); }

.footer-top { padding: 80px 0 60px; }

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 60px;
}

.footer-logo { height: 52px; width: auto; max-width: 260px; filter: brightness(0) invert(1); }
.footer-logo-text { font-size: 1.4rem; font-weight: 800; color: #fff; }
.footer-tagline { color: rgba(255,255,255,0.5); font-size: 0.9rem; margin-top: 12px; line-height: 1.6; }

.footer-heading { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: #fe7101; margin-bottom: 20px; }

.footer-nav ul { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a {
    color: rgba(255,255,255,0.65); font-size: 0.93rem;
    transition: color 0.2s;
}
.footer-nav a:hover { color: #fe7101; }

.contact-list { display: flex; flex-direction: column; gap: 14px; }
.contact-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 0.9rem; }
.contact-list i { color: #fe7101; margin-top: 2px; width: 16px; }
.contact-list a { color: rgba(255,255,255,0.75); transition: color 0.2s; }
.contact-list a:hover { color: #fe7101; }
.contact-list span { color: rgba(255,255,255,0.65); line-height: 1.5; }

.footer-social { display: flex; gap: 10px; margin-top: 24px; }
.footer-social a {
    width: 38px; height: 38px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.7); font-size: 0.9rem;
    transition: background 0.2s, color 0.2s;
}
.footer-social a:hover { background: #fe7101; color: #fff; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 24px 0;
}
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 0.85rem; color: rgba(255,255,255,0.4); }
.footer-legal { display: flex; gap: 16px; }
.footer-legal a { color: rgba(255,255,255,0.4); font-size: 0.82rem; transition: color 0.2s; }
.footer-legal a:hover { color: #fe7101; }

/* =====================================================
   ANIMATIONS
   ===================================================== */
.animate-fade-up { opacity: 0; transform: translateY(30px); animation: fadeUp 0.8s ease forwards; }
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

/* =====================================================
   PRICING HIGHLIGHT BOX
   ===================================================== */
.pricing-intro-section { padding-bottom: 0; }

/* =====================================================
   RESPONSIVE — TABLET
   ===================================================== */
@media (max-width: 1024px) {
    .about-grid,
    .pricing-intro-grid,
    .custom-quote-grid,
    .contact-grid,
    .audit-grid { grid-template-columns: 1fr; gap: 48px; }

    .about-image-card { flex-direction: row; }
    .about-stat-card { flex: 1; }

    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }

    .newsletter-box { flex-direction: column; text-align: center; }
    .newsletter-form-inline { min-width: 100%; }
}

/* =====================================================
   RESPONSIVE — MOBILE
   ===================================================== */
@media (max-width: 768px) {
    .section { padding: 64px 0; }

    /* Mobile Nav */
    .nav-toggle { display: flex; }
    .nav-menu {
        position: fixed;
        top: 84px; left: 0; right: 0;
        background: #fff;
        flex-direction: column;
        align-items: stretch;
        padding: 24px;
        gap: 24px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        box-shadow: 0 8px 30px rgba(0,0,0,0.12);
        z-index: 999;
    }
    .nav-menu.open { transform: translateY(0); opacity: 1; visibility: visible; }
    .nav-links { flex-direction: column; align-items: stretch; }
    .nav-links a { padding: 10px 0; border-bottom: 1px solid #f0f0f0; }
    .nav-cta { flex-direction: column; }

    .hero-content { padding: 60px 0 48px; }
    .nav-logo { height: 46px; max-width: 58vw; }
    .hero-cta { flex-direction: column; }
    .hero-cta .btn { width: 100%; justify-content: center; }

    .services-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }

    .team-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr 1fr; }
    .why-grid { grid-template-columns: 1fr 1fr; }

    .form-row { grid-template-columns: 1fr; }
    .form-card { padding: 28px 24px; }

    .accordion-content-grid { grid-template-columns: 1fr; }
    .accordion-image { display: none; }

    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-bottom .container { flex-direction: column; text-align: center; }
    .about-image-card { flex-direction: column; }

    .newsletter-box { padding: 32px 24px; }
    .newsletter-form-inline { flex-direction: column; }

    .cta-buttons { flex-direction: column; align-items: center; }
    .cta-buttons .btn { width: 100%; max-width: 320px; }
}

@media (max-width: 480px) {
    .values-grid, .why-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
    .about-highlights { grid-template-columns: 1fr; }
}
