:root {
  --navy: #07275f;
  --navy-2: #0b3477;
  --blue: #0f5bd3;
  --blue-bright: #0b6ff5;
  --orange: #ff6b16;
  --orange-2: #ff7f2c;
  --ink: #0e1b35;
  --muted: #5e6a7d;
  --line: #dce4ef;
  --soft: #f5f8fc;
  --white: #fff;
  --shadow: 0 18px 45px rgba(6, 39, 95, .12);
  --radius: 20px;
  --container: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
svg { width: 1em; height: 1em; fill: currentColor; }
.container { width: var(--container); margin-inline: auto; }
.skip-link { position: fixed; left: 12px; top: -50px; z-index: 999; background: #fff; color: #000; padding: 10px 16px; border-radius: 8px; box-shadow: var(--shadow); }
.skip-link:focus { top: 12px; }

.site-header {
  height: 86px;
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid rgba(220,228,239,.85);
  backdrop-filter: blur(14px);
}
.nav-wrap { height: 100%; display: grid; grid-template-columns: 180px 1fr auto; align-items: center; gap: 28px; }
.brand { display: inline-flex; align-items: center; width: 160px; height: 72px; overflow: hidden; }
.brand img { width: 160px; height: auto; object-fit: contain; }
.site-nav { display: flex; align-items: center; justify-content: center; gap: 30px; font-weight: 700; font-size: .86rem; color: #14203b; }
.site-nav > a, .nav-dropdown > button { position: relative; padding: 31px 0 27px; border: 0; background: none; color: inherit; text-transform: uppercase; letter-spacing: .025em; }
.site-nav > a::after, .nav-dropdown > button::after { content:""; position:absolute; left:0; right:0; bottom:18px; height:2px; transform:scaleX(0); transform-origin:left; background:var(--orange); transition:.22s ease; }
.site-nav > a:hover::after, .site-nav > a.active::after, .nav-dropdown > button:hover::after { transform:scaleX(1); }
.nav-dropdown { position: relative; }
.nav-dropdown > button span { font-size: 1rem; margin-left: 2px; }
.dropdown-menu { position:absolute; top:72px; left:-22px; min-width:240px; padding:10px; background:#fff; border:1px solid var(--line); border-radius:14px; box-shadow:var(--shadow); opacity:0; transform:translateY(8px); pointer-events:none; transition:.2s ease; }
.nav-dropdown:hover .dropdown-menu, .nav-dropdown.open .dropdown-menu { opacity:1; transform:none; pointer-events:auto; }
.dropdown-menu a { display:block; padding:10px 12px; border-radius:10px; color:var(--navy); font-size:.85rem; text-transform:none; }
.dropdown-menu a:hover { background:var(--soft); }
.header-call { display:inline-flex; gap:10px; align-items:center; justify-content:center; background:var(--blue); color:#fff; padding:14px 18px; border-radius:10px; font-weight:800; font-size:.95rem; box-shadow:0 10px 20px rgba(15,91,211,.2); white-space:nowrap; }
.header-call:hover { background:var(--navy); transform:translateY(-1px); }
.menu-toggle { display:none; width:44px; height:44px; border:1px solid var(--line); background:#fff; border-radius:10px; align-items:center; justify-content:center; flex-direction:column; gap:5px; }
.menu-toggle span { width:20px; height:2px; background:var(--navy); border-radius:3px; }

.hero { position:relative; padding: 34px 0 0; overflow:hidden; background:linear-gradient(180deg,#fff 0%,#fff 76%,#f8fbff 100%); }
.hero::before { content:""; position:absolute; left:-200px; top:110px; width:620px; height:280px; border-radius:50%; border:1px solid rgba(15,91,211,.1); box-shadow: inset 0 0 0 26px rgba(15,91,211,.022), inset 0 0 0 52px rgba(255,107,22,.018), inset 0 0 0 80px rgba(15,91,211,.018); transform:rotate(12deg); }
.hero-grid { display:grid; grid-template-columns: 1.02fr .98fr; min-height: 440px; align-items:center; position:relative; z-index:1; }
.hero-copy { padding: 40px 46px 74px 0; }
.eyebrow { display:inline-block; color:var(--orange); text-transform:uppercase; letter-spacing:.14em; font-size:.72rem; font-weight:800; }
.hero h1 { margin: 10px 0 18px; color:var(--navy); font-size:clamp(2.5rem,4.9vw,4.2rem); line-height:1.04; letter-spacing:-.04em; max-width:680px; }
.hero-text { color:#42506a; font-size:1.05rem; max-width:620px; margin:0 0 26px; }
.hero-text strong { color:var(--blue); }
.hero-actions { display:flex; gap:14px; flex-wrap:wrap; }
.btn { display:inline-flex; align-items:center; justify-content:center; gap:9px; min-height:48px; padding:12px 20px; border-radius:9px; font-weight:800; font-size:.88rem; text-transform:uppercase; letter-spacing:.015em; border:2px solid transparent; transition:.2s ease; }
.btn:hover { transform:translateY(-2px); }
.btn-primary { background:var(--blue); color:#fff; box-shadow:0 10px 20px rgba(15,91,211,.18); }
.btn-primary:hover { background:var(--navy); }
.btn-secondary { color:var(--navy); border-color:var(--orange); background:#fff; }
.btn-secondary:hover { background:#fff7f2; }
.hero-media { position:relative; align-self:stretch; min-height:440px; margin-right:calc((100vw - min(1180px, calc(100vw - 40px)))/-2); overflow:hidden; }
.hero-media img { width:100%; height:100%; object-fit:cover; object-position:center 60%; }
.hero-media::before { content:""; position:absolute; inset:0; z-index:1; background:linear-gradient(90deg, #fff 0%, rgba(255,255,255,.6) 7%, transparent 22%); pointer-events:none; }
.hero-ribbon { position:absolute; left:-8%; bottom:-6px; width:110%; height:145px; z-index:2; pointer-events:none; transform:rotate(4deg); transform-origin:left bottom; }
.hero-ribbon span { position:absolute; left:0; width:110%; border-radius:50% 50% 0 0; transform:skewX(-15deg); }
.hero-ribbon span:nth-child(1){ bottom:0; height:60px; background:#0f5bd3; }
.hero-ribbon span:nth-child(2){ bottom:20px; height:20px; background:#fff; }
.hero-ribbon span:nth-child(3){ bottom:42px; height:26px; background:#ff6b16; }

.trust-strip { position:relative; z-index:10; margin-top:-22px; min-height:76px; display:grid; grid-template-columns:repeat(4,1fr); align-items:center; background:linear-gradient(100deg,#082a63,#0d397d); color:#fff; border-radius:13px; padding:14px 24px; box-shadow:0 15px 30px rgba(7,39,95,.18); }
.trust-item { display:flex; align-items:center; justify-content:center; gap:14px; min-height:48px; font-weight:700; font-size:.9rem; border-right:1px solid rgba(255,255,255,.2); }
.trust-item:last-child { border-right:0; }
.icon-badge { width:38px; height:38px; display:grid; place-items:center; flex:0 0 auto; }
.icon-badge svg { width:30px; height:30px; }
.icon-badge.snow { font-size:1.7rem; }

.section { padding: 92px 0; }
.section-heading { text-align:center; max-width:760px; margin:0 auto 42px; }
.section-heading h2, .work-heading h2, .about h2, .areas h2, .contact-section h2 { margin:5px 0 0; color:var(--navy); font-size:clamp(2rem,3.2vw,3rem); line-height:1.12; letter-spacing:-.035em; }
.heading-line { display:block; width:46px; height:3px; background:var(--orange); margin:14px auto 0; border-radius:5px; }
.services { background:#fff; }
.service-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:22px; }
.service-card { padding:30px 24px 26px; border:1px solid var(--line); border-radius:16px; text-align:center; background:#fff; box-shadow:0 8px 24px rgba(13,52,119,.04); transition:.25s ease; }
.service-card:hover { transform:translateY(-6px); box-shadow:var(--shadow); border-color:#cbd8ea; }
.service-icon { width:64px; height:64px; border-radius:50%; margin:0 auto 18px; display:grid; place-items:center; color:#fff; background:var(--blue); font-size:1.55rem; box-shadow:0 10px 22px rgba(15,91,211,.2); }
.service-icon.orange { background:var(--orange); box-shadow:0 10px 22px rgba(255,107,22,.18); }
.service-icon svg { width:29px; height:29px; }
.service-icon.combo { position:relative; overflow:hidden; }
.service-icon.combo b { position:absolute; font-size:1.05rem; right:8px; bottom:7px; }
.service-card h3 { margin:0 0 10px; color:var(--navy); font-size:1.05rem; }
.service-card p { margin:0 0 18px; color:var(--muted); font-size:.9rem; min-height:66px; }
.service-card a { color:var(--blue); font-weight:800; font-size:.78rem; text-transform:uppercase; letter-spacing:.05em; }

.about { background:linear-gradient(180deg,#f8fbff,#fff); }
.about-grid { display:grid; grid-template-columns:260px 1fr 330px; gap:40px; align-items:center; }
.owner-card { position:relative; min-height:300px; }
.owner-photo-wrap { height:300px; border-radius:24px; overflow:hidden; background:#eef4fb; border:1px solid #d6e1ee; position:relative; z-index:2; }
.owner-photo-wrap img { width:100%; height:100%; object-fit:cover; object-position:60% 50%; transform:scale(1.03); }
.owner-wave { position:absolute; left:-6px; right:-10px; bottom:-4px; height:48px; z-index:3; background:linear-gradient(170deg, transparent 0 42%, #0f5bd3 43% 58%, #fff 59% 63%, #ff6b16 64% 78%, transparent 79%); border-radius:0 0 30px 30px; }
.about-copy p { color:var(--muted); margin:12px 0; font-size:.98rem; }
.owner-name { margin-top:16px; font-family:"Segoe Script","Brush Script MT",cursive; font-size:1.65rem; color:var(--blue); transform:rotate(-3deg); display:inline-block; }
.owner-title { color:var(--orange); font-weight:800; text-transform:uppercase; letter-spacing:.1em; font-size:.7rem; margin-top:3px; }
.values-card { background:linear-gradient(140deg,#082a63,#0b397e); color:#fff; padding:28px; border-radius:16px; box-shadow:var(--shadow); display:grid; gap:16px; }
.values-card div { display:flex; align-items:center; gap:12px; font-weight:700; font-size:.92rem; }
.values-card span { color:var(--orange); font-size:1.25rem; }

.work { padding-top:78px; }
.work-heading { margin-bottom:28px; }
.work-heading h2 { font-size:2.35rem; max-width:520px; }
.work-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.work-card { margin:0; border-radius:15px; overflow:hidden; position:relative; min-height:280px; box-shadow:0 12px 26px rgba(4,29,75,.1); background:#0b2e68; }
.work-card img { width:100%; height:310px; object-fit:cover; transition:transform .4s ease; }
.work-card:nth-child(1) img, .work-card:nth-child(2) img { object-position:center 54%; }
.work-card:hover img { transform:scale(1.035); }
.work-card figcaption { position:absolute; left:0; right:0; bottom:0; padding:18px 20px; background:linear-gradient(180deg,transparent,rgba(4,28,70,.96) 40%); color:#fff; display:flex; flex-direction:column; gap:3px; }
.work-card figcaption strong { font-size:.96rem; }
.work-card figcaption span { font-size:.75rem; color:#d9e4f3; }

.areas { background:#fbfdff; border-top:1px solid #eef2f8; }
.areas-grid { display:grid; grid-template-columns:.9fr 1.6fr; gap:48px; align-items:center; }
.areas-copy p { color:var(--muted); max-width:520px; }
.area-list { display:flex; flex-wrap:wrap; gap:8px; margin-top:18px; }
.area-list span { padding:7px 11px; border-radius:999px; border:1px solid #d4e0ef; background:#fff; color:var(--navy); font-size:.77rem; font-weight:700; }
.area-map { position:relative; height:285px; border-radius:20px; background:linear-gradient(135deg,#edf5ff,#f9fbff); overflow:hidden; border:1px solid #e3ecf7; }
.map-shape { position:absolute; inset:50px 55px 50px 35px; background:linear-gradient(135deg,#dcecff,#edf4fc); clip-path:polygon(0 30%,11% 14%,22% 18%,30% 5%,45% 13%,57% 4%,67% 18%,82% 9%,94% 20%,100% 50%,93% 72%,78% 72%,67% 89%,50% 76%,35% 89%,22% 75%,9% 82%,2% 60%); filter:drop-shadow(0 10px 15px rgba(15,91,211,.08)); }
.map-pin { position:absolute; display:flex; align-items:center; gap:6px; color:var(--navy); font-size:.69rem; font-weight:800; white-space:nowrap; }
.map-pin i { width:13px; height:13px; border-radius:50% 50% 50% 0; background:var(--blue); transform:rotate(-45deg); box-shadow:0 3px 9px rgba(15,91,211,.25); }
.map-pin span { background:rgba(255,255,255,.78); padding:2px 5px; border-radius:5px; }
.pin-zachary{left:16%;top:28%}.pin-baton{left:9%;top:60%}.pin-denham{left:36%;top:57%}.pin-gonzales{left:58%;top:69%}.pin-hammond{left:44%;top:30%}.pin-ponchatoula{left:64%;top:33%}.pin-mandeville{left:80%;top:45%}

.contact-section { padding:88px 0 110px; background:#fff; }
.contact-wrap { display:grid; grid-template-columns:.9fr 1.1fr; gap:55px; background:linear-gradient(135deg,#f7fbff,#fff); border:1px solid #dae5f2; border-radius:24px; padding:48px; box-shadow:0 18px 45px rgba(6,39,95,.08); }
.contact-intro p { color:var(--muted); max-width:500px; }
.contact-links { display:grid; gap:10px; margin-top:28px; }
.contact-links a { display:flex; flex-direction:column; padding:16px 18px; background:#fff; border:1px solid #dce5f0; border-radius:12px; }
.contact-links strong { color:var(--navy); font-size:1rem; }
.contact-links span { color:var(--muted); font-size:.78rem; margin-top:2px; }
.estimate-form { display:grid; gap:14px; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.estimate-form label { display:grid; gap:6px; color:var(--navy); font-weight:800; font-size:.8rem; }
.estimate-form input, .estimate-form textarea, .estimate-form select { width:100%; border:1px solid #cfdbe9; border-radius:10px; background:#fff; padding:12px 13px; outline:none; color:var(--ink); font-weight:500; }
.estimate-form input:focus, .estimate-form textarea:focus, .estimate-form select:focus { border-color:var(--blue); box-shadow:0 0 0 3px rgba(15,91,211,.08); }
.estimate-form textarea { resize:vertical; }
.btn-orange { background:var(--orange); color:#fff; border:0; justify-self:start; }
.btn-orange:hover { background:#e95d0c; }
.form-note { margin:0; color:#7b879a; font-size:.72rem; }

.quick-contact { position:relative; margin-bottom:-2px; }
.quick-contact-grid { min-height:72px; display:grid; grid-template-columns:1fr 1fr auto; align-items:center; gap:24px; padding:12px 24px; background:linear-gradient(100deg,#0c59c8,#0872e8); color:#fff; border-radius:14px 14px 0 0; box-shadow:0 12px 28px rgba(15,91,211,.2); }
.quick-contact a { display:flex; align-items:center; gap:13px; }
.quick-phone { border-right:1px solid rgba(255,255,255,.25); padding-right:24px; }
.quick-phone span:last-child { display:flex; flex-direction:column; }
.quick-phone small { font-size:.68rem; opacity:.9; }
.quick-phone strong { font-size:1.3rem; line-height:1.1; }
.quick-icon { font-size:1.7rem; }
.quick-email { font-size:.88rem; }
.quick-btn { background:var(--orange); color:#fff; min-height:44px; padding:0 20px; border-radius:9px; font-weight:800; text-transform:uppercase; font-size:.78rem; }

.site-footer { background:#06265d; color:#dbe6f5; padding:48px 0 24px; }
.footer-grid { display:grid; grid-template-columns:1.2fr repeat(4,1fr); gap:38px; }
.footer-brand img { width:160px; height:96px; object-fit:cover; object-position:center; filter:brightness(1.05); border-radius:8px; }
.footer-brand p { margin:10px 0 0; text-transform:uppercase; letter-spacing:.16em; font-size:.62rem; opacity:.75; }
.site-footer h3 { color:#fff; text-transform:uppercase; font-size:.72rem; letter-spacing:.08em; margin:0 0 12px; }
.site-footer a, .site-footer span { display:block; font-size:.76rem; line-height:1.85; color:#dbe6f5; }
.site-footer a:hover { color:#fff; }
.footer-bottom { display:flex; justify-content:space-between; gap:20px; padding-top:28px; margin-top:30px; border-top:1px solid rgba(255,255,255,.14); }
.footer-bottom span, .footer-bottom a { font-size:.7rem; color:#b8c8dd; }

.reveal { opacity:0; transform:translateY(20px); transition:opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity:1; transform:none; }

@media (max-width: 1050px) {
  .nav-wrap { grid-template-columns:160px 1fr auto; gap:14px; }
  .site-nav { gap:18px; font-size:.78rem; }
  .header-call span { display:none; }
  .header-call { width:46px; height:46px; padding:0; }
  .hero-grid { grid-template-columns:1fr 1fr; }
  .hero-copy { padding-right:28px; }
  .about-grid { grid-template-columns:230px 1fr; }
  .values-card { grid-column:2; }
  .service-grid { grid-template-columns:repeat(2,1fr); }
  .footer-grid { grid-template-columns:1.3fr repeat(2,1fr); }
}

@media (max-width: 820px) {
  :root { --container: min(100% - 28px, 720px); }
  .site-header { height:74px; }
  .nav-wrap { grid-template-columns:1fr auto; }
  .brand { width:145px; height:62px; }
  .brand img { width:145px; }
  .header-call { display:none; }
  .menu-toggle { display:flex; }
  .site-nav { position:absolute; top:74px; left:14px; right:14px; display:none; flex-direction:column; align-items:stretch; gap:0; background:#fff; border:1px solid var(--line); box-shadow:var(--shadow); border-radius:14px; padding:8px; }
  .site-nav.open { display:flex; }
  .site-nav > a, .nav-dropdown > button { width:100%; padding:12px 14px; text-align:left; border-radius:8px; }
  .site-nav > a::after, .nav-dropdown > button::after { display:none; }
  .site-nav > a:hover, .nav-dropdown > button:hover { background:var(--soft); }
  .dropdown-menu { position:static; opacity:1; transform:none; box-shadow:none; border:0; pointer-events:auto; display:none; padding:2px 0 6px 14px; }
  .nav-dropdown.open .dropdown-menu { display:block; }
  .hero { padding-top:0; }
  .hero-grid { grid-template-columns:1fr; }
  .hero-copy { padding:54px 0 34px; }
  .hero h1 { font-size:clamp(2.4rem,9vw,3.7rem); }
  .hero-media { min-height:400px; margin:0; border-radius:18px; overflow:hidden; }
  .trust-strip { margin-top:18px; grid-template-columns:repeat(2,1fr); gap:4px; }
  .trust-item { border-right:0; justify-content:flex-start; padding:10px; }
  .about-grid { grid-template-columns:220px 1fr; gap:28px; }
  .values-card { grid-column:1/-1; }
  .work-grid { grid-template-columns:1fr 1fr; }
  .work-card:last-child { grid-column:1/-1; }
  .areas-grid { grid-template-columns:1fr; }
  .contact-wrap { grid-template-columns:1fr; padding:32px; }
  .quick-contact-grid { grid-template-columns:1fr 1fr; }
  .quick-btn { grid-column:1/-1; justify-content:center; }
  .footer-grid { grid-template-columns:1fr 1fr; }
}

@media (max-width: 560px) {
  :root { --container: min(100% - 24px, 520px); }
  .section { padding:70px 0; }
  .hero-copy { padding-top:42px; }
  .hero h1 { font-size:2.55rem; }
  .hero-text { font-size:.96rem; }
  .hero-actions { flex-direction:column; align-items:stretch; }
  .btn { width:100%; }
  .hero-media { min-height:330px; }
  .hero-ribbon { height:100px; }
  .trust-strip { grid-template-columns:1fr; padding:12px 16px; }
  .trust-item { justify-content:flex-start; padding:8px 6px; }
  .service-grid { grid-template-columns:1fr; }
  .service-card p { min-height:0; }
  .about-grid { grid-template-columns:1fr; }
  .owner-card { max-width:280px; }
  .work-grid { grid-template-columns:1fr; }
  .work-card:last-child { grid-column:auto; }
  .work-card img { height:280px; }
  .area-map { height:245px; }
  .map-pin { font-size:.58rem; }
  .pin-zachary{left:10%}.pin-baton{left:4%}.pin-denham{left:29%}.pin-gonzales{left:50%}.pin-hammond{left:40%}.pin-ponchatoula{left:60%}.pin-mandeville{left:72%}
  .contact-wrap { padding:24px 18px; }
  .form-row { grid-template-columns:1fr; }
  .quick-contact-grid { grid-template-columns:1fr; gap:10px; padding:16px; }
  .quick-phone { border-right:0; border-bottom:1px solid rgba(255,255,255,.2); padding:0 0 10px; }
  .quick-btn { grid-column:auto; }
  .footer-grid { grid-template-columns:1fr 1fr; gap:28px 20px; }
  .footer-brand { grid-column:1/-1; }
  .footer-bottom { flex-direction:column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior:auto; }
  *, *::before, *::after { animation-duration:.001ms!important; animation-iteration-count:1!important; transition-duration:.001ms!important; }
  .reveal { opacity:1; transform:none; }
}

/* === AirWorxx motion + fuller homepage pass === */
.hero { overflow:hidden; }
.airflow { position:absolute; inset:auto 0 0; width:100%; height:230px; z-index:0; pointer-events:none; opacity:.9; }
.airflow-line { fill:none; stroke-width:4; stroke-linecap:round; vector-effect:non-scaling-stroke; stroke-dasharray:16 18; animation:airflowTravel 12s linear infinite; }
.airflow-blue { stroke:rgba(15,91,211,.21); }
.airflow-orange { stroke:rgba(255,107,22,.22); }
.airflow-line-2 { animation-duration:15s; animation-direction:reverse; opacity:.75; }
.airflow-line-3 { animation-duration:18s; opacity:.85; }
@keyframes airflowTravel { to { stroke-dashoffset:-420; } }

.hero-grid, .trust-strip { position:relative; z-index:2; }
.hero-copy::after { content:""; position:absolute; width:270px; height:270px; left:-190px; top:45px; border-radius:50%; background:radial-gradient(circle,rgba(15,91,211,.12),transparent 68%); animation:floatGlow 8s ease-in-out infinite; pointer-events:none; }
@keyframes floatGlow { 50% { transform:translate(30px,22px) scale(1.12); opacity:.65; } }
.hero-media { isolation:isolate; }
.hero-media img { transform:scale(1.02); animation:heroBreath 12s ease-in-out infinite alternate; }
@keyframes heroBreath { to { transform:scale(1.075) translate3d(-1.2%, -1%, 0); } }
.hero-media::after { content:""; position:absolute; inset:-20% -30%; z-index:2; background:linear-gradient(115deg,transparent 42%,rgba(255,255,255,.22) 50%,transparent 58%); transform:translateX(-45%); animation:heroShine 7s ease-in-out infinite; pointer-events:none; }
@keyframes heroShine { 0%,55% { transform:translateX(-55%); } 80%,100% { transform:translateX(55%); } }

.service-card { position:relative; overflow:hidden; }
.service-card::before { content:""; position:absolute; inset:0; background:linear-gradient(125deg,transparent 15%,rgba(15,91,211,.035) 48%,transparent 70%); transform:translateX(-120%); transition:transform .65s ease; pointer-events:none; }
.service-card:hover::before { transform:translateX(120%); }
.service-card:hover .service-icon { transform:translateY(-3px) rotate(-3deg) scale(1.05); }
.service-icon { transition:transform .3s ease; }

.about { position:relative; overflow:hidden; padding-top:110px; padding-bottom:110px; }
.about::before { content:""; position:absolute; width:560px; height:560px; border-radius:50%; left:-330px; top:-80px; background:radial-gradient(circle,rgba(15,91,211,.10),transparent 68%); pointer-events:none; }
.about::after { content:""; position:absolute; width:450px; height:450px; border-radius:50%; right:-290px; bottom:-180px; background:radial-gradient(circle,rgba(255,107,22,.08),transparent 70%); pointer-events:none; }
.about-grid { position:relative; z-index:1; }
.owner-card { min-height:350px; display:flex; align-items:center; justify-content:center; }
.owner-photo-wrap { width:250px; height:330px; border-radius:30px; overflow:hidden; background:#fff; border:1px solid rgba(15,91,211,.12); box-shadow:0 24px 50px rgba(6,39,95,.15); position:relative; z-index:4; }
.owner-photo-wrap img { width:100%; height:100%; object-fit:cover; object-position:58% 47%; transform:scale(1.28); filter:saturate(.94) contrast(1.03) brightness(1.03); }
.owner-photo-wrap::after { content:""; position:absolute; inset:0; background:linear-gradient(180deg,rgba(255,255,255,.12),transparent 38%,rgba(7,36,83,.05)); pointer-events:none; }
.owner-photo-shine { position:absolute; inset:-30%; background:linear-gradient(112deg,transparent 40%,rgba(255,255,255,.28) 49%,transparent 58%); transform:translateX(-60%); animation:portraitShine 8s ease-in-out infinite; pointer-events:none; }
@keyframes portraitShine { 0%,62%{transform:translateX(-60%)} 88%,100%{transform:translateX(60%)} }
.owner-airflow { position:absolute; width:390px; height:390px; left:-68px; bottom:-42px; z-index:3; pointer-events:none; overflow:visible; }
.owner-airflow .airflow-line { stroke-width:8; stroke-dasharray:22 22; }
.owner-line-1 { animation-duration:13s; }
.owner-line-2 { animation-duration:16s; animation-direction:reverse; }
.owner-line-3 { animation-duration:19s; }
.owner-glow { position:absolute; border-radius:50%; filter:blur(1px); z-index:1; animation:ownerGlow 7s ease-in-out infinite alternate; }
.owner-glow-blue { width:210px; height:210px; background:rgba(15,91,211,.12); left:-30px; top:25px; }
.owner-glow-orange { width:150px; height:150px; background:rgba(255,107,22,.10); right:-12px; bottom:14px; animation-delay:-2s; }
@keyframes ownerGlow { to { transform:translate(16px,-12px) scale(1.08); } }
.owner-wave { left:-14px; right:-18px; bottom:4px; height:58px; z-index:5; background:linear-gradient(168deg, transparent 0 38%, #0f5bd3 39% 51%, #fff 52% 56%, #ff6b16 57% 69%, transparent 70%); }
.values-card { position:relative; overflow:hidden; }
.values-card::after { content:""; position:absolute; width:180px; height:180px; right:-95px; bottom:-95px; border:22px solid rgba(255,255,255,.05); border-radius:50%; }

.difference { position:relative; overflow:hidden; background:#071f4f; color:#fff; padding:105px 0; }
.difference-air { position:absolute; inset:0; opacity:.62; background:radial-gradient(circle at 13% 18%,rgba(16,101,225,.42),transparent 22%),radial-gradient(circle at 88% 80%,rgba(255,107,22,.16),transparent 26%),linear-gradient(115deg,transparent 0 48%,rgba(255,255,255,.025) 49% 51%,transparent 52%); }
.difference-air::before, .difference-air::after { content:""; position:absolute; width:66%; height:230px; border-radius:50%; border:3px solid rgba(80,155,255,.15); transform:rotate(-10deg); left:-16%; top:6%; box-shadow:0 20px 0 rgba(80,155,255,.08),0 40px 0 rgba(255,107,22,.07); animation:driftBand 10s ease-in-out infinite alternate; }
.difference-air::after { left:auto; right:-28%; top:auto; bottom:1%; transform:rotate(12deg); opacity:.75; animation-delay:-4s; }
@keyframes driftBand { to { transform:translateX(50px) rotate(-6deg); } }
.difference .container { position:relative; z-index:2; }
.difference-head { display:grid; grid-template-columns:.95fr 1.05fr; gap:70px; align-items:end; margin-bottom:46px; }
.difference h2 { margin:5px 0 0; font-size:clamp(2.2rem,4vw,3.5rem); line-height:1.04; letter-spacing:-.045em; color:#fff; }
.difference-head p { margin:0; color:#c7d6ed; font-size:1.03rem; max-width:620px; }
.difference-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.difference-card { position:relative; min-height:280px; padding:30px; border-radius:20px; border:1px solid rgba(255,255,255,.12); background:linear-gradient(145deg,rgba(255,255,255,.10),rgba(255,255,255,.045)); backdrop-filter:blur(8px); overflow:hidden; transition:transform .35s ease,border-color .35s ease,background .35s ease; }
.difference-card:hover { transform:translateY(-8px); border-color:rgba(87,165,255,.46); background:linear-gradient(145deg,rgba(27,112,230,.20),rgba(255,255,255,.055)); }
.difference-card::after { content:""; position:absolute; width:150px; height:150px; right:-85px; bottom:-90px; border:18px solid rgba(255,255,255,.05); border-radius:50%; }
.difference-number { position:absolute; right:24px; top:18px; font-weight:800; color:rgba(255,255,255,.12); font-size:2.65rem; letter-spacing:-.06em; }
.difference-icon { width:48px; height:48px; display:grid; place-items:center; border-radius:14px; background:linear-gradient(135deg,#176add,#0d4cab); box-shadow:0 10px 24px rgba(0,0,0,.18); margin-bottom:34px; font-size:1.25rem; }
.difference-card:nth-child(2) .difference-icon { background:linear-gradient(135deg,#ff7a24,#e85600); }
.difference-card h3 { margin:0 0 10px; font-size:1.22rem; }
.difference-card p { margin:0; color:#c7d6ed; font-size:.9rem; }
.service-flow { margin-top:26px; display:grid; grid-template-columns:1fr auto 1fr auto 1fr; align-items:center; gap:16px; padding:22px 26px; border:1px solid rgba(255,255,255,.12); border-radius:18px; background:rgba(255,255,255,.06); }
.flow-step { display:flex; align-items:center; gap:13px; }
.flow-step > span { flex:0 0 38px; width:38px; height:38px; display:grid; place-items:center; border-radius:50%; background:#fff; color:#0d4cab; font-weight:800; }
.flow-step strong, .flow-step small { display:block; }
.flow-step strong { font-size:.84rem; }
.flow-step small { color:#aebed5; margin-top:2px; font-size:.73rem; }
.flow-arrow { color:#6ca6f8; font-size:1.3rem; }

.work { position:relative; overflow:hidden; }
.work-heading { display:grid; grid-template-columns:.8fr 1.2fr; gap:60px; align-items:end; margin-bottom:32px; }
.work-heading p { margin:0; color:var(--muted); max-width:650px; justify-self:end; }
.work-card { isolation:isolate; }
.work-card::after { content:""; position:absolute; inset:0; background:linear-gradient(115deg,transparent 35%,rgba(255,255,255,.18) 48%,transparent 60%); transform:translateX(-130%); z-index:1; transition:transform .85s ease; pointer-events:none; }
.work-card:hover::after { transform:translateX(130%); }
.work-card figcaption { z-index:2; }

.area-map .map-pin { animation:pinPulse 3.8s ease-in-out infinite; }
.area-map .map-pin:nth-child(3n) { animation-delay:-1.2s; }
.area-map .map-pin:nth-child(2n) { animation-delay:-2.2s; }
@keyframes pinPulse { 50% { transform:translateY(-5px); } }

.mobile-action-bar { display:none; }

@media (max-width: 1050px) {
  .difference-head { gap:38px; }
  .difference-grid { grid-template-columns:1fr 1fr; }
  .difference-card:last-child { grid-column:1/-1; min-height:auto; }
  .service-flow { grid-template-columns:1fr; }
  .flow-arrow { display:none; }
}

@media (max-width: 820px) {
  .airflow { height:170px; opacity:.7; }
  .owner-card { margin:0 auto; width:280px; }
  .owner-airflow { left:-60px; }
  .difference-head, .work-heading { grid-template-columns:1fr; gap:16px; }
  .work-heading p { justify-self:start; }
}

@media (max-width: 560px) {
  body { padding-bottom:64px; }
  .hero-media img { animation:none; }
  .owner-card { width:260px; max-width:100%; min-height:340px; }
  .owner-photo-wrap { width:235px; height:315px; }
  .owner-airflow { width:350px; left:-70px; }
  .difference { padding:78px 0; }
  .difference-grid { grid-template-columns:1fr; }
  .difference-card:last-child { grid-column:auto; }
  .service-flow { padding:18px; }
  .mobile-action-bar { position:fixed; z-index:80; left:0; right:0; bottom:0; min-height:64px; display:grid; grid-template-columns:.9fr 1.1fr; background:#06265d; box-shadow:0 -8px 26px rgba(2,20,55,.18); }
  .mobile-action-bar a { display:flex; justify-content:center; align-items:center; gap:8px; padding:12px 10px; color:#fff; font-weight:800; font-size:.78rem; }
  .mobile-action-bar a:last-child { background:var(--orange); }
}

@media (prefers-reduced-motion: reduce) {
  .airflow-line,.hero-media img,.hero-media::after,.hero-copy::after,.owner-photo-shine,.owner-glow,.difference-air::before,.difference-air::after,.area-map .map-pin { animation:none!important; }
}
.owner-photo-wrap { translate:var(--mx,0) var(--my,0); transition:translate .25s ease; }
.hero-media > img { translate:var(--mx,0) var(--my,0); }
