:root {
    --orange:        #E65100;
    --orange-dark:   #BF360C;
    --orange-light:  #FFF3E0;
    --orange-mid:    #FFB74D;
    --blue:          #0A192F;
    --blue-dark:     #020C1B;
    --blue-light:    #F0F4F8;
    --blue-mid:      #112240;
    --text-dark:     #0B192C;
    --text-body:     #334155;
    --text-muted:    #64748B;
    --bg-white:      #FFFFFF;
    --bg-light:      #F8FAFC;
    --bg-section:    #F1F5F9;
    --border:        #E5E7EB;
    --shadow-sm:     0 2px 8px rgba(0,0,0,.06);
    --shadow-md:     0 8px 30px rgba(0,0,0,.10);
    --shadow-lg:     0 20px 60px rgba(0,0,0,.14);
    --radius-sm:     8px;
    --radius-md:     14px;
    --radius-lg:     22px;
    --transition:    all .28s cubic-bezier(.4,0,.2,1);
    --font:          'Outfit', system-ui, sans-serif;
    --header-h:      76px;
    --topbar-h:      40px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family:    var(--font);
    color:          var(--text-body);
    background:     var(--bg-white);
    line-height:    1.65;
    overflow-x:     hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
h1, h2, h3, h4, h5 { color: var(--text-dark); font-weight: 700; line-height: 1.25; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 20px; }
.section    { padding: 90px 0; }
.section--light  { background: var(--bg-light); }
.section--orange { background: var(--orange-light); }
.section--blue   { background: var(--blue-light); }

.section--dark {
    background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
    color: #fff;
    position: relative;
}
.section--dark::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.section--dark .section-header h2, 
.section--dark .section-header h2 span { color: #fff; }
.section--dark .section-header h2 span { color: var(--orange-mid); }
.section--dark .section-header p { color: rgba(255,255,255,.8); }
.section--dark .section-header__tag {
    background: rgba(255,255,255,.1);
    color: var(--orange-mid);
    border: 1px solid rgba(255,255,255,.2);
}

/* Dark Section Components Overlay */
.section--dark .why-item,
.section--dark .faq-item,
.section--dark .brand-tag {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.12);
    backdrop-filter: blur(12px);
    transition: var(--transition);
}
.section--dark .why-item h3 { color: #fff; }
.section--dark .why-item p { color: rgba(255,255,255,.7); }
.section--dark .why-item:hover {
    border-color: rgba(255,255,255,.25);
    background: rgba(255,255,255,.08);
}
.section--dark .faq-item summary { color: #fff; }
.section--dark .faq-item summary:hover { background: rgba(255,255,255,.08); }
.section--dark .faq-content {
    border-top-color: rgba(255,255,255,.1);
    color: rgba(255,255,255,.75);
}
.section--dark .faq-content strong { color: #fff; }
.section--dark .faq-alert {
    background: rgba(230,81,0,.2);
    color: var(--orange-mid);
}
.section--dark .brand-tag {
    color: #fff;
    font-weight: 500;
}
.section--dark .brand-tag:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: #fff;
}
.section--dark .why-item__icon {
    background: rgba(255,183,77,.15); /* orange-mid transparan */
    color: var(--orange-mid);
}
.section--dark .faq-item summary i.fa-chevron-down {
    color: var(--orange-mid);
}

.section-header { text-align: center; margin-bottom: 60px; }
.section-header__tag {
    display:        inline-block;
    background:     var(--orange-light);
    color:          var(--orange);
    font-weight:    600;
    font-size:      .8rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding:        6px 16px;
    border-radius:  50px;
    margin-bottom:  14px;
}
.section-header h2 {
    font-size:    clamp(1.7rem, 4vw, 2.6rem);
    margin-bottom: 14px;
}
.section-header h2 span { color: var(--orange); }
.section-header p {
    color:      var(--text-muted);
    max-width:  580px;
    margin:     0 auto;
    font-size:  1.05rem;
}
.divider {
    width:         60px;
    height:        4px;
    border-radius: 4px;
    background:    linear-gradient(90deg, var(--orange), var(--blue));
    margin:        16px auto 20px;
}

.btn {
    display:        inline-flex;
    align-items:    center;
    gap:            8px;
    padding:        13px 28px;
    border-radius:  var(--radius-sm);
    font-family:    var(--font);
    font-weight:    600;
    font-size:      .95rem;
    cursor:         pointer;
    transition:     var(--transition);
    border:         none;
}
.btn--orange {
    background:  var(--orange);
    color:       #fff;
    box-shadow:  0 4px 12px rgba(230,81,0,.25);
}
.btn--orange:hover {
    background:  var(--orange-dark);
    transform:   translateY(-2px);
    box-shadow:  0 6px 16px rgba(230,81,0,.35);
}
.btn--blue {
    background:  var(--blue);
    color:       #fff;
    box-shadow:  0 4px 12px rgba(10,25,47,.2);
}
.btn--blue:hover {
    background:  var(--blue-dark);
    transform:   translateY(-2px);
    box-shadow:  0 6px 16px rgba(10,25,47,.3);
}
.btn--outline {
    background:  transparent;
    color:       var(--orange);
    border:      2px solid var(--orange);
}
.btn--outline:hover {
    background:  var(--orange);
    color:       #fff;
    transform:   translateY(-2px);
}
.btn--lg { padding: 16px 36px; font-size: 1.05rem; }

.topbar {
    position:    sticky;
    top:         0;
    z-index:     1001;
    background:  var(--blue);
    color:       #fff;
    font-size:   .82rem;
    height:      var(--topbar-h);
    display:     flex;
    align-items: center;
}
.topbar__inner {
    display:         flex;
    justify-content: space-between;
    align-items:     center;
    gap:             12px;
    flex-wrap:       wrap;
    width:           100%;
}
.topbar span, .topbar a {
    color:       rgba(255,255,255,.88);
    display:     flex;
    align-items: center;
    gap:         6px;
}
.topbar a:hover { color: #fff; }
.topbar i { color: var(--orange); font-size: .85rem; }
.topbar__contact { display: flex; gap: 20px; }
.topbar__badge {
    background: #fff;
    color: var(--blue);
    padding: 3px 14px;
    border-radius: 50px;
    font-size: .75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 4px;
    letter-spacing: .5px;
}
@keyframes pulseRed { 0% { opacity: 1; } 50% { opacity: 0.3; } 100% { opacity: 1; } }

.header {
    position:   sticky;
    top:        var(--topbar-h);
    z-index:    1000;
    background: #fff;
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}
.header.scrolled {
    box-shadow: 0 4px 24px rgba(0,0,0,.10);
}
.header__inner {
    display:         flex;
    align-items:     center;
    justify-content: space-between;
    height:          var(--header-h);
    gap:             20px;
}
.header__logo img {
    height:     56px;
    width:      auto;
    object-fit: contain;
}

.nav__list {
    display:     flex;
    align-items: center;
    gap:         4px;
}
.nav__link {
    padding:       8px 14px;
    border-radius: var(--radius-sm);
    font-weight:   500;
    color:         var(--text-dark);
    position:      relative;
}
.nav__link::after {
    content:    '';
    position:   absolute;
    bottom:     2px;
    left:       50%;
    transform:  translateX(-50%) scaleX(0);
    width:      70%;
    height:     2px;
    background: var(--orange);
    border-radius: 2px;
    transition: transform .25s ease;
}
.nav__link:hover { color: var(--orange); }
.nav__link:hover::after, .nav__link.active::after { transform: translateX(-50%) scaleX(1); }
.nav__link.active { color: var(--orange); }

.header__cta { display: flex; }

.hamburger {
    display:    none;
    flex-direction: column;
    gap:        5px;
    background: none;
    border:     none;
    cursor:     pointer;
    padding:    6px;
}
.hamburger span {
    display:       block;
    width:         24px;
    height:        2px;
    background:    var(--text-dark);
    border-radius: 2px;
    transition:    var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.hero {
    position:   relative;
    min-height: 88vh;
    display:    flex;
    align-items: center;
    overflow:   hidden;
    background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
    padding:    100px 0 80px;
}
.hero::before {
    content:    '';
    position:   absolute;
    inset:      0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero__content {
    position:  relative;
    z-index:   1;
    max-width: 680px;
    color:     #fff;
}
.hero__badge {
    display:        inline-flex;
    align-items:    center;
    gap:            8px;
    background:     rgba(255,255,255,.15);
    backdrop-filter: blur(8px);
    border:         1px solid rgba(255,255,255,.25);
    color:          #fff;
    font-size:      .82rem;
    font-weight:    600;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding:        7px 18px;
    border-radius:  50px;
    margin-bottom:  28px;
}
.hero__badge i { color: var(--orange-mid); }
.hero h1 {
    font-size:     clamp(2rem, 5.5vw, 3.6rem);
    font-weight:   800;
    line-height:   1.15;
    margin-bottom: 22px;
    color:         #fff;
}
.hero h1 em {
    font-style:  normal;
    color:       var(--orange-mid);
}
.hero__lead {
    font-size:     1.15rem;
    line-height:   1.7;
    color:         rgba(255,255,255,.88);
    margin-bottom: 38px;
    max-width:     560px;
}
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__actions .btn--orange { background: var(--orange); }
.hero__actions .btn--glass {
    background:      rgba(255,255,255,.15);
    backdrop-filter: blur(8px);
    border:          1px solid rgba(255,255,255,.3);
    color:           #fff;
}
.hero__actions .btn--glass:hover { background: rgba(255,255,255,.25); }

.hero__stats {
    display:   flex;
    gap:       30px;
    margin-top: 52px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,.2);
    flex-wrap: wrap;
}
.hero__stat-item { text-align: center; }
.hero__stat-value {
    font-size:   2rem;
    font-weight: 800;
    color:       #fff;
    display:     block;
    line-height: 1;
}
.hero__stat-label {
    font-size:  .82rem;
    color:      rgba(255,255,255,.7);
    margin-top: 4px;
    font-weight: 500;
}

.hero__wrapper { display: flex; gap: 60px; align-items: center; width: 100%; }
.hero__visual {
    flex-shrink: 0;
    display:     flex;
    flex-direction: column;
    gap:         14px;
    position:    relative;
}
.hero__card {
    background:      rgba(255,255,255,.13);
    backdrop-filter: blur(12px);
    border:          1px solid rgba(255,255,255,.22);
    border-radius:   var(--radius-md);
    padding:         18px 24px;
    display:         flex;
    align-items:     center;
    gap:             14px;
    color:           #fff;
    min-width:       240px;
    animation:       floatCard 3s ease-in-out infinite alternate;
}
.hero__card:nth-child(2) { animation-delay: .8s; margin-left: 30px; }
.hero__card:nth-child(3) { animation-delay: 1.5s; }
.hero__card:nth-child(4) { animation-delay: 2.2s; margin-left: 30px; }
@keyframes floatCard {
    from { transform: translateY(0); }
    to   { transform: translateY(-8px); }
}
.hero__card i { font-size: 1.8rem; color: var(--orange-mid); }
.hero__card-text strong { display: block; font-size: .95rem; font-weight: 700; }
.hero__card-text span   { font-size: .82rem; color: rgba(255,255,255,.75); }

.services-grid {
    display:               grid;
    grid-template-columns: repeat(4, 1fr);
    gap:                   24px;
}
.service-card {
    background:    #fff;
    border:        1px solid var(--border);
    border-radius: var(--radius-md);
    padding:       38px 32px;
    text-align:    center;
    transition:    var(--transition);
    position:      relative;
    overflow:      hidden;
}
.service-card::before {
    content:    '';
    position:   absolute;
    bottom:     0; left: 0;
    width:      100%;
    height:     3px;
    background: linear-gradient(90deg, var(--orange), var(--blue));
    transform:  scaleX(0);
    transition: transform .35s ease;
}
.service-card:hover {
    transform:  translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card__icon {
    width:        72px;
    height:       72px;
    background:   var(--orange-light);
    border-radius: 50%;
    display:      flex;
    align-items:  center;
    justify-content: center;
    margin:       0 auto 24px;
    font-size:    1.8rem;
    color:        var(--orange);
    transition:   var(--transition);
}
.service-card:hover .service-card__icon {
    background: var(--orange);
    color:      #fff;
    transform:  scale(1.1) rotate(5deg);
}
.service-card h3 {
    font-size:     1.25rem;
    margin-bottom: 12px;
}
.service-card p {
    color:         var(--text-muted);
    margin-bottom: 24px;
    line-height:   1.65;
}
.service-card__link {
    color:       var(--orange);
    font-weight: 600;
    font-size:   .9rem;
    display:     inline-flex;
    align-items: center;
    gap:         6px;
}
.service-card__link i { transition: transform .2s; }
.service-card:hover .service-card__link i { transform: translateX(4px); }

.why-grid {
    display:               grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap:                   24px;
}
.why-item {
    background:    #fff;
    border:        1px solid var(--border);
    border-radius: var(--radius-md);
    padding:       32px 24px;
    text-align:    center;
    transition:    var(--transition);
}
.why-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.why-item__icon {
    width:         60px;
    height:        60px;
    background:    linear-gradient(135deg, var(--orange-light), var(--blue-light));
    border-radius: 16px;
    display:       flex;
    align-items:   center;
    justify-content: center;
    margin:        0 auto 18px;
    font-size:     1.6rem;
    color:         var(--orange);
}
.why-item h3 { font-size: 1.05rem; margin-bottom: 8px; }
.why-item p  { color: var(--text-muted); font-size: .92rem; }

.regions-grid {
    display:               grid;
    grid-template-columns: repeat(3, 1fr);
    gap:                   20px;
}
.region-card--featured {
    grid-column: 1 / -1;
}
.region-card {
    background:    #fff;
    border:        1px solid var(--border);
    border-radius: var(--radius-md);
    overflow:      hidden;
    transition:    var(--transition);
}
.region-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.region-card__header {
    background:  linear-gradient(135deg, var(--blue), var(--blue-dark));
    color:       #fff;
    padding:     16px 20px;
    display:     flex;
    align-items: center;
    gap:         10px;
    font-size:   1rem;
    font-weight: 700;
}
.region-card__header i { color: var(--orange-mid); }
.region-card__body { padding: 16px 20px; }
.region-card__body ul { display: flex; flex-wrap: wrap; gap: 6px; }
.region-card__body li {
    background:    var(--bg-light);
    border:        1px solid var(--border);
    border-radius: 50px;
    font-size:     .8rem;
    color:         var(--text-body);
    transition:    var(--transition);
}
.region-card__body li a {
    display:       block;
    padding:       4px 12px;
}
.region-card__body li:hover {
    background:    var(--orange-light);
    border-color:  var(--orange);
    color:         var(--orange);
}

.brands-track {
    display:         flex;
    align-items:     center;
    gap:             12px;
    flex-wrap:       wrap;
    justify-content: center;
}
.brand-tag {
    background:    #fff;
    border:        1px solid var(--border);
    border-radius: var(--radius-sm);
    padding:       12px 26px;
    font-weight:   600;
    font-size:     .95rem;
    color:         var(--text-dark);
    transition:    var(--transition);
}
.brand-tag:hover {
    border-color: var(--orange);
    color:        var(--orange);
    box-shadow:   var(--shadow-sm);
}

.cta-band {
    background: var(--text-dark);
    color:      #fff;
    padding:    80px 0 60px 0;
    text-align: center;
    position:   relative;
    overflow:   hidden;
}
.cta-band::before {
    content:    '';
    position:   absolute;
    inset:      0;
    pointer-events: none;
    background: radial-gradient(circle at 50% 50%, rgba(230,81,0,.12) 0%, transparent 70%);
}
.cta-band__content { position: relative; z-index: 1; }
.cta-band h2 { font-size: clamp(1.6rem,4vw,2.4rem); color: #fff; margin-bottom: 14px; }
.cta-band p  { color: rgba(255,255,255,.82); margin-bottom: 34px; font-size: 1.05rem; }
.cta-band__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-band .btn--white {
    background: #fff;
    color:      var(--blue);
    font-weight: 700;
}
.cta-band .btn--white:hover { background: var(--orange-light); color: var(--orange); }

.footer { background: var(--text-dark); color: rgba(255,255,255,.8); }
.footer__top { padding: 72px 0 52px; }
.footer__grid {
    display:               grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap:                   48px;
}
.footer__logo { margin-bottom: 16px; filter: brightness(0) invert(1); opacity: .9; }
.footer__col--brand p { font-size: .9rem; line-height: 1.7; color: rgba(255,255,255,.6); margin-bottom: 20px; }
.footer__title { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 18px; }
.footer__links li { margin-bottom: 10px; }
.footer__links a {
    color:       rgba(255,255,255,.65);
    font-size:   .9rem;
    display:     flex;
    align-items: center;
    gap:         8px;
    transition:  var(--transition);
}
.footer__links a:hover { color: var(--orange); padding-left: 4px; }
.footer__links i { font-size: .75rem; color: var(--orange); }
.footer__contact-list li {
    display:       flex;
    align-items:   flex-start;
    gap:           12px;
    margin-bottom: 12px;
    font-size:     .88rem;
    color:         rgba(255,255,255,.65);
}
.footer__contact-list i { color: var(--orange); margin-top: 3px; min-width: 14px; }
.footer__contact-list a { color: rgba(255,255,255,.65); }
.footer__contact-list a:hover { color: var(--orange); }
.footer__social { display: flex; gap: 12px; }
.footer__social a {
    width:         38px;
    height:        38px;
    border-radius: 50%;
    border:        1px solid rgba(255,255,255,.2);
    display:       flex;
    align-items:   center;
    justify-content: center;
    color:         rgba(255,255,255,.7);
    font-size:     1rem;
    transition:    var(--transition);
}
.footer__social a:hover { background: var(--orange); border-color: var(--orange); color: #fff; }
.footer__bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding:    22px 0;
}
.footer__bottom-inner {
    display:         flex;
    flex-direction:  column;
    justify-content: center;
    align-items:     center;
    text-align:      center;
    gap:             12px;
    font-size:       .83rem;
    color:           rgba(255,255,255,.45);
}
.footer__bottom strong { color: rgba(255,255,255,.7); }
.footer__copy p { line-height: 1.5; }
.footer__agency {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
}
.footer__agency a {
    color: #fff;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.2s;
    font-size: 0.85rem;
}
.footer__agency a strong {
    color: var(--orange);
    font-weight: 800;
    font-size: 1.1rem;
}
.footer__agency a:hover { color: var(--blue-light); }

.sticky-cta {
    position: fixed;
    right:    20px;
    bottom:   28px;
    display:  flex;
    flex-direction: column;
    gap:      10px;
    z-index:  999;
}
.sticky-cta__btn {
    display:      flex;
    align-items:  center;
    gap:          8px;
    padding:      12px 18px;
    border-radius: 50px;
    font-weight:  700;
    font-size:    .88rem;
    color:        #fff;
    box-shadow:   0 6px 24px rgba(0,0,0,.2);
    transition:   var(--transition);
    white-space:  nowrap;
}
.sticky-cta__btn:hover { transform: translateX(-4px) scale(1.04); }
.sticky-cta__btn i { font-size: 1.1rem; }
.sticky-cta__btn--phone    { background: var(--orange); }
.sticky-cta__btn--whatsapp { background: #25D366; }

.service-detail { padding: 72px 0; }
.service-detail__grid { display: grid; grid-template-columns: 1fr 360px; gap: 52px; align-items: start; }
.service-detail__content h1 { font-size: clamp(1.7rem,4vw,2.4rem); margin-bottom: 18px; }
.service-detail__content p  { color: var(--text-muted); margin-bottom: 20px; line-height: 1.8; }
.feature-list { display: flex; flex-direction: column; gap: 12px; margin: 28px 0; }
.feature-list li {
    display:     flex;
    align-items: center;
    gap:         12px;
    font-weight: 500;
}
.feature-list i { color: var(--orange); font-size: 1.1rem; }
.sidebar-card {
    background:    #fff;
    border:        1px solid var(--border);
    border-radius: var(--radius-md);
    padding:       32px 28px;
    text-align:    center;
    position:      sticky;
    top:           calc(var(--header-h) + 20px);
    box-shadow:    var(--shadow-md);
}
.sidebar-card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.sidebar-card p  { color: var(--text-muted); font-size: .92rem; margin-bottom: 24px; }
.sidebar-card .btn { width: 100%; justify-content: center; margin-bottom: 12px; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; }
.contact-info h2 { font-size: 1.8rem; margin-bottom: 14px; }
.contact-info p  { color: var(--text-muted); margin-bottom: 32px; }
.contact-info-list { display: flex; flex-direction: column; gap: 18px; }
.contact-info-item {
    display:     flex;
    align-items: flex-start;
    gap:         16px;
}
.contact-info-item__icon {
    width:         48px;
    height:        48px;
    background:    var(--orange-light);
    border-radius: var(--radius-sm);
    display:       flex;
    align-items:   center;
    justify-content: center;
    font-size:     1.2rem;
    color:         var(--orange);
    flex-shrink:   0;
}
.contact-info-item strong { display: block; margin-bottom: 4px; color: var(--text-dark); }
.contact-info-item a { color: var(--text-muted); }
.contact-info-item a:hover { color: var(--orange); }
.contact-map { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-md); height: 400px; }
.contact-map iframe { width: 100%; height: 100%; border: none; }

.page-hero {
    background:  linear-gradient(135deg, var(--blue-dark), var(--blue));
    color:       #fff;
    padding:     72px 0;
    text-align:  center;
}
.page-hero h1 { font-size: clamp(1.8rem,4vw,3rem); color: #fff; margin-bottom: 12px; }
.page-hero p  { color: rgba(255,255,255,.82); max-width: 580px; margin: 0 auto; font-size: 1.05rem; }
.breadcrumb {
    display:         flex;
    justify-content: center;
    gap:             8px;
    margin-top:      18px;
    font-size:       .85rem;
    color:           rgba(255,255,255,.6);
    align-items:     center;
}
.breadcrumb a { color: var(--orange-mid); }
.breadcrumb a:hover { color: #fff; }

.fade-up { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-left { opacity: 0; transform: translateX(-28px); transition: opacity .6s ease, transform .6s ease; }
.fade-left.visible { opacity: 1; transform: translateX(0); }

.hero .fade-up,
.hero .fade-left {
    opacity: 1;
    transform: none;
    animation: heroFadeIn .8s ease both;
}
@keyframes heroFadeIn {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 860px;
    margin: 0 auto;
}
.faq-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
}
.faq-item summary {
    padding: 20px 24px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    list-style: none;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary i.fa-chevron-down {
    color: var(--orange);
    transition: transform 0.3s ease;
    font-size: .9rem;
}
.faq-item[open] summary i.fa-chevron-down { transform: rotate(180deg); }
.faq-item summary:hover { background: var(--bg-light); }
.faq-content {
    padding: 0 24px 24px 24px;
    font-size: .98rem;
    color: var(--text-body);
    line-height: 1.7;
    border-top: 1px dashed var(--border);
    margin-top: 4px;
    padding-top: 20px;
}
.faq-content strong { color: var(--text-dark); }
.faq-alert {
    background: var(--orange-light);
    color: var(--orange-dark);
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    margin-top: 16px;
    font-size: .92rem;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}
.faq-alert i { font-size: 1.2rem; }

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}
.review-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 30px 28px;
    position: relative;
    transition: var(--transition);
}
.review-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--orange-mid); }
.review-stars { color: #FFB400; font-size: 1rem; margin-bottom: 16px; display: flex; gap: 4px; }
.review-text {
    font-size: .98rem;
    color: var(--text-body);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}
.review-text::before {
    content: "\201C";
    position: absolute;
    top: -24px;
    left: -14px;
    font-size: 4rem;
    color: var(--bg-light);
    z-index: -1;
    font-family: serif;
    line-height: 1;
}
.review-author {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--border);
    padding-top: 16px;
}
.review-author strong { font-size: 1rem; color: var(--text-dark); }
.review-author span { font-size: .8rem; color: var(--blue); background: var(--blue-light); padding: 4px 10px; border-radius: 50px; font-weight: 500; }

.mobile-bottom-nav { display: none; }

@media (max-width: 1024px) {
    .footer__grid { grid-template-columns: 1fr 1fr; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .hero__visual {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        width: 100%;
        flex-shrink: unset;
    }
    .hero__card {
        min-width: unset;
        margin-left: 0 !important;
    }
    .service-detail__grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .regions-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    :root { --header-h: 68px; }
    .topbar { display: none; }
    .header { top: 0; }
    .nav {
        position:   absolute;
        top:        calc(var(--header-h) + 10px);
        right:      20px;
        left:       auto;
        width:      260px;
        max-width:  calc(100vw - 40px);
        height:     auto;
        background: #fff;
        border:     1px solid var(--border);
        border-radius: var(--radius-md);
        box-shadow: 0 15px 40px rgba(11,25,44,.15);
        padding:    10px 0;
        opacity:    0;
        visibility: hidden;
        transform:  translateY(-15px) scale(0.96);
        transform-origin: top right;
        transition: all .35s cubic-bezier(.4,0,.2,1);
        z-index:    1005;
        overflow-y: hidden;
    }
    .nav.open { 
        opacity: 1; 
        visibility: visible; 
        transform: translateY(0) scale(1); 
        left: auto; 
    }
    .nav__list { flex-direction: column; align-items: stretch; gap: 8px; padding: 4px 12px; }
    .nav__link { 
        padding: 16px 20px; 
        width: 100%; 
        border-bottom: none; 
        border-radius: var(--radius-sm);
        font-size: 1.05rem; 
        font-weight: 600;
        transition: background .2s, color .2s;
    }
    .nav__link:hover, .nav__link.active {
        background: var(--blue-light);
        color: var(--orange);
    }
    .nav__link::after { display: none; }
    .hamburger { display: flex; }
    .header__cta { display: none; }

    .mobile-bottom-nav {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
        box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
        z-index: 1002;
        justify-content: space-around;
        align-items: center;
        padding: 10px 0;
        padding-bottom: calc(10px + env(safe-area-inset-bottom));
        border-top: 1px solid rgba(255,255,255,0.05);
    }
    .mb-nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        color: rgba(255,255,255,0.65);
        font-size: 0.75rem;
        gap: 4px;
        transition: color 0.2s;
        text-decoration: none;
        flex: 1;
        font-weight: 500;
    }
    .mb-nav-item i {
        font-size: 1.15rem;
        margin-bottom: 2px;
        transition: color 0.2s, transform 0.2s;
    }
    .mb-nav-item:hover, .mb-nav-item.active {
        color: #fff;
    }
    .mb-nav-item.active i {
        color: var(--orange-mid);
        transform: scale(1.1);
    }
    body { padding-bottom: 0px; }
    .footer { padding-bottom: calc(88px + env(safe-area-inset-bottom)); }
    .hero { min-height: 75vh; padding: 80px 0 60px; }
    .hero__wrapper { flex-direction: column; gap: 32px; }
    .hero__visual {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        width: 100%;
    }
    .hero__card {
        padding: 14px 16px;
        gap: 10px;
    }
    .hero__card i { font-size: 1.4rem; }
    .hero__card-text strong { font-size: .85rem; }
    .hero__card-text span   { font-size: .75rem; }
    .hero__content h1 { font-size: 2rem; }
    .section { padding: 60px 0; }
    .footer__grid { grid-template-columns: 1fr; gap: 32px; }
    .services-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr 1fr; }
    .regions-grid { grid-template-columns: 1fr; }
    .sticky-cta__btn span { display: none; }
    .sticky-cta__btn { padding: 14px; border-radius: 50%; }
    .sticky-cta { bottom: calc(85px + env(safe-area-inset-bottom)); right: 16px; }
}
@media (max-width: 480px) {
    .hero__actions { flex-direction: column; }
    .hero__actions .btn { width: 100%; justify-content: center; }
    .why-grid { grid-template-columns: 1fr; }
}
