/*!******************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/Spark/assets/styles/static.scss ***!
  \******************************************************************************************************************************/
@charset "UTF-8";
.page-head {
  text-align: center;
  padding: 26px 24px 10px;
}

.page-head h1 {
  font-family: var(--f-display);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 4px;
}

.page-updated {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--slate-400);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.legal-wrap {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr) 210px;
  gap: 32px;
  align-items: start;
  padding-bottom: 56px;
  max-width: 1200px;
  margin: 0 auto;
}

.legal-toc {
  position: sticky;
  top: 94px;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(15, 23, 42, 0.12) transparent;
  padding-right: 4px;
}

.legal-toc-title {
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--slate-400);
  margin-bottom: 8px;
}

.legal-toc a {
  display: block;
  padding: 4px 12px;
  border-left: 2px solid rgba(15, 23, 42, 0.08);
  font-size: 0.8rem;
  color: var(--slate-500);
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s;
  line-height: 1.45;
}

.legal-toc a:hover {
  color: var(--navy);
}

.legal-toc a.active {
  color: var(--orange);
  border-left-color: var(--orange);
  font-weight: 600;
}

.legal-card {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 16px;
  padding: 28px 34px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04), 0 2px 8px rgba(15, 23, 42, 0.04);
}

.legal-card section {
  scroll-margin-top: 92px;
}

.legal-card h2 {
  font-family: var(--f-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin: 24px 0 8px;
  letter-spacing: -0.01em;
}

.legal-card section:first-of-type h2 {
  margin-top: 0;
}

.legal-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--slate-900);
  margin: 14px 0 6px;
}

.legal-card p {
  font-size: 0.9rem;
  color: var(--slate-700);
  margin-bottom: 8px;
  line-height: 1.6;
}

.legal-card ul {
  padding-left: 18px;
  margin-bottom: 8px;
}

.legal-card li {
  font-size: 0.9rem;
  color: var(--slate-700);
  margin-bottom: 4px;
  line-height: 1.55;
}

.legal-card strong {
  color: var(--navy);
  font-weight: 700;
}

.legal-content a, .legal-card a {
  color: var(--orange);
  text-decoration: none;
  font-weight: 600;
}

.legal-content a:hover, .legal-card a:hover {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .legal-wrap {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .legal-toc {
    display: none;
  }
  .legal-card {
    padding: 22px 18px;
  }
}
/* FAQ accordion */
.faq-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px 56px;
}

.faq-intro {
  text-align: center;
  font-size: 0.9rem;
  color: var(--slate-500);
  max-width: 560px;
  margin: 0 auto 22px;
  line-height: 1.6;
}

.faq-item {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 12px;
  margin-bottom: 6px;
  overflow: hidden;
  transition: box-shadow 0.35s, border-color 0.35s;
}

.faq-item.open {
  border-color: rgba(255, 107, 53, 0.28);
  box-shadow: 0 6px 24px rgba(15, 23, 42, 0.06);
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 13px 16px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--f-body);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  transition: color 0.2s;
}

.faq-item.open .faq-q, .faq-q:hover {
  color: var(--orange);
}

.faq-chev {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  color: var(--slate-500);
}

.faq-chev svg {
  width: 12px;
  height: 12px;
}

.faq-item.open .faq-chev {
  transform: rotate(180deg);
  background: var(--orange);
  color: #fff;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-a-inner {
  padding: 0 48px 14px 16px;
  font-size: 0.9rem;
  color: var(--slate-700);
  line-height: 1.6;
}

.faq-a-inner strong {
  color: var(--navy);
}

.faq-a-inner a {
  color: var(--orange);
  text-decoration: none;
  font-weight: 600;
}

.faq-a-inner a:hover {
  text-decoration: underline;
}

/* Payment methods */
.pay-wrap {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px 56px;
}

.pay-coverflow {
  position: relative;
  height: 178px;
  margin-bottom: 4px;
  perspective: 1100px;
}

.pay-card {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 220px;
  height: 158px;
  margin: -79px 0 0 -110px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 16px;
  box-shadow: 0 6px 24px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s, box-shadow 0.45s;
  will-change: transform;
  backface-visibility: hidden;
}

.pay-card.active {
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.16);
  cursor: default;
}

.pay-logo {
  width: 104px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 23, 42, 0.03);
  border: 1px solid rgba(15, 23, 42, 0.04);
  border-radius: 10px;
}

.pay-info {
  text-align: center;
  padding: 0 14px;
}

.pay-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
}

.pay-note {
  font-size: 0.7rem;
  color: var(--slate-400);
  line-height: 1.35;
  margin-top: 2px;
}

.pay-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 200;
  color: var(--slate-500);
  transition: all 0.25s;
  padding: 0;
}

.pay-arrow:hover {
  color: var(--navy);
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.12);
}

.pay-arrow svg {
  width: 15px;
  height: 15px;
}

.pay-arrow-l {
  left: 4px;
}

.pay-arrow-r {
  right: 4px;
}

.pay-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-bottom: 14px;
}

.pay-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.12);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, transform 0.3s;
}

.pay-dot.active {
  background: var(--orange);
  transform: scale(1.35);
}

@media (max-width: 600px) {
  .pay-coverflow {
    height: 166px;
    perspective: 900px;
  }
  .pay-card {
    width: 200px;
    height: 150px;
    margin: -75px 0 0 -100px;
    gap: 9px;
    border-radius: 15px;
  }
  .pay-logo {
    width: 96px;
    height: 58px;
    border-radius: 9px;
  }
  .pay-name {
    font-size: 0.82rem;
  }
  .pay-note {
    font-size: 0.68rem;
    margin-top: 1px;
  }
  .pay-info {
    padding: 0 12px;
  }
  .pay-arrow {
    display: none;
  }
  .pay-dots {
    gap: 6px;
    margin-bottom: 14px;
  }
}
.pay-disclaimer {
  max-width: 760px;
  margin: 0 auto 16px;
  text-align: center;
  font-size: 0.9rem;
  color: var(--slate-500);
}

.pay-wrap .faq-intro {
  max-width: 760px;
  text-align: center;
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--slate-500);
  margin: 0 auto 8px;
}

.pay-wrap .legal-card {
  max-width: 760px;
  margin: 0 auto;
}

.sec-head-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 24px 0 8px;
}

.sec-head-row h2 {
  margin: 0;
}

.pci-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 11px;
  border-radius: 100px;
  background: rgba(5, 150, 105, 0.08);
  border: 1px solid rgba(5, 150, 105, 0.22);
  color: #059669;
  font-size: 0.72rem;
  font-weight: 700;
}

.pci-badge svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .pci-badge {
    position: relative;
    width: 34px;
    height: 34px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
  }
  .pci-badge svg {
    width: 16px;
    height: 16px;
  }
  .pci-badge .pci-text {
    display: none;
  }
  .pci-badge.show .pci-text {
    display: block;
    position: absolute;
    top: 42px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(15, 23, 42, 0.92);
    color: #fff;
    padding: 7px 12px;
    border-radius: 8px;
    font-size: 0.72rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.25);
    z-index: 20;
  }
  .pci-badge.show .pci-text::before {
    content: "";
    position: absolute;
    top: -4px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 10px;
    height: 10px;
    background: rgba(15, 23, 42, 0.92);
    border-radius: 2px;
  }
}
/* ===== MEDIA PAGE ===== */
.media-header {
  padding: 48px 0 40px;
  text-align: center;
}

.media-header h1 {
  font-family: var(--f-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.media-header p {
  font-size: 1rem;
  color: var(--slate-500);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.65;
}

@media (max-width: 600px) {
  .media-header {
    padding: 32px 0 24px;
  }
  .media-header h1 {
    font-size: 1.5rem;
  }
  .media-header p {
    font-size: 0.88rem;
  }
}
.media-link {
  color: var(--orange);
  font-weight: 600;
  transition: color 0.2s;
  text-decoration: underline;
  text-decoration-color: rgba(255, 107, 53, 0.3);
  text-underline-offset: 2px;
}

.media-link:hover {
  text-decoration-color: var(--orange);
}

/* ===== LEGAL CONTENT ===== */
.legal-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 0 64px;
}

.legal-content p {
  font-size: 0.95rem;
  color: var(--slate-600);
  line-height: 1.8;
  margin-bottom: 20px;
}

.legal-content p:last-child {
  margin-bottom: 0;
}

.faq-page .faq-hero {
  padding: 28px 0 48px;
  background: linear-gradient(180deg, #0F172A 0%, #162032 60%, #1a2640 100%);
  position: relative;
  overflow: hidden;
  margin: 0;
  width: 100%;
}

.faq-page .faq-hero::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.08), transparent 70%);
}

.faq-page .faq-hero-inner {
  text-align: center;
  position: relative;
  z-index: 2;
}

.faq-page .faq-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(255, 107, 53, 0.08);
  border: 1px solid rgba(255, 107, 53, 0.15);
  border-radius: var(--r-full);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--orange-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.faq-page .faq-hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange-light);
  box-shadow: 0 0 6px rgba(255, 107, 53, 0.5);
}

.faq-page .faq-hero h1 {
  font-family: var(--f-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: #F1F5F9;
  line-height: 1.1;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.faq-page .faq-hero h1 span {
  color: var(--orange-light);
}

.faq-page .faq-hero p {
  font-size: clamp(0.88rem, 1.3vw, 0.98rem);
  color: rgba(241, 245, 249, 0.4);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.faq-page .faq-section {
  padding: 48px 0 64px;
}

.faq-page .faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-page .faq-item {
  background: linear-gradient(175deg, rgba(255, 255, 255, 0.96), rgba(252, 252, 254, 0.94) 30%, rgba(250, 250, 252, 0.95) 60%, rgba(255, 255, 255, 0.96));
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04), 0 2px 6px rgba(15, 23, 42, 0.04);
  transition: box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-page .faq-item:hover {
  box-shadow: 0 2px 4px rgba(15, 23, 42, 0.03), 0 6px 16px rgba(15, 23, 42, 0.06);
}

.faq-page .faq-item.open {
  border-color: rgba(255, 107, 53, 0.12);
}

.faq-page .faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  transition: background 0.2s;
}

.faq-page .faq-question:hover {
  background: rgba(255, 107, 53, 0.02);
}

.faq-page .faq-question h3 {
  font-family: var(--f-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
  flex: 1;
}

.faq-page .faq-item.open .faq-question h3 {
  color: var(--orange);
}

.faq-page .faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--slate-400);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), color 0.3s;
}

.faq-page .faq-item.open .faq-chevron {
  transform: rotate(180deg);
  color: var(--orange);
}

.faq-page .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.22, 1, 0.36, 1), padding 0.4s;
}

.faq-page .faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 0.88rem;
  color: var(--slate-500);
  line-height: 1.75;
}

.faq-page .faq-answer-inner strong {
  color: var(--navy);
  font-weight: 600;
}

.faq-page .faq-answer-inner a {
  color: var(--orange);
  font-weight: 600;
  text-decoration: none;
}

.faq-page .faq-answer-inner a:hover {
  text-decoration: underline;
}

.faq-page .faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-page .faq-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-right: 14px;
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid rgba(255, 107, 53, 0.18);
  color: rgba(255, 107, 53, 0.75);
}

.faq-page .faq-cta {
  max-width: 780px;
  margin: 48px auto 0;
  background: var(--navy);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.faq-page .faq-cta::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.1), transparent 70%);
  pointer-events: none;
}

.faq-page .faq-cta h3 {
  font-family: var(--f-display);
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 8px;
  position: relative;
  z-index: 2;
}

.faq-page .faq-cta p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

.faq-page .faq-cta a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--r-full);
  background: var(--orange);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  font-family: var(--f-body);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1), background 0.4s, color 0.4s;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 16px rgba(255, 107, 53, 0.25);
}

.faq-page .faq-cta a:hover {
  background: #fff;
  color: var(--orange);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255, 107, 53, 0.35);
}

@media (max-width: 768px) {
  .faq-page .faq-question {
    padding: 16px 18px;
  }
  .faq-page .faq-answer-inner {
    padding: 0 18px 16px;
  }
  .faq-page .faq-question h3 {
    font-size: 0.9rem;
  }
  .faq-page .faq-icon {
    width: 32px;
    height: 32px;
    margin-right: 10px;
    font-size: 14px;
  }
  .faq-page .faq-cta {
    padding: 32px 24px;
    margin-top: 36px;
  }
}
.about-page .about-hero {
  padding: 28px 0 48px;
  background: linear-gradient(180deg, #0F172A 0%, #162032 60%, #1a2640 100%);
  position: relative;
  overflow: hidden;
  margin: 0;
  width: 100%;
}

.about-page .about-hero::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.08), transparent 70%);
}

.about-page .about-hero-inner {
  text-align: center;
  position: relative;
  z-index: 2;
}

.about-page .about-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(255, 107, 53, 0.08);
  border: 1px solid rgba(255, 107, 53, 0.15);
  border-radius: var(--r-full);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--orange-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.about-page .about-hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange-light);
  box-shadow: 0 0 6px rgba(255, 107, 53, 0.5);
}

.about-page .about-hero h1 {
  font-family: var(--f-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: #F1F5F9;
  line-height: 1.1;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.about-page .about-hero h1 span {
  color: var(--orange-light);
}

.about-page .about-hero p {
  font-size: clamp(0.88rem, 1.3vw, 0.98rem);
  color: rgba(241, 245, 249, 0.4);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

.about-page .section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-top: 56px;
}

.about-page .section-head h2 {
  font-family: var(--f-display);
  font-size: 1.65rem;
  color: var(--navy);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.about-page .section-head .sub {
  font-family: var(--f-body);
  font-size: 0.85rem;
  color: var(--slate-400);
  font-weight: 500;
  margin-top: 4px;
}

.about-page .story-section {
  padding: 0 0 20px;
}

.about-page .story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-page .story-visual {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.about-page .story-visual-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-page .story-visual:hover .story-visual-img {
  transform: scale(1.05);
}

.about-page .story-visual-emoji {
  font-size: 120px;
  filter: drop-shadow(0 12px 32px rgba(0, 0, 0, 0.08));
  animation: floatEmoji 5s ease-in-out infinite;
}

.about-page .story-visual-accent {
  position: absolute;
  font-size: 48px;
  opacity: 0.12;
  filter: blur(1px);
}

.about-page .story-text h3 {
  font-family: var(--f-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 16px;
}

.about-page .story-text p {
  font-size: 0.92rem;
  color: var(--slate-500);
  line-height: 1.75;
  margin-bottom: 16px;
}

.about-page .story-text p strong {
  color: var(--navy);
  font-weight: 600;
}

.about-page .story-highlight {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--r-full);
  background: var(--orange-50);
  border: 1px solid rgba(255, 107, 53, 0.12);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--orange);
  margin-top: 8px;
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1), background 0.3s;
  animation: highlightPulse 3s ease-in-out infinite;
}

.about-page .story-highlight:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.18);
  background: rgba(255, 107, 53, 0.1);
}

.about-page .story-highlight::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.12), transparent);
  animation: highlightShimmer 4s ease-in-out infinite;
}

.about-page .story-highlight svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  animation: highlightCheck 3s ease-in-out infinite;
}

@media (max-width: 768px) {
  .about-page .story-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .about-page .story-visual {
    aspect-ratio: 16/10;
  }
  .about-page .story-text h3 {
    font-size: 1.5rem;
  }
  .about-page .story-text {
    text-align: center;
  }
  .about-page .story-highlight {
    margin-left: auto;
    margin-right: auto;
  }
}
.about-page .stats-bar {
  padding: 48px 0;
  margin-top: 16px;
}

.about-page .stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.about-page .stat-card {
  background: linear-gradient(175deg, rgba(255, 255, 255, 0.96), rgba(252, 252, 254, 0.94) 30%, rgba(250, 250, 252, 0.95) 60%, rgba(255, 255, 255, 0.96));
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 20px;
  padding: 32px 28px;
  text-align: center;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04), 0 2px 6px rgba(15, 23, 42, 0.04);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-page .stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 12px rgba(15, 23, 42, 0.04), 0 12px 28px rgba(15, 23, 42, 0.06);
}

.about-page .stat-number {
  font-family: var(--f-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 6px;
}

.about-page .stat-number span {
  color: var(--orange);
}

.about-page .stat-label {
  font-size: 0.82rem;
  color: var(--slate-400);
  font-weight: 500;
}

@media (max-width: 768px) {
  .about-page .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .about-page .stat-card {
    padding: 24px 18px;
  }
  .about-page .stat-number {
    font-size: 1.8rem;
  }
}
.about-page .testimonial-section {
  padding: 0 0 20px;
}

.about-page .testimonial-block {
  background: var(--navy);
  border-radius: 24px;
  padding: 64px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-page .testimonial-block::before {
  content: "";
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(255, 107, 53, 0.1), transparent 70%);
  pointer-events: none;
}

.about-page .testimonial-block::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
}

.about-page .testimonial-quote-icon {
  font-size: 72px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 16px;
  display: block;
  line-height: 1;
  font-family: var(--f-display);
  font-style: italic;
}

.about-page .testimonial-text {
  font-family: var(--f-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
  max-width: 680px;
  margin: 0 auto 28px;
  font-style: italic;
}

.about-page .testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.about-page .testimonial-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 107, 53, 0.15);
  border: 2px solid rgba(255, 107, 53, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  overflow: hidden;
}

.about-page .testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-page .testimonial-meta {
  text-align: left;
}

.about-page .testimonial-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
}

.about-page .testimonial-role {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 768px) {
  .about-page .testimonial-block {
    padding: 48px 28px;
  }
  .about-page .testimonial-text {
    font-size: 1.2rem;
  }
}
.about-page .cta-card {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border-radius: 24px;
  padding: 64px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-page .cta-card h2 {
  font-family: var(--f-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.2;
}

.about-page .cta-card p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.about-page .cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  border-radius: var(--r-full);
  font-size: 15px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  font-family: var(--f-body);
  background: #fff;
  color: var(--orange);
  letter-spacing: 0.01em;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-page .cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
  .about-page .cta-card {
    padding: 48px 28px;
  }
  .about-page .cta-card h2 {
    font-size: 1.7rem;
  }
}
.about-page .fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-page .fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes floatEmoji {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-12px) rotate(3deg);
  }
}
@keyframes highlightPulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.08);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(255, 107, 53, 0);
  }
}
@keyframes highlightShimmer {
  0% {
    left: -100%;
  }
  40%, 100% {
    left: 150%;
  }
}
@keyframes highlightCheck {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
}
.about-page .values-section {
  padding: 0 0 20px;
}

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

.about-page .value-card {
  background: linear-gradient(175deg, rgba(255, 255, 255, 0.96), rgba(252, 252, 254, 0.94) 30%, rgba(250, 250, 252, 0.95) 60%, rgba(255, 255, 255, 0.96));
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 20px;
  padding: 36px 28px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04), 0 2px 6px rgba(15, 23, 42, 0.04);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-page .value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(15, 23, 42, 0.04), 0 12px 28px rgba(15, 23, 42, 0.06);
}

.about-page .value-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.about-page .value-icon svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.about-page .value-card h3 {
  font-family: var(--f-serif);
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.about-page .value-card p {
  font-size: 0.82rem;
  color: var(--slate-400);
  line-height: 1.65;
}

@media (max-width: 1024px) {
  .about-page .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 540px) {
  .about-page .values-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 14px;
    padding: 8px 0 20px;
    margin: -8px 0 -20px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
  }
  .about-page .values-grid::-webkit-scrollbar {
    display: none;
  }
  .about-page .values-grid.dragging {
    cursor: grabbing;
    scroll-snap-type: none;
  }
  .about-page .values-grid .value-card {
    min-width: 260px;
    max-width: 75vw;
    flex-shrink: 0;
    scroll-snap-align: start;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08), 0 1px 2px rgba(15, 23, 42, 0.06);
  }
  .about-page .values-grid .value-card:hover {
    transform: none;
  }
}
.about-page .vi-orange {
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid rgba(255, 107, 53, 0.15);
}

.about-page .vi-purple {
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.15);
}

.about-page .vi-green {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.15);
}

.about-page .vi-blue {
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.15);
}

.about-page .vi-amber {
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.15);
}

.about-page .vi-rose {
  background: rgba(225, 29, 72, 0.1);
  border: 1px solid rgba(225, 29, 72, 0.15);
}

.about-page .timeline-section {
  padding: 0 0 20px;
}

.about-page .timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.about-page .timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 24px;
  width: 2px;
  background: linear-gradient(to bottom, var(--orange), rgba(255, 107, 53, 0.15));
}

.about-page .timeline-item {
  display: flex;
  gap: 24px;
  padding-bottom: 40px;
  position: relative;
}

.about-page .timeline-item:last-child {
  padding-bottom: 0;
}

.about-page .timeline-dot {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(175deg, rgba(255, 255, 255, 0.96), rgba(250, 250, 252, 0.95));
  border: 2px solid var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(255, 107, 53, 0.15);
}

.about-page .timeline-dot svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.about-page .timeline-content {
  padding-top: 8px;
  flex: 1;
}

.about-page .timeline-year {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
  margin-bottom: 4px;
}

.about-page .timeline-content h4 {
  font-family: var(--f-serif);
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 6px;
}

.about-page .timeline-content p {
  font-size: 0.82rem;
  color: var(--slate-400);
  line-height: 1.65;
}

@media (max-width: 540px) {
  .about-page .timeline::before {
    left: 19px;
  }
  .about-page .timeline-dot {
    width: 40px;
    height: 40px;
  }
  .about-page .timeline-dot svg {
    width: 18px;
    height: 18px;
  }
  .about-page .timeline-item {
    gap: 16px;
  }
}
.about-page .cta-section {
  padding: 56px 0 64px;
}

.media-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-bottom: 64px;
  max-width: 760px;
  margin: 0 auto;
  width: 100%;
}

.media-card {
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  padding: 36px 40px;
  display: flex;
  align-items: flex-start;
  gap: 28px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04), 0 2px 6px rgba(15, 23, 42, 0.04);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  max-width: 100%;
  box-sizing: border-box;
}

.media-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 2px 4px rgba(15, 23, 42, 0.03), 0 6px 12px rgba(15, 23, 42, 0.04), 0 12px 28px rgba(15, 23, 42, 0.06);
}

@media (max-width: 600px) {
  .media-card {
    flex-direction: column;
    padding: 24px 20px;
    gap: 14px;
    align-items: center;
    text-align: center;
    border-radius: 16px;
  }
  .media-card p {
    text-align: left;
    font-size: 0.85rem;
  }
  .media-card h2 {
    font-size: 1.1rem;
  }
  .media-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }
  .media-icon svg {
    width: 20px;
    height: 20px;
  }
  .media-cta {
    padding: 36px 20px;
    border-radius: 18px;
    margin: 0 0 48px;
  }
  .media-cta h2 {
    font-size: 1.3rem;
  }
  .media-cta p {
    font-size: 0.82rem;
  }
  .media-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 12px;
    background: var(--orange);
    color: #fff;
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-family: var(--f-body);
    transition: all 0.3s;
    position: relative;
    z-index: 1;
  }
  .media-grid {
    padding-bottom: 40px;
    gap: 16px;
  }
}
.media-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.media-icon svg {
  width: 24px;
  height: 24px;
}

.media-card-body {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.media-card h2 {
  font-family: var(--f-display);
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.media-card p {
  font-size: 0.9rem;
  color: var(--slate-500);
  line-height: 1.7;
  margin-bottom: 16px;
  overflow-wrap: break-word;
}

/* ===== CTA ===== */
.media-cta {
  background: var(--navy);
  border-radius: 24px;
  padding: 56px;
  text-align: center;
  margin: 0 auto 64px;
  position: relative;
  overflow: hidden;
  max-width: 760px;
  box-sizing: border-box;
}

.media-cta h2 {
  font-family: var(--f-display);
  font-size: 1.65rem;
  color: #fff;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.media-cta p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  max-width: 460px;
  margin: 0 auto 24px;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.media-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 12px;
  background: var(--orange);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  font-family: var(--f-body);
  transition: all 0.3s;
  position: relative;
  z-index: 1;
}

.media-cta-btn:hover {
  background: #fff;
  color: var(--orange);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.2);
}

.media-cta-btn svg {
  width: 16px;
  height: 16px;
}

@media (max-width: 768px) {
  .media-cta {
    padding: 40px 24px;
  }
  .media-cta h2 {
    font-size: 1.3rem;
  }
}
.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

@media (max-width: 540px) {
  .cf-row {
    grid-template-columns: 1fr;
  }
}
.cf-field {
  margin-bottom: 14px;
}

.cf-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--slate-700);
  margin-bottom: 6px;
}

.cf-input, .cf-select, .cf-textarea {
  width: 100%;
  padding: 11px 14px;
  border-radius: 10px;
  border: 1.5px solid var(--slate-200);
  background: #fff;
  font-family: var(--f-body);
  font-size: 0.9rem;
  color: var(--navy);
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.cf-input:focus, .cf-select:focus, .cf-textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--orange-100);
}

.cf-input::placeholder, .cf-textarea::placeholder {
  color: var(--slate-400);
}

.cf-select {
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2712%27 height=%2712%27 fill=%27none%27 stroke=%27%2364748B%27 stroke-width=%272%27%3E%3Cpath d=%27M2 4l4 4 4-4%27/%3E%3C/svg%3E") no-repeat right 12px center;
}

.cf-textarea {
  min-height: 130px;
  resize: vertical;
}

.cf-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: 10px;
  font-size: 0.92rem;
  font-weight: 700;
  background: var(--orange);
  color: #fff;
  border: none;
  cursor: pointer;
  font-family: var(--f-body);
  box-shadow: 0 4px 20px rgba(255, 107, 53, 0.25);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s, background 0.3s, color 0.3s;
}

.cf-submit:hover {
  background: #fff;
  color: var(--orange);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255, 107, 53, 0.35);
}

.cf-success {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 10px;
  background: rgba(5, 150, 105, 0.08);
  border: 1px solid rgba(5, 150, 105, 0.22);
  color: #059669;
  font-size: 0.88rem;
  font-weight: 600;
  margin-top: 14px;
}

.cf-success.show {
  display: flex;
}

/* ===== CONTACT — premium split card ===== */
.contact-shell {
  max-width: 1000px;
  margin: 0 auto;
  padding: 52px 24px 68px;
}

/* Info pane — branded navy */
.cc-info {
  position: relative;
  isolation: isolate;
  padding: 46px 40px;
  color: #fff;
  background: linear-gradient(158deg, #1B2A47 0%, #0F172A 62%);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.cc-info::before {
  content: "";
  position: absolute;
  top: -130px;
  right: -90px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.24), transparent 66%);
  pointer-events: none;
  z-index: -1;
}

.cc-info::after {
  content: "";
  position: absolute;
  bottom: -150px;
  left: -110px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.15), transparent 68%);
  pointer-events: none;
  z-index: -1;
}

.cc-title {
  font-family: var(--f-display);
  font-size: clamp(1.95rem, 3vw, 2.4rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.cc-intro {
  font-size: 0.92rem;
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: auto;
  max-width: 40ch;
}

.cc-intro strong {
  color: #fff;
  font-weight: 600;
}

.cc-methods {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.cc-method {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 12px 14px;
  margin: 0 -14px;
  border-radius: 14px;
  transition: background 0.25s;
}

.cc-method:hover {
  background: rgba(255, 255, 255, 0.05);
}

.cc-method-ico {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 107, 53, 0.15);
  border: 1px solid rgba(255, 107, 53, 0.3);
  color: var(--orange-light);
}

.cc-method-ico svg {
  width: 19px;
  height: 19px;
}

.cc-method-txt {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  padding-top: 1px;
}

.cc-method-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}

.cc-method-sub {
  font-size: 0.8rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.58);
}

.cc-method-sub a {
  color: var(--orange-light);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 143, 101, 0.35);
  transition: border-color 0.2s;
}

.cc-method-sub a:hover {
  border-color: var(--orange-light);
}

/* Form pane — white */
.cc-form-pane {
  padding: 46px 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cc-form-pane .contact-form {
  background: none;
  border: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

.contact-form .cf-textarea {
  min-height: 172px;
}

.contact-form .cf-submit {
  width: 100%;
  justify-content: center;
  margin-top: 4px;
}

@media (max-width: 840px) {
  .cc-info {
    padding: 38px 30px;
  }
  .cc-form-pane {
    padding: 34px 30px;
  }
}
@media (max-width: 480px) {
  .cc-info {
    padding: 32px 22px;
  }
  .cc-form-pane {
    padding: 30px 22px;
  }
  .cc-title {
    margin-bottom: 12px;
  }
}
.contact-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: stretch;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04), 0 24px 60px -18px rgba(15, 23, 42, 0.22);
}

@media (max-width: 840px) {
  .contact-card {
    grid-template-columns: 1fr;
  }
}

/*# sourceMappingURL=static.css.map*/