@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Instrument+Sans:ital,opsz,wght@0,14..32,400..700;1,14..32,400..700&display=swap');

/* Figma hiringdesign/contact.html */
.figma-contact-root {
  --blue: #1a6ef5;
  --blue-dark: #1255cc;
  --teal: #12a58d;
  --teal-dark: #089997;
  --navy: #0d2a6e;
  --white: #ffffff;
  --off: #f5f7fb;
  --gray: #6b7280;
  --light: #e8edf7;
  --text: #111827;
  --border: #e4e9f2;
  --red: #ef4444;
  --gap: 6%;
  display: block;
  width: 100%;
  font-family: "Instrument Sans", system-ui, sans-serif;
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.figma-contact-root h1,
.figma-contact-root h2,
.figma-contact-root h3,
.figma-contact-root h4,
.figma-contact-root h5,
.figma-contact-root button {
  font-family: "DM Sans", sans-serif;
}

.figma-contact-root .hero {
  background:
    linear-gradient(135deg, #0d2a6e 0%, #1a6ef5f2 55%, #0abfbc 100%),
    url(/figma-home/images/bg/hero-bg-.png);
  padding: 90px 6% 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background-position: bottom;
  background-size: cover;
  background-repeat: no-repeat;
}

.figma-contact-root .hero::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.figma-contact-root .hero::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
}

.figma-contact-root .hero-inner {
  position: relative;
  z-index: 1;
}

.figma-contact-root .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 20px;
  padding: 0.3rem 0.9rem;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.figma-contact-root .hero-badge::before {
  content: none !important;
  display: none !important;
}

.figma-contact-root .hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -1px;
  margin: 0 0 1.1rem;
}

.figma-contact-root .hero h1 .accent {
  background: linear-gradient(90deg, #12a58d 0%, #12a58c9c 35%, #76cbec 60%, #fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.figma-contact-root .hero p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.78);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.figma-contact-root .breadcrumb {
  padding: 14px var(--gap);
  background: var(--off);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--gray);
}

.figma-contact-root .breadcrumb a {
  text-decoration: none;
  color: var(--gray);
  transition: color 0.2s;
}

.figma-contact-root .breadcrumb a:hover {
  color: var(--blue);
}

.figma-contact-root .breadcrumb svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}

.figma-contact-root .contact-surface {
  background: var(--white);
  padding: 0 var(--gap);
}

.figma-contact-root .contact-cards {
  padding: 52px 0 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  max-width: 1060px;
  margin: 0 auto;
  width: 100%;
}

.figma-contact-root .contact-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.2s;
}

.figma-contact-root .contact-card:hover {
  border-color: var(--teal);
  box-shadow: 0 8px 28px rgba(18, 165, 141, 0.1);
  transform: translateY(-3px);
}

.figma-contact-root .cc-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.figma-contact-root .cc-icon svg {
  width: 26px;
  height: 26px;
}

.figma-contact-root .contact-card h4 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 0.35rem;
}

.figma-contact-root .contact-card p {
  font-size: 0.8rem;
  color: var(--gray);
  line-height: 1.55;
  margin: 0 0 0.7rem;
}

.figma-contact-root .contact-card a {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--blue);
  text-decoration: none;
  font-family: "DM Sans", sans-serif;
}

.figma-contact-root .contact-card a:hover {
  color: var(--teal-dark);
}

.figma-contact-root .contact-main {
  padding: 48px 0 72px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 3rem;
  align-items: start;
  max-width: 1060px;
  margin: 0 auto;
  width: 100%;
}

.figma-contact-root .contact-form-wrap {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 18px;
  padding: 2.2rem;
}

.figma-contact-root .contact-form-wrap h2 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 0.4rem;
  letter-spacing: -0.3px;
}

.figma-contact-root .contact-form-wrap .subtitle {
  font-size: 0.88rem;
  color: var(--gray);
  margin: 0 0 1.8rem;
}

.figma-contact-root .form-group {
  margin-bottom: 1.1rem;
}

.figma-contact-root .form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.42rem;
}

.figma-contact-root .req {
  color: var(--red);
  margin-left: 2px;
}

.figma-contact-root .input-bare,
.figma-contact-root .select-wrap select,
.figma-contact-root .phone-wrap input {
  width: 100%;
  height: 48px;
  padding: 0 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 0.88rem;
  color: var(--text);
  outline: none;
  font-family: "Instrument Sans", sans-serif;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}

.figma-contact-root .input-bare:focus,
.figma-contact-root .select-wrap select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(18, 165, 141, 0.1);
}

.figma-contact-root .input-bare::placeholder {
  color: #b0b9c8;
}

.figma-contact-root .textarea-bare {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 0.88rem;
  color: var(--text);
  outline: none;
  font-family: "Instrument Sans", sans-serif;
  background: #fff;
  resize: vertical;
  min-height: 130px;
  transition: border-color 0.2s, box-shadow 0.2s;
  line-height: 1.6;
  box-sizing: border-box;
}

.figma-contact-root .textarea-bare:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(18, 165, 141, 0.1);
}

.figma-contact-root .textarea-bare::placeholder {
  color: #b0b9c8;
}

.figma-contact-root .form-row,
.figma-contact-root .form-rows {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.figma-contact-root .select-wrap {
  position: relative;
}

.figma-contact-root .select-wrap select {
  padding: 0 36px 0 14px;
  appearance: none;
  cursor: pointer;
}

.figma-contact-root .select-wrap::after {
  content: "";
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
}

.figma-contact-root .phone-wrap {
  display: flex;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  height: 48px;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.figma-contact-root .phone-wrap:focus-within {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(18, 165, 141, 0.1);
}

.figma-contact-root .phone-flag {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 12px;
  border-right: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--text);
  white-space: nowrap;
  background: #fff;
}

.figma-contact-root .phone-wrap input {
  flex: 1;
  border: none;
  box-shadow: none !important;
  height: auto;
}

.figma-contact-root .phone-wrap input::placeholder {
  color: #b0b9c8;
}

.figma-contact-root .btn-submit {
  width: 100%;
  height: 52px;
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  font-family: "DM Sans", sans-serif;
  margin-top: 0.5rem;
  box-shadow: 0 4px 16px rgba(26, 110, 245, 0.3);
  transition: opacity 0.2s, transform 0.15s, box-shadow 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.figma-contact-root .btn-submit:hover {
  opacity: 0.92;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(26, 110, 245, 0.35);
}

.figma-contact-root .btn-submit svg {
  width: 18px;
  height: 18px;
}

.figma-contact-root .form-note {
  font-size: 0.76rem;
  color: var(--gray);
  text-align: center;
  margin: 0.75rem 0 0;
}

.figma-contact-root .success-state {
  display: none;
  text-align: center;
  padding: 2rem;
}

.figma-contact-root .success-state.is-visible {
  display: block;
}

.figma-contact-root .success-state .success-icon {
  width: 64px;
  height: 64px;
  background: #f0fdf4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.figma-contact-root .success-state .success-icon svg {
  width: 32px;
  height: 32px;
  color: #16a34a;
}

.figma-contact-root .success-state h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 0.5rem;
}

.figma-contact-root .success-state p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.6;
  margin: 0;
}

.figma-contact-root #the-form.is-hidden {
  display: none;
}

.figma-contact-root .contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.figma-contact-root .info-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 1.4rem;
}

.figma-contact-root .info-card h3 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.figma-contact-root .info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.figma-contact-root .info-item:last-child {
  margin-bottom: 0;
}

.figma-contact-root .info-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.figma-contact-root .info-icon svg {
  width: 18px;
  height: 18px;
}

.figma-contact-root .info-item h4 {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 0.15rem;
}

.figma-contact-root .info-item p,
.figma-contact-root .info-item a {
  font-size: 0.82rem;
  color: var(--gray);
  text-decoration: none;
  line-height: 1.5;
}

.figma-contact-root .info-item a:hover {
  color: var(--blue);
}

.figma-contact-root .social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.figma-contact-root .social-link {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  border: 1.5px solid var(--border);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  text-decoration: none;
  transition: all 0.2s;
}

.figma-contact-root .social-link:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}

.figma-contact-root .social-link svg {
  width: 16px;
  height: 16px;
}

.figma-contact-root .quick-support-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.figma-contact-root .quick-support-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.83rem;
  color: var(--blue);
  text-decoration: none;
  padding: 0.5rem;
  border-radius: 8px;
  transition: background 0.15s;
}

.figma-contact-root .quick-support-link:hover {
  background: var(--off);
}

.figma-contact-root .quick-support-link svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.figma-contact-root .faq-section {
  padding: 64px var(--gap);
  background: #fff;
}

.figma-contact-root .section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.figma-contact-root .section-header {
  margin-bottom: 0;
}

.figma-contact-root .section-header h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--navy);
  margin: 0 0 0.4rem;
}

.figma-contact-root .section-header p {
  color: var(--gray);
  font-size: 0.92rem;
  margin: 0;
}

.figma-contact-root .faq-list {
  max-width: 1060px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 2rem;
}

.figma-contact-root .faq-item {
  border: 1.5px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.figma-contact-root .faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.2rem;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  font-family: "DM Sans", sans-serif;
  text-align: left;
  gap: 1rem;
  transition: background 0.2s;
}

.figma-contact-root .faq-q:hover {
  background: var(--off);
}

.figma-contact-root .faq-q svg {
  width: 18px;
  height: 18px;
  color: var(--gray);
  flex-shrink: 0;
  transition: transform 0.2s;
}

.figma-contact-root .faq-item.open .faq-q svg {
  transform: rotate(180deg);
}

.figma-contact-root .faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.figma-contact-root .faq-a-inner {
  padding: 0 1.2rem 1rem;
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.7;
}

.figma-contact-root .faq-a-inner a {
  color: var(--blue);
  font-weight: 600;
  text-decoration: none;
}

.figma-contact-root .faq-a-inner a:hover {
  text-decoration: underline;
}

.figma-contact-root .faq-item.open .faq-a {
  max-height: 240px;
}

.figma-contact-root .cta-section {
  background: linear-gradient(135deg, #0d2a6e 0%, #1a6ef5 100%);
  padding: 72px var(--gap);
  text-align: center;
}

.figma-contact-root .cta-section h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
  margin: 0 0 0.7rem;
}

.figma-contact-root .cta-section p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  margin: 0 0 2rem;
}

.figma-contact-root .cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.figma-contact-root .btn-white,
.figma-contact-root .btn-outline-white {
  padding: 0.75rem 1.8rem;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  font-family: "DM Sans", sans-serif;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.figma-contact-root .btn-white {
  background: #fff;
  color: var(--blue);
  border: none;
}

.figma-contact-root .btn-white:hover {
  background: var(--light);
  transform: translateY(-2px);
  color: var(--blue);
}

.figma-contact-root .btn-outline-white {
  background: none;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.figma-contact-root .btn-outline-white:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}
