:root {
  --teal: #10b6c3;
  --teal-deep: #078c9a;
  --teal-soft: #e7fbfc;
  --orange: #f49a24;
  --orange-soft: #fff1dd;
  --navy: #0c3152;
  --navy-2: #174765;
  --ink: #112638;
  --muted: #647687;
  --bg: #f7fbfc;
  --surface: #ffffff;
  --surface-2: #eff8fa;
  --line: #d9e9ed;
  --shadow: 0 22px 55px rgba(20, 56, 74, .12);
  --shadow-sm: 0 10px 28px rgba(20, 56, 74, .09);
  --radius: 24px;
  --radius-sm: 16px;
}
html[data-theme="dark"] {
  --ink: #eff9fb;
  --muted: #9db2c0;
  --bg: #07141e;
  --surface: #0d202c;
  --surface-2: #102b38;
  --line: #20404d;
  --navy: #d9f6f8;
  --navy-2: #acdce1;
  --teal-soft: #0b323c;
  --orange-soft: #362719;
  --shadow: 0 22px 55px rgba(0, 0, 0, .34);
  --shadow-sm: 0 10px 28px rgba(0, 0, 0, .24);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  transition: background .25s ease, color .25s ease;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.skip-link { position: fixed; top: -100px; left: 18px; z-index: 9999; background: var(--navy); color: #fff; padding: 10px 16px; border-radius: 10px; }
.skip-link:focus { top: 16px; }

.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: color-mix(in srgb, var(--surface) 88%, transparent);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid color-mix(in srgb, var(--line) 70%, transparent);
  transition: box-shadow .25s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.nav-wrap { min-height: 82px; display: flex; align-items: center; gap: 26px; }
.brand { flex: 0 0 210px; }
.brand img { width: 205px; max-height: 54px; object-fit: contain; object-position: left center; }
.main-nav { display: flex; align-items: center; gap: 26px; margin-left: auto; }
.main-nav a { font-weight: 700; font-size: 14px; color: var(--muted); position: relative; padding: 29px 0; }
.main-nav a::after { content:""; position:absolute; left:0; right:0; bottom:21px; height:2px; border-radius:999px; background:var(--teal); transform:scaleX(0); transform-origin:center; transition:.2s ease; }
.main-nav a:hover, .main-nav a.active { color: var(--ink); }
.main-nav a:hover::after, .main-nav a.active::after { transform: scaleX(1); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.theme-toggle { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line); background: var(--surface); color: var(--ink); display: grid; place-items: center; box-shadow: var(--shadow-sm); }
.theme-toggle .theme-moon { display:none; }
html[data-theme="dark"] .theme-toggle .theme-sun { display:none; }
html[data-theme="dark"] .theme-toggle .theme-moon { display:inline; }
.nav-toggle { display:none; border:0; background:none; width:44px; height:44px; padding:10px; margin-left:auto; }
.nav-toggle span { display:block; height:2px; background:var(--ink); margin:5px 0; transition:.2s; }

.btn { display:inline-flex; align-items:center; justify-content:center; gap:8px; border-radius:999px; padding:13px 20px; font-weight:800; font-size:14px; border:1px solid transparent; transition:.2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(135deg, var(--teal), var(--teal-deep)); color:#fff; box-shadow:0 12px 28px rgba(16,182,195,.24); }
.btn-secondary { background:var(--surface); border-color:var(--line); color:var(--ink); }
.btn-orange { background:var(--orange); color:#182531; }
.btn-sm { padding:11px 17px; }
.link-arrow { color:var(--teal-deep); font-weight:800; display:inline-flex; align-items:center; gap:8px; }
.link-arrow::after { content:"→"; transition:.2s; }
.link-arrow:hover::after { transform:translateX(4px); }

.hero { position:relative; overflow:hidden; padding:84px 0 74px; }
.hero::before { content:""; position:absolute; width:520px; height:520px; border-radius:50%; background:radial-gradient(circle, rgba(16,182,195,.18), rgba(16,182,195,0) 68%); top:-130px; left:-180px; }
.hero::after { content:""; position:absolute; width:430px; height:430px; border-radius:50%; background:radial-gradient(circle, rgba(244,154,36,.18), rgba(244,154,36,0) 68%); right:-130px; bottom:-170px; }
.hero-grid { display:grid; grid-template-columns:1.02fr .98fr; gap:68px; align-items:center; position:relative; z-index:1; }
.eyebrow { display:inline-flex; align-items:center; gap:9px; font-size:12px; letter-spacing:.15em; text-transform:uppercase; font-weight:800; color:var(--teal-deep); margin-bottom:18px; }
.eyebrow::before { content:""; width:28px; height:2px; background:var(--orange); border-radius:9px; }
h1,h2,h3,h4 { font-family:"Segoe UI", Arial, sans-serif; line-height:1.12; margin:0; color:var(--ink); }
h1 { font-size:clamp(42px,5.5vw,72px); letter-spacing:-.045em; }
h2 { font-size:clamp(30px,4vw,48px); letter-spacing:-.035em; }
h3 { font-size:20px; }
.hero h1 span { color:var(--teal); }
.hero-copy > p { font-size:18px; max-width:620px; color:var(--muted); margin:22px 0 30px; }
.hero-actions { display:flex; flex-wrap:wrap; gap:12px; }
.hero-trust { display:flex; flex-wrap:wrap; gap:18px 26px; margin-top:32px; padding-top:24px; border-top:1px solid var(--line); }
.hero-trust div { display:flex; align-items:center; gap:10px; color:var(--muted); font-size:14px; font-weight:700; }
.hero-trust i { width:30px; height:30px; border-radius:50%; background:var(--teal-soft); color:var(--teal-deep); display:grid; place-items:center; font-style:normal; }
.hero-visual { position:relative; min-height:520px; }
.hero-visual .main-photo { position:absolute; inset:0 52px 0 0; width:calc(100% - 52px); height:100%; object-fit:cover; border-radius:34px; box-shadow:var(--shadow); }
.hero-visual::before { content:""; position:absolute; inset:34px 4px -18px 66px; border-radius:34px; border:2px solid color-mix(in srgb, var(--teal) 45%, transparent); z-index:-1; }
.hero-card { position:absolute; z-index:2; background:var(--surface); box-shadow:var(--shadow); border:1px solid var(--line); border-radius:20px; padding:18px; }
.hero-card.emergency { left:-34px; bottom:38px; width:230px; }
.hero-card .icon-box { width:42px; height:42px; border-radius:13px; display:grid; place-items:center; background:var(--orange-soft); color:var(--orange); font-size:22px; margin-bottom:12px; }
.hero-card strong { display:block; font-family:"Segoe UI"; font-size:16px; }
.hero-card span { display:block; color:var(--muted); font-size:13px; margin-top:4px; }
.hero-badge { position:absolute; right:0; top:34px; background:var(--navy); color:var(--bg); border-radius:18px; padding:15px 18px; box-shadow:var(--shadow-sm); font-weight:800; }
html[data-theme="light"] .hero-badge { color:#fff; }

.section { padding:88px 0; }
.section-sm { padding:58px 0; }
.section-head { display:flex; justify-content:space-between; align-items:end; gap:28px; margin-bottom:38px; }
.section-head p { max-width:600px; color:var(--muted); margin:12px 0 0; }
.soft-bg { background:var(--surface-2); }

.stats { display:grid; grid-template-columns:repeat(4,1fr); gap:16px; }
.stat { background:var(--surface); border:1px solid var(--line); border-radius:20px; padding:24px; box-shadow:var(--shadow-sm); }
.stat strong { display:block; font:800 30px/1 "Segoe UI"; color:var(--teal-deep); }
.stat span { display:block; color:var(--muted); margin-top:10px; font-size:14px; }

.cards { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.card { background:var(--surface); border:1px solid var(--line); border-radius:var(--radius); padding:26px; box-shadow:var(--shadow-sm); transition:.25s ease; }
.card:hover { transform:translateY(-6px); box-shadow:var(--shadow); border-color:color-mix(in srgb,var(--teal) 40%,var(--line)); }
.card-icon { width:52px; height:52px; border-radius:16px; display:grid; place-items:center; font-size:24px; background:var(--teal-soft); color:var(--teal-deep); margin-bottom:20px; }
.card h3 { margin-bottom:10px; }
.card p { color:var(--muted); margin:0 0 18px; font-size:15px; }

.split { display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:center; }
.media-frame { position:relative; }
.media-frame img { width:100%; height:520px; object-fit:cover; border-radius:32px; box-shadow:var(--shadow); }
.media-frame .mini-card { position:absolute; right:-24px; bottom:30px; max-width:230px; background:var(--surface); border:1px solid var(--line); border-radius:18px; padding:18px; box-shadow:var(--shadow); }
.media-frame .mini-card strong { display:block; color:var(--teal-deep); font:800 18px "Segoe UI"; }
.media-frame .mini-card span { color:var(--muted); font-size:13px; }
.content-block p { color:var(--muted); font-size:16px; }
.check-list { list-style:none; padding:0; margin:24px 0 30px; display:grid; gap:13px; }
.check-list li { display:flex; align-items:flex-start; gap:12px; }
.check-list li::before { content:"✓"; flex:0 0 24px; height:24px; border-radius:50%; background:var(--teal-soft); color:var(--teal-deep); display:grid; place-items:center; font-weight:900; font-size:13px; margin-top:1px; }

.cta-band { position:relative; overflow:hidden; background:linear-gradient(135deg,#07384b,#08798a); color:#fff; border-radius:34px; padding:48px; display:grid; grid-template-columns:1fr auto; gap:30px; align-items:center; }
.cta-band::after { content:""; position:absolute; width:280px; height:280px; right:-70px; top:-120px; border-radius:50%; background:rgba(244,154,36,.2); }
.cta-band h2 { color:#fff; }
.cta-band p { color:#cfe9ed; max-width:700px; margin:12px 0 0; }
.cta-band .actions { position:relative; z-index:1; display:flex; gap:10px; flex-wrap:wrap; justify-content:flex-end; }

.page-hero { padding:72px 0 56px; background:linear-gradient(180deg,var(--surface-2),transparent); position:relative; overflow:hidden; }
.page-hero .inner { display:grid; grid-template-columns:1.1fr .9fr; gap:48px; align-items:center; }
.page-hero p { color:var(--muted); max-width:670px; font-size:17px; }
.page-hero .page-image { height:340px; width:100%; object-fit:cover; border-radius:28px; box-shadow:var(--shadow); }
.breadcrumb { font-size:13px; font-weight:800; color:var(--teal-deep); margin-bottom:16px; }
.breadcrumb a { color:var(--muted); }

.service-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:16px; }
.service-card { min-height:185px; display:flex; flex-direction:column; }
.service-card .service-icon { font-size:26px; margin-bottom:22px; }
.service-card p { flex:1; }
.service-group { margin-top:26px; background:var(--surface); border:1px solid var(--line); border-radius:26px; overflow:hidden; }
.service-row { display:grid; grid-template-columns:1fr 2fr auto; gap:22px; align-items:center; padding:20px 24px; border-bottom:1px solid var(--line); }
.service-row:last-child { border-bottom:0; }
.service-row strong { font-family:"Segoe UI"; }
.service-row span { color:var(--muted); }

.founder-card { display:grid; grid-template-columns:280px 1fr; gap:34px; align-items:center; background:var(--surface); border:1px solid var(--line); border-radius:30px; padding:30px; box-shadow:var(--shadow-sm); }
.founder-card img { width:100%; aspect-ratio:1/1; object-fit:cover; border-radius:24px; }
.founder-card p { color:var(--muted); }
.values { display:grid; grid-template-columns:repeat(4,1fr); gap:16px; }
.value { text-align:left; }
.value strong { display:block; font:800 18px "Segoe UI"; margin-bottom:8px; }
.value span { color:var(--muted); font-size:14px; }

.contact-grid { display:grid; grid-template-columns:.85fr 1.15fr; gap:30px; align-items:start; }
.contact-card { background:var(--surface); border:1px solid var(--line); border-radius:28px; padding:30px; box-shadow:var(--shadow-sm); }
.contact-list { display:grid; gap:18px; margin-top:24px; }
.contact-item { display:flex; gap:14px; align-items:flex-start; }
.contact-item i { width:44px; height:44px; flex:0 0 44px; display:grid; place-items:center; border-radius:14px; background:var(--teal-soft); color:var(--teal-deep); font-style:normal; font-size:20px; }
.contact-item strong { display:block; }
.contact-item span, .contact-item a { color:var(--muted); font-size:14px; }
.form-grid { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.field { display:grid; gap:8px; }
.field.full { grid-column:1/-1; }
.field label { font-size:13px; font-weight:800; }
.field input, .field textarea, .field select { width:100%; border:1px solid var(--line); background:var(--bg); color:var(--ink); border-radius:14px; padding:13px 14px; outline:none; transition:.2s; }
.field textarea { min-height:132px; resize:vertical; }
.field input:focus, .field textarea:focus, .field select:focus { border-color:var(--teal); box-shadow:0 0 0 4px color-mix(in srgb,var(--teal) 14%,transparent); }
.form-note { font-size:12px; color:var(--muted); margin-top:10px; }
.form-status { margin-top:14px; padding:12px 14px; border-radius:12px; display:none; font-size:14px; }
.form-status.success { display:block; background:var(--teal-soft); color:var(--teal-deep); }
.form-status.error { display:block; background:#ffe8e8; color:#9d2828; }

.blog-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.blog-card { overflow:hidden; padding:0; }
.blog-card .blog-cover { height:210px; background:linear-gradient(135deg,var(--teal-soft),var(--orange-soft)); display:grid; place-items:center; overflow:hidden; }
.blog-card .blog-cover img { width:100%; height:100%; object-fit:cover; }
.blog-card .blog-placeholder { width:72px; height:72px; border-radius:22px; background:var(--surface); display:grid; place-items:center; font-size:30px; box-shadow:var(--shadow-sm); }
.blog-card .body { padding:24px; }
.blog-meta { display:flex; gap:10px; color:var(--muted); font-size:12px; margin-bottom:12px; }
.blog-card h3 { font-size:21px; }
.blog-card p { color:var(--muted); }
.article { max-width:840px; margin:0 auto; }
.article .article-meta { color:var(--muted); margin:14px 0 34px; }
.article .article-content { font-size:17px; }
.article .article-content p { margin:0 0 20px; color:var(--muted); }
.article .article-content h2 { font-size:30px; margin:38px 0 16px; }
.article-note { padding:18px 20px; border:1px solid var(--line); background:var(--surface-2); border-radius:16px; color:var(--muted); margin-top:28px; }

.site-footer { background:var(--surface); border-top:1px solid var(--line); padding:58px 0 28px; margin-top:70px; }
.footer-grid { display:grid; grid-template-columns:1.5fr .8fr 1fr 1fr; gap:40px; }
.footer-brand img { width:200px; margin-bottom:18px; }
.footer-brand p, .site-footer p { color:var(--muted); max-width:360px; }
.site-footer h3 { font-size:15px; margin-bottom:16px; }
.site-footer a, .site-footer span { display:block; color:var(--muted); font-size:14px; margin:9px 0; }
.site-footer a:hover { color:var(--teal-deep); }
.footer-bottom { border-top:1px solid var(--line); margin-top:38px; padding-top:22px; display:flex; justify-content:space-between; gap:20px; }
.footer-bottom span { margin:0; font-size:12px; }
.admin-link { opacity:.7; font-size:12px!important; }
.small { font-size:13px; }

.floating-tools { position:fixed; right:20px; bottom:22px; z-index:1100; display:flex; flex-direction:column; gap:10px; }
.float-btn { width:52px; height:52px; border-radius:50%; border:0; display:grid; place-items:center; box-shadow:0 12px 30px rgba(0,0,0,.18); transition:.2s; }
.float-btn:hover { transform:translateY(-3px) scale(1.03); }
.float-btn svg { width:25px; height:25px; fill:currentColor; }
.chat-fab { background:var(--navy); color:var(--bg); }
html[data-theme="light"] .chat-fab { color:#fff; }
.theme-fab { background:var(--surface); color:var(--ink); border:1px solid var(--line); font-size:20px; }
.whatsapp-fab { background:#20c765; color:#fff; }

.chat-panel { position:fixed; right:86px; bottom:22px; z-index:1200; width:min(370px,calc(100vw - 28px)); height:520px; background:var(--surface); border:1px solid var(--line); border-radius:24px; box-shadow:0 28px 80px rgba(0,0,0,.24); display:flex; flex-direction:column; overflow:hidden; opacity:0; transform:translateY(18px) scale(.98); pointer-events:none; transition:.22s ease; }
.chat-panel.open { opacity:1; transform:none; pointer-events:auto; }
.chat-head { background:linear-gradient(135deg,var(--navy),#076c79); color:#fff; padding:16px 18px; display:flex; align-items:center; justify-content:space-between; }
.chat-head strong { display:block; }
.chat-head span { display:block; font-size:11px; opacity:.76; }
.chat-head button { border:0; background:rgba(255,255,255,.14); color:#fff; width:32px; height:32px; border-radius:50%; font-size:22px; }
.chat-body { flex:1; overflow:auto; padding:16px; display:flex; flex-direction:column; gap:10px; }
.chat-msg { max-width:86%; padding:10px 12px; border-radius:15px; font-size:13px; line-height:1.45; }
.chat-msg.bot { align-self:flex-start; background:var(--surface-2); border-bottom-left-radius:4px; }
.chat-msg.user { align-self:flex-end; background:var(--teal); color:#fff; border-bottom-right-radius:4px; }
.chat-msg a { font-weight:800; text-decoration:underline; }
.quick-replies { display:flex; flex-wrap:wrap; gap:7px; }
.quick-replies button { border:1px solid var(--line); background:var(--surface); color:var(--ink); border-radius:999px; padding:7px 10px; font-size:12px; }
.chat-input { display:flex; gap:8px; border-top:1px solid var(--line); padding:12px; background:var(--surface); }
.chat-input input { flex:1; min-width:0; border:1px solid var(--line); background:var(--bg); color:var(--ink); border-radius:999px; padding:10px 13px; outline:none; }
.chat-input button { border:0; width:40px; height:40px; border-radius:50%; background:var(--teal); color:#fff; }
.callback-form { display:grid; gap:8px; background:var(--surface-2); padding:10px; border-radius:14px; }
.callback-form input { width:100%; border:1px solid var(--line); background:var(--surface); color:var(--ink); border-radius:10px; padding:8px 10px; font-size:12px; }
.callback-form button { border:0; background:var(--teal); color:#fff; border-radius:10px; padding:9px 10px; font-weight:800; font-size:12px; }
.mobile-care-bar { display:none; }

.reveal { opacity:0; transform:translateY(22px); transition:opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity:1; transform:none; }
.delay-1 { transition-delay:.08s; }.delay-2 { transition-delay:.16s; }.delay-3 { transition-delay:.24s; }

.empty-state { text-align:center; padding:50px; background:var(--surface); border:1px solid var(--line); border-radius:24px; color:var(--muted); }

@media (max-width: 1050px) {
  .main-nav { gap:17px; }
  .nav-actions .btn { display:none; }
  .hero-grid, .split { gap:42px; }
  .service-grid { grid-template-columns:repeat(3,1fr); }
  .values { grid-template-columns:repeat(2,1fr); }
  .footer-grid { grid-template-columns:1.3fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column:2/4; }
}
@media (max-width: 850px) {
  .nav-wrap { min-height:72px; }
  .brand { flex-basis:175px; }
  .brand img { width:170px; }
  .nav-toggle { display:block; }
  .main-nav { position:fixed; inset:72px 0 auto 0; background:var(--surface); border-bottom:1px solid var(--line); padding:18px 20px 28px; display:grid; gap:0; transform:translateY(-130%); transition:.25s ease; box-shadow:var(--shadow); }
  .main-nav.open { transform:none; }
  .main-nav a { padding:13px 8px; }
  .main-nav a::after { display:none; }
  .nav-actions { margin-left:0; }
  .hero { padding-top:54px; }
  .hero-grid, .page-hero .inner, .split, .contact-grid { grid-template-columns:1fr; }
  .hero-visual { min-height:460px; }
  .hero-card.emergency { left:14px; }
  .stats { grid-template-columns:repeat(2,1fr); }
  .cards, .blog-grid { grid-template-columns:repeat(2,1fr); }
  .service-grid { grid-template-columns:repeat(2,1fr); }
  .page-hero .page-image { height:300px; }
  .founder-card { grid-template-columns:220px 1fr; }
  .cta-band { grid-template-columns:1fr; }
  .cta-band .actions { justify-content:flex-start; }
  .footer-grid { grid-template-columns:1fr 1fr; }
  .footer-grid > div:last-child { grid-column:auto; }
}
@media (max-width: 620px) {
  .container { width:min(100% - 28px,1180px); }
  .nav-actions .theme-toggle { display:none; }
  h1 { font-size:43px; }
  .hero-copy > p { font-size:16px; }
  .hero-visual { min-height:390px; margin-top:12px; }
  .hero-visual .main-photo { inset:0; width:100%; border-radius:26px; }
  .hero-visual::before { display:none; }
  .hero-card.emergency { bottom:14px; width:205px; padding:14px; }
  .hero-badge { top:16px; right:12px; font-size:12px; }
  .section { padding:68px 0; }
  .section-head { display:block; }
  .stats, .cards, .blog-grid, .service-grid, .values { grid-template-columns:1fr; }
  .media-frame img { height:390px; border-radius:24px; }
  .media-frame .mini-card { right:12px; bottom:12px; }
  .service-row { grid-template-columns:1fr; gap:6px; }
  .service-row .btn { justify-self:start; }
  .founder-card { grid-template-columns:1fr; padding:20px; }
  .founder-card img { max-width:230px; }
  .form-grid { grid-template-columns:1fr; }
  .field.full { grid-column:auto; }
  .cta-band { padding:32px 24px; border-radius:24px; }
  .footer-grid { grid-template-columns:1fr; }
  .footer-bottom { display:block; }
  .floating-tools { bottom:72px; right:14px; }
  .theme-fab { display:none; }
  .chat-panel { right:14px; bottom:128px; height:min(520px,calc(100vh - 150px)); }
  .mobile-care-bar { position:fixed; left:0; right:0; bottom:0; z-index:1090; display:grid; grid-template-columns:1fr 1fr; background:var(--surface); border-top:1px solid var(--line); box-shadow:0 -8px 24px rgba(0,0,0,.08); }
  .mobile-care-bar a { padding:14px; text-align:center; font-weight:800; font-size:13px; }
  .mobile-care-bar a:last-child { background:#20c765; color:#fff; }
  .site-footer { padding-bottom:82px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration:.01ms!important; animation-iteration-count:1!important; transition-duration:.01ms!important; scroll-behavior:auto!important; }
  .reveal { opacity:1; transform:none; }
}
