:root {
    --p: #1f74d4;
    --s: #00b3db;
    --a: #5aa5ec;
    --dark: #0a2240;
    --navy: #071829;
    --light: #e8f4fd;
    --bg: #f5f9ff;
    --white: #fff;
    --border: #dde8f5;
    --text: #1a2a3a;
    --muted: #556070;
    --sh1: 0 2px 8px rgba(0,0,0,.07);
    --sh2: 0 6px 24px rgba(0,0,0,.11);
    --sh3: 0 12px 48px rgba(0,0,0,.15);
    --r1: 8px;
    --r2: 14px;
    --r3: 22px;
    --ease: .3s ease;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
.seo-only { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
body { font-family: 'Fustat', sans-serif; color: var(--muted); background: var(--white); line-height: 1.65; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.sec-tag {
    display: inline-block;
    background: var(--light);
    color: var(--p);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 14px;
}
.sec-title {
    font-size: clamp(1.75rem, 3vw, 2.4rem);
    font-weight: 800;
    color: var(--text);
    line-height: 1.2;
    margin-bottom: 14px;
}
.sec-sub { font-size: 1.02rem; color: var(--muted); max-width: 580px; margin: 0 auto; line-height: 1.75; }
.sec-head { text-align: center; margin-bottom: 52px; }
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 13px 26px; border-radius: 50px;
    font-weight: 600; font-size: .93rem;
    transition: var(--ease); cursor: pointer; border: none;
}
.btn-p { background: var(--p); color: var(--white); }
.btn-p:hover { background: var(--dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(31,116,212,.4); }
.btn-wa { background: #25D366; color: var(--white); }
.btn-wa:hover { background: #1dbd5a; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,.4); }
.btn-out { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.65); }
.btn-out:hover { background: rgba(255,255,255,.12); border-color: var(--white); }

/* WhatsApp Float */
.wa-float {
    position: fixed; bottom: 28px; right: 28px;
    width: 58px; height: 58px;
    background: #25D366; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 1.55rem;
    box-shadow: 0 4px 20px rgba(37,211,102,.5);
    z-index: 9999; transition: var(--ease);
    animation: wapulse 2.5s infinite;
}
.wa-float:hover { transform: scale(1.1); }
.wa-float .tip {
    position: absolute; right: 68px;
    background: var(--text); color: white;
    padding: 6px 12px; border-radius: 6px;
    font-size: .78rem; white-space: nowrap;
    opacity: 0; pointer-events: none; transition: opacity .3s;
    font-family: 'Gelasio', serif;
}
.wa-float:hover .tip { opacity: 1; }
@keyframes wapulse {
    0%   { box-shadow: 0 0 0 0 rgba(37,211,102,.55); }
    70%  { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* Header */
#hdr {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(12px);
    transition: var(--ease);
}
#hdr.scrolled { box-shadow: var(--sh2); }
.hdr-in {
    display: flex; align-items: center;
    justify-content: space-between; height: 70px;
}
.logo { display: flex; align-items: center; gap: 11px; }
.logo img { height: 46px; width: auto; }
.logo-txt .nm { font-size: 1.2rem; font-weight: 800; color: var(--p); line-height: 1; display: block; }
.logo-txt .tg { font-size: .62rem; color: var(--muted); letter-spacing: .06em; text-transform: uppercase; }
.nav { display: flex; align-items: center; gap: 4px; }
.nl {
    padding: 7px 11px; font-size: .875rem; font-weight: 500;
    color: var(--text); border-radius: var(--r1); transition: var(--ease);
}
.nl:hover, .nl.act { color: var(--p); background: var(--light); }
.ni { position: relative; }
.nd-tog { display: flex; align-items: center; gap: 5px; cursor: pointer; }
.nd-tog .ch { font-size: .65rem; transition: transform .25s; }
.ni:hover .ch { transform: rotate(180deg); }
.dd {
    position: absolute; top: calc(100% + 6px); left: 50%;
    transform: translateX(-50%) translateY(-8px);
    background: var(--white); border-radius: var(--r2);
    box-shadow: var(--sh3); border: 1px solid var(--border);
    min-width: 290px; padding: 8px;
    opacity: 0; visibility: hidden;
    transition: all .22s ease;
}
.ni:hover .dd { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.di {
    display: flex; align-items: center; gap: 11px;
    padding: 9px 12px; border-radius: var(--r1);
    color: var(--text); font-size: .855rem; font-weight: 500;
    transition: var(--ease);
}
.di:hover { background: var(--light); color: var(--p); }
.di .ic {
    width: 30px; height: 30px; background: var(--light);
    border-radius: 7px; display: flex; align-items: center;
    justify-content: center; color: var(--p); font-size: .8rem; flex-shrink: 0;
}
.di:hover .ic { background: var(--p); color: white; }
.nav-cta {
    background: var(--p); color: white;
    padding: 9px 20px; border-radius: 50px;
    font-size: .855rem; font-weight: 600;
    transition: var(--ease); margin-left: 6px;
}
.nav-cta:hover { background: var(--dark); transform: translateY(-1px); }
.burger {
    display: none; position: relative; align-items: center; justify-content: center;
    width: 42px; height: 42px; cursor: pointer; border-radius: 50%;
    background: transparent; border: none;
    transition: background .25s ease;
    flex-shrink: 0;
}
.burger::before {
    content: '';
    position: absolute; inset: 0; border-radius: 50%;
    background: var(--light);
    transform: scale(0); opacity: 0;
    transition: transform .3s cubic-bezier(.34,1.56,.64,1), opacity .25s ease;
}
.burger:hover::before, .burger.on::before { transform: scale(1); opacity: 1; }
.burger-lines { display: flex; flex-direction: column; gap: 5px; position: relative; z-index: 1; }
.burger span {
    display: block; height: 2px; background: var(--text); border-radius: 2px;
    transform-origin: center;
    transition: transform .35s cubic-bezier(.23,1,.32,1), opacity .25s ease, width .3s ease;
}
.burger span:nth-child(1) { width: 22px; }
.burger span:nth-child(2) { width: 14px; transition-delay: .04s; }
.burger span:nth-child(3) { width: 19px; transition-delay: .08s; }
.burger:hover span:nth-child(2) { width: 22px; }
.burger.on span:nth-child(1) { width: 20px; transform: rotate(45deg) translate(5px, 5px); }
.burger.on span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.on span:nth-child(3) { width: 20px; transform: rotate(-45deg) translate(5px, -5px); }
.mob-menu {
    display: none; position: fixed;
    top: 70px; left: 0; right: 0;
    background: white; border-top: 1px solid var(--border);
    box-shadow: var(--sh3); padding: 16px 24px 24px;
    z-index: 999; max-height: calc(100vh - 70px); overflow-y: auto;
}
.mob-menu.on { display: block; }
.mob-nl { display: block; padding: 11px 0; color: var(--text); font-weight: 500; border-bottom: 1px solid var(--border); font-size: .9rem; }
.mob-dd-tit {
    display: flex; justify-content: space-between; align-items: center;
    padding: 11px 0; color: var(--text); font-weight: 500;
    border-bottom: 1px solid var(--border); cursor: pointer; font-size: .9rem;
}
.mob-dd-body { display: none; padding: 6px 0 6px 14px; }
.mob-dd-body.on { display: block; }
.mob-dd-body a { display: block; padding: 7px 0; color: var(--muted); font-size: .86rem; }

/* Hero – EPIC */
.hero {
    position: relative;
    height: 100vh;
    height: 100dvh;
    min-height: 620px;
    display: flex; align-items: center;
    overflow: hidden;
}
.hero-img {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; z-index: 0;
    transform: scale(1.08); transition: transform 9s ease;
    filter: brightness(.6) saturate(1.2);
}
.hero-ov {
    position: absolute; inset: 0; z-index: 1;
    background:
        linear-gradient(110deg, rgba(7,24,41,.97) 0%, rgba(7,24,41,.78) 52%, rgba(31,116,212,.38) 100%),
        linear-gradient(0deg, rgba(7,24,41,.8) 0%, transparent 55%);
}
.hero-line {
    position: absolute; inset: 0; z-index: 2; pointer-events: none; overflow: hidden;
}
.hero-line::before {
    content: ''; position: absolute;
    top: -20%; right: 28%; width: 1px; height: 140%;
    background: linear-gradient(180deg, transparent 0%, rgba(0,179,219,.3) 45%, transparent 100%);
    transform: rotate(12deg);
}
.hero-line::after {
    content: ''; position: absolute;
    top: -20%; right: 40%; width: 1px; height: 140%;
    background: linear-gradient(180deg, transparent 0%, rgba(255,255,255,.07) 50%, transparent 100%);
    transform: rotate(12deg);
}
.hero-particles { position: absolute; inset: 0; z-index: 2; overflow: hidden; pointer-events: none; }
.hero-particles span {
    position: absolute; width: 3px; height: 3px;
    background: rgba(0,179,219,.75); border-radius: 50%;
    animation: floatUp var(--dur,9s) var(--delay,0s) infinite linear;
}
@keyframes floatUp {
    0%   { transform: translateY(110vh) scale(0); opacity: 0; }
    8%   { opacity: 1; }
    92%  { opacity: .5; }
    100% { transform: translateY(-15vh) scale(1.8); opacity: 0; }
}
.hero-layout {
    position: relative; z-index: 3;
    display: grid; grid-template-columns: 1fr 360px;
    gap: 52px; align-items: center;
    padding: 90px 0 60px;
    width: 100%;
}
.hero-cnt { max-width: 640px; }
.hero-bdg {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(255,255,255,.09); backdrop-filter: blur(14px);
    border: 1px solid rgba(0,179,219,.45); color: white;
    padding: 8px 18px; border-radius: 50px;
    font-size: .74rem; font-weight: 700; margin-bottom: 30px;
    letter-spacing: .06em; text-transform: uppercase;
    animation: bdgPulse 3.5s ease-in-out infinite;
}
.hero-bdg i { color: #00e5b0; }
.bdg-dot {
    width: 7px; height: 7px; background: #00e5b0;
    border-radius: 50%; animation: dotBlink 1.4s infinite;
}
@keyframes bdgPulse {
    0%,100% { border-color: rgba(0,179,219,.45); }
    50%      { border-color: rgba(0,179,219,.9); box-shadow: 0 0 0 4px rgba(0,179,219,.08); }
}
@keyframes dotBlink {
    0%,100% { transform: scale(1); opacity: 1; }
    50%      { transform: scale(1.5); opacity: .5; }
}
.hero h1 {
    font-size: clamp(2.5rem, 5.5vw, 4.2rem); font-weight: 800;
    color: white; line-height: 1.08; margin-bottom: 24px; letter-spacing: -.025em;
}
.hero h1 .eyebrow {
    display: block; font-size: .3em; font-weight: 600;
    color: rgba(255,255,255,.48); letter-spacing: .14em;
    text-transform: uppercase; margin-bottom: 12px;
}
.hero h1 .accent {
    background: linear-gradient(130deg, #00b3db 0%, #5aa5ec 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero p { font-size: 1.08rem; color: rgba(255,255,255,.77); margin-bottom: 40px; max-width: 520px; line-height: 1.8; }
.hero-btns { display: flex; gap: 13px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats {
    display: flex; border: 1px solid rgba(255,255,255,.13);
    border-radius: 16px; overflow: hidden;
    background: rgba(255,255,255,.06); backdrop-filter: blur(12px);
}
.hero-stat {
    flex: 1; padding: 16px 12px; text-align: center;
    border-right: 1px solid rgba(255,255,255,.09); transition: background .25s;
}
.hero-stat:last-child { border-right: none; }
.hero-stat:hover { background: rgba(255,255,255,.1); }
.hero-stat .num {
    font-size: 1.65rem; font-weight: 800; line-height: 1;
    background: linear-gradient(135deg, #00b3db, #fff);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-stat .lbl { font-size: .65rem; color: rgba(255,255,255,.52); margin-top: 5px; font-weight: 500; }
/* Floating card */
.hero-card {
    background: rgba(255,255,255,.09); backdrop-filter: blur(22px);
    border: 1px solid rgba(255,255,255,.2); border-radius: 24px;
    padding: 36px 26px; text-align: center; color: white;
    box-shadow: 0 28px 64px rgba(0,0,0,.4), inset 0 1px 0 rgba(255,255,255,.18);
    animation: cardFloat 4.5s ease-in-out infinite;
}
@keyframes cardFloat {
    0%,100% { transform: translateY(0); }
    50%      { transform: translateY(-10px); }
}
.card-urgency {
    display: inline-flex; align-items: center; gap: 6px;
    background: linear-gradient(135deg, #ff4757, #ff6b81);
    color: white; padding: 5px 14px; border-radius: 50px;
    font-size: .68rem; font-weight: 800; text-transform: uppercase;
    letter-spacing: .08em; margin-bottom: 20px;
    animation: urgPulse 1.8s infinite;
}
@keyframes urgPulse {
    0%,100% { box-shadow: 0 0 0 0 rgba(255,71,87,.5); }
    60%      { box-shadow: 0 0 0 9px rgba(255,71,87,0); }
}
.hero-card h3 { font-size: 1.35rem; font-weight: 800; margin-bottom: 8px; }
.hero-card > p { font-size: .83rem; color: rgba(255,255,255,.62); margin-bottom: 22px; line-height: 1.65; }
.hero-card .phone-big {
    display: block; font-size: 1.6rem; font-weight: 800; color: white;
    margin-bottom: 22px; letter-spacing: .02em;
    text-shadow: 0 0 24px rgba(0,179,219,.5);
}
.hero-card .phone-big i { color: var(--s); margin-right: 6px; font-size: 1.15rem; }
.card-cta {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    padding: 13px; border-radius: 12px; font-weight: 700; font-size: .88rem;
    margin-bottom: 9px; transition: all .25s; cursor: pointer;
}
.card-cta-call { background: white; color: var(--dark); }
.card-cta-call:hover { background: var(--s); color: white; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,179,219,.3); }
.card-cta-wa   { background: #25D366; color: white; }
.card-cta-wa:hover   { background: #1dbd5a; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(37,211,102,.3); }
.card-footer {
    margin-top: 16px; padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,.12);
    font-size: .72rem; color: rgba(255,255,255,.4);
    display: flex; align-items: center; justify-content: center; gap: 6px;
}
/* Scroll cue */
.hero-scroll {
    position: absolute; bottom: 52px; left: 50%;
    transform: translateX(-50%); z-index: 10;
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    color: rgba(255,255,255,.42); font-size: .67rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
}
.scroll-mouse {
    width: 22px; height: 36px;
    border: 2px solid rgba(255,255,255,.32); border-radius: 11px;
    display: flex; align-items: flex-start; justify-content: center; padding-top: 5px;
}
.scroll-dot { width: 3px; height: 7px; background: rgba(255,255,255,.55); border-radius: 2px; animation: sDot 1.6s ease-in-out infinite; }
@keyframes sDot {
    0%,100% { transform: translateY(0); opacity: 1; }
    55%      { transform: translateY(11px); opacity: .15; }
}

/* Urgency Bar */
.urgency-bar { display: none; background: var(--white); border-bottom: 1px solid var(--border); padding: 18px 0; }
.urgency-bar-inner { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.urgency-bar-badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: linear-gradient(135deg, #ff4757, #ff6b81);
    color: white; padding: 5px 14px; border-radius: 50px;
    font-size: .68rem; font-weight: 800; text-transform: uppercase;
    letter-spacing: .08em; flex-shrink: 0;
    animation: urgPulse 1.8s infinite;
}
.urgency-bar-text { flex: 1; }
.urgency-bar-text strong { display: block; font-size: .97rem; font-weight: 700; color: var(--text); margin-bottom: 1px; }
.urgency-bar-text span { font-size: .84rem; color: var(--muted); }
.urgency-bar-btns { display: flex; gap: 10px; flex-shrink: 0; }
.ub-btn {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 10px 20px; border-radius: 50px;
    font-weight: 700; font-size: .88rem; transition: all .25s; white-space: nowrap;
}
.ub-call { background: var(--p); color: white; }
.ub-call:hover { background: var(--dark); transform: translateY(-2px); box-shadow: 0 6px 18px rgba(31,116,212,.35); }
.ub-wa { background: #25D366; color: white; }
.ub-wa:hover { background: #1dbd5a; transform: translateY(-2px); box-shadow: 0 6px 18px rgba(37,211,102,.4); }

/* Strip */
.strip { background: linear-gradient(135deg, var(--dark), var(--p)); padding: 28px 0; }
.strip-grid { display: grid; grid-template-columns: repeat(9,1fr); gap: 4px; }
.strip-i {
    display: flex; flex-direction: column; align-items: center; gap: 7px;
    padding: 14px 6px; border-radius: var(--r2); color: white;
    transition: var(--ease); text-align: center; cursor: pointer;
}
.strip-i:hover { background: rgba(255,255,255,.14); transform: translateY(-3px); }
.strip-i i { font-size: 1.5rem; color: var(--s); }
.strip-i span { font-size: .68rem; font-weight: 500; line-height: 1.3; }

/* About */
.about { padding: 96px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-wrap img { width: 100%; height: 480px; object-fit: cover; border-radius: var(--r3); }
.about-num {
    position: absolute; bottom: 22px; left: 22px;
    background: var(--p); color: white;
    padding: 14px 18px; border-radius: var(--r2); text-align: center;
}
.about-num .n { font-size: 1.9rem; font-weight: 800; line-height: 1; }
.about-num .l { font-size: .7rem; opacity: .9; }
.about-txt { font-size: .95rem; line-height: 1.8; margin-bottom: 18px; }
.about-feats { display: flex; flex-direction: column; gap: 15px; margin: 24px 0; }
.about-feat { display: flex; align-items: flex-start; gap: 13px; }
.about-feat .ic {
    width: 38px; height: 38px; background: var(--light);
    border-radius: 9px; display: flex; align-items: center;
    justify-content: center; color: var(--p); flex-shrink: 0;
}
.about-feat h4 { font-weight: 600; color: var(--text); margin-bottom: 3px; font-size: .9rem; }
.about-feat p { font-size: .83rem; }
.dgeg {
    display: flex; align-items: center; gap: 14px;
    background: linear-gradient(135deg, var(--light), #d8edfb);
    border: 2px solid var(--a); border-radius: var(--r2);
    padding: 18px 22px; margin-top: 28px;
}
.dgeg-ic {
    width: 48px; height: 48px; background: var(--p); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 1.2rem; flex-shrink: 0;
}
.dgeg h4 { font-weight: 700; color: var(--text); margin-bottom: 3px; font-size: .95rem; }
.dgeg p { font-size: .83rem; }

/* Services */
.services { padding: 96px 0; background: var(--bg); }
.srv-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.srv-card { background: var(--white); border-radius: var(--r3); overflow: hidden; box-shadow: var(--sh1); transition: var(--ease); }
.srv-card:hover { transform: translateY(-6px); box-shadow: var(--sh3); }
.srv-img { height: 196px; overflow: hidden; }
.srv-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.srv-card:hover .srv-img img { transform: scale(1.08); }
.srv-body { padding: 22px; }
.srv-ic {
    width: 42px; height: 42px; background: var(--light);
    border-radius: 11px; display: flex; align-items: center;
    justify-content: center; color: var(--p); font-size: 1.05rem; margin-bottom: 13px;
}
.srv-body h3 { font-size: .97rem; font-weight: 700; color: var(--text); margin-bottom: 9px; line-height: 1.35; }
.srv-body p { font-size: .85rem; line-height: 1.65; }
.srv-lnk {
    display: inline-flex; align-items: center; gap: 5px;
    margin-top: 14px; color: var(--p); font-size: .85rem; font-weight: 600;
    transition: gap .2s;
}
.srv-lnk:hover { gap: 9px; }

/* SEO section */
.seo { padding: 80px 0; }
.seo-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 28px; }
.seo-card { background: var(--bg); border-radius: var(--r2); padding: 28px 30px; border-left: 4px solid var(--p); }
.seo-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--text); margin-bottom: 11px; display: flex; align-items: center; gap: 9px; }
.seo-card h3 i { color: var(--p); }
.seo-card p { font-size: .88rem; line-height: 1.75; }

/* Gallery */
.gallery { padding: 96px 0; background: var(--bg); }
.gal-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; }
.gal-i { display: flex; flex-direction: column; border-radius: var(--r1); cursor: pointer; }
.gal-img-wrap { position: relative; overflow: hidden; border-radius: var(--r1); }
.gal-i img { width: 100%; height: 220px; object-fit: cover; transition: transform .5s ease; display: block; }
.gal-i.wide { grid-column: span 2; }
.gal-i.wide img { height: 220px; }
.gal-i:hover img { transform: scale(1.07); }
.gal-ov {
    position: absolute; inset: 0;
    background: rgba(31,116,212,0); display: flex;
    align-items: center; justify-content: center;
    color: white; font-size: 1.4rem; z-index: 1;
    transition: background .3s, opacity .3s; opacity: 0;
}
.gal-i:hover .gal-ov { background: rgba(31,116,212,.35); opacity: 1; }
.gal-cap {
    background: var(--bg-2, #f0f4fa);
    color: var(--text-2, #4a5a6b); font-size: .78rem; font-weight: 600;
    padding: 7px 10px; text-align: center;
    line-height: 1.35; border-radius: 0 0 var(--r1) var(--r1);
}
.gal-video { width: 100%; height: 220px; object-fit: cover; display: block; transition: transform .5s ease; }
.gal-i.wide .gal-video { height: 220px; }
.gal-i:hover .gal-video { transform: scale(1.07); }
.gal-video-wrap { background: var(--dark); }
.gal-video-wrap .gal-video { object-fit: contain; height: 220px; }
.gal-i.wide .gal-video-wrap .gal-video { height: 220px; }

/* Cert */
.cert {
    padding: 72px 0;
    background: linear-gradient(135deg, var(--dark), var(--p));
    color: white; text-align: center;
}
.cert-in { max-width: 680px; margin: 0 auto; }
.cert-ic {
    width: 74px; height: 74px; background: rgba(255,255,255,.14);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 1.9rem; margin: 0 auto 20px; border: 2px solid rgba(255,255,255,.3);
}
.cert h2 { font-size: 1.75rem; font-weight: 800; margin-bottom: 14px; }
.cert p { font-size: .97rem; opacity: .9; line-height: 1.75; margin-bottom: 6px; }
.cert-bdg {
    display: inline-flex; align-items: center; gap: 9px;
    background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.4);
    padding: 11px 22px; border-radius: 50px; margin-top: 22px; font-weight: 600; font-size: .9rem;
}

/* Contact */
.contact { padding: 96px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; align-items: start; }
.c-info h2 { font-size: 1.7rem; font-weight: 800; color: var(--text); margin-bottom: 14px; line-height: 1.25; }
.c-info > p { margin-bottom: 28px; line-height: 1.75; font-size: .93rem; }
.c-items { display: flex; flex-direction: column; gap: 18px; margin-bottom: 32px; }
.c-item { display: flex; align-items: flex-start; gap: 14px; }
.c-item .ic {
    width: 42px; height: 42px; background: var(--light);
    border-radius: 11px; display: flex; align-items: center;
    justify-content: center; color: var(--p); flex-shrink: 0;
}
.c-item h4 { font-weight: 600; color: var(--text); font-size: .85rem; margin-bottom: 3px; }
.c-item a, .c-item p { font-size: .88rem; }
.c-item a:hover { color: var(--p); }
.wa-cta {
    background: #25D366; color: white;
    padding: 15px 26px; border-radius: 50px;
    display: inline-flex; align-items: center; gap: 9px;
    font-weight: 700; font-size: .97rem; transition: var(--ease);
}
.wa-cta:hover { background: #1dbd5a; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,.4); }
.wa-cta i { font-size: 1.15rem; }
.c-soc { display: flex; gap: 10px; margin-top: 14px; flex-wrap: wrap; }
.c-soc a {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 18px; border-radius: 50px; font-weight: 600; font-size: .9rem;
    transition: var(--ease); color: white;
}
.c-soc a[aria-label="Facebook"] { background: #1877f2; }
.c-soc a[aria-label="Facebook"]:hover { background: #1464d8; transform: translateY(-2px); }
.c-soc a[aria-label="Instagram"] { background: linear-gradient(135deg,#f58529,#dd2a7b,#8134af); }
.c-soc a[aria-label="Instagram"]:hover { opacity: .88; transform: translateY(-2px); }
.c-form { background: var(--bg); border-radius: var(--r3); padding: 38px; }
.c-form h3 { font-size: 1.25rem; font-weight: 700; color: var(--text); margin-bottom: 22px; }
.fg { margin-bottom: 18px; }
.fg label { display: block; font-size: .84rem; font-weight: 600; color: var(--text); margin-bottom: 7px; }
.fg input, .fg select, .fg textarea {
    width: 100%; padding: 11px 14px;
    border: 2px solid var(--border); border-radius: var(--r1);
    font-family: 'Fustat', sans-serif; font-size: .88rem;
    color: var(--text); background: white; transition: border-color .2s;
}
.fg input:focus, .fg select:focus, .fg textarea:focus { outline: none; border-color: var(--p); }
.fg textarea { height: 110px; resize: vertical; }
.fg-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.f-sub {
    width: 100%; padding: 13px;
    background: var(--p); color: white;
    border: none; border-radius: 50px;
    font-family: 'Fustat', sans-serif; font-size: .97rem;
    font-weight: 600; cursor: pointer; transition: var(--ease);
}
.f-sub:hover { background: var(--dark); transform: translateY(-2px); }

/* Footer */
footer { background: var(--navy); color: rgba(255,255,255,.7); padding: 56px 0 0; }
.ft-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 44px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,.08); }
.ft-brand .logo img { filter: brightness(0) invert(1); }
.ft-brand .logo-txt .nm { color: var(--s); }
.ft-brand .logo-txt .tg { color: rgba(255,255,255,.45); }
.ft-brand p { font-size: .85rem; line-height: 1.75; margin: 14px 0 18px; color: rgba(255,255,255,.55); }
.ft-soc { display: flex; gap: 9px; }
.ft-soc a {
    width: 34px; height: 34px; background: rgba(255,255,255,.08);
    border-radius: 7px; display: flex; align-items: center;
    justify-content: center; color: white; transition: var(--ease);
}
.ft-soc a:hover { background: var(--p); }
.ft-col h4 { font-size: .8rem; font-weight: 700; color: white; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 18px; }
.ft-col ul { display: flex; flex-direction: column; gap: 9px; }
.ft-col ul a { font-size: .85rem; color: rgba(255,255,255,.55); transition: color .2s; }
.ft-col ul a:hover { color: var(--s); }
.ft-bot { padding: 18px 0; text-align: center; font-size: .77rem; color: rgba(255,255,255,.35); }
.ft-legal { margin-top: 8px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.ft-legal a { color: rgba(255,255,255,.35); font-size: .77rem; transition: color .2s; }
.ft-legal a:hover { color: var(--s); }

/* Animations */
.fi { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.fi.vis { opacity: 1; transform: translateY(0); }

/* Service modal (mobile) */
.srv-modal-ov {
    display: none; position: fixed; inset: 0;
    background: rgba(0,0,0,.55); z-index: 9000;
    align-items: flex-end; justify-content: center;
}
.srv-modal-ov.on { display: flex; }
.srv-modal-box {
    background: #fff; border-radius: 22px 22px 0 0;
    width: 100%; max-height: 85vh; overflow-y: auto;
    position: relative;
    animation: srvSlideUp .3s cubic-bezier(.22,1,.36,1);
}
@keyframes srvSlideUp {
    from { transform: translateY(100%); }
    to   { transform: translateY(0); }
}
.srv-modal-close {
    position: absolute; top: 14px; right: 14px;
    width: 36px; height: 36px; background: var(--bg);
    border: none; border-radius: 50%; display: flex; align-items: center;
    justify-content: center; font-size: .95rem; cursor: pointer;
    color: var(--text); z-index: 1; transition: background .2s;
}
.srv-modal-close:hover { background: var(--border); }
.srv-modal-img { height: 190px; overflow: hidden; }
.srv-modal-img img { width: 100%; height: 100%; object-fit: cover; }
.srv-modal-body { padding: 22px 22px 32px; }
.srv-modal-ic {
    width: 46px; height: 46px; background: var(--light);
    border-radius: 11px; display: flex; align-items: center;
    justify-content: center; color: var(--p); font-size: 1.1rem; margin-bottom: 13px;
}
.srv-modal-body h3 { font-size: 1.05rem; font-weight: 700; color: var(--text); margin-bottom: 11px; line-height: 1.35; }
.srv-modal-body p { font-size: .88rem; line-height: 1.7; color: var(--muted); margin-bottom: 22px; }
.srv-modal-cta {
    display: flex; align-items: center; justify-content: center;
    gap: 8px; width: 100%; padding: 14px;
    background: var(--p); color: white; border-radius: 50px;
    font-weight: 700; font-size: .95rem; transition: var(--ease);
}
.srv-modal-cta:hover { background: var(--dark); }

/* Gallery tablet: 3 colunas */
@media (min-width: 769px) and (max-width: 1024px) {
    .gal-grid { grid-template-columns: repeat(3,1fr); }
    .gal-i.wide { grid-column: span 1; }
    .gal-i img, .gal-i.wide img, .gal-video, .gal-video-wrap .gal-video, .gal-i.wide .gal-video-wrap .gal-video { height: 200px; }
}

/* Responsive */
@media (max-width: 1024px) {
    .srv-grid { grid-template-columns: repeat(2,1fr); }
    .ft-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
    .strip-grid { grid-template-columns: repeat(4,1fr); }
    .hero-layout { grid-template-columns: 1fr; padding: 90px 0 60px; }
    .hero-card { display: none; }
    .hero-scroll { display: none; }
}
@media (max-width: 768px) {
    .urgency-bar { display: block; }
    .urgency-bar-inner { flex-wrap: wrap; gap: 10px; }
    .urgency-bar-text { flex: 1 1 100%; }
    .urgency-bar-btns { width: 100%; }
    .ub-btn { flex: 1; justify-content: center; }
    .nav, .nav-cta { display: none; }
    .burger { display: flex; }
    .about-grid { grid-template-columns: 1fr; }
    .about-img-wrap img { height: 280px; }
    .contact-grid { grid-template-columns: 1fr; }
    .seo-grid { grid-template-columns: 1fr; }
    /* Galeria: todos os items iguais em 2 colunas, sem itens a ocupar linha inteira */
    .gal-grid { grid-template-columns: repeat(2,1fr); }
    .gal-i img, .gal-i.wide img, .gal-video, .gal-video-wrap .gal-video, .gal-i.wide .gal-video-wrap .gal-video { height: 150px; }
    .gal-i.wide { grid-column: span 1; }
    .ft-grid { grid-template-columns: 1fr; gap: 22px; }
    .fg-row { grid-template-columns: 1fr; }
    .c-form { padding: 24px; }
    .strip-grid { grid-template-columns: repeat(4,1fr); }
    .hero-layout { grid-template-columns: 1fr; padding: 86px 0 40px; }
    .hero-card { display: none; }
    .hero-scroll { display: none; }
    /* Hero: centrado; o padding-top do hero-layout compensa o header */
    .hero { align-items: center; }
    .hero h1 { font-size: clamp(1.9rem, 7vw, 2.6rem); margin-bottom: 16px; }
    .hero p { font-size: .95rem; margin-bottom: 26px; line-height: 1.7; }
    .hero-btns { gap: 10px; margin-bottom: 28px; }
    .hero-stats { flex-wrap: wrap; }
    .hero-stat { min-width: 40%; }
    /* Padding lateral confortável */
    .container { padding: 0 20px; }
    /* Secções */
    .about, .services, .gallery, .contact { padding: 60px 0; }
    .seo { padding: 52px 0; }
    .cert { padding: 52px 0; }
    .cert h2 { font-size: 1.4rem; }
    .cert-in { padding: 0 24px; }
    .sec-head { margin-bottom: 36px; }
}
@media (max-width: 480px) {
    .strip-grid { grid-template-columns: repeat(2,1fr); }
    .srv-grid { grid-template-columns: repeat(2,1fr); gap: 12px; }
    .srv-card { cursor: pointer; }
    .srv-card .srv-img { display: none; }
    .srv-card .srv-body { padding: 20px 12px; text-align: center; display: flex; flex-direction: column; align-items: center; }
    .srv-card .srv-ic { width: 48px; height: 48px; font-size: 1.2rem; margin-bottom: 10px; }
    .srv-card .srv-body h3 { font-size: .8rem; line-height: 1.3; margin-bottom: 8px; }
    .srv-card .srv-body p, .srv-card .srv-lnk { display: none; }
    .srv-card .srv-body::after { content: 'Ver mais'; font-size: .68rem; color: var(--p); font-weight: 600; }
    .hero-bdg { font-size: .7rem; padding: 6px 13px; margin-bottom: 14px; }
    .hero h1 { font-size: 2rem; line-height: 1.12; margin-bottom: 12px; }
    .hero p { font-size: .88rem; margin-bottom: 18px; line-height: 1.6; }
    .hero-btns { display: flex; flex-direction: row; flex-wrap: wrap; gap: 9px; margin-bottom: 20px; }
    .hero-btns .btn { flex: 1; min-width: 0; justify-content: center; padding: 12px 14px; font-size: .84rem; }
    .hero-btns .btn:first-child { flex: 0 0 100%; }
    /* Esconder stats no hero para caber no ecrã sem cortar o título */
    .hero-stats { display: none; }
    .hero-layout { padding: 76px 0 36px; }
    .fg-row { grid-template-columns: 1fr; }
    .c-form { padding: 20px 16px; }
    .dgeg { flex-direction: column; text-align: center; gap: 10px; }
    .dgeg-ic { margin: 0 auto; }
    .wa-float { width: 50px; height: 50px; font-size: 1.3rem; bottom: 18px; right: 18px; }
}

/* ═══════════════════════════════════════════════════════
   INNER PAGES
   ═══════════════════════════════════════════════════════ */

/* Page Hero */
.page-hero {
    position: relative;
    min-height: 480px;
    display: flex; align-items: flex-end;
    overflow: hidden;
    padding-top: 70px;
}
.page-hero-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    z-index: 0;
    filter: brightness(.52) saturate(1.15);
    transform: scale(1.06); transition: transform 9s ease;
}
.page-hero-ov {
    position: absolute; inset: 0; z-index: 1;
    background:
        linear-gradient(110deg, rgba(7,24,41,.96) 0%, rgba(7,24,41,.72) 55%, rgba(31,116,212,.32) 100%),
        linear-gradient(0deg, rgba(7,24,41,.8) 0%, transparent 62%);
}
.page-hero .container { position: relative; z-index: 3; width: 100%; padding-bottom: 60px; padding-top: 52px; }
.breadcrumb {
    display: flex; align-items: center; gap: 7px;
    font-size: .75rem; font-weight: 500; color: rgba(255,255,255,.48);
    margin-bottom: 22px; flex-wrap: wrap;
}
.breadcrumb a { color: rgba(255,255,255,.48); transition: color .2s; }
.breadcrumb a:hover { color: var(--s); }
.breadcrumb .sep { color: rgba(255,255,255,.25); }
.breadcrumb .cur { color: rgba(255,255,255,.78); }
.page-hero h1 {
    font-size: clamp(1.9rem, 4.2vw, 3.2rem);
    font-weight: 800; color: white; line-height: 1.1;
    margin-bottom: 18px; letter-spacing: -.022em;
}
.page-hero h1 .accent {
    background: linear-gradient(130deg, #00b3db 0%, #5aa5ec 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.page-hero .sub,
.page-hero .hero-sub {
    font-size: 1.08rem; color: rgba(255,255,255,.95);
    max-width: 580px; line-height: 1.78; margin-bottom: 34px;
    text-shadow: 0 2px 12px rgba(0,0,0,.55);
    font-weight: 500;
}
.page-hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.urgency-tag {
    display: inline-flex; align-items: center; gap: 7px;
    background: linear-gradient(135deg, #ff4757, #ff6b81);
    color: white; padding: 6px 16px; border-radius: 50px;
    font-size: .72rem; font-weight: 800; text-transform: uppercase;
    letter-spacing: .08em; margin-bottom: 20px;
    animation: urgPulse 1.8s infinite;
}

/* Content Section */
.content-sec { padding: 80px 0; }
.content-sec.bg { background: var(--bg); }
.content-grid { display: grid; grid-template-columns: 1fr 380px; gap: 56px; align-items: start; }
.content-main h2 { font-size: clamp(1.45rem, 2.8vw, 2rem); font-weight: 800; color: var(--text); margin-bottom: 18px; line-height: 1.22; }
.content-main h3 { font-size: 1.1rem; font-weight: 700; color: var(--text); margin: 26px 0 10px; }
.content-main p { font-size: .93rem; line-height: 1.84; margin-bottom: 14px; }
.content-main ul.check { list-style: none; display: flex; flex-direction: column; gap: 9px; margin: 16px 0 20px; }
.content-main ul.check li {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: .9rem; line-height: 1.6;
}
.content-main ul.check li::before {
    content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
    color: var(--p); flex-shrink: 0; margin-top: 3px; font-size: .78rem;
}
.content-aside { position: sticky; top: 90px; }
.aside-card {
    background: var(--bg); border-radius: var(--r2);
    padding: 26px; border: 1px solid var(--border); margin-bottom: 16px;
}
.aside-card h4 { font-size: .97rem; font-weight: 700; color: var(--text); margin-bottom: 14px; }
.aside-card ul { display: flex; flex-direction: column; gap: 8px; }
.aside-card ul li { font-size: .86rem; display: flex; align-items: center; gap: 8px; }
.aside-card ul li i { color: var(--p); font-size: .8rem; flex-shrink: 0; }
.aside-cta {
    background: linear-gradient(135deg, var(--dark), var(--p));
    color: white; border-radius: var(--r2); padding: 28px; text-align: center;
}
.aside-cta h4 { color: white; font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.aside-cta p { color: rgba(255,255,255,.75); font-size: .84rem; margin-bottom: 18px; line-height: 1.65; }
.aside-phone { font-size: 1.4rem; font-weight: 800; color: white; display: block; margin-bottom: 16px; }
.aside-phone i { color: var(--s); margin-right: 5px; font-size: 1.1rem; }
.aside-cta .btn { width: 100%; justify-content: center; margin-bottom: 9px; }

/* Features Grid */
.features-sec { padding: 72px 0; background: var(--bg); }
.features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.feat-card {
    background: white; border-radius: var(--r2);
    padding: 28px 22px; box-shadow: var(--sh1); transition: var(--ease);
}
.feat-card:hover { transform: translateY(-5px); box-shadow: var(--sh2); }
.feat-ic {
    width: 50px; height: 50px; background: var(--light); border-radius: 13px;
    display: flex; align-items: center; justify-content: center;
    color: var(--p); font-size: 1.2rem; margin-bottom: 16px;
}
.feat-card h3 { font-size: .96rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.feat-card p { font-size: .84rem; line-height: 1.72; }

/* Areas Section */
.areas-sec { padding: 60px 0; }
.areas-cloud { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 22px; }
.area-tag {
    background: var(--light); color: var(--p);
    padding: 7px 15px; border-radius: 50px;
    font-size: .82rem; font-weight: 600;
    border: 1px solid var(--border); transition: var(--ease);
    cursor: default;
}
.area-tag:hover { background: var(--p); color: white; border-color: var(--p); }

/* Images Section (inner gallery) */
.imgs-sec { padding: 64px 0; background: var(--bg); }
.imgs-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-top: 28px; }
.img-item { border-radius: var(--r2); overflow: hidden; }
.img-item img { width: 100%; height: 240px; object-fit: cover; display: block; transition: transform .5s ease; }
.img-item:hover img { transform: scale(1.06); }

/* Related Services */
.related-sec { padding: 64px 0; }
.related-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-top: 28px; }
.related-card {
    background: var(--bg); border-radius: var(--r2);
    padding: 22px 16px; text-align: center;
    border: 1px solid var(--border); transition: var(--ease); display: block;
}
.related-card:hover { background: var(--p); border-color: var(--p); transform: translateY(-4px); box-shadow: var(--sh2); }
.related-ic { font-size: 1.45rem; color: var(--p); margin-bottom: 10px; transition: color .25s; display: block; }
.related-card:hover .related-ic { color: white; }
.related-card h4 { font-size: .86rem; font-weight: 700; color: var(--text); margin-bottom: 5px; transition: color .25s; }
.related-card:hover h4 { color: white; }
.related-card p { font-size: .77rem; color: var(--muted); line-height: 1.5; transition: color .25s; }
.related-card:hover p { color: rgba(255,255,255,.8); }

/* CTA Band */
.cta-band {
    padding: 68px 0;
    background: linear-gradient(135deg, var(--dark), var(--p));
    color: white; text-align: center;
}
.cta-band h2 { font-size: clamp(1.6rem,3vw,2.2rem); font-weight: 800; margin-bottom: 12px; }
.cta-band p { font-size: 1rem; opacity: .85; margin-bottom: 30px; line-height: 1.72; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-band-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* IMPIC badge */
.impic-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.2);
    color: rgba(255,255,255,.65); padding: 7px 14px; border-radius: 50px;
    font-size: .73rem; font-weight: 600; margin-top: 12px; margin-bottom: 14px;
}
.impic-badge i { color: var(--s); }

/* About page specifics */
.about-page .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; padding: 80px 0; }
.timeline { display: flex; flex-direction: column; gap: 0; margin: 28px 0; }
.tl-item { display: flex; gap: 18px; padding-bottom: 26px; position: relative; }
.tl-item::before { content: ''; position: absolute; left: 18px; top: 38px; bottom: 0; width: 2px; background: var(--border); }
.tl-item:last-child { padding-bottom: 0; }
.tl-item:last-child::before { display: none; }
.tl-dot { width: 36px; height: 36px; background: var(--p); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: .75rem; font-weight: 800; flex-shrink: 0; }
.tl-body h4 { font-weight: 700; color: var(--text); margin-bottom: 4px; font-size: .95rem; }
.tl-body p { font-size: .85rem; line-height: 1.65; }
.cert-block {
    background: linear-gradient(135deg, var(--light), #d8edfb);
    border: 2px solid var(--a); border-radius: var(--r2);
    padding: 22px 24px; display: flex; gap: 16px; align-items: flex-start; margin-top: 24px;
}
.cert-block-ic { width: 48px; height: 48px; background: var(--p); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 1.15rem; flex-shrink: 0; }
.cert-block h4 { font-weight: 700; color: var(--text); margin-bottom: 4px; font-size: .95rem; }
.cert-block p { font-size: .83rem; line-height: 1.65; }

/* Services overview page */
.srv-overview-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.srv-ov-card {
    background: white; border-radius: var(--r2); overflow: hidden;
    box-shadow: var(--sh1); transition: var(--ease); display: block;
}
.srv-ov-card:hover { transform: translateY(-6px); box-shadow: var(--sh3); }
.srv-ov-img { height: 180px; overflow: hidden; }
.srv-ov-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.srv-ov-card:hover .srv-ov-img img { transform: scale(1.08); }
.srv-ov-body { padding: 22px; }
.srv-ov-ic { width: 40px; height: 40px; background: var(--light); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--p); font-size: 1rem; margin-bottom: 12px; }
.srv-ov-body h3 { font-size: .95rem; font-weight: 700; color: var(--text); margin-bottom: 8px; line-height: 1.35; }
.srv-ov-body p { font-size: .83rem; line-height: 1.65; margin-bottom: 12px; }
.srv-ov-lnk { display: inline-flex; align-items: center; gap: 5px; color: var(--p); font-size: .84rem; font-weight: 600; transition: gap .2s; }
.srv-ov-lnk:hover { gap: 9px; }

/* Contact page */
.contact-page-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 56px; align-items: start; padding: 80px 0; }
.contact-map { border-radius: var(--r2); overflow: hidden; margin-top: 24px; }
.contact-map iframe { width: 100%; height: 280px; border: 0; display: block; }

/* Responsive – inner pages */
@media (max-width: 1024px) {
    .content-grid { grid-template-columns: 1fr; }
    .content-aside { position: static; }
    .features-grid { grid-template-columns: repeat(2,1fr); }
    .related-grid { grid-template-columns: repeat(2,1fr); }
    .srv-overview-grid { grid-template-columns: repeat(2,1fr); }
    .about-page .about-grid { grid-template-columns: 1fr; }
    .contact-page-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .page-hero { min-height: 400px; }
    .page-hero .container { padding-bottom: 44px; padding-top: 40px; }
    .content-sec { padding: 52px 0; }
    .features-sec, .imgs-sec, .related-sec { padding: 48px 0; }
    .areas-sec { padding: 44px 0; }
    .cta-band { padding: 52px 0; }
    .imgs-grid { grid-template-columns: repeat(2,1fr); }
    .features-grid { grid-template-columns: repeat(2,1fr); }
    .about-page .about-grid { padding: 52px 0; }
    .contact-page-grid { padding: 52px 0; }
}
@media (max-width: 480px) {
    .features-grid { grid-template-columns: 1fr; }
    .related-grid { grid-template-columns: repeat(2,1fr); }
    .imgs-grid { grid-template-columns: repeat(2,1fr); }
    .imgs-grid .img-item img { height: 160px; }
    .srv-overview-grid { grid-template-columns: 1fr; }
    .page-hero h1 { font-size: 1.8rem; }
}
