:root {
  --prio-green: #2f9e4b;
  --prio-green-dark: #1f7a39;
  --prio-green-light: #46c267;
  --prio-orange: #f59b1c;
  --prio-red: #e23931;
  --header-bg: #1b1e26;
  --header-bg-2: #2a2e3a;
  --soft-bg: #f4f6f5;
  --text-dark: #161922;
  --text-muted: #5b616d;
  --text-light: #f4f5f7;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow-sm: 0 4px 14px rgba(20, 22, 28, 0.06);
  --shadow-md: 0 16px 40px rgba(20, 22, 28, 0.12);
  --shadow-lg: 0 30px 70px rgba(20, 22, 28, 0.18);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: #ffffff;
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  -webkit-tap-highlight-color: transparent;
}

::selection {
  background: var(--prio-green);
  color: #fff;
}

.container {
  width: min(1240px, calc(100% - 3rem));
  margin: 0 auto;
}

/* ============ HEADER ============ */
.site-header {
  background: rgba(20, 23, 30, 0.78);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-row {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  transition: transform 0.3s var(--ease);
}

.brand:hover {
  transform: translateY(-1px) scale(1.02);
}

.logo {
  width: 116px;
  height: auto;
}

.menu {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.menu a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  transition: color 0.25s var(--ease), background 0.25s var(--ease);
}

.menu a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.menu a.active {
  color: #fff;
  background: linear-gradient(135deg, var(--prio-green), var(--prio-green-dark));
  box-shadow: 0 6px 18px rgba(47, 158, 75, 0.35);
}

/* ============ HERO ============ */
.hero {
  min-height: 92vh;
  background-image:
    linear-gradient(115deg, rgba(16, 35, 22, 0.82) 0%, rgba(16, 18, 24, 0.55) 55%, rgba(16, 18, 24, 0.35) 100%),
    url('https://images.unsplash.com/photo-1556761175-b413da4baf72?auto=format&fit=crop&w=2400&q=80');
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  width: 620px;
  height: 620px;
  right: -160px;
  top: -200px;
  background: radial-gradient(circle, rgba(47, 158, 75, 0.45), transparent 70%);
  filter: blur(20px);
  pointer-events: none;
}

.hero-overlay {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
  text-align: center;
  padding: 5.5rem 0 3.5rem;
  width: min(1240px, calc(100% - 3rem));
  margin: 0 auto;
}

.hero-content h1 {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  letter-spacing: -0.02em;
  line-height: 1.02;
  animation: rise 0.8s var(--ease) both;
}

.hero-title-white {
  color: #fff;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.prio-word {
  display: inline-block;
  margin-left: 0.7rem;
  font-weight: 800;
}

.prio-word span {
  display: inline-block;
  transition: transform 0.3s var(--ease);
}

.prio-word:hover span {
  transform: translateY(-6px);
}

.prio-word span:nth-child(1) { color: var(--prio-red); }
.prio-word span:nth-child(2) { color: var(--prio-orange); }
.prio-word span:nth-child(3) { color: var(--prio-green-light); }
.prio-word span:nth-child(4) { color: var(--prio-green-light); }

.hero-tagline {
  margin: 1.6rem auto 0;
  max-width: 620px;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  animation: rise 0.8s 0.1s var(--ease) both;
}

.hero-btn {
  margin-top: 2.4rem;
  display: inline-block;
  border: 0;
  color: #fff;
  padding: 1rem 3rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.01em;
  background: linear-gradient(135deg, var(--prio-green-light), var(--prio-green-dark));
  box-shadow: 0 14px 30px rgba(47, 158, 75, 0.4);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  animation: rise 0.8s 0.2s var(--ease) both;
}

.hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 44px rgba(47, 158, 75, 0.55);
}

.hero-panels {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  animation: rise 0.8s 0.3s var(--ease) both;
}

.hero-panels article {
  padding: 2.4rem 1.6rem;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  text-align: center;
  transition: transform 0.35s var(--ease), background 0.35s var(--ease), border-color 0.35s var(--ease);
}

.hero-panels article:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(70, 194, 103, 0.5);
}

.hero-panels h3 {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  color: #fff;
}

.hero-panels p {
  margin: 0.6rem 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.97rem;
}

/* ============ SECTION COMMON ============ */
.section {
  padding: 6rem 0 6.5rem;
}

.section-white {
  background: #ffffff;
}

.section-soft {
  background:
    radial-gradient(900px 500px at 100% 0%, rgba(47, 158, 75, 0.06), transparent 60%),
    var(--soft-bg);
}

.section-head {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-head.compact {
  margin-bottom: 3rem;
}

.section-head h2 {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: clamp(2.1rem, 3.8vw, 3.1rem);
  letter-spacing: -0.02em;
  color: var(--text-dark);
}

.section-head p {
  margin: 1rem auto 0;
  max-width: 700px;
  color: var(--text-muted);
  font-size: 1.08rem;
  line-height: 1.6;
}

.accent {
  color: var(--prio-green);
  position: relative;
}

/* ============ CARDS ============ */
.card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.2rem;
}

.card {
  display: flex;
  flex-direction: column;
}

/* Variant A: stacked card */
.card-stack {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.card-stack:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.card-stack .card-image {
  overflow: hidden;
}

.card-stack .card-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.card-stack:hover .card-image img {
  transform: scale(1.06);
}

/* Variant B: overlapping card */
.card-overlap {
  position: relative;
  padding-bottom: 1.5rem;
}

.card-overlap .card-image.rounded {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.card-overlap .card-image.rounded img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.card-overlap:hover .card-image.rounded img {
  transform: scale(1.06);
}

.card-body {
  padding: 1.8rem 2rem 2rem;
}

.card-body-green {
  background: linear-gradient(150deg, var(--prio-green), var(--prio-green-dark));
  color: #fff;
}

.card-body-green h3 {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.4rem;
}

.card-body-green p {
  margin: 0.8rem 0 0;
  line-height: 1.65;
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.94);
}

.card-body-green.floating {
  margin: -3rem 1.6rem 0;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 1;
  text-align: center;
  transition: transform 0.4s var(--ease);
}

.card-overlap:hover .card-body-green.floating {
  transform: translateY(-6px);
}

/* ============ TESTIMONIALS ============ */
.testimonials {
  min-height: 460px;
  background-image:
    linear-gradient(180deg, rgba(15, 17, 22, 0.7), rgba(15, 17, 22, 0.7)),
    url('https://images.unsplash.com/photo-1521737711867-e3b97375f902?auto=format&fit=crop&w=2400&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  display: flex;
  align-items: center;
  padding: 5rem 0;
}

.testimonials-overlay {
  display: none;
}

.quotes {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  color: #fff;
  text-align: center;
}

.quote-item {
  padding: 2.4rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  transition: transform 0.35s var(--ease), background 0.35s var(--ease);
}

.quote-item:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.11);
}

.stars {
  margin: 0;
  letter-spacing: 0.3em;
  font-size: 1.05rem;
  color: var(--prio-orange);
}

.quote-text {
  margin: 0;
  max-width: 540px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.96);
  font-style: italic;
}

.avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--prio-green-light), var(--prio-green-dark));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-top: 0.4rem;
  box-shadow: 0 8px 20px rgba(47, 158, 75, 0.4);
}

.quote-item .author {
  margin: 0;
  font-weight: 600;
  font-size: 1rem;
}

/* ============ FOOTER ============ */
.site-footer {
  background: linear-gradient(180deg, var(--header-bg), #14161d);
  color: #fff;
  padding: 4.5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 3rem;
}

.footer-col h3 {
  margin: 0 0 1.2rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.3rem;
  color: #fff;
}

.footer-col p {
  margin: 0.3rem 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.97rem;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

.footer-col a:hover {
  color: var(--prio-green-light);
}

.footer-label {
  margin-bottom: 0.9rem !important;
  font-size: 0.95rem;
}

.socials {
  display: flex;
  gap: 0.9rem;
  margin-top: 0.3rem;
}

.socials a {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  line-height: 1;
  text-decoration: none;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease);
}

.socials a:hover {
  transform: translateY(-3px);
  background: var(--prio-green);
  color: #fff;
  border-color: var(--prio-green);
}

.mini-form {
  display: grid;
  gap: 0.8rem;
  max-width: 420px;
}

.mini-form input {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-sm);
  padding: 0.95rem 1.1rem;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}

.mini-form input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.mini-form input:focus {
  border-color: var(--prio-green-light);
  background: rgba(255, 255, 255, 0.1);
}

.mini-form button {
  justify-self: start;
  border: 0;
  background: linear-gradient(135deg, var(--prio-green-light), var(--prio-green-dark));
  color: #fff;
  border-radius: 999px;
  padding: 0.9rem 2.3rem;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(47, 158, 75, 0.35);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.mini-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(47, 158, 75, 0.5);
}

.copyright {
  margin-top: 3rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.copyright p {
  margin: 0;
}

.copyright .credit a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.copyright .credit a:hover {
  color: var(--prio-green);
  border-color: var(--prio-green);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  border: 0;
  clip: rect(0, 0, 0, 0);
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

/* ============ ABOUT PAGE ============ */
.about-hero {
  background: #ffffff;
  padding: 6rem 0 5rem;
}

.about-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-hero-text h1 {
  margin: 0 0 1.5rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--text-dark);
}

.about-hero-text p {
  margin: 0 0 2rem;
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.65;
  max-width: 46ch;
}

.btn-outline {
  display: inline-block;
  padding: 0.85rem 2.4rem;
  border: 1px solid rgba(22, 25, 34, 0.4);
  border-radius: 999px;
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.98rem;
  transition: all 0.25s var(--ease);
  background: transparent;
}

.btn-outline:hover {
  background: var(--prio-green);
  border-color: var(--prio-green);
  color: #fff;
  transform: translateY(-1px);
}

.about-hero-visual {
  position: relative;
}

.about-hero-image {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.about-hero-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.about-hero-badge {
  position: absolute;
  left: -2.2rem;
  bottom: 3.5rem;
  background: var(--prio-green);
  color: #fff;
  padding: 2rem 2.4rem;
  border-radius: 6px;
  max-width: 320px;
  box-shadow: var(--shadow-lg);
}

.about-hero-badge p {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.25;
}

.about-info {
  background: #c8cbd3;
  padding: 5rem 0 6rem;
}

.about-info-title {
  margin: 0 0 3rem;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  color: var(--text-dark);
}

.about-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-info-image {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.about-info-image img {
  width: 100%;
  height: 460px;
  object-fit: cover;
}

.about-info-blocks {
  display: grid;
  gap: 1.8rem;
}

.about-info-blocks article h3 {
  margin: 0 0 0.5rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text-dark);
}

.about-info-blocks article p {
  margin: 0;
  color: #2c3140;
  font-size: 0.96rem;
  line-height: 1.6;
}

/* ============ FOREIGN ENTREPRENEURS PAGE ============ */
.fe-section {
  background: #ffffff;
  padding: 5rem 0 5.5rem;
}

.fe-content {
  max-width: 760px;
  text-align: center;
  padding: 0 1.5rem;
}

.fe-content h1 {
  margin: 0 0 2rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: var(--text-dark);
  text-align: left;
}

.fe-intro {
  margin: 0 0 1.8rem;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.65;
  text-align: left;
}

.fe-links {
  list-style: none;
  padding: 0;
  margin: 0 0 3.5rem;
  display: grid;
  gap: 0.65rem;
  text-align: left;
}

.fe-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: #1d4eb8;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-size: 0.98rem;
  transition: color 0.2s ease;
}

.fe-links a:hover {
  color: var(--prio-green);
}

.fe-links i {
  font-size: 0.95rem;
  color: var(--prio-green);
}

.fe-image-wrap {
  margin-top: 1rem;
}

.fe-image {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.fe-image img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1100px) {
  .hero-panels {
    grid-template-columns: 1fr;
  }

  .card-grid,
  .quotes,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    gap: 2.5rem;
  }

  .testimonials {
    background-attachment: scroll;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(1240px, calc(100% - 1.8rem));
  }

  .nav-row {
    min-height: 72px;
    gap: 1rem;
  }

  .menu {
    gap: 0.2rem;
  }

  .menu a {
    font-size: 0.85rem;
    padding: 0.4rem 0.7rem;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-content {
    padding-top: 3.5rem;
  }

  .section {
    padding: 4rem 0 4.5rem;
  }

  .card-stack .card-image img,
  .card-overlap .card-image.rounded img {
    height: 230px;
  }

  .about-hero {
    padding: 3.5rem 0 3rem;
  }

  .about-hero-image img {
    height: 360px;
  }

  .about-hero-badge {
    left: 1rem;
    bottom: 1rem;
    padding: 1.4rem 1.6rem;
    max-width: 80%;
  }

  .about-hero-badge p {
    font-size: 1.1rem;
  }

  .about-info {
    padding: 3.5rem 0 4rem;
  }

  .about-info-image img {
    height: 320px;
  }

  .fe-section {
    padding: 3rem 0 3.5rem;
  }

  .fe-image img {
    height: 280px;
  }
}

/* ============ CONTACT PAGE ============ */
.contact-section {
  background: #ffffff;
  padding: 5rem 0 5.5rem;
}

.contact-head {
  text-align: center;
  max-width: 760px;
  margin-bottom: 3rem;
}

.contact-head h1 {
  margin: 0 0 1rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: clamp(1.9rem, 3.6vw, 2.7rem);
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: var(--text-dark);
}

.contact-head p {
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.6;
  max-width: 540px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
}

.contact-form {
  background: var(--prio-green);
  padding: 2.4rem 2.6rem;
  border-radius: 8px;
  display: grid;
  gap: 1.1rem;
  box-shadow: var(--shadow-md);
  align-self: center;
  position: relative;
  z-index: 2;
  margin-right: -2rem;
}

.contact-field {
  display: grid;
  gap: 0.4rem;
}

.contact-field label {
  color: #ffffff;
  font-weight: 600;
  font-size: 0.85rem;
}

.contact-field label span {
  margin-left: 0.1rem;
}

.contact-field input,
.contact-field textarea {
  border: 0;
  border-radius: 6px;
  padding: 0.85rem 0.95rem;
  background: #ffffff;
  color: #1d1f24;
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  resize: vertical;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: #8c919b;
}

.contact-field input:focus,
.contact-field textarea:focus {
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.6);
}

.contact-submit {
  justify-self: start;
  margin-top: 0.4rem;
  border: 0;
  background: #3778bc;
  color: #fff;
  border-radius: 999px;
  padding: 0.85rem 2.2rem;
  font-family: inherit;
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.contact-submit:hover {
  background: #2b66a2;
  transform: translateY(-1px);
}

.contact-image {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  align-self: center;
  position: relative;
  z-index: 1;
}

.contact-image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}

@media (max-width: 1100px) {
  .about-hero-grid,
  .about-info-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-hero-badge {
    left: 1.5rem;
    bottom: 1.5rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-form {
    margin-right: 0;
  }

  .contact-image img {
    height: 300px;
  }
}
