/* ==============================================
   HM Prep — Premium Mobile-First CSS
   Font: Inter | Accent: #E8941A
   ============================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* --- Variables --- */
:root {
    --orange: #E8941A;
    --orange-dark: #C97D12;
    --orange-glow: rgba(232, 148, 26, 0.4);
    --orange-bg: #FDF5E9;
    --navy: #0F1C34;
    --navy-light: #1B2E50;
    --navy-glow: rgba(15, 28, 52, 0.5);
    
    --slate-900: #111827;
    --slate-800: #1F2937;
    --slate-700: #374151;
    --slate-600: #4B5563;
    --slate-500: #6B7280;
    --slate-400: #9CA3AF;
    --slate-300: #D1D5DB;
    --slate-200: #E5E7EB;
    --slate-100: #F3F4F6;
    --slate-50: #F9FAFB;
    --white: #FFFFFF;
    --green: #059669;
    
    --radius: 12px;
    --radius-lg: 20px;
    
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
    --shadow: 0 10px 24px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 40px rgba(0,0,0,0.12);
    --shadow-glass: 0 8px 32px rgba(0,0,0,0.08);
    
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* --- Reset --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body { 
    font-family: var(--font); 
    font-size: 16px; 
    line-height: 1.7; 
    color: var(--slate-600); 
    background: var(--white); 
    -webkit-font-smoothing: antialiased; 
    overflow-x: hidden;
}
a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
ul, ol { list-style: none; }
img { max-width: 100%; display: block; border-radius: 4px; }
button, input, textarea, select { font-family: inherit; font-size: inherit; border: none; outline: none; transition: all 0.3s ease; }
button { cursor: pointer; background: none; }

/* --- Mobile First Container --- */
.container { 
    width: 100%; 
    padding: 0 20px; 
    margin: 0 auto; 
}
@media (min-width: 640px) { .container { max-width: 640px; } }
@media (min-width: 768px) { .container { max-width: 768px; padding: 0 24px; } }
@media (min-width: 1024px) { .container { max-width: 1024px; } }
@media (min-width: 1280px) { .container { max-width: 1200px; } }

/* --- Utility & Glassmorphism --- */
.label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--orange);
    margin-bottom: 12px;
}
.label--light { color: rgba(255,255,255,0.8); }

.text-gradient {
    background: linear-gradient(135deg, var(--orange), #FFB75E);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.glass-panel {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: var(--shadow-glass);
    border-radius: var(--radius-lg);
}

.glass-panel-dark {
    background: rgba(15, 28, 52, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-glass);
    border-radius: var(--radius-lg);
}

/* Animations */
.fade-in {
    opacity: 0; transform: translateY(20px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* --- Buttons --- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    padding: 16px 26px; border-radius: 10px;
    font-weight: 600; font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: 2px solid transparent;
    white-space: nowrap;
}
.btn--glow { box-shadow: 0 8px 24px var(--orange-glow); }
.btn--primary { background: var(--orange); color: var(--white); border-color: var(--orange); }
.btn--primary:hover { 
    background: var(--orange-dark); 
    border-color: var(--orange-dark); 
    transform: translateY(-2px); 
    box-shadow: 0 12px 28px var(--orange-glow); 
}
.btn--outline { background: transparent; color: var(--slate-700); border-color: var(--slate-300); }
.btn--outline:hover { border-color: var(--orange); color: var(--orange); }
.btn--ghost { background: transparent; color: var(--slate-700); border-color: transparent; }
.btn--ghost:hover { color: var(--orange); background: var(--orange-bg); }
.btn--white { background: var(--white); color: var(--navy); }
.btn--white:hover { background: var(--slate-50); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--ghost-white { background: rgba(255,255,255,0.1); color: var(--white); border-color: rgba(255,255,255,0.3); backdrop-filter: blur(8px); }
.btn--ghost-white:hover { border-color: var(--white); background: rgba(255,255,255,0.25); color: var(--white); }
.btn--lg { padding: 16px 36px; font-size: 1.05rem; }
.btn--block { width: 100%; justify-content: center; }

/* ==========================
   TOP BAR
   ========================== */
.topbar {
    background: var(--navy);
    color: rgba(255,255,255,0.7);
    font-size: 0.8rem;
    padding: 8px 0;
    display: none; /* Hide on mobile */
}
@media (min-width: 768px) {
    .topbar { display: block; }
    .topbar__inner { display: flex; justify-content: space-between; align-items: center; }
    .topbar__left, .topbar__right { display: flex; align-items: center; gap: 16px; }
    .topbar__left i, .topbar__right i { color: var(--orange); margin-right: 4px; }
    .topbar__right a:hover { color: var(--white); }
    .topbar__divider { width: 1px; height: 14px; background: rgba(255,255,255,0.15); }
}

/* ==========================
   HEADER
   ========================== */
.header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s;
}
.header.scrolled { box-shadow: var(--shadow-sm); }
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.logo img { height: 42px; border-radius: 8px; }

.hamburger { display: flex; flex-direction: column; gap: 5px; padding: 6px; z-index: 200; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: all 0.3s; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.nav {
    position: fixed; top: 0; right: 0; width: 280px; height: 100vh;
    background: rgba(255,255,255,0.95); backdrop-filter: blur(20px);
    display: flex; flex-direction: column; padding: 90px 24px 24px;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1); z-index: 150;
}
.nav.active { transform: translateX(0); }
.nav__link { padding: 14px 16px; font-size: 1rem; font-weight: 600; color: var(--slate-700); border-radius: 8px; margin-bottom: 8px; }
.nav__link:hover, .nav__link.active { color: var(--orange); background: var(--orange-bg); }
.header__cta { display: none; }

@media (min-width: 1024px) {
    .header__inner { height: 80px; }
    .logo img { height: 50px; }
    .hamburger { display: none; }
    .nav {
        position: static; flex-direction: row; height: auto; width: auto;
        background: transparent; padding: 0; box-shadow: none; backdrop-filter: none;
        transform: none;
    }
    .nav__link { margin-bottom: 0; font-size: 0.9rem; padding: 8px 16px; }
    .header__cta { display: inline-flex; margin-left: 12px; }
}

/* ==========================
   HERO
   ========================== */
.hero {
    position: relative;
    padding: 60px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero__bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: -1;
}
.hero__bg img {
    width: 100%; height: 100%; object-fit: cover; object-position: center; border-radius: 0;
}
.hero__overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(15,28,52,0.95) 0%, rgba(15,28,52,0.7) 100%);
}

.hero__grid {
    display: grid; grid-template-columns: 1fr; gap: 50px; align-items: center; z-index: 2; position: relative;
}
.hero__badge {
    display: inline-flex; align-items: center;
    padding: 8px 16px; background: rgba(232,148,26,0.15);
    color: var(--orange); font-size: 0.8rem; font-weight: 700;
    border-radius: 50px; margin-bottom: 24px;
    border: 1px solid rgba(232,148,26,0.3); backdrop-filter: blur(4px);
    text-transform: uppercase; letter-spacing: 1px;
}
.hero__left h1 {
    font-size: 2.2rem; font-weight: 900; color: var(--white);
    line-height: 1.15; margin-bottom: 20px; letter-spacing: -0.02em;
}
.hero__left h1 span { color: var(--orange); }
.hero__sub {
    font-size: 1.05rem; color: rgba(255,255,255,0.7);
    line-height: 1.8; margin-bottom: 30px;
}

.hero__proof {
    display: flex; align-items: flex-start; gap: 20px; flex-wrap: wrap;
    padding: 24px 0; margin-bottom: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.hero__proof-item strong { display: block; font-size: 1.6rem; font-weight: 800; color: var(--white); line-height: 1.2; }
.hero__proof-item span { font-size: 0.85rem; color: rgba(255,255,255,0.5); }
.hero__proof-divider { display: none; }

.hero__ctas { display: flex; flex-direction: column; gap: 16px; }

@media (min-width: 768px) {
    .hero__grid { gap: 60px; }
    .hero__left h1 { font-size: 3rem; }
    .hero__sub { font-size: 1.15rem; max-width: 90%; }
    .hero__proof { flex-wrap: nowrap; gap: 30px; }
    .hero__proof-divider { display: block; width: 1px; height: 40px; background: rgba(255,255,255,0.2); }
    .hero__ctas { flex-direction: row; }
}
@media (min-width: 1024px) {
    .hero { padding: 80px 0; min-height: 85vh; }
    .hero__grid { grid-template-columns: 1.2fr 0.8fr; gap: 80px; }
    .hero__left h1 { font-size: 3.6rem; }
    .hero__sub { max-width: 580px; }
}

/* Quote Form (Hero) */
.quote-form { overflow: hidden; }
.quote-form__header { padding: 30px 30px 20px; text-align: center; border-bottom: 1px solid rgba(0,0,0,0.05); }
.quote-form__header h3 { font-size: 1.3rem; font-weight: 800; color: var(--slate-900); margin-bottom: 4px; }
.quote-form__header p { font-size: 0.9rem; color: var(--slate-500); }

.quote-form__body { padding: 20px 30px 30px; display: flex; flex-direction: column; gap: 16px; }
.quote-form__body input, .quote-form__body select, .quote-form__body textarea {
    padding: 14px 16px; border: 1px solid rgba(0,0,0,0.1);
    border-radius: 10px; font-size: 0.95rem; color: var(--slate-800);
    background: rgba(255,255,255,0.6); backdrop-filter: blur(4px);
    width: 100%;
}
.quote-form__body input:focus, .quote-form__body select:focus, .quote-form__body textarea:focus {
    border-color: var(--orange); background: var(--white);
    box-shadow: 0 0 0 4px rgba(232,148,26,0.15);
}
.quote-form__note { padding: 0 30px 30px; font-size: 0.8rem; color: var(--slate-500); text-align: center; }
.quote-form__note i { color: var(--green); margin-right: 6px; }


/* ==========================
   TRUST BAR
   ========================== */
.trust-bar { position: relative; z-index: 10; margin-top: -40px; padding: 0 20px; }
.trust-bar__inner {
    display: grid; grid-template-columns: 1fr; gap: 1px;
    background: var(--slate-200);
    border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.trust-bar__item {
    display: flex; align-items: center; gap: 16px;
    padding: 24px; background: var(--white);
    transition: all 0.3s;
}
.trust-bar__item:hover { background: var(--orange-bg); }
.trust-bar__item i { font-size: 1.6rem; color: var(--orange); min-width: 30px; text-align: center; }
.trust-bar__item strong { display: block; font-size: 0.95rem; color: var(--slate-900); font-weight: 800; }
.trust-bar__item span { font-size: 0.85rem; color: var(--slate-500); }

@media (min-width: 640px) { .trust-bar__inner { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .trust-bar__inner { grid-template-columns: repeat(4, 1fr); } }


/* ==========================
   ABOUT
   ========================== */
.about { padding: 80px 0; background: var(--white); overflow: hidden; }
.about__grid { display: grid; grid-template-columns: 1fr; gap: 60px; align-items: center; }
.about__visual { position: relative; }
.about__card--main {
    border-radius: var(--radius-lg); overflow: hidden; position: relative;
    box-shadow: var(--shadow-lg);
}
.about__warehouse-img { width: 100%; height: 400px; object-fit: cover; }
.about__card-overlay {
    position: absolute; bottom: 20px; left: 20px; right: 20px;
    padding: 20px; text-align: center;
}
.about__card-overlay span { color: var(--navy); font-size: 1rem; font-weight: 700; font-style: italic; }

.about__card--float {
    position: absolute; bottom: -30px; right: -10px;
    padding: 20px 24px; border-left: 4px solid var(--orange);
    z-index: 2;
}
.about__metric { display: flex; align-items: center; gap: 16px; }
.about__metric i { font-size: 1.8rem; }
.about__metric strong { display: block; font-size: 1rem; color: var(--slate-900); }
.about__metric span { font-size: 0.85rem; color: var(--slate-500); }

.about__content h2 { font-size: 2rem; font-weight: 900; color: var(--slate-900); line-height: 1.2; margin-bottom: 24px; }
.about__content > p { font-size: 1.05rem; color: var(--slate-600); margin-bottom: 16px; line-height: 1.8; }
.about__features { margin-top: 30px; display: flex; flex-direction: column; gap: 20px; }
.about__feature { display: flex; gap: 16px; align-items: flex-start; }
.about__feature-icon {
    width: 48px; height: 48px; min-width: 48px; border-radius: 12px;
    background: var(--orange-bg); color: var(--orange);
    display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
}
.about__feature strong { display: block; font-size: 1rem; color: var(--slate-900); margin-bottom: 4px; }
.about__feature p { font-size: 0.9rem; color: var(--slate-500); line-height: 1.6; }

@media (min-width: 768px) {
    .about__warehouse-img { height: 500px; }
    .about__card--float { right: -30px; }
    .about__content h2 { font-size: 2.5rem; }
}
@media (min-width: 1024px) {
    .about { padding: 120px 0; }
    .about__grid { grid-template-columns: 0.9fr 1.1fr; gap: 80px; }
}


/* ==========================
   SERVICES
   ========================== */
.services { padding: 80px 0; background: var(--slate-50); }
.services__header { max-width: 600px; margin-bottom: 50px; }
.services__header h2 { font-size: 2rem; font-weight: 900; color: var(--slate-900); line-height: 1.2; margin-bottom: 16px; }
.services__header p { font-size: 1.05rem; }

.services__grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
.service-card {
    background: var(--white); border: 1px solid var(--slate-200);
    border-radius: var(--radius-lg); padding: 0;
    position: relative; transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden; z-index: 1; display: flex; flex-direction: column;
}
.service-card::after {
    content: ''; position: absolute; inset: 0; border-radius: var(--radius-lg);
    border: 2px solid var(--orange); opacity: 0; transition: opacity 0.3s; z-index: -1; pointer-events: none;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.service-card:hover::after { opacity: 1; }

.service-card__img { width: 100%; height: 220px; overflow: hidden; }
.service-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.service-card:hover .service-card__img img { transform: scale(1.08); }

.service-card__content { padding: 32px 30px; position: relative; flex: 1; display: flex; flex-direction: column; }

.service-card__number {
    position: absolute; top: -50px; right: 20px;
    font-size: 4.5rem; font-weight: 900; color: rgba(255,255,255,0.7);
    line-height: 1; pointer-events: none; transition: color 0.3s;
    text-shadow: 0 4px 12px rgba(0,0,0,0.1); z-index: 5;
}
.service-card:hover .service-card__number { color: var(--orange-bg); }

.service-card__icon {
    width: 60px; height: 60px; border-radius: 14px;
    background: var(--orange-bg); color: var(--orange);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem; margin-bottom: 24px; transition: all 0.3s;
}
.service-card:hover .service-card__icon { background: var(--orange); color: var(--white); transform: scale(1.1); }

.service-card h3 { font-size: 1.2rem; font-weight: 800; color: var(--slate-900); margin-bottom: 12px; }
.service-card p { font-size: 0.95rem; color: var(--slate-500); line-height: 1.7; }

@media (min-width: 768px) {
    .services__grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
    .services__header h2 { font-size: 2.5rem; }
}
@media (min-width: 1024px) {
    .services { padding: 120px 0; }
    .services__grid { grid-template-columns: repeat(3, 1fr); }
}


/* ==========================
   HOW IT WORKS / PROCESS
   ========================== */
.process { position: relative; padding: 100px 0; color: var(--white); overflow: hidden; z-index: 1; }
.process__bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; }
.process__bg img { width: 100%; height: 100%; object-fit: cover; }
.process__overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(15,28,52,0.95), rgba(15,28,52,0.85)); }

.process__header { max-width: 600px; margin-bottom: 50px; }
.process__header h2 { font-size: 2rem; font-weight: 900; line-height: 1.2; margin-bottom: 16px; }
.process__header p { font-size: 1.05rem; color: rgba(255,255,255,0.7); }

.process__steps { display: grid; grid-template-columns: 1fr; gap: 40px; position: relative; }
.process__step { text-align: left; display: flex; gap: 20px; align-items: flex-start; }
.process__step-num {
    flex-shrink: 0; width: 50px; height: 50px; border-radius: 50%;
    background: var(--orange); color: var(--white); font-weight: 900; font-size: 1.2rem;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 8px 24px var(--orange-glow);
}
.process__step-body h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 10px; }
.process__step-body p { font-size: 0.95rem; color: rgba(255,255,255,0.6); line-height: 1.7; }

@media (min-width: 768px) {
    .process__steps { grid-template-columns: repeat(2, 1fr); gap: 50px; }
    .process__header h2 { font-size: 2.5rem; }
}
@media (min-width: 1024px) {
    .process { padding: 120px 0; }
    .process__steps { grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
    .process__step { flex-direction: column; align-items: center; }
    .process__step-num { width: 64px; height: 64px; font-size: 1.5rem; margin: 0 auto 24px; }
    
    .process__steps::before {
        content: ''; position: absolute; top: 32px; left: 12.5%; right: 12.5%; height: 2px;
        background: linear-gradient(90deg, var(--orange), rgba(232,148,26,0.1));
    }
}


/* ==========================
   WHY HM PREP
   ========================== */
.why { padding: 100px 0; }
.why__grid { display: grid; grid-template-columns: 1fr; gap: 50px; align-items: start; }
.why__image-wrap { width: 100%; height: 350px; border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 30px; box-shadow: var(--shadow-lg); }
.why__main-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s transform-origin-center; }
.why__image-wrap:hover .why__main-img { transform: scale(1.05); }

.why__left h2 { font-size: 2rem; font-weight: 900; color: var(--slate-900); line-height: 1.2; margin-bottom: 20px; }
.why__left > p { font-size: 1.05rem; color: var(--slate-600); margin-bottom: 30px; line-height: 1.8; }
.why__right { display: flex; flex-direction: column; gap: 20px; }
.why__item {
    display: flex; gap: 20px; align-items: flex-start;
    padding: 24px; border-radius: var(--radius-lg);
    border: 1px solid var(--slate-200); background: var(--white);
    transition: all 0.3s;
}
.why__item:hover { border-color: var(--orange); background: var(--orange-bg); transform: translateX(5px); box-shadow: var(--shadow-sm); }
.why__item-icon {
    width: 50px; height: 50px; min-width: 50px; border-radius: 12px;
    background: var(--slate-50); color: var(--orange); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; transition: all 0.3s;
}
.why__item:hover .why__item-icon { background: var(--orange); color: var(--white); transform: scale(1.1); }
.why__item strong { display: block; font-size: 1.05rem; color: var(--slate-900); margin-bottom: 8px; font-weight: 800; }
.why__item p { font-size: 0.95rem; color: var(--slate-500); line-height: 1.6; margin: 0; }

@media (min-width: 1024px) {
    .why { padding: 120px 0; }
    .why__grid { grid-template-columns: 0.8fr 1.2fr; gap: 80px; }
    .why__left h2 { font-size: 2.5rem; }
}


/* ==========================
   PRICING
   ========================== */
.pricing { padding: 80px 0; background: var(--slate-50); }
.pricing__header { max-width: 600px; margin-bottom: 40px; }
.pricing__header h2 { font-size: 2rem; font-weight: 900; color: var(--slate-900); line-height: 1.2; margin-bottom: 16px; }

.pricing__table-wrap {
    overflow-x: auto; border-radius: var(--radius-lg); border: 1px solid var(--slate-200);
    background: var(--white); box-shadow: var(--shadow);
}
.pricing__table { width: 100%; border-collapse: collapse; min-width: 600px; }
.pricing__table thead { background: var(--navy); color: var(--white); }
.pricing__table th { padding: 20px 24px; text-align: left; font-size: 0.9rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; }
.pricing__table td { padding: 20px 24px; font-size: 1rem; border-bottom: 1px solid var(--slate-100); color: var(--slate-600); }
.pricing__table td strong { color: var(--slate-900); font-weight: 700; }
.pricing__table td span { color: var(--slate-400); font-size: 0.85rem; }
.pricing__table tbody tr:hover { background: var(--slate-50); }
.pricing__row-highlight { background: var(--orange-bg) !important; }
.pricing__row-highlight td { border-bottom: none; }
.pricing__row-highlight td strong { color: var(--orange-dark); font-size: 1.1rem; }

.pricing__footer {
    margin-top: 30px; padding: 24px; background: var(--white);
    border: 1px solid var(--slate-200); border-radius: var(--radius-lg);
    display: flex; flex-direction: column; gap: 20px; text-align: center;
}
.pricing__footer p { font-size: 0.95rem; color: var(--slate-600); }
.pricing__footer p i { color: var(--orange); margin-right: 8px; font-size: 1.2rem; }

@media (min-width: 768px) {
    .pricing__footer { flex-direction: row; align-items: center; justify-content: space-between; text-align: left; }
    .pricing__header h2 { font-size: 2.5rem; }
}
@media (min-width: 1024px) { .pricing { padding: 120px 0; } }


/* ==========================
   FAQ
   ========================== */
.faq { padding: 80px 0; }
.faq__layout { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: start; }
.faq__left h2 { font-size: 2rem; font-weight: 900; color: var(--slate-900); line-height: 1.2; margin-bottom: 16px; }
.faq__left > p { font-size: 1.05rem; margin-bottom: 24px; }

.faq__right { display: flex; flex-direction: column; gap: 12px; }
.faq__item { border: 1px solid var(--slate-200); border-radius: var(--radius); overflow: hidden; transition: all 0.3s; background: var(--white); }
.faq__item:hover { border-color: var(--slate-300); }
.faq__item.active { border-color: var(--orange); box-shadow: 0 4px 16px rgba(232,148,26,0.1); }
.faq__q {
    width: 100%; display: flex; align-items: center; justify-content: space-between;
    padding: 20px 24px; font-size: 1.05rem; font-weight: 700; color: var(--slate-900);
    text-align: left; gap: 16px; transition: background 0.2s;
}
.faq__q:hover { background: var(--slate-50); }
.faq__q i { font-size: 0.9rem; color: var(--orange); transition: transform 0.3s; }
.faq__item.active .faq__q i { transform: rotate(45deg); color: var(--orange); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq__a p { padding: 0 24px 20px; font-size: 0.95rem; color: var(--slate-600); line-height: 1.8; }

@media (min-width: 1024px) {
    .faq { padding: 120px 0; }
    .faq__layout { grid-template-columns: 0.8fr 1.2fr; gap: 80px; }
    .faq__left h2 { font-size: 2.5rem; }
}


/* ==========================
   CTA SECTION
   ========================== */
.cta-section {
    position: relative; padding: 100px 0; background: var(--navy); overflow: hidden;
}
.cta-section__bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; }
.cta-section__bg img { width: 100%; height: 100%; object-fit: cover; border-radius: 0; }
.cta-section__overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to right, rgba(15,28,52,0.9), rgba(15,28,52,0.7)); }

.cta-section .container { position: relative; z-index: 2; }
.cta-section__inner { padding: 40px 30px; text-align: center; }
.cta-section__text h2 { font-size: 2rem; font-weight: 900; color: var(--white); margin-bottom: 16px; line-height: 1.2; }
.cta-section__text p { color: rgba(255,255,255,0.7); font-size: 1.05rem; margin-bottom: 30px; }
.cta-section__actions { display: flex; flex-direction: column; gap: 16px; }

@media (min-width: 768px) {
    .cta-section__inner { padding: 60px; display: flex; align-items: center; justify-content: space-between; text-align: left; gap: 40px; }
    .cta-section__text h2 { font-size: 2.5rem; margin-bottom: 8px; }
    .cta-section__text p { margin-bottom: 0; max-width: 480px; }
    .cta-section__actions { flex-direction: row; flex-shrink: 0; }
}
@media (min-width: 1024px) { .cta-section { padding: 120px 0; } }


/* ==========================
   CONTACT
   ========================== */
.contact { padding: 80px 0; background: var(--slate-50); }
.contact__grid { display: grid; grid-template-columns: 1fr; gap: 50px; align-items: start; }
.contact__info h2 { font-size: 2rem; font-weight: 900; color: var(--slate-900); line-height: 1.2; margin-bottom: 16px; }
.contact__info > p { font-size: 1.05rem; margin-bottom: 30px; line-height: 1.8; }

.contact__details { display: flex; flex-direction: column; gap: 16px; }
.contact__detail {
    display: flex; align-items: center; gap: 20px;
    padding: 20px; background: var(--white);
    border-radius: var(--radius-lg); border: 1px solid var(--slate-200);
    transition: all 0.3s;
}
.contact__detail:hover { border-color: var(--orange); transform: translateY(-3px); box-shadow: var(--shadow); }
.contact__detail i { font-size: 1.4rem; color: var(--orange); }
.contact__detail strong { display: block; font-size: 1.05rem; color: var(--slate-900); font-weight: 800; }
.contact__detail span { font-size: 0.9rem; color: var(--slate-500); }

.contact__form { background: var(--white); border: 1px solid var(--slate-200); border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow-lg); }
.form-row { display: grid; grid-template-columns: 1fr; gap: 16px; margin-bottom: 16px; }

.contact__form input, .contact__form select, .contact__form textarea {
    width: 100%; padding: 16px 20px; border: 1px solid var(--slate-300); border-radius: 10px;
    font-size: 1rem; color: var(--slate-800); background: var(--slate-50); transition: all 0.3s;
}
.contact__form input:focus, .contact__form select:focus, .contact__form textarea:focus { border-color: var(--orange); background: var(--white); box-shadow: 0 0 0 4px rgba(232,148,26,0.1); }
.contact__form textarea { margin-bottom: 20px; resize: vertical; }

.form-checkboxes { margin-bottom: 20px; }
.form-checkboxes p { font-size: 0.95rem; color: var(--slate-800); margin-bottom: 12px; font-weight: 600; }
.form-checks { display: grid; grid-template-columns: 1fr; gap: 12px; }
.form-checks label { display: flex; align-items: center; gap: 10px; font-size: 0.95rem; color: var(--slate-600); cursor: pointer; }
.form-checks input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--orange); }

.form-note { text-align: center; margin-top: 16px; font-size: 0.85rem; color: var(--slate-500); }
.form-note i { color: var(--green); margin-right: 6px; }

@media (min-width: 640px) {
    .form-row { grid-template-columns: 1fr 1fr; }
    .form-checks { grid-template-columns: 1fr 1fr; }
    .contact__form { padding: 40px; }
}
@media (min-width: 1024px) {
    .contact { padding: 120px 0; }
    .contact__grid { grid-template-columns: 0.9fr 1.1fr; gap: 80px; }
    .contact__info h2 { font-size: 2.5rem; }
    .form-checks { grid-template-columns: 1fr 1fr 1fr; }
}


/* ==========================
   FOOTER
   ========================== */
.footer { padding: 80px 0 0; background: var(--slate-900); color: rgba(255,255,255,0.7); }
.footer__grid { display: grid; grid-template-columns: 1fr; gap: 50px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer__logo { height: 56px; border-radius: 8px; margin-bottom: 20px; }
.footer__brand p { font-size: 0.95rem; line-height: 1.8; margin-bottom: 24px; }
.footer__social { display: flex; gap: 12px; }
.footer__social a {
    width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.2);
    display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 1rem; transition: all 0.3s;
}
.footer__social a:hover { background: var(--orange); border-color: var(--orange); transform: translateY(-3px); }

.footer__col h4 { font-size: 1.1rem; color: var(--white); font-weight: 800; margin-bottom: 20px; }
.footer__col a, .footer__col p { display: block; font-size: 0.95rem; color: rgba(255,255,255,0.6); padding: 8px 0; transition: all 0.3s; }
.footer__col a:hover { color: var(--orange); transform: translateX(5px); }
.footer__col a i, .footer__col p i { color: var(--orange); margin-right: 10px; width: 16px; text-align: center; }

.footer__bottom { display: flex; flex-direction: column; gap: 16px; padding: 24px 0; font-size: 0.9rem; text-align: center; }
.footer__bottom-links { display: flex; gap: 24px; justify-content: center; }
.footer__bottom-links a { color: rgba(255,255,255,0.5); }
.footer__bottom-links a:hover { color: var(--orange); }

@media (min-width: 768px) {
    .footer__grid { grid-template-columns: repeat(2, 1fr); gap: 60px; }
    .footer__bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}
@media (min-width: 1024px) {
    .footer__grid { grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr; }
}


/* ==========================
   WHATSAPP & BTT
   ========================== */
.wa-float {
    position: fixed; bottom: 20px; right: 20px; width: 56px; height: 56px; border-radius: 50%;
    background: #25D366; color: var(--white); display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem; z-index: 90; box-shadow: 0 8px 24px rgba(37,211,102,0.4); transition: transform 0.3s;
}
.wa-float:hover { transform: scale(1.1) rotate(-10deg); }

.btt {
    position: fixed; bottom: 20px; right: 90px; width: 44px; height: 44px; border-radius: 50%;
    background: var(--slate-800); color: var(--white); display: flex; align-items: center; justify-content: center;
    font-size: 1rem; z-index: 90; box-shadow: var(--shadow);
    opacity: 0; visibility: hidden; transform: translateY(20px); transition: all 0.4s;
}
.btt.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.btt:hover { background: var(--orange); transform: translateY(-5px); }

@media (min-width: 768px) {
    .wa-float { bottom: 30px; right: 30px; width: 64px; height: 64px; font-size: 2rem; }
    .btt { bottom: 40px; right: 110px; width: 50px; height: 50px; }
}

/* ==========================
   PAGE BANNER (Inner Pages)
   ========================== */
.page-banner {
    padding: 60px 0 50px;
    background: var(--navy);
    position: relative; overflow: hidden;
}
.page-banner__bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
}
.page-banner__bg img {
    width: 100%; height: 100%; object-fit: cover;
}
.page-banner__overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(15,28,52,0.82);
}
.page-banner__content {
    position: relative; z-index: 2;
}
.page-banner::after {
    content: '';
    position: absolute; top: -40%; right: -10%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(232,148,26,0.08) 0%, transparent 70%);
    border-radius: 50%;
}
.page-banner .container { position: relative; z-index: 2; }
.page-banner .breadcrumb {
    display: flex; align-items: center; gap: 8px;
    font-size: 0.82rem; color: rgba(255,255,255,0.4);
    margin-bottom: 16px;
}
.page-banner .breadcrumb a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.page-banner .breadcrumb a:hover { color: var(--orange); }
.page-banner .breadcrumb i { font-size: 0.65rem; }
.page-banner h1 {
    font-size: 2.2rem; font-weight: 800; color: var(--white);
    line-height: 1.2; margin-bottom: 12px;
}
.page-banner p {
    font-size: 1.05rem; color: rgba(255,255,255,0.5);
    max-width: 560px; line-height: 1.7;
}

/* ==========================
   INNER PAGE CONTENT BLOCKS
   ========================== */
.page-section { padding: 80px 0; }
.page-section--alt { background: var(--slate-50); }

.page-section__header {
    max-width: 620px; margin-bottom: 50px;
}
.page-section__header h2 {
    font-size: 1.8rem; font-weight: 800; color: var(--slate-900);
    line-height: 1.2; margin-bottom: 12px;
}
.page-section__header p { color: var(--slate-500); line-height: 1.7; }

.text-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 50px; align-items: start;
}
.text-grid h3 {
    font-size: 1.2rem; font-weight: 700; color: var(--slate-800);
    margin-bottom: 12px;
}
.text-grid p { color: var(--slate-500); line-height: 1.8; margin-bottom: 14px; }

/* ==========================
   ABOUT PAGE SPECIFIC
   ========================== */
.about-story { padding: 80px 0; }
.about-story__grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 60px; align-items: center;
}
.about-story__content h2 {
    font-size: 1.8rem; font-weight: 800; color: var(--slate-900);
    margin-bottom: 16px; line-height: 1.2;
}
.about-story__content p {
    color: var(--slate-500); line-height: 1.8; margin-bottom: 14px;
}
.about-story__visual {
    background: var(--orange-bg); border-radius: var(--radius-lg);
    padding: 50px; display: flex; align-items: center; justify-content: center;
    position: relative; min-height: 380px;
}
.about-story__visual img { width: 260px; filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1)); }

.about-values__grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.about-value {
    padding: 32px 28px; border: 1px solid var(--slate-200);
    border-radius: var(--radius); transition: all 0.25s;
    background: var(--white);
}
.about-value:hover { border-color: var(--orange); transform: translateY(-4px); box-shadow: var(--shadow); }
.about-value__icon {
    width: 48px; height: 48px; border-radius: 10px;
    background: var(--orange-bg); color: var(--orange);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; margin-bottom: 16px;
}
.about-value h3 { font-size: 1.05rem; font-weight: 700; color: var(--slate-800); margin-bottom: 8px; }
.about-value p { font-size: 0.88rem; color: var(--slate-500); line-height: 1.7; }

.about-team__grid {
    display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; align-items: center;
}
.about-team__content h2 {
    font-size: 1.8rem; font-weight: 800; color: var(--slate-900);
    margin-bottom: 16px; line-height: 1.2;
}
.about-team__content p { color: var(--slate-500); line-height: 1.8; margin-bottom: 14px; }
.about-team__stats {
    display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 24px;
}
.about-team__stat {
    padding: 20px; background: var(--slate-50); border-radius: var(--radius);
    border-left: 4px solid var(--orange);
}
.about-team__stat strong {
    display: block; font-size: 1.5rem; font-weight: 800; color: var(--slate-900);
}
.about-team__stat span { font-size: 0.82rem; color: var(--slate-500); }

/* ==========================
   SERVICES PAGE SPECIFIC
   ========================== */
.service-detail {
    padding: 70px 0;
    border-bottom: 1px solid var(--slate-100);
}
.service-detail:last-of-type { border-bottom: none; }
.service-detail:nth-child(even) { background: var(--slate-50); }

.service-detail__grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 60px; align-items: center;
}
.service-detail:nth-child(even) .service-detail__grid {
    direction: rtl;
}
.service-detail:nth-child(even) .service-detail__grid > * {
    direction: ltr;
}

.service-detail__content h2 {
    font-size: 1.6rem; font-weight: 800; color: var(--slate-900);
    margin-bottom: 14px; line-height: 1.2;
}
.service-detail__content > p {
    color: var(--slate-500); line-height: 1.8; margin-bottom: 18px;
}
.service-detail__list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.service-detail__list li {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 0.9rem; color: var(--slate-600);
}
.service-detail__list li i { color: var(--green); margin-top: 5px; font-size: 0.75rem; }

.service-detail__visual {
    background: var(--orange-bg); border-radius: var(--radius-lg);
    padding: 50px; display: flex; align-items: center; justify-content: center;
    min-height: 300px;
}
.service-detail__visual .sd-icon {
    width: 120px; height: 120px; border-radius: 50%;
    background: var(--white); display: flex; align-items: center; justify-content: center;
    font-size: 3rem; color: var(--orange);
    box-shadow: var(--shadow-lg);
}

/* ==========================
   HOW IT WORKS PAGE SPECIFIC
   ========================== */
.process-detailed__grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
    position: relative;
}
.process-detailed__line {
    position: absolute; left: 50%; top: 0; bottom: 0;
    width: 2px; background: var(--slate-200);
    transform: translateX(-50%);
}
.process-detailed__step {
    padding: 32px; background: var(--white);
    border: 1px solid var(--slate-200); border-radius: var(--radius-lg);
    transition: all 0.25s;
}
.process-detailed__step:hover { border-color: var(--orange); box-shadow: var(--shadow); }
.process-detailed__step-num {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--orange); color: var(--white);
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 1rem; margin-bottom: 16px;
}
.process-detailed__step h3 {
    font-size: 1.1rem; font-weight: 700; color: var(--slate-800); margin-bottom: 10px;
}
.process-detailed__step p {
    font-size: 0.9rem; color: var(--slate-500); line-height: 1.75;
}
.process-detailed__step ul {
    margin-top: 14px; display: flex; flex-direction: column; gap: 6px;
}
.process-detailed__step ul li {
    display: flex; align-items: center; gap: 8px;
    font-size: 0.85rem; color: var(--slate-600);
}
.process-detailed__step ul li i { color: var(--orange); font-size: 0.7rem; }

.process-timeline {
    padding: 60px 0; background: var(--navy); color: var(--white);
}
.process-timeline__header {
    max-width: 560px; margin-bottom: 40px;
}
.process-timeline__header h2 {
    font-size: 1.8rem; font-weight: 800; margin-bottom: 12px;
}
.process-timeline__header p { color: rgba(255,255,255,0.5); }

.process-expectations {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.process-expectation {
    padding: 28px 24px; border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
}
.process-expectation i { font-size: 1.4rem; color: var(--orange); margin-bottom: 14px; display: block; }
.process-expectation h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.process-expectation p { font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.65; }

/* ==========================
   PRICING PAGE SPECIFIC
   ========================== */
.pricing-compare__grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.pricing-plan {
    background: var(--white); border: 2px solid var(--slate-200);
    border-radius: var(--radius-lg); padding: 36px 30px;
    position: relative; transition: all 0.25s;
}
.pricing-plan:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pricing-plan--featured {
    border-color: var(--orange); box-shadow: var(--shadow-lg);
}
.pricing-plan__badge {
    position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
    background: var(--orange); color: var(--white);
    padding: 5px 20px; border-radius: 50px;
    font-size: 0.75rem; font-weight: 700; white-space: nowrap;
}
.pricing-plan__head {
    text-align: center; padding-bottom: 24px;
    margin-bottom: 24px; border-bottom: 1px solid var(--slate-200);
}
.pricing-plan__name { font-size: 1.2rem; font-weight: 700; color: var(--slate-800); margin-bottom: 10px; }
.pricing-plan__price { font-size: 3rem; font-weight: 800; color: var(--slate-900); line-height: 1; }
.pricing-plan__price span { font-size: 1rem; color: var(--slate-400); font-weight: 500; }
.pricing-plan__desc { font-size: 0.85rem; color: var(--slate-500); margin-top: 8px; }
.pricing-plan__features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.pricing-plan__features li {
    display: flex; align-items: center; gap: 8px;
    font-size: 0.88rem; color: var(--slate-600);
}
.pricing-plan__features li i.fa-check { color: var(--green); }
.pricing-plan__features li i.fa-times { color: var(--slate-300); }
.pricing-plan__features li.disabled { color: var(--slate-400); }

.pricing-extras {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 24px;
}
.pricing-extra {
    padding: 20px; background: var(--white); border: 1px solid var(--slate-200);
    border-radius: var(--radius); text-align: center;
}
.pricing-extra i { font-size: 1.3rem; color: var(--orange); margin-bottom: 10px; display: block; }
.pricing-extra strong { display: block; font-size: 0.9rem; color: var(--slate-800); margin-bottom: 4px; }
.pricing-extra span { font-size: 0.8rem; color: var(--slate-500); }

/* ==========================
   CONTACT PAGE SPECIFIC
   ========================== */
.contact-page__grid {
    display: grid; grid-template-columns: 1fr 1.2fr; gap: 50px; align-items: start;
}
.contact-map {
    width: 100%; height: 350px; border-radius: var(--radius-lg);
    border: 1px solid var(--slate-200); margin-top: 30px;
    background: var(--slate-100);
    overflow: hidden;
}
.contact-map iframe { width: 100%; height: 100%; border: 0; }
.contact-hours {
    margin-top: 24px; padding: 20px;
    background: var(--white); border: 1px solid var(--slate-200);
    border-radius: var(--radius);
}
.contact-hours h3 {
    font-size: 1rem; font-weight: 700; color: var(--slate-800); margin-bottom: 12px;
}
.contact-hours__row {
    display: flex; justify-content: space-between;
    padding: 8px 0; border-bottom: 1px solid var(--slate-100);
    font-size: 0.88rem;
}
.contact-hours__row:last-child { border-bottom: none; }
.contact-hours__row span:first-child { color: var(--slate-600); }
.contact-hours__row span:last-child { color: var(--slate-800); font-weight: 600; }

/* Inner page responsive */
@media (max-width: 1024px) {
    .about-story__grid { grid-template-columns: 1fr; }
    .about-team__grid { grid-template-columns: 1fr; }
    .service-detail__grid { grid-template-columns: 1fr; }
    .service-detail:nth-child(even) .service-detail__grid { direction: ltr; }
    .process-detailed__grid { grid-template-columns: 1fr; }
    .process-detailed__line { display: none; }
    .pricing-compare__grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
    .pricing-extras { grid-template-columns: repeat(2, 1fr); }
    .contact-page__grid { grid-template-columns: 1fr; }
    .text-grid { grid-template-columns: 1fr; gap: 30px; }
    .process-expectations { grid-template-columns: 1fr; }
    .about-values__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .about-values__grid { grid-template-columns: 1fr; }
    .about-team__stats { grid-template-columns: 1fr; }
    .pricing-extras { grid-template-columns: 1fr; }
    .page-banner h1 { font-size: 1.7rem; }
}

/* ==========================
   MOBILE OPTIMIZATION (≤768px / ≤480px)
   Targeted fixes for phone screens
   ========================== */
@media (max-width: 768px) {
    html { scroll-padding-top: 80px; }
    body { font-size: 15px; line-height: 1.65; }

    .container { padding: 0 16px; }

    /* Buttons: larger touch target */
    .btn { padding: 14px 22px; font-size: 0.95rem; }
    .btn--lg { padding: 15px 24px; font-size: 1rem; }

    /* Header */
    .header__inner { height: 64px; }
    .logo img { height: 38px; }
    .nav { width: 85%; max-width: 320px; padding: 80px 20px 24px; }

    /* Hero */
    .hero { padding: 40px 0 50px; min-height: auto; }
    .hero__grid { gap: 32px; }
    .hero__badge { font-size: 0.7rem; padding: 6px 12px; margin-bottom: 16px; }
    .hero__left h1 { font-size: 1.75rem; line-height: 1.2; margin-bottom: 14px; }
    .hero__sub { font-size: 0.98rem; line-height: 1.65; margin-bottom: 22px; }
    .hero__proof { gap: 14px 18px; padding: 18px 0; margin-bottom: 22px; }
    .hero__proof-item strong { font-size: 1.25rem; }
    .hero__proof-item span { font-size: 0.78rem; }
    .hero__ctas .btn { width: 100%; }

    /* Quote form (hero) */
    .quote-form__header { padding: 22px 20px 16px; }
    .quote-form__header h3 { font-size: 1.15rem; }
    .quote-form__body { padding: 16px 20px 20px; gap: 12px; }
    .quote-form__body input,
    .quote-form__body select,
    .quote-form__body textarea { padding: 12px 14px; font-size: 0.92rem; }
    .quote-form__note { padding: 0 20px 22px; font-size: 0.75rem; }

    /* Trust bar — sits below hero, no negative overlap on mobile */
    .trust-bar { margin-top: 24px; padding: 0 16px; }
    .trust-bar__item { padding: 18px; gap: 14px; }
    .trust-bar__item i { font-size: 1.4rem; }

    /* About */
    .about { padding: 56px 0; }
    .about__grid { gap: 40px; }
    .about__warehouse-img { height: 280px; }
    .about__card--float {
        position: relative; bottom: auto; right: auto;
        margin: 16px 0 0; display: inline-flex;
    }
    .about__content h2 { font-size: 1.6rem; margin-bottom: 16px; }
    .about__content > p { font-size: 0.98rem; }
    .about__features { gap: 16px; margin-top: 22px; }
    .about__feature-icon { width: 42px; height: 42px; min-width: 42px; font-size: 1rem; }

    /* Services */
    .services { padding: 56px 0; }
    .services__header { margin-bottom: 32px; }
    .services__header h2 { font-size: 1.6rem; }
    .services__header p { font-size: 0.98rem; }
    .service-card__img { height: 180px; }
    .service-card__content { padding: 24px 20px; }
    .service-card__number { font-size: 3rem; top: -32px; right: 14px; }
    .service-card__icon { width: 52px; height: 52px; font-size: 1.4rem; margin-bottom: 18px; }
    .service-card h3 { font-size: 1.1rem; }

    /* Process */
    .process { padding: 56px 0; }
    .process__header { margin-bottom: 32px; }
    .process__header h2 { font-size: 1.6rem; }
    .process__step { gap: 16px; }
    .process__step-num { width: 44px; height: 44px; font-size: 1.05rem; }
    .process__steps { gap: 28px; }

    /* Why */
    .why { padding: 56px 0; }
    .why__grid { gap: 32px; }
    .why__image-wrap { height: 240px; margin-bottom: 20px; }
    .why__left h2 { font-size: 1.6rem; }
    .why__left > p { font-size: 0.98rem; margin-bottom: 22px; }
    .why__item { padding: 18px; gap: 14px; }
    .why__item-icon { width: 42px; height: 42px; min-width: 42px; font-size: 1rem; }
    .why__item strong { font-size: 1rem; }
    .why__item p { font-size: 0.9rem; }

    /* Pricing */
    .pricing { padding: 56px 0; }
    .pricing__header h2 { font-size: 1.6rem; }
    .pricing__table th, .pricing__table td { padding: 14px 16px; font-size: 0.9rem; }
    .pricing__table-wrap {
        -webkit-overflow-scrolling: touch;
        position: relative;
    }
    .pricing__footer { padding: 20px; gap: 14px; }
    .pricing__footer .btn { width: 100%; }

    /* FAQ */
    .faq { padding: 56px 0 !important; }
    .faq__layout { gap: 28px; }
    .faq__left h2 { font-size: 1.6rem; }
    .faq__left > p { font-size: 0.98rem; }
    .faq__q { padding: 16px 18px; font-size: 0.98rem; gap: 12px; }
    .faq__a p { padding: 0 18px 16px; font-size: 0.9rem; }

    /* CTA section */
    .cta-section { padding: 60px 0; }
    .cta-section__inner { padding: 32px 22px; }
    .cta-section__text h2 { font-size: 1.55rem; margin-bottom: 12px; }
    .cta-section__text p { font-size: 0.98rem; margin-bottom: 22px; }
    .cta-section__actions .btn { width: 100%; }

    /* Contact */
    .contact { padding: 56px 0; }
    .contact__grid { gap: 32px; }
    .contact__info h2 { font-size: 1.6rem; }
    .contact__info > p { font-size: 0.98rem; margin-bottom: 22px; }
    .contact__detail { padding: 16px; gap: 14px; }
    .contact__detail i { font-size: 1.2rem; }
    .contact__form { padding: 22px; }
    .contact__form input,
    .contact__form select,
    .contact__form textarea { padding: 13px 16px; font-size: 0.95rem; }
    .contact__form .btn { width: 100%; }

    /* Footer */
    .footer { padding: 56px 0 0; }
    .footer__grid { gap: 36px; padding-bottom: 36px; }
    .footer__logo { height: 48px; }
    .footer__col h4 { margin-bottom: 14px; font-size: 1.05rem; }
    .footer__bottom { padding: 20px 0; gap: 12px; }
    .footer__bottom-links { flex-wrap: wrap; gap: 16px; }

    /* Floating action buttons */
    .wa-float { bottom: 16px; right: 16px; width: 52px; height: 52px; font-size: 1.6rem; }
    .btt { bottom: 16px; right: 78px; width: 42px; height: 42px; font-size: 0.9rem; }

    /* Page banner (inner pages) */
    .page-banner { padding: 40px 0 36px; }
    .page-banner h1 { font-size: 1.7rem; line-height: 1.25; }
    .page-banner p { font-size: 0.95rem; }
    .page-banner .breadcrumb { font-size: 0.75rem; margin-bottom: 12px; }

    /* Inner page sections */
    .page-section { padding: 56px 0; }
    .page-section__header { margin-bottom: 32px; }
    .page-section__header h2 { font-size: 1.5rem; }
    .about-story { padding: 56px 0; }
    .about-story__content h2 { font-size: 1.5rem; }
    .about-story__visual { padding: 32px; min-height: 260px; }
    .about-story__visual img { width: 180px; }

    .about-team__content h2 { font-size: 1.5rem; }
    .about-team__stat strong { font-size: 1.3rem; }

    .service-detail { padding: 48px 0; }
    .service-detail__grid { gap: 32px; }
    .service-detail__content h2 { font-size: 1.4rem; }
    .service-detail__visual { padding: 32px; min-height: 220px; }
    .service-detail__visual .sd-icon { width: 92px; height: 92px; font-size: 2.2rem; }

    .process-detailed__grid { gap: 20px; }
    .process-detailed__step { padding: 22px; }
    .process-timeline { padding: 48px 0; }
    .process-timeline__header h2 { font-size: 1.5rem; }
    .process-expectation { padding: 22px 18px; }

    .pricing-plan { padding: 28px 22px; }
    .pricing-plan__price { font-size: 2.4rem; }

    .contact-map { height: 260px; margin-top: 24px; }

    /* Prevent horizontal overflow anywhere */
    html, body { overflow-x: hidden; max-width: 100%; }
}

/* Extra small phones (≤380px) */
@media (max-width: 380px) {
    .container { padding: 0 14px; }
    .hero__left h1 { font-size: 1.55rem; }
    .hero__badge { font-size: 0.65rem; }
    .hero__proof { gap: 12px; }
    .hero__proof-item strong { font-size: 1.1rem; }
    .service-card__number { font-size: 2.5rem; }
    .btn { padding: 12px 16px; font-size: 0.9rem; }
    .logo img { height: 34px; }
    .wa-float { width: 48px; height: 48px; font-size: 1.5rem; }
    .btt { right: 72px; width: 38px; height: 38px; }
    .cta-section__text h2, .about__content h2,
    .services__header h2, .why__left h2,
    .faq__left h2, .contact__info h2,
    .pricing__header h2, .process__header h2 { font-size: 1.4rem; }
    .page-banner h1 { font-size: 1.5rem; }
}

/* Landscape phones: reduce vertical padding */
@media (max-width: 900px) and (orientation: landscape) and (max-height: 500px) {
    .hero { min-height: auto; padding: 40px 0; }
    .page-banner { padding: 40px 0 32px; }
}
