/* ===== Connect Afya Corporate Site ===== */

:root {
  --brand-blue: #2B7CB6;
  --brand-blue-dark: #1E5F8E;
  --brand-blue-light: #3A93D4;
  --brand-green: #8DC63F;
  --color-text: #1a1a2e;
  --color-text-secondary: #555770;
  --color-text-light: #8a8ca5;
  --color-bg: #ffffff;
  --color-bg-warm: #fafbfe;
  --color-bg-cool: #f0f4f8;
  --color-bg-dark: #0F2A3E;
  --color-border: #e2e8f0;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --container: 1080px;
  --radius: 12px;
  --shadow: 0 1px 3px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 25px rgba(0,0,0,0.1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--color-text);
  line-height: 1.7;
  font-size: 16px;
  background: var(--color-bg);
}

a { color: var(--brand-blue); text-decoration: none; }
a:hover { color: var(--brand-blue-dark); }

img { max-width: 100%; height: auto; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Header ===== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
}

.site-header__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.site-header__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--color-text);
}

.site-header__logo strong {
  font-size: 18px;
  font-weight: 700;
}

.site-header__logo small {
  display: block;
  font-size: 11px;
  color: var(--color-text-secondary);
  font-weight: 400;
}

.site-nav { display: flex; align-items: center; gap: 4px; }
.site-nav a {
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-secondary);
  border-radius: 8px;
  transition: all 0.2s;
}
.site-nav a:hover, .site-nav a.active {
  color: var(--brand-blue);
  background: rgba(43,124,182,0.06);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.mobile-toggle svg { width: 24px; height: 24px; stroke: var(--color-text); }

@media (max-width: 768px) {
  .site-nav { display: none; }
  .mobile-toggle { display: block; }
  .site-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--color-border);
    padding: 16px 24px;
    box-shadow: var(--shadow-md);
  }
}

/* ===== Hero ===== */

.hero {
  background: linear-gradient(135deg, var(--color-bg-dark) 0%, #1a3a52 100%);
  color: #fff;
  padding: 80px 0 72px;
}

.hero h1 {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 16px;
}

.hero p {
  font-size: 17px;
  line-height: 1.8;
  opacity: 0.85;
  max-width: 640px;
}

.hero--with-image {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero--with-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,42,62,0.85) 0%, rgba(26,58,82,0.7) 100%);
  z-index: 1;
}

.hero--with-image .hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

.hero--with-image .container {
  position: relative;
  z-index: 2;
}

.hero--careers.hero--with-image {
  min-height: 50vh;
}

.hero--careers { padding: 64px 0 56px; }
.hero--careers h1 { font-size: 32px; }
.hero--news { padding: 48px 0 40px; }
.hero--news h1 { font-size: 28px; }

@media (max-width: 768px) {
  .hero { padding: 56px 0 48px; }
  .hero--with-image { min-height: 380px; }
  .hero h1 { font-size: 26px; }
  .hero p { font-size: 15px; }
}

/* ===== Sections ===== */

.section {
  padding: 64px 0;
}

.section--alt {
  background: var(--color-bg-warm);
}

.section-title {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 15px;
  color: var(--color-text-secondary);
  margin-bottom: 40px;
}

/* ===== Stats ===== */

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.stat {
  text-align: center;
  padding: 24px 16px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.1);
}

.stat__number {
  font-size: 36px;
  font-weight: 800;
  color: var(--brand-green);
  display: block;
}

.stat__label {
  font-size: 13px;
  opacity: 0.7;
  margin-top: 4px;
}

@media (max-width: 768px) {
  .stats { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .stat__number { font-size: 28px; }
}

/* ===== Cards ===== */

.card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.card-grid--3 { grid-template-columns: repeat(3, 1fr); }

@media (max-width: 768px) {
  .card-grid, .card-grid--3 { grid-template-columns: 1fr; }
}

.card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 28px;
  transition: box-shadow 0.2s, transform 0.2s;
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.card__icon {
  width: 64px;
  height: 64px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 22px;
  overflow: hidden;
}

.card__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card__icon--blue { background: #e0f2fe; }
.card__icon--green { background: #d1fae5; }
.card__icon--amber { background: #fef3c7; }
.card__icon--purple { background: #ede9fe; }

.card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.card p {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

/* ===== Position cards (careers) ===== */

.position {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 20px;
}

.position__badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.position__badge--intern {
  background: #e0f2fe;
  color: var(--brand-blue);
}

.position__badge--probono {
  background: #d1fae5;
  color: #059669;
}

.position h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.position ul {
  list-style: none;
  margin-bottom: 12px;
}

.position li {
  font-size: 14px;
  color: var(--color-text-secondary);
  padding: 3px 0;
  padding-left: 20px;
  position: relative;
}

.position li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-blue);
}

.position__target {
  font-size: 13px;
  color: var(--brand-blue);
  font-weight: 500;
  border-top: 1px solid var(--color-border);
  padding-top: 12px;
  margin-top: 12px;
}

/* ===== Table ===== */

.table-wrap {
  overflow-x: auto;
  margin: 24px 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

th {
  background: var(--color-bg-cool);
  font-weight: 600;
  text-align: left;
  padding: 12px 16px;
  border-bottom: 2px solid var(--color-border);
}

td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text-secondary);
}

/* ===== FAQ ===== */

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-item summary {
  padding: 16px 20px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::after {
  content: '+';
  font-size: 20px;
  color: var(--color-text-light);
  transition: transform 0.2s;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item[open] {
  border-color: var(--brand-blue);
  box-shadow: var(--shadow);
}

.faq-answer {
  padding: 0 20px 16px;
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

/* ===== News list ===== */

.news-item {
  display: block;
  padding: 20px 0;
  border-bottom: 1px solid var(--color-border);
  text-decoration: none;
  color: var(--color-text);
  transition: background 0.15s;
}

.news-item:hover {
  background: var(--color-bg-warm);
  margin: 0 -16px;
  padding: 20px 16px;
  border-radius: 8px;
}

.news-item__date {
  font-size: 13px;
  color: var(--color-text-light);
  margin-bottom: 4px;
}

.news-item__title {
  font-size: 16px;
  font-weight: 600;
}

.news-item__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 4px;
  background: #e0f2fe;
  color: var(--brand-blue);
  margin-left: 8px;
  vertical-align: middle;
}

/* ===== Article ===== */

.article {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 24px;
}

.article h1 {
  font-size: 26px;
  font-weight: 800;
  line-height: 1.4;
  margin-bottom: 16px;
}

.article__meta {
  font-size: 13px;
  color: var(--color-text-light);
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--color-border);
}

.article h2 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--color-border);
}

.article h2:first-of-type { border-top: none; padding-top: 0; }

.article h3 {
  font-size: 16px;
  font-weight: 700;
  margin-top: 24px;
  margin-bottom: 8px;
}

.article p {
  margin-bottom: 16px;
  font-size: 15px;
  color: var(--color-text-secondary);
}

.article ul {
  margin: 12px 0 16px 20px;
  font-size: 15px;
  color: var(--color-text-secondary);
}

.article li { margin-bottom: 6px; }

.article__company {
  margin-top: 48px;
  padding: 24px;
  background: var(--color-bg-cool);
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--color-text-secondary);
}

.article__company h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text);
  margin-top: 0;
}

.article__company p { font-size: 14px; margin-bottom: 4px; }

/* ===== Steps ===== */

.steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 24px 0;
}

.step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.step__num {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  background: var(--brand-blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}

.step__text h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 2px;
}

.step__text p {
  font-size: 13px;
  color: var(--color-text-secondary);
}

/* ===== Buttons ===== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

.btn--primary {
  background: var(--brand-blue);
  color: #fff;
}
.btn--primary:hover {
  background: var(--brand-blue-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--outline {
  background: transparent;
  color: var(--brand-blue);
  border: 2px solid var(--brand-blue);
}
.btn--outline:hover {
  background: var(--brand-blue);
  color: #fff;
}

.btn--white {
  background: #fff;
  color: var(--brand-blue);
}
.btn--white:hover {
  background: #f0f4f8;
  color: var(--brand-blue-dark);
}

.btn--sm { padding: 10px 20px; font-size: 13px; }
.btn--block { width: 100%; }

/* ===== Cost box ===== */

.cost-box {
  background: var(--color-bg-cool);
  border-radius: var(--radius);
  padding: 24px;
  margin: 24px 0;
}

.cost-box h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 12px;
}

.cost-box ul {
  list-style: none;
  font-size: 14px;
  color: var(--color-text-secondary);
}

.cost-box li {
  padding: 4px 0;
  padding-left: 20px;
  position: relative;
}

.cost-box li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 6px;
  height: 2px;
  background: var(--brand-blue);
}

/* ===== Footer ===== */

.site-footer {
  background: var(--color-bg-dark);
  color: rgba(255,255,255,0.7);
  padding: 48px 0 24px;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 32px;
}

@media (max-width: 768px) {
  .site-footer__grid { grid-template-columns: 1fr; gap: 24px; }
}

.site-footer h4 {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.site-footer p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 4px;
}

.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 8px; }
.site-footer a { color: rgba(255,255,255,0.7); }
.site-footer a:hover { color: #fff; }

.site-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

/* ===== Timeline ===== */

.timeline {
  position: relative;
  padding-left: 28px;
  margin: 24px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--color-border);
}

.timeline-item {
  position: relative;
  margin-bottom: 24px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -24px;
  top: 6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--brand-blue);
  border: 2px solid #fff;
}

.timeline-item__year {
  font-size: 13px;
  font-weight: 700;
  color: var(--brand-blue);
}

.timeline-item__text {
  font-size: 14px;
  color: var(--color-text-secondary);
}

/* ===== CTA Section ===== */

.cta-section {
  background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-blue-dark) 100%);
  color: #fff;
  padding: 56px 0;
  text-align: center;
}

.cta-section h2 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 12px;
}

.cta-section p {
  font-size: 15px;
  opacity: 0.85;
  margin-bottom: 24px;
}

/* ===== Photo grid ===== */

.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 40px 0;
  border-radius: var(--radius);
  overflow: hidden;
}

.photo-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s;
}

.photo-grid img:hover {
  transform: scale(1.05);
}

.photo-grid--2col {
  grid-template-columns: repeat(2, 1fr);
}

.photo-grid--2col img {
  height: 260px;
}

@media (max-width: 768px) {
  .photo-grid { grid-template-columns: repeat(2, 1fr); }
  .photo-grid img { height: 150px; }
  .photo-grid--2col { grid-template-columns: 1fr; }
  .photo-grid--2col img { height: 200px; }
}

/* ===== Image + text section ===== */

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

.split--reverse { direction: rtl; }
.split--reverse > * { direction: ltr; }

.split__image {
  border-radius: var(--radius);
  overflow: hidden;
}

.split__image img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
}

.split__text h2 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 16px;
}

.split__text p {
  font-size: 15px;
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: 12px;
}

@media (max-width: 768px) {
  .split, .split--reverse { grid-template-columns: 1fr; gap: 24px; }
  .split__image img { height: 240px; }
}

/* ===== Partner logos ===== */

.partner-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 32px 0;
  opacity: 0.6;
}

.partner-logos span {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-secondary);
  white-space: nowrap;
}

/* ===== Utilities ===== */

.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mb-24 { margin-bottom: 24px; }
.mb-40 { margin-bottom: 40px; }

/* ===== Scroll animations ===== */

.fade-in {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* stagger children */
.stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.stagger.visible > *:nth-child(1) { transition-delay: 0s; }
.stagger.visible > *:nth-child(2) { transition-delay: 0.1s; }
.stagger.visible > *:nth-child(3) { transition-delay: 0.2s; }
.stagger.visible > *:nth-child(4) { transition-delay: 0.3s; }
.stagger.visible > *:nth-child(5) { transition-delay: 0.35s; }
.stagger.visible > *:nth-child(6) { transition-delay: 0.4s; }
.stagger.visible > *:nth-child(7) { transition-delay: 0.45s; }
.stagger.visible > *:nth-child(8) { transition-delay: 0.5s; }
.stagger.visible > *:nth-child(9) { transition-delay: 0.55s; }

.stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Mission / Vision block (HAKKI style) ===== */

.statement {
  padding: 80px 0;
  text-align: center;
}

.statement__label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--brand-blue);
  margin-bottom: 16px;
}

.statement__text {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.6;
  max-width: 720px;
  margin: 0 auto;
}

.statement__body {
  font-size: 15px;
  color: var(--color-text-secondary);
  line-height: 1.9;
  max-width: 640px;
  margin: 24px auto 0;
}

@media (max-width: 768px) {
  .statement { padding: 56px 0; }
  .statement__text { font-size: 22px; }
}

/* ===== Team grid ===== */

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.team-card {
  text-align: center;
}

.team-card__photo {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 12px;
  filter: grayscale(20%);
  transition: filter 0.3s, transform 0.3s;
}

.team-card:hover .team-card__photo {
  filter: grayscale(0%);
  transform: scale(1.03);
}

.team-card__name {
  font-size: 15px;
  font-weight: 700;
}

.team-card__role {
  font-size: 13px;
  color: var(--color-text-secondary);
}

@media (max-width: 768px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}

/* ===== Full-width image banner ===== */

.image-banner {
  position: relative;
  height: 320px;
  overflow: hidden;
}

.image-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-banner--overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,42,62,0.7), rgba(43,124,182,0.5));
  z-index: 1;
}

.image-banner__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
  color: #fff;
  text-align: center;
  padding: 24px;
}

.image-banner__content h2 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 16px;
}

/* ===== Accreditation / Awards badges ===== */

.badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 24px 0;
}

.badge {
  text-align: center;
}

.badge__icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--color-bg-cool);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 8px;
  font-size: 28px;
  font-weight: 800;
  color: var(--brand-blue);
}

.badge__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-secondary);
}

/* ===== Card hover zoom ===== */

.card {
  overflow: hidden;
}

.card__icon {
  overflow: hidden;
  transition: transform 0.3s;
}

.card:hover .card__icon img {
  transform: scale(1.1);
}

.card__icon img {
  transition: transform 0.4s ease;
}

/* ===== Partner logos enhanced ===== */

.partner-logos {
  opacity: 1;
}

.partner-logos span {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text-light);
  padding: 12px 24px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: #fff;
  transition: all 0.2s;
}

.partner-logos span:hover {
  color: var(--brand-blue);
  border-color: var(--brand-blue);
  box-shadow: var(--shadow);
}

/* ===== Contact Form ===== */

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 14px;
  border: 1px solid #d0d5dd;
  border-radius: 6px;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  background: #fff;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 3px rgba(43, 124, 182, 0.1);
}

.form-group textarea {
  resize: vertical;
}
