:root {
  --navy: #071f57;
  --blue-dark: #073b8e;
  --blue: #0b5ed7;
  --blue-soft: #eaf3ff;
  --green: #2fad4a;
  --green-dark: #16853b;
  --green-soft: #eef9f1;
  --ink: #102033;
  --muted: #5b687a;
  --line: #dbe7f5;
  --soft: #f7faff;
  --white: #ffffff;
  --shadow: 0 18px 44px rgba(7, 31, 87, 0.09);
  --shadow-strong: 0 26px 66px rgba(7, 31, 87, 0.14);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; }
.skip-link { position: absolute; left: 16px; top: -60px; z-index: 40; background: var(--blue-dark); color: var(--white); padding: 10px 14px; border-radius: 999px; }
.skip-link:focus { top: 12px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(219, 231, 245, 0.9);
  backdrop-filter: blur(16px);
}
.nav-wrap { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; }
.brand img { width: 178px; height: auto; }
.nav-links { display: flex; align-items: center; gap: 22px; color: #26374f; font-size: 0.92rem; font-weight: 800; }
.nav-links a:not(.nav-button) { position: relative; padding: 8px 0; }
.nav-links a:not(.nav-button)::after { content: ''; position: absolute; left: 0; right: 0; bottom: 1px; height: 2px; background: var(--green); border-radius: 999px; transform: scaleX(0); transform-origin: left; transition: transform 180ms ease; }
.nav-links a:not(.nav-button):hover::after { transform: scaleX(1); }
.nav-button, .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  padding: 0 20px;
  font-weight: 850;
  letter-spacing: -0.01em;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
.nav-button { background: var(--blue-dark); color: var(--white); box-shadow: 0 12px 26px rgba(7, 59, 142, 0.18); }
.nav-button:hover, .button:hover { transform: translateY(-2px); }
.menu-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 14px; background: var(--white); padding: 10px; }
.menu-toggle span:not(.sr-only) { display: block; height: 2px; background: var(--blue-dark); margin: 5px 0; border-radius: 999px; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 66px;
  background:
    radial-gradient(circle at 86% 8%, rgba(47, 173, 74, 0.15), transparent 26%),
    radial-gradient(circle at 12% 10%, rgba(11, 94, 215, 0.14), transparent 28%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 82%);
}
.hero::before {
  content: '';
  position: absolute;
  right: -180px;
  top: 56px;
  width: 430px;
  height: 430px;
  border: 34px solid rgba(11, 94, 215, 0.08);
  border-radius: 50%;
}
.hero-grid { position: relative; display: grid; grid-template-columns: minmax(0, 0.92fr) minmax(340px, 1.08fr); gap: 54px; align-items: center; }
.hero-copy { position: relative; z-index: 1; }
.eyebrow { margin: 0 0 12px; color: var(--green-dark); font-size: 0.75rem; font-weight: 900; letter-spacing: 0.16em; text-transform: uppercase; }
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 680px;
  margin-bottom: 18px;
  color: var(--blue-dark);
  font-size: clamp(2.25rem, 4vw, 3.45rem);
  line-height: 1.04;
  letter-spacing: -0.042em;
}
h2 {
  margin-bottom: 14px;
  color: var(--ink);
  font-size: clamp(1.7rem, 2.8vw, 2.45rem);
  line-height: 1.1;
  letter-spacing: -0.038em;
}
h3 { margin-bottom: 10px; color: var(--ink); font-size: 1.08rem; line-height: 1.22; letter-spacing: -0.02em; }
.hero-text { max-width: 560px; margin-bottom: 26px; color: #3f4e64; font-size: clamp(1rem, 1.5vw, 1.12rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 24px; }
.button.primary { background: var(--blue); color: var(--white); box-shadow: 0 16px 34px rgba(11, 94, 215, 0.22); }
.button.secondary { background: var(--white); color: var(--blue-dark); border: 1px solid var(--line); box-shadow: 0 12px 30px rgba(16, 32, 51, 0.06); }
.button.light { background: var(--white); color: var(--blue-dark); box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18); }
.button.large { min-height: 54px; padding: 0 24px; }
.hero-points { display: flex; flex-wrap: wrap; gap: 9px; max-width: 640px; }
.hero-points span { display: inline-flex; align-items: center; gap: 8px; padding: 8px 12px; border: 1px solid rgba(11, 94, 215, 0.13); border-radius: 999px; background: rgba(255, 255, 255, 0.78); color: #26374f; font-size: 0.88rem; font-weight: 800; }
.hero-points span::before { content: ''; width: 7px; height: 7px; border-radius: 999px; background: var(--green); }
.hero-media-card { position: relative; overflow: hidden; padding: 10px; border: 1px solid rgba(219, 231, 245, 0.95); border-radius: 28px; background: var(--white); box-shadow: var(--shadow-strong); }
.hero-media-card img { width: 100%; min-height: 300px; object-fit: cover; object-position: center; border-radius: 20px; }
.price-pill { position: absolute; left: 26px; bottom: 26px; display: grid; gap: 2px; padding: 12px 17px 14px; border: 1px solid rgba(219, 231, 245, 0.95); border-radius: 18px; background: rgba(255, 255, 255, 0.95); box-shadow: 0 14px 32px rgba(7, 31, 87, 0.14); }
.price-pill span { color: var(--muted); font-size: 0.74rem; font-weight: 900; letter-spacing: 0.09em; text-transform: uppercase; }
.price-pill strong { color: var(--green-dark); font-size: 2.2rem; line-height: 0.9; letter-spacing: -0.06em; }

.trust-strip { padding: 28px 0; background: var(--navy); color: var(--white); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.trust-grid article { padding: 18px; border: 1px solid rgba(255, 255, 255, 0.13); border-radius: 18px; background: rgba(255, 255, 255, 0.06); }
.trust-grid span { display: block; margin-bottom: 8px; color: #90d7ff; font-size: 0.8rem; font-weight: 900; letter-spacing: 0.12em; }
.trust-grid strong { display: block; margin-bottom: 4px; font-size: 0.98rem; }
.trust-grid p { margin: 0; color: rgba(255, 255, 255, 0.72); font-size: 0.92rem; }

.section { padding: 72px 0; }
.section-soft { background: var(--soft); }
.section-heading { max-width: 720px; margin-bottom: 32px; }
.section-heading p:not(.eyebrow) { color: var(--muted); font-size: 1.02rem; }
.section-heading.split { max-width: none; display: flex; justify-content: space-between; align-items: flex-end; gap: 28px; }
.text-link { color: var(--blue-dark); font-weight: 900; border-bottom: 2px solid var(--green); }

.service-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.service-card { padding: 21px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: 0 12px 32px rgba(16, 32, 51, 0.045); }
.service-card.wide { background: var(--white); }
.service-card.accent-card { background: linear-gradient(135deg, var(--blue-soft), var(--green-soft)); }
.service-number { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; margin-bottom: 16px; border-radius: 14px; background: var(--green-soft); color: var(--green-dark); font-weight: 900; }
.service-card p { margin-bottom: 0; color: var(--muted); font-size: 0.95rem; }

.work-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.work-card { position: relative; overflow: hidden; min-height: 310px; border: 1px solid var(--line); border-radius: 24px; background: var(--white); box-shadow: var(--shadow); }
.work-card > img { width: 100%; height: 100%; min-height: 310px; object-fit: cover; object-position: center; transition: transform 320ms ease; }
.work-card:hover > img { transform: scale(1.025); }
.work-card.large > img { object-position: center; }
.work-caption { position: absolute; left: 12px; right: 12px; bottom: 12px; padding: 11px 12px; border: 1px solid rgba(219, 231, 245, 0.95); border-radius: 16px; background: rgba(255, 255, 255, 0.94); box-shadow: 0 10px 24px rgba(7, 31, 87, 0.1); }
.work-caption strong { display: block; color: var(--blue-dark); font-size: 0.95rem; line-height: 1.2; }
.work-caption span { display: block; margin-top: 3px; color: var(--muted); font-size: 0.84rem; line-height: 1.4; }

.before-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.ba-card { padding: 12px; border: 1px solid var(--line); border-radius: 24px; background: var(--white); box-shadow: var(--shadow); }
.ba-images { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.ba-images figure { position: relative; overflow: hidden; margin: 0; border-radius: 18px; background: var(--blue-soft); }
.ba-images img { width: 100%; height: 300px; object-fit: cover; object-position: center; }
.ba-images figcaption { position: absolute; left: 9px; top: 9px; padding: 5px 9px; border-radius: 999px; background: rgba(7, 31, 87, 0.86); color: var(--white); font-size: 0.72rem; font-weight: 900; letter-spacing: 0.08em; text-transform: uppercase; }
.ba-images figure:nth-child(2) figcaption { background: rgba(22, 133, 59, 0.92); }
.ba-copy { padding: 15px 4px 3px; }
.ba-copy h3 { color: var(--blue-dark); }
.ba-copy p { margin-bottom: 0; color: var(--muted); font-size: 0.95rem; }

.booking-band { padding: 62px 0; background: linear-gradient(135deg, var(--blue-dark), var(--blue)); color: var(--white); }
.booking-inner { display: flex; justify-content: space-between; align-items: center; gap: 30px; }
.booking-inner h2 { max-width: 680px; color: var(--white); }
.booking-inner p:not(.eyebrow) { max-width: 650px; margin-bottom: 0; color: rgba(255, 255, 255, 0.78); }
.booking-band .eyebrow { color: #98eda8; }

.contact-card { display: flex; justify-content: space-between; align-items: center; gap: 30px; padding: 32px; border: 1px solid var(--line); border-radius: 28px; background: linear-gradient(135deg, #ffffff, #f2f8ff); box-shadow: var(--shadow); }
.contact-card p:not(.eyebrow) { max-width: 560px; margin-bottom: 0; color: var(--muted); }
.contact-actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 12px; }

.site-footer { padding: 44px 0 28px; background: #071a38; color: var(--white); }
.footer-grid { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.footer-grid p { margin: 12px 0 0; color: rgba(255, 255, 255, 0.68); }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 16px; font-weight: 850; }
.footer-links a { color: rgba(255, 255, 255, 0.86); }
.site-footer img { width: 160px; background: var(--white); border-radius: 16px; padding: 8px; }
.copyright { width: min(1120px, calc(100% - 40px)); margin: 26px auto 0; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, 0.12); color: rgba(255, 255, 255, 0.56); font-size: 0.9rem; }
.floating-whatsapp { position: fixed; right: 18px; bottom: 18px; z-index: 35; display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 0 18px; border-radius: 999px; background: var(--green); color: var(--white); font-weight: 900; box-shadow: 0 16px 42px rgba(47, 173, 74, 0.34); }
:focus-visible { outline: 3px solid rgba(47, 173, 74, 0.45); outline-offset: 4px; }

@media (max-width: 980px) {
  .nav-links { position: absolute; left: 20px; right: 20px; top: 86px; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 16px; border: 1px solid var(--line); border-radius: 22px; background: var(--white); box-shadow: var(--shadow-strong); }
  .nav-links.is-open { display: flex; }
  .nav-links a { padding: 13px 14px; }
  .nav-button { margin-top: 8px; }
  .menu-toggle { display: block; }
  .hero { padding: 56px 0 58px; }
  .hero-grid { grid-template-columns: 1fr; gap: 34px; }
  .hero-media-card { max-width: 720px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .service-grid, .work-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .before-grid { grid-template-columns: 1fr; }
  .section-heading.split, .booking-inner, .contact-card, .footer-grid { flex-direction: column; align-items: flex-start; }
  .contact-actions, .footer-links { justify-content: flex-start; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1120px); }
  .nav-wrap { min-height: 70px; }
  .brand img { width: 150px; }
  h1 { font-size: clamp(2rem, 9vw, 2.65rem); letter-spacing: -0.035em; }
  h2 { font-size: clamp(1.5rem, 7.2vw, 2.05rem); }
  h3 { font-size: 1.03rem; }
  .hero { padding: 42px 0 46px; }
  .hero-text { font-size: 1rem; }
  .hero-actions, .button { width: 100%; }
  .hero-media-card { border-radius: 22px; padding: 8px; }
  .hero-media-card img { min-height: 220px; border-radius: 16px; }
  .price-pill { left: 16px; bottom: 16px; padding: 10px 14px 12px; }
  .price-pill strong { font-size: 1.8rem; }
  .trust-grid, .service-grid, .work-grid { grid-template-columns: 1fr; }
  .section { padding: 54px 0; }
  .section-heading { margin-bottom: 26px; }
  .work-card { display: flex; flex-direction: column; min-height: auto; border-radius: 22px; }
  .work-card > img { height: 245px; min-height: 245px; border-radius: 0; }
  .work-caption { position: static; margin: 0; border-left: 0; border-right: 0; border-bottom: 0; border-radius: 0; box-shadow: none; }
  .work-caption strong { font-size: 0.98rem; }
  .work-caption span { font-size: 0.86rem; }
  .ba-card { padding: 11px; border-radius: 22px; }
  .ba-images { gap: 8px; }
  .ba-images img { height: 200px; }
  .ba-images figcaption { left: 8px; top: 8px; padding: 5px 8px; font-size: 0.68rem; }
  .booking-band { padding: 50px 0; }
  .contact-card { padding: 23px; border-radius: 22px; }
  .floating-whatsapp { left: 14px; right: 14px; }
}
