/* =====================================================
   SKY TELECOM — Slate + Muted Teal (refined)
   Palette: #0F766E primary, #115E59 dark, #64748B slate
   ===================================================== */

:root {
  /* Brand */
  --primary: #0f766e;
  --primary-dark: #115e59;
  --primary-darker: #0c4a44;
  --primary-soft: #ecfdf5;
  --primary-100: #d1fae5;
  --primary-200: #99f6e4;
  --accent: #64748b;
  --accent-dark: #475569;
  --accent-soft: #f1f5f9;

  /* Neutrals */
  --bg: #f8fafc;
  --bg-deep: #f1f5f9;
  --surface: #ffffff;
  --surface-alt: #f8fafc;
  --text: #0f172a;
  --text-soft: #1e293b;
  --muted: #475569;
  --muted-2: #64748b;
  --line: #e2e8f0;
  --line-soft: #eef2f6;

  /* Effects — softer, more restrained */
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.04), 0 1px 2px rgba(15, 23, 42, 0.03);
  --shadow: 0 8px 24px -10px rgba(15, 23, 42, 0.12), 0 4px 10px -4px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 18px 40px -18px rgba(15, 23, 42, 0.18), 0 8px 16px -8px rgba(15, 23, 42, 0.08);

  --gradient-primary: linear-gradient(135deg, #0f766e 0%, #115e59 100%);
  --gradient-dark: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);

  --radius-sm: 12px;
  --radius: 16px;
  --radius-lg: 20px;
  --radius-xl: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", sans-serif;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

/* =====================================================
   Header
   ===================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(12px);
  background: rgba(248, 250, 252, 0.85);
  border-bottom: 1px solid var(--line);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
}

main {
  display: block;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  position: relative;
  width: 38px;
  height: 28px;
}

.dot {
  position: absolute;
  border-radius: 50%;
  background: var(--primary);
}

.dot-a {
  width: 12px;
  height: 12px;
  top: 8px;
  left: 0;
}

.dot-b {
  width: 7px;
  height: 7px;
  top: 1px;
  left: 11px;
  background: var(--accent);
}

.dot-c {
  width: 13px;
  height: 13px;
  top: 8px;
  right: 7px;
  background: var(--primary-dark);
}

.dot-d {
  width: 7px;
  height: 7px;
  top: 0;
  right: 0;
  background: var(--accent);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 0.95;
}

.brand-copy strong,
.brand-copy small,
h1,
h2,
h3 {
  font-family: "Barlow Condensed", sans-serif;
}

.brand-copy strong {
  font-size: 34px;
  letter-spacing: 0.14em;
  color: var(--text);
}

.brand-copy small {
  font-size: 11px;
  letter-spacing: 0.4em;
  color: var(--muted);
  font-weight: 600;
}

.top-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  flex-wrap: wrap;
  justify-content: center;
}

.top-nav a {
  transition: color 0.2s ease;
}

.top-nav a:hover {
  color: var(--primary);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* =====================================================
   Buttons
   ===================================================== */
.cta-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 22px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.cta-button {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05);
  gap: 8px;
}

.btn-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  display: block;
}

.cta-button:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(15, 118, 110, 0.25);
}

.secondary-button {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
}

.secondary-button:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-1px);
}

.nav-cta {
  white-space: nowrap;
  flex-shrink: 0;
}

.service-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 9px 18px;
  border-radius: 8px;
  background: transparent;
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  border: 1px solid var(--line);
  transition: all 0.15s ease;
}

.service-button:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* =====================================================
   Mobile menu
   ===================================================== */
.mobile-menu {
  display: none;
  position: relative;
}

.mobile-menu summary {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  list-style: none;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu summary span {
  width: 18px;
  height: 2px;
  margin: 0 auto;
  border-radius: 999px;
  background: var(--text);
}

.mobile-nav {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 220px;
  display: grid;
  gap: 2px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow);
  z-index: 50;
}

.mobile-nav a {
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
}

.mobile-nav a:hover {
  background: var(--surface-alt);
  color: var(--primary);
}

/* =====================================================
   Hero
   ===================================================== */
.hero-section {
  position: relative;
  padding: 84px 0 72px;
  overflow: hidden;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 420px);
  gap: 56px;
  align-items: center;
}

.hero-visual {
  position: relative;
}

.eyebrow,
.section-tag,
.card-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 20px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid var(--primary-100);
}

.eyebrow::before,
.section-tag::before,
.card-label::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--text);
  letter-spacing: -0.015em;
}

.hero-copy h1 {
  font-size: clamp(44px, 5vw, 64px);
  line-height: 1.02;
  margin-bottom: 22px;
  font-weight: 700;
}

.accent-word {
  color: var(--primary);
}

.hero-text,
.section-copy p,
.section-heading p,
.service-card p,
.highlight-card p,
.faq-item p,
.footer-brand-block p,
.footer-column p,
.footer-bottom p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.hero-text {
  max-width: 58ch;
  margin: 0 0 30px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 34px;
}

.hero-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.hero-points li {
  position: relative;
  padding-left: 28px;
  color: var(--text-soft);
  font-size: 15px;
  font-weight: 500;
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--primary-soft);
  border: 1.5px solid var(--primary);
}

.hero-points li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
}

/* Hero card */
.hero-card {
  padding: 0;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  position: relative;
}

.hero-card-inner {
  padding: 32px;
}

.hero-card h2 {
  font-size: 32px;
  line-height: 1.05;
  margin-bottom: 12px;
  color: var(--text);
}

.hero-card p {
  margin: 0 0 22px;
  color: var(--muted);
  line-height: 1.65;
  font-size: 15px;
}

.full-width {
  width: 100%;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line-soft);
}

.trust-strip span {
  padding: 6px 12px;
  border-radius: 6px;
  background: var(--surface-alt);
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  border: 1px solid var(--line-soft);
}

.floating-elements {
  position: absolute;
  top: -54px;
  left: -16px;
  right: -16px;
  bottom: -54px;
  pointer-events: none;
}

.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  animation: float 6s ease-in-out infinite;
  max-width: 200px;
}

.card-icon {
  font-size: 20px;
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--primary-soft);
}

.card-content h4 {
  margin: 0 0 2px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  font-family: "Inter", sans-serif;
}

.card-content p {
  margin: 0;
  font-size: 11px;
  color: var(--muted);
}

/* All three cards sit outside the hero-card perimeter
   so they never overlap its body text. */
.card-1 {
  top: 0;
  right: 0;
  animation-delay: 0s;
}

.card-2 {
  top: 0;
  left: 0;
  animation-delay: 2s;
}

.card-3 {
  bottom: 0;
  right: 0;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* =====================================================
   Metrics
   ===================================================== */
.metrics-section {
  padding: 16px 0 48px;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.metric-card {
  position: relative;
  padding: 28px 24px;
  text-align: left;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.metric-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: var(--primary-100);
}

.metric-icon {
  font-size: 24px;
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--primary-soft);
  border: 1px solid var(--primary-100);
}

.metric-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 22px;
  font-family: "Barlow Condensed", sans-serif;
  color: var(--text);
  letter-spacing: -0.01em;
}

.metric-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

/* =====================================================
   Section commons
   ===================================================== */
.about-section,
.services-section,
.highlight-section,
.faq-section,
.funding-section,
.disclaimer-section {
  padding: 72px 0;
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  gap: 48px;
  align-items: center;
}

.section-copy h2,
.section-heading h2,
.highlight-card h2,
.highlight-card h3 {
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1.05;
  margin-bottom: 18px;
  letter-spacing: -0.015em;
}

.image-panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  min-height: 460px;
  box-shadow: var(--shadow);
  align-self: stretch;
}

.image-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services-section {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 40px;
}

.narrow {
  max-width: 580px;
}

/* =====================================================
   Service cards
   ===================================================== */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.service-card {
  position: relative;
  padding: 28px;
  text-align: left;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--primary-100);
}

.service-icon {
  font-size: 22px;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--primary-soft);
  border: 1px solid var(--primary-100);
}

.service-card h3,
.faq-item h3,
.footer-column h3 {
  font-size: 22px;
  line-height: 1.15;
  margin-bottom: 10px;
  color: var(--text);
}

.service-card p,
.faq-item p {
  margin: 0 0 18px;
}

.text-link {
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
}

.text-link:hover {
  color: var(--primary-dark);
}

/* =====================================================
   Highlight section
   ===================================================== */
.highlight-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 400px);
  gap: 28px;
}

.highlight-card {
  padding: 36px;
}

.highlight-card.soft {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.highlight-features {
  margin-top: 28px;
  display: grid;
  gap: 12px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  background: var(--surface-alt);
  border: 1px solid var(--line-soft);
}

.feature-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: var(--primary);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  margin-top: 2px;
}

.feature-text {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.feature-text strong {
  color: var(--text);
  font-weight: 600;
}

.accent-card {
  position: relative;
  border-radius: var(--radius-lg);
  background: var(--gradient-dark);
  color: #fff;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.accent-card h3 {
  color: #fff;
  font-size: 28px;
  line-height: 1.1;
  margin-bottom: 12px;
}

.accent-card p {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 22px;
}

.accent-card .cta-button {
  background: #fff;
  color: var(--text);
}

.accent-card .cta-button:hover {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 12px rgba(15, 118, 110, 0.35);
}

.accent-divider {
  height: 1px;
  margin: 28px 0 24px;
  background: rgba(255, 255, 255, 0.1);
}

.accent-contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: grid;
  gap: 18px;
}

.accent-contact-list li {
  display: grid;
  gap: 2px;
}

.accent-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.accent-contact-list strong {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  font-family: "Inter", sans-serif;
  letter-spacing: -0.01em;
}

.accent-meta {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
}

.accent-trust {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.accent-trust li {
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
  font-weight: 500;
}

/* =====================================================
   FAQ
   ===================================================== */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.faq-item {
  position: relative;
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: var(--primary-100);
}

.faq-item h3 {
  font-size: 20px;
  line-height: 1.2;
}

/* =====================================================
   Disclaimer
   ===================================================== */
.disclaimer-card {
  padding: 36px 40px;
  background: var(--surface-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.disclaimer-card h2 {
  font-size: clamp(22px, 2.4vw, 26px);
  line-height: 1.15;
  margin-bottom: 16px;
}

.disclaimer-card p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
  margin: 0 0 8px;
}

.disclaimer-card p:last-child {
  margin: 0;
}

/* =====================================================
   Footer
   ===================================================== */
.site-footer {
  padding: 60px 0 32px;
  background: var(--text);
  color: rgba(255, 255, 255, 0.7);
  border-top: 1px solid var(--text-soft);
}

.site-footer .brand-copy strong {
  color: #fff;
}

.site-footer .brand-copy small {
  color: rgba(255, 255, 255, 0.6);
}

.site-footer .dot {
  background: rgba(255, 255, 255, 0.85);
}

.site-footer .dot-b,
.site-footer .dot-d {
  background: var(--primary-200);
}

.site-footer .dot-c {
  background: var(--primary);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(180px, 1fr));
  gap: 40px;
  align-items: start;
}

.footer-brand-block p {
  color: rgba(255, 255, 255, 0.6);
  margin-top: 14px;
  max-width: 38ch;
}

.footer-brand {
  margin-bottom: 6px;
}

.footer-column {
  display: grid;
  gap: 10px;
}

.footer-column h3 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.footer-column a,
.footer-column p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  transition: color 0.15s ease;
}

.footer-column a:hover {
  color: #fff;
}

/* =====================================================
   Policy pages
   ===================================================== */
.policy-hero {
  padding: 72px 0 24px;
}

.policy-hero h1 {
  font-size: clamp(40px, 5vw, 60px);
  line-height: 1.02;
  margin-bottom: 14px;
}

.policy-intro {
  max-width: 72ch;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.policy-section {
  padding: 12px 0 80px;
}

.policy-card {
  padding: 40px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.policy-block + .policy-block {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--line-soft);
}

.policy-block h2 {
  font-size: 28px;
  line-height: 1.1;
  margin-bottom: 14px;
  color: var(--text);
}

.policy-block p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.policy-list {
  margin: 0 0 14px;
  padding-left: 22px;
  color: var(--muted);
}

.policy-list li {
  margin-bottom: 8px;
  line-height: 1.7;
}

/* =====================================================
   Sticky call
   ===================================================== */
.sticky-call-button {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  box-shadow: 0 8px 20px rgba(15, 118, 110, 0.28);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.sticky-call-button:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(15, 118, 110, 0.36);
}

/* =====================================================
   Responsive
   ===================================================== */
@media (max-width: 960px) {
  .top-nav {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .hero-grid,
  .split-grid,
  .highlight-grid,
  .footer-grid,
  .funding-grid,
  .faq-grid,
  .metrics-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .image-panel {
    min-height: 340px;
  }

  .floating-elements {
    display: none;
  }

  .about-section,
  .services-section,
  .highlight-section,
  .faq-section,
  .disclaimer-section {
    padding: 56px 0;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .nav-row {
    flex-wrap: nowrap;
    align-items: center;
  }

  .hero-section {
    padding: 48px 0;
  }

  .brand-copy strong {
    font-size: 26px;
  }

  .brand-copy small {
    font-size: 10px;
  }

  .header-actions {
    margin-left: auto;
  }

  .nav-cta {
    padding: 10px 16px;
    min-height: 42px;
    font-size: 12px;
  }

  .hero-copy h1,
  .policy-hero h1 {
    font-size: 38px;
  }

  .section-copy h2,
  .section-heading h2,
  .highlight-card h2,
  .highlight-card h3 {
    font-size: 30px;
  }

  .hero-card h2 {
    font-size: 28px;
  }

  .service-card,
  .faq-item,
  .metric-card,
  .highlight-card,
  .hero-card-inner,
  .policy-card,
  .disclaimer-card {
    padding: 22px;
  }

  .sticky-call-button {
    right: 12px;
    left: 12px;
    bottom: 12px;
    min-height: 50px;
    padding: 14px 18px;
  }
}
