:root {
  --blue: #06a7e5;
  --blue-dark: #027bb5;
  --black: #080a0d;
  --charcoal: #111720;
  --ink: #1a1f27;
  --muted: #5d6878;
  --line: #e8edf2;
  --white: #ffffff;
  --soft: #f6fbff;
  --green: #25d366;
  --shadow: 0 20px 60px rgba(8, 10, 13, .18);
  --radius: 20px;
}

* { 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.55;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.skip-link { position: absolute; left: -999px; top: 0; background: var(--blue); color: #fff; padding: 10px; z-index: 99; }
.skip-link:focus { left: 10px; }

.site-header { background: #fff; position: sticky; top: 0; z-index: 50; box-shadow: 0 6px 25px rgba(0,0,0,.06); }
.top-bar { background: linear-gradient(90deg, #048cca, #0cb7f2); color: #fff; font-size: 14px; }
.top-inner { max-width: 1180px; margin: 0 auto; padding: 9px 20px; display: flex; gap: 24px; align-items: center; justify-content: space-between; }
.top-link { display: inline-flex; gap: 8px; align-items: center; font-weight: 700; }
.top-social { margin-left: auto; font-weight: 700; opacity: .95; }
.nav-wrap { max-width: 1180px; margin: 0 auto; padding: 14px 20px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 24px; }
.brand { display: flex; align-items: center; gap: 13px; min-width: 240px; }
.brand img { width: 68px; height: 68px; object-fit: contain; border-radius: 14px; }
.brand strong { display: block; font-size: 22px; line-height: 1; }
.brand span { display: block; color: var(--blue-dark); font-weight: 800; font-size: 14px; }
.site-nav { display: flex; justify-content: center; gap: 28px; font-weight: 800; font-size: 14px; }
.site-nav a { position: relative; }
.site-nav a:after { content: ""; height: 3px; background: var(--blue); width: 0; position: absolute; bottom: -8px; left: 0; transition: width .2s ease; }
.site-nav a:hover:after { width: 100%; }
.header-actions, .cta-row, .contact-buttons { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.btn { display: inline-flex; justify-content: center; align-items: center; min-height: 44px; border-radius: 10px; padding: 12px 20px; font-weight: 900; border: 2px solid transparent; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.btn:hover { transform: translateY(-1px); box-shadow: 0 12px 24px rgba(0,0,0,.15); }
.btn-primary { color: #fff; background: linear-gradient(135deg, var(--blue), var(--blue-dark)); }
.btn-dark { color: #fff; background: var(--black); border-color: rgba(255,255,255,.15); }
.btn-light { color: var(--black); background: #fff; border-color: var(--line); }
.btn-large { min-height: 52px; padding-inline: 26px; }
.menu-toggle { display: none; background: transparent; border: 0; width: 44px; height: 44px; padding: 10px; }
.menu-toggle span { display: block; height: 3px; background: var(--black); margin: 5px 0; border-radius: 999px; }

.hero { position: relative; overflow: hidden; background: var(--black); min-height: 675px; display: flex; align-items: stretch; }
.hero:before { content: ""; position: absolute; inset: 0; background:
  radial-gradient(circle at 80% 20%, rgba(6,167,229,.25), transparent 35%),
  radial-gradient(circle at 10% 90%, rgba(6,167,229,.22), transparent 30%),
  linear-gradient(135deg, #05070a 0%, #121923 60%, #061e2b 100%); }
.hero:after { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px); background-size: 36px 36px; opacity: .42; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.72), rgba(0,0,0,.38), rgba(0,0,0,.18)); }
.hero-inner { position: relative; z-index: 2; width: min(1180px, 100%); margin: 0 auto; padding: 86px 20px 70px; display: grid; grid-template-columns: 0.94fr 1.06fr; align-items: center; gap: 40px; color: #fff; }
.eyebrow { color: var(--blue); font-weight: 1000; text-transform: uppercase; letter-spacing: .09em; font-size: 13px; }
.hero h1 { font-size: clamp(40px, 5vw, 72px); line-height: .98; margin: 18px 0; max-width: 720px; letter-spacing: -0.05em; }
.hero h1::selection, .hero p::selection { background: var(--blue); }
.hero p { font-size: 19px; color: rgba(255,255,255,.88); max-width: 660px; margin: 0 0 28px; }
.hero-bullets { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px 20px; margin: 26px 0 30px; max-width: 600px; }
.hero-bullets span { display: flex; align-items: center; gap: 10px; font-weight: 800; }
.hero-bullets span:before { content: "✓"; width: 24px; height: 24px; background: var(--blue); color: #fff; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 14px; flex: 0 0 auto; }
.hero-card { position: relative; background: linear-gradient(135deg, rgba(255,255,255,.16), rgba(255,255,255,.06)); border: 1px solid rgba(255,255,255,.18); border-radius: 30px; padding: 20px; box-shadow: var(--shadow); backdrop-filter: blur(12px); min-height: 470px; }
.cleaning-panel { position: relative; height: 430px; border-radius: 24px; overflow: hidden; background:
  linear-gradient(125deg, rgba(6,167,229,.92), rgba(235,251,255,.85) 42%, rgba(255,255,255,.96) 43%, rgba(255,255,255,.86)),
  linear-gradient(180deg, #d8f3ff, #ffffff); }
.cleaning-panel:before { content: ""; position: absolute; inset: 0; background: linear-gradient(140deg, rgba(0,0,0,.05), rgba(255,255,255,.1)); }
.house-line { position: absolute; left: 50px; right: 30px; bottom: 68px; height: 212px; border: 12px solid rgba(9,18,30,.84); border-top-width: 20px; background: rgba(255,255,255,.75); box-shadow: inset 0 0 0 8px rgba(6,167,229,.18); }
.house-line:before { content: ""; position: absolute; left: -12px; top: -82px; width: 62%; height: 82px; background: rgba(9,18,30,.86); clip-path: polygon(0 100%, 50% 0, 100% 100%); }
.window-grid { position: absolute; left: 96px; right: 78px; bottom: 112px; height: 150px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.window-grid span { background: linear-gradient(160deg, rgba(255,255,255,.95), rgba(117,213,249,.45)); border: 5px solid rgba(11,31,49,.8); box-shadow: inset 12px 0 0 rgba(255,255,255,.25); }
.pole { position: absolute; left: 210px; bottom: 84px; width: 7px; height: 320px; background: #0b0f14; transform: rotate(20deg); transform-origin: bottom; border-radius: 99px; }
.brush { position: absolute; right: 122px; top: 84px; width: 105px; height: 38px; background: #111; border-radius: 9px; transform: rotate(20deg); }
.brush:after { content: ""; position: absolute; right: -42px; top: 2px; width: 45px; height: 34px; background: repeating-linear-gradient(90deg, var(--blue), var(--blue) 5px, #6dd8ff 5px, #6dd8ff 9px); border-radius: 4px 14px 14px 4px; }
.shine { position: absolute; background: rgba(255,255,255,.84); border-radius: 999px; filter: blur(.2px); }
.shine-one { width: 160px; height: 8px; left: 160px; top: 150px; transform: rotate(-28deg); }
.shine-two { width: 118px; height: 6px; left: 350px; top: 238px; transform: rotate(-28deg); }
.shine-three { width: 90px; height: 5px; right: 86px; top: 300px; transform: rotate(-28deg); }
.hero-card-badge { position: absolute; left: 40px; right: 40px; bottom: 40px; background: rgba(255,255,255,.93); color: var(--ink); border-radius: 18px; padding: 20px; display: grid; gap: 3px; box-shadow: var(--shadow); }
.hero-card-badge strong { font-size: 20px; }
.hero-card-badge span { color: var(--muted); font-weight: 700; }

.trust-strip { background: linear-gradient(90deg, #0ba8e8, #047ab7); color: #fff; display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { padding: 26px 28px; display: flex; gap: 14px; align-items: flex-start; border-right: 1px solid rgba(255,255,255,.22); }
.trust-item > span { width: 44px; height: 44px; border-radius: 14px; background: rgba(255,255,255,.16); display: inline-flex; align-items: center; justify-content: center; font-weight: 1000; font-size: 20px; flex: 0 0 auto; }
.trust-item strong { display: block; font-size: 17px; }
.trust-item p { margin: 3px 0 0; color: rgba(255,255,255,.9); font-size: 14px; }

.section { padding: 72px 20px; }
.section-light { background: var(--soft); }
.section-heading { max-width: 760px; margin: 0 auto 36px; text-align: center; }
.section-heading span { color: var(--blue-dark); font-weight: 1000; text-transform: uppercase; letter-spacing: .1em; font-size: 13px; }
.section-heading h2 { font-size: clamp(32px, 4vw, 48px); margin: 8px 0 10px; line-height: 1.04; letter-spacing: -0.035em; }
.section-heading p { color: var(--muted); margin: 0; font-size: 18px; }
.service-grid { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.service-card { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 24px; min-height: 230px; display: flex; flex-direction: column; justify-content: flex-start; box-shadow: 0 12px 34px rgba(0,0,0,.06); }
.service-card h3 { margin: 18px 0 8px; font-size: 20px; line-height: 1.1; }
.service-card p { margin: 0; color: var(--muted); font-weight: 600; }
.service-icon { width: 54px; height: 54px; display: inline-flex; justify-content: center; align-items: center; background: linear-gradient(135deg, #e5f7ff, #fff); border: 1px solid #c7edfc; color: var(--blue-dark); border-radius: 16px; font-size: 28px; font-weight: 1000; }
.service-card-dark { background: linear-gradient(135deg, var(--black), #111a24); color: #fff; }
.service-card-dark p { color: rgba(255,255,255,.82); }

.split-section { max-width: 1180px; margin: 0 auto; padding: 80px 20px; display: grid; grid-template-columns: 1.15fr .85fr; gap: 38px; align-items: center; }
.split-copy h2 { font-size: clamp(32px, 4vw, 52px); line-height: 1.04; letter-spacing: -0.04em; margin: 12px 0 18px; }
.split-copy p { color: var(--muted); font-size: 18px; margin: 0 0 22px; }
.tick-list { padding: 0; margin: 0; list-style: none; display: grid; gap: 11px; font-weight: 800; }
.tick-list li { display: flex; gap: 10px; align-items: flex-start; }
.tick-list li:before { content: "✓"; color: #fff; background: var(--blue); border-radius: 50%; width: 24px; height: 24px; display: inline-flex; align-items: center; justify-content: center; flex: 0 0 auto; font-size: 13px; }
.split-card { background: linear-gradient(135deg, #09111a, #101923); color: #fff; border-radius: 28px; padding: 34px; box-shadow: var(--shadow); text-align: center; position: relative; overflow: hidden; }
.split-card:before { content: ""; position: absolute; inset: -90px auto auto -90px; width: 210px; height: 210px; background: rgba(6,167,229,.35); border-radius: 50%; filter: blur(16px); }
.split-card img { width: min(320px, 100%); margin: 0 auto 22px; border-radius: 22px; background: #fff; padding: 8px; position: relative; }
.split-card h3 { font-size: 28px; margin: 0 0 8px; position: relative; }
.split-card p { color: rgba(255,255,255,.78); margin: 0; font-weight: 700; position: relative; }

.areas-section { background: linear-gradient(135deg, #071018, #063651); color: #fff; }
.light-heading span { color: #7ce1ff; }
.light-heading p { color: rgba(255,255,255,.75); }
.areas-grid { max-width: 980px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.areas-grid span { background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.13); border-radius: 14px; padding: 16px; text-align: center; font-weight: 900; }

.reviews-section { padding-bottom: 84px; }
.review-grid { max-width: 1040px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
blockquote { margin: 0; padding: 28px; border-radius: 18px; background: #fff; border: 1px solid var(--line); box-shadow: 0 12px 28px rgba(0,0,0,.06); }
blockquote div { color: #ffb703; letter-spacing: .15em; font-size: 20px; }
blockquote p { margin: 10px 0 0; font-size: 18px; font-weight: 800; }

.contact-section { background: linear-gradient(135deg, #05a8e8, #067cba); color: #fff; padding: 80px 20px; display: grid; grid-template-columns: 1fr 430px; gap: 42px; align-items: center; }
.contact-section > * { max-width: 1180px; }
.contact-copy { justify-self: end; width: min(710px, 100%); }
.contact-copy .eyebrow { color: #dff7ff; }
.contact-copy h2 { font-size: clamp(34px, 4vw, 56px); line-height: 1.03; margin: 12px 0; letter-spacing: -.04em; }
.contact-copy p { font-size: 19px; color: rgba(255,255,255,.88); }
.contact-form { width: min(430px, 100%); background: #fff; color: var(--ink); border-radius: 24px; padding: 26px; box-shadow: var(--shadow); display: grid; gap: 14px; }
.contact-form label { font-weight: 900; font-size: 14px; }
.contact-form input, .contact-form textarea { width: 100%; margin-top: 7px; border: 1px solid #d8e2ec; background: #f7fafc; border-radius: 12px; padding: 14px; font: inherit; outline: none; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(6,167,229,.12); }

.site-footer { background: #07090d; color: #fff; padding: 56px 20px 90px; }
.footer-grid { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 38px; }
.footer-logo { width: 135px; border-radius: 16px; background: #fff; padding: 5px; margin-bottom: 14px; }
.site-footer p, .site-footer li { color: rgba(255,255,255,.76); }
.site-footer ul { padding: 0; margin: 0; list-style: none; display: grid; gap: 8px; }
.site-footer h3 { margin: 0 0 14px; }
.footer-bottom { max-width: 1180px; margin: 34px auto 0; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.56); font-size: 14px; }
.sticky-cta { position: fixed; bottom: 0; left: 0; right: 0; display: none; grid-template-columns: 1fr 1fr; z-index: 60; box-shadow: 0 -10px 25px rgba(0,0,0,.16); }
.sticky-cta a { color: #fff; font-weight: 1000; text-align: center; padding: 14px 10px; background: var(--blue); }
.sticky-cta a:nth-child(2) { background: #111; }

@media (max-width: 980px) {
  .nav-wrap { grid-template-columns: auto auto; justify-content: space-between; }
  .site-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: #fff; flex-direction: column; align-items: flex-start; gap: 0; padding: 10px 20px 20px; box-shadow: 0 20px 35px rgba(0,0,0,.12); }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 13px 0; width: 100%; border-bottom: 1px solid var(--line); }
  .header-actions { display: none; }
  .menu-toggle { display: block; }
  .hero-inner { grid-template-columns: 1fr; padding-top: 60px; }
  .hero-card { min-height: 360px; }
  .cleaning-panel { height: 330px; }
  .trust-strip { grid-template-columns: repeat(2, 1fr); }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .split-section { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-section { grid-template-columns: 1fr; }
  .contact-copy { justify-self: center; }
  .contact-form { justify-self: center; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  body { padding-bottom: 54px; }
  .hide-small { display: none; }
  .top-inner { justify-content: center; gap: 14px; flex-wrap: wrap; font-size: 12px; }
  .nav-wrap { padding: 10px 16px; }
  .brand { min-width: 0; }
  .brand img { width: 56px; height: 56px; }
  .brand strong { font-size: 18px; }
  .brand span { font-size: 12px; }
  .hero { min-height: auto; }
  .hero-inner { padding: 42px 16px; }
  .hero p { font-size: 16px; }
  .hero-bullets { grid-template-columns: 1fr; }
  .cta-row .btn { width: 100%; }
  .hero-card { padding: 12px; border-radius: 20px; min-height: 280px; }
  .cleaning-panel { height: 270px; border-radius: 16px; }
  .house-line { left: 26px; right: 20px; bottom: 48px; height: 150px; }
  .house-line:before { top: -55px; height: 55px; }
  .window-grid { left: 54px; right: 45px; bottom: 82px; height: 96px; gap: 6px; }
  .pole { left: 120px; bottom: 52px; height: 220px; }
  .brush { right: 52px; top: 52px; width: 72px; height: 28px; }
  .brush:after { right: -32px; height: 26px; width: 34px; }
  .hero-card-badge { left: 22px; right: 22px; bottom: 24px; padding: 14px; }
  .trust-strip { grid-template-columns: 1fr; }
  .trust-item { padding: 20px; border-bottom: 1px solid rgba(255,255,255,.18); border-right: 0; }
  .section { padding: 54px 16px; }
  .section-heading { margin-bottom: 26px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .split-section { padding: 56px 16px; }
  .areas-grid { grid-template-columns: 1fr; }
  .review-grid { grid-template-columns: 1fr; }
  .contact-section { padding: 56px 16px; }
  .contact-buttons .btn { width: 100%; }
  .sticky-cta { display: grid; }
}

/* Real work photo updates */
.hero-work-card {
  position: relative;
  min-height: 520px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.18);
  background: #111;
}
.hero-work-main {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.05) contrast(1.04);
}
.hero-work-card:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,.76));
}
.hero-work-caption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  background: rgba(255,255,255,.94);
  color: var(--ink);
  padding: 18px 20px;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0,0,0,.25);
}
.hero-work-caption strong { display: block; font-size: 20px; }
.hero-work-caption span { display: block; color: var(--muted); font-weight: 700; }
.service-grid-with-images .service-card {
  padding: 0;
  overflow: hidden;
}
.service-card-image {
  width: 100%;
  height: 140px;
  object-fit: cover;
  object-position: center;
}
.service-grid-with-images .service-icon {
  margin: -27px 0 0 20px;
  position: relative;
  z-index: 2;
  background: #fff;
  box-shadow: 0 10px 22px rgba(0,0,0,.14);
}
.service-grid-with-images .service-card h3,
.service-grid-with-images .service-card p {
  padding-left: 22px;
  padding-right: 22px;
}
.service-grid-with-images .service-card p {
  padding-bottom: 24px;
}
.service-grid-with-images .service-card-dark {
  padding: 24px;
}
.service-grid-with-images .service-card-dark .service-icon { margin: 0; }
.service-grid-with-images .service-card-dark h3,
.service-grid-with-images .service-card-dark p { padding-left: 0; padding-right: 0; }
.split-card-photo { padding: 0; text-align: left; }
.split-card-photo:before { display: none; }
.split-card-photo img {
  width: 100%;
  height: 310px;
  object-fit: cover;
  border-radius: 28px 28px 0 0;
  padding: 0;
  margin: 0;
  background: none;
}
.split-card-photo h3,
.split-card-photo p { padding-left: 30px; padding-right: 30px; }
.split-card-photo h3 { padding-top: 24px; }
.split-card-photo p { padding-bottom: 30px; }
.gallery-section { background: #fff; }
.gallery-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gallery-item {
  position: relative;
  display: block;
  min-height: 220px;
  border-radius: 18px;
  overflow: hidden;
  background: #111;
  box-shadow: 0 12px 34px rgba(0,0,0,.08);
}
.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform .22s ease;
}
.gallery-item:hover img { transform: scale(1.045); }
.gallery-item span {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  background: rgba(0,0,0,.72);
  color: #fff;
  padding: 9px 12px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 900;
}
@media (max-width: 980px) {
  .hero-work-card, .hero-work-main { min-height: 430px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .hero-work-card, .hero-work-main { min-height: 320px; border-radius: 20px; }
  .hero-work-caption { left: 14px; right: 14px; bottom: 14px; padding: 14px; }
  .service-card-image { height: 180px; }
  .split-card-photo img { height: 240px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item, .gallery-item img { min-height: 240px; height: 240px; }
}

/* CTA/contact section polish */
.contact-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(6,167,229,.34), transparent 34%),
    radial-gradient(circle at 85% 78%, rgba(6,167,229,.18), transparent 34%),
    linear-gradient(135deg, #05080d 0%, #0b1621 48%, #052a3e 100%);
  color: #fff;
  padding: 78px 20px;
  display: grid;
  grid-template-columns: minmax(0, 690px) minmax(340px, 430px);
  justify-content: center;
  gap: 34px;
  align-items: stretch;
}
.contact-section:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: .45;
  pointer-events: none;
}
.contact-section:after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -140px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(6,167,229,.18);
  filter: blur(14px);
  pointer-events: none;
}
.contact-section > * {
  position: relative;
  z-index: 1;
}
.contact-copy {
  justify-self: stretch;
  width: 100%;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 28px;
  padding: clamp(28px, 4vw, 46px);
  box-shadow: 0 24px 60px rgba(0,0,0,.24);
  backdrop-filter: blur(10px);
}
.contact-copy .eyebrow {
  color: #7ce1ff;
}
.contact-copy h2 {
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.03;
  margin: 12px 0 14px;
  letter-spacing: -.045em;
  max-width: 720px;
}
.contact-copy p {
  font-size: 19px;
  color: rgba(255,255,255,.84);
  max-width: 650px;
  margin: 0 0 22px;
}
.contact-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 26px;
}
.contact-points span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.14);
  font-weight: 900;
  font-size: 13px;
}
.contact-points span:before {
  content: "✓";
  color: #fff;
  background: var(--blue);
  width: 19px;
  height: 19px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}
.contact-buttons {
  gap: 14px;
}
.contact-section .contact-buttons .btn {
  min-width: 170px;
  border-radius: 14px;
  box-shadow: none;
  border-width: 2px;
}
.contact-section .btn-primary {
  background: linear-gradient(135deg, #10b6f2, #027bb5);
  color: #fff;
  border-color: rgba(255,255,255,.12);
}
.contact-section .btn-whatsapp {
  background: #0d1117;
  color: #fff;
  border-color: rgba(255,255,255,.22);
}
.contact-section .btn-whatsapp:before {
  content: "☏";
  margin-right: 8px;
}
.contact-section .btn-outline-light {
  background: rgba(255,255,255,.98);
  color: #08111b;
  border-color: rgba(255,255,255,.4);
}
.contact-section .contact-form {
  justify-self: stretch;
  width: 100%;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 24px 60px rgba(0,0,0,.22);
}
@media (max-width: 980px) {
  .contact-section {
    grid-template-columns: 1fr;
  }
  .contact-copy,
  .contact-form {
    max-width: 760px;
    justify-self: center;
  }
}
@media (max-width: 640px) {
  .contact-section {
    padding: 52px 16px;
  }
  .contact-copy {
    padding: 26px 20px;
    border-radius: 22px;
  }
  .contact-buttons .btn,
  .contact-section .contact-buttons .btn {
    width: 100%;
    min-width: 0;
  }
}
