/* ====== BASE ====== */

:root {
  --bg-custom: #1b1e29;
  --bg-light: #f2f2ed;
  --accent: #09bc8a;
  --accent-dark: #2f7564;
  --text-main: #1b1e29;
  --text-muted: #778c8d;
  --white: #ffffff;
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.12);
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-pill: 999px;
  --transition-fast: 0.2s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  color: var(--text-main);
  background-color: var(--bg-light);
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
  display: block;
}

/* ====== PRELOADER ====== */

#loadingMask {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f2f2ed;
  z-index: 9999;
  transition: opacity 0.4s ease;
}

#loadingMask.loaded {
  opacity: 0;
  pointer-events: none;
}

/* ====== NAVBAR ====== */

.main-navbar {
  background: var(--bg-light);
  padding: 1.1rem 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.navbar-brand img {
  height: 34px;
}

.custom-navbar .nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: #111827;
  margin-right: 1.25rem;
  transition: color var(--transition-fast);
}

.custom-navbar .nav-link:hover {
  color: var(--accent-dark);
}

/* Primary pill button in navbar */
.btn-1 {
  background: var(--bg-custom);
  color: var(--white);
  border-radius: var(--radius-pill);
  padding: 0.55rem 1.4rem;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: none;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.18);
  transition: background var(--transition-fast), color var(--transition-fast),
    box-shadow var(--transition-fast), transform var(--transition-fast);
}

.btn-1 svg {
  margin-top: 2px;
}

.btn-1:hover {
  background: #12141c;
  color: var(--white);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.26);
  transform: translateY(-1px);
}

/* ====== HERO ====== */

#hero {
  position: relative;
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  padding: 5rem 0 4rem;
  background:
    radial-gradient(circle at top left, #e0f7f0 0, transparent 55%),
    radial-gradient(circle at bottom right, #e5e7ff 0, transparent 50%),
    var(--bg-light);
}

/* hero left column */

.hero-left {
  position: relative;
  z-index: 1;
}

#hero h1 {
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 0.9rem;
  letter-spacing: -0.01em;
}

#hero p {
  font-size: 0.98rem;
  color: var(--text-muted);
  max-width: 520px;
}

/* extra hero text under main paragraph */

.hero-subtitle {
  font-size: 1.05rem;
  font-weight: 500;
  margin-top: 0.4rem;
  margin-bottom: 0.75rem;
  color: #374151;
}

/* bullet list under hero subtitle */

.hero-bullets {
  margin: 0.75rem 0 1.25rem;
  padding-left: 0;
  list-style: none;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.hero-bullets li {
  position: relative;
  padding-left: 1.4rem;
}

.hero-bullets li + li {
  margin-top: 0.3rem;
}

.hero-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(9, 188, 138, 0.18);
}

/* CTA button group */

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 1.25rem;
}

/* hero primary CTA (extends .btn-3) */

.hero-btn-primary {
  padding-inline: 1.6rem;
  box-shadow: 0 14px 35px rgba(15, 118, 110, 0.25);
}

/* hero secondary CTA */

.hero-btn-secondary {
  border-radius: var(--radius-pill);
  padding: 0.47rem 1.4rem;
  border-width: 1px;
  border-style: solid;
  border-color: rgba(17, 24, 39, 0.12);
  font-weight: 500;
  font-size: 0.86rem;
  background: rgba(255, 255, 255, 0.7);
  color: #111827;
  backdrop-filter: blur(14px);
  transition: background var(--transition-fast), color var(--transition-fast),
    border-color var(--transition-fast), box-shadow var(--transition-fast),
    transform var(--transition-fast);
}

.hero-btn-secondary:hover {
  background: #111827;
  color: #f9fafb;
  border-color: transparent;
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.25);
  transform: translateY(-1px);
}

/* small meta info row under buttons */

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  opacity: 0.9;
  color: #6b7280;
}

.hero-meta span::before {
  content: "●";
  font-size: 0.55rem;
  margin-right: 0.35rem;
  vertical-align: middle;
  color: var(--accent);
}

/* tooltips */

#users-tooltips {
  position: relative;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 1rem;
}

.tool-tip {
  position: relative;
}

.tool-tip img {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.18);
}

.tooltiptext {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  bottom: 120%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-custom);
  color: #e5e7eb;
  text-align: left;
  padding: 0.4rem 0.55rem;
  border-radius: 0.75rem;
  font-size: 0.7rem;
  white-space: nowrap;
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.3);
  transition: opacity 0.2s ease, transform 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  z-index: 10;
}

.tooltiptext svg {
  flex-shrink: 0;
}

.tool-tip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
  transform: translateX(-50%) translateY(-4px);
}

/* hero right side glass card */

.hero-right-card {
  display: inline-block;
  margin-top: 24px;
  padding: 18px 20px;
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: radial-gradient(circle at top left, #1f2937, #020617);
  color: #e5e7eb;
  text-align: left;
  max-width: 360px;
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.6);
}

.hero-right-card h3 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
  font-weight: 600;
}

.hero-right-card p {
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  color: #d1d5db;
}

.hero-right-steps {
  list-style: none;
  padding-left: 0;
  margin: 0.5rem 0 0;
  font-size: 0.85rem;
}

.hero-right-steps li + li {
  margin-top: 0.25rem;
}

.hero-right-steps span.step-pill {
  display: inline-block;
  font-size: 0.75rem;
  border-radius: 999px;
  padding: 2px 8px;
  margin-right: 4px;
  background: rgba(34, 197, 94, 0.12);
  color: #bbf7d0;
}

/* ====== AWARDS ====== */

#awards {
  padding: 2.5rem 0;
  background: #ffffff;
}

.awards-text img {
  display: inline-block;
  margin: 0 0.4rem;
}

.awards-text strong {
  font-weight: 600;
}

/* ====== SW ENGINEERS LIST ====== */

.bg-custom {
  background: var(--bg-custom);
  color: var(--white);
}

#list {
  padding: 3.5rem 0 3rem;
  color: var(--white);
}

#list h2 {
  color: var(--white);
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
}

.hidden-mobile {
  display: none;
}

.hidden-desktop {
  display: block;
}

@media (min-width: 768px) {
  .hidden-mobile {
    display: block;
  }
  .hidden-desktop {
    display: none;
  }
}

#list p {
  font-size: 0.95rem;
  color: rgba(243, 244, 246, 0.9);
}

.input-custom-group {
  margin-top: 1.5rem;
  background: rgba(15, 23, 42, 0.9);
  border-radius: var(--radius-pill);
  padding: 0.15rem 0.4rem;
  display: flex;
  align-items: center;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.input-custom-group .input-group-text {
  width: 40px;
  padding: 0.4rem;
  background: transparent;
  border: none;
  filter: brightness(1.4);
}

.input-custom-group input {
  background: transparent;
  border: none;
  color: #f9fafb;
  font-size: 0.9rem;
  padding: 0.55rem 0.4rem;
}

.input-custom-group input::placeholder {
  color: #9ca3af;
}

.input-custom-group input:focus {
  outline: none;
  box-shadow: none;
}

/* Swiper cards */

.cards-container {
  margin-top: 2rem;
  padding-bottom: 1rem;
}

.engineer-card {
  background: #111827;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.28);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.55);
  cursor: pointer;
  transition: transform var(--transition-fast),
    box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.engineer-card img.card-img-top {
  height: 180px;
  object-fit: cover;
}

.engineer-card .card-body {
  padding: 0.85rem 0.9rem 1rem;
}

.engineer-card .card-title {
  font-size: 1rem;
  font-weight: 600;
  color: #f9fafb;
  margin-bottom: 0.2rem;
}

.engineer-card .card-text {
  font-size: 0.86rem;
  color: #9ca3af;
}

.btn-2 {
  margin-top: 0.6rem;
  background: var(--accent);
  color: #064e3b;
  border-radius: var(--radius-pill);
  padding: 0.38rem 1.1rem;
  font-size: 0.8rem;
  border: none;
  font-weight: 600;
  transition: background var(--transition-fast), color var(--transition-fast),
    box-shadow var(--transition-fast), transform var(--transition-fast);
}

.btn-2:hover {
  background: #059669;
  color: #e0f2f1;
  box-shadow: 0 14px 30px rgba(16, 185, 129, 0.45);
  transform: translateY(-1px);
}

.engineer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 55px rgba(15, 23, 42, 0.8);
  border-color: var(--accent);
}

/* Swiper arrows */

.with-bg {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.4);
  color: #e5e7eb;
}

.with-bg::after {
  display: none;
}

/* ====== REVIEWS ====== */

#reviews {
  padding: 3.5rem 0;
  background: #ffffff;
}

.review {
  background: #f9fafb;
  border-radius: 22px;
  padding: 1.5rem 1.6rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
  min-height: 220px;
}

.review img {
  margin-bottom: 1rem;
}

.review p {
  font-size: 0.94rem;
  color: var(--text-muted);
}

.review .author-box img {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  object-fit: cover;
  margin-right: 0.7rem;
}

.review .author-box h5 {
  font-size: 0.95rem;
  margin: 0;
  font-weight: 600;
}

.review .author-box span {
  font-size: 0.8rem;
  color: #6b7280;
}

/* Carousel indicators */

.carousel-desktop .carousel-indicators {
  position: static;
  margin-bottom: 1rem;
}

.carousel-controls-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  background: #111827;
}

.carousel-controls-wrapper button {
  border-radius: 999px;
}

.carousel-controls-wrapper > button[data-bs-target] {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: none;
  background: #9ca3af;
  opacity: 1;
  transition: width var(--transition-fast), background var(--transition-fast);
}

.carousel-controls-wrapper > button[data-bs-target].active {
  width: 16px;
  background: var(--accent);
}

/* Reviews swiper (mobile) */

.swiper-reviews .swiper-button-prev,
.swiper-reviews .swiper-button-next {
  color: #111827;
}

/* ====== ABOUT (legacy about-us) ====== */

.about-section {
  background: var(--bg-light);
  padding: 3.5rem 0 2.8rem;
}

.about-section h2 {
  font-size: 1.9rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.about-text {
  font-size: 0.96rem;
  color: var(--text-muted);
  max-width: 520px;
}

.icon-boxes-wrapper {
  padding: 2.5rem 0 0.5rem;
  row-gap: 1.6rem;
}

.icon-box {
  text-align: left;
}

.icon-box img {
  width: 38px;
  margin-bottom: 0.6rem;
}

.icon-box h5 {
  font-size: 0.98rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.icon-box p {
  font-size: 0.86rem;
  color: var(--text-muted);
}

.highlight {
  color: var(--accent-dark);
  font-weight: 600;
}

/* Small col override */
.col-lg-15 {
  flex: 0 0 auto;
  width: 20%;
}

@media (max-width: 991.98px) {
  .col-lg-15 {
    width: 50%;
  }
}

/* ====== NEW INFO SECTIONS (about / stack / process / industries) ====== */

.info-section {
  padding: 3.5rem 0;
  background: var(--bg-light);
  border-top: 1px solid rgba(15, 23, 42, 0.04);
}

.info-section.info-alt {
  background: #ffffff;
}

.section-kicker {
  display: inline-block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent-dark);
  background: rgba(9, 188, 138, 0.1);
  padding: 0.2rem 0.8rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
}

.info-title {
  font-size: 1.9rem;
  font-weight: 700;
  margin-bottom: 0.9rem;
}

.info-text {
  font-size: 0.96rem;
  color: var(--text-muted);
  max-width: 640px;
}

/* About side card */

.info-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.6rem;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(148, 163, 184, 0.28);
}

.info-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.7rem;
  font-weight: 600;
}

.info-badges {
  list-style: none;
  padding-left: 0;
  margin: 0 0 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.info-badges li {
  font-size: 0.8rem;
  padding: 0.18rem 0.8rem;
  border-radius: 999px;
  background: #f3f4f6;
  color: #111827;
}

.info-meta {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.8rem;
  color: #6b7280;
}

/* Tech stack section */

.stack-block {
  padding: 1.1rem 1.2rem 1.2rem;
  border-radius: 16px;
  background: #f9fafb;
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.04);
  margin-bottom: 0.9rem;
}

.stack-block h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.stack-note {
  font-size: 0.9rem;
  color: #4b5563;
  margin-bottom: 0.35rem;
}

.stack-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.2rem;
}

.stack-chip {
  font-size: 0.78rem;
  padding: 0.18rem 0.7rem;
  border-radius: 999px;
  background: rgba(9, 188, 138, 0.06);
  color: #065f46;
}

/* Process steps */

.process-steps {
  list-style: none;
  padding-left: 0;
  margin: 0;
  border-left: 2px solid rgba(148, 163, 184, 0.4);
}

.process-steps li {
  position: relative;
  padding-left: 2.7rem;
  padding-bottom: 1rem;
}

.process-steps li:last-child {
  padding-bottom: 0;
}

.step-number {
  position: absolute;
  left: -15px;
  top: 2px;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: var(--bg-custom);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.35);
}

.step-content strong {
  font-size: 0.95rem;
  display: block;
  margin-bottom: 0.15rem;
}

.step-content p {
  font-size: 0.86rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* Industries section */

.industry-list {
  list-style: none;
  padding-left: 0;
  margin: 1rem 0 0;
}

.industry-list li {
  position: relative;
  padding-left: 1.4rem;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.industry-list li + li {
  margin-top: 0.4rem;
}

.industry-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
}

/* Right card in industries */

.industry-card {
  background: #111827;
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.7rem;
  color: #e5e7eb;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(148, 163, 184, 0.45);
}

.industry-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.industry-card p {
  font-size: 0.88rem;
  color: #d1d5db;
  margin-bottom: 0.8rem;
}

.industry-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.industry-pill {
  font-size: 0.78rem;
  padding: 0.22rem 0.8rem;
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.3);
  color: #ecfeff;
}

/* ====== CONTACT ====== */

.contact-section {
  background: var(--bg-light);
  padding: 3rem 0 3.5rem;
}

.cta-wrapper {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.section-1 {
  padding: 2rem 2.2rem;
}

.section-1 h2 {
  font-size: 1.7rem;
  margin-bottom: 0.8rem;
}

.section-1 .link-wrapper a {
  color: #e5e7eb;
  font-weight: 500;
  text-decoration: none;
}

.section-1 .link-wrapper a:hover {
  text-decoration: underline;
}

.section-1 span {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: #d1d5db;
}

.section-2 {
  padding: 2rem 2.2rem;
}

.section-2 .form-group {
  margin-bottom: 0.8rem;
}

.section-2 input.form-control,
.section-2 textarea.form-control {
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  font-size: 0.9rem;
}

.section-2 textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.checkbox-round {
  border-radius: 999px;
}

/* shared pill button */

.btn-3 {
  background: #f9fafb;
  color: var(--accent-dark);
  border-radius: var(--radius-pill);
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 1.4rem;
  font-size: 0.88rem;
  font-weight: 600;
  transition: background var(--transition-fast), color var(--transition-fast),
    box-shadow var(--transition-fast), transform var(--transition-fast);
}

.btn-3 svg {
  margin-top: 1px;
}

.btn-3:hover {
  background: #e5e7eb;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
  transform: translateY(-1px);
}

/* contact messages */

.cv-error {
  color: #d24545;
  font-weight: 600;
  font-size: 0.8rem;
}

/* ====== PRE-FOOTER CTA ====== */

.pre-footer-section {
  background: var(--bg-light);
  padding: 0 0 3.5rem;
}

.map-pin {
  border-radius: var(--radius-xl);
  padding: 2.2rem 2.4rem;
  background-image: url("assets/img/map-pin.svg");
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: 220px;
  box-shadow: var(--shadow-soft);
}

.map-pin h2 {
  font-size: 1.9rem;
  margin-bottom: 0.8rem;
}

.map-pin p {
  font-size: 0.94rem;
  color: #d1d5db;
  margin-bottom: 1.1rem;
}

.users-image-wrapper {
  display: inline-flex;
  align-items: center;
  margin-left: 1.3rem;
  margin-top: 1rem;
}

.users-image-wrapper img {
  width: 44px;
  margin-right: 0.4rem;
}

.users-image-wrapper span {
  font-size: 0.86rem;
  color: #e5e7eb;
}

/* ====== FOOTER ====== */

footer {
  padding: 2.8rem 0 2rem;
  color: #d1d5db;
}

.footer-top {
  padding-bottom: 1.5rem;
}

.footer-top img {
  height: 32px;
}

.footer-top span {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #9ca3af;
  display: inline-block;
  margin-bottom: 0.4rem;
}

.footer-top ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.footer-top li + li {
  margin-top: 0.15rem;
}

.footer-top a {
  color: #e5e7eb;
  font-size: 0.9rem;
  text-decoration: none;
}

.footer-top a:hover {
  text-decoration: underline;
}

.footer-top p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

.footer-bottom {
  padding-top: 0.6rem;
  font-size: 0.85rem;
  color: #9ca3af;
  align-items: center;
}

.footer-links {
  list-style: none;
  padding-left: 0;
  margin-left: 0.7rem;
}

.footer-links li + li {
  margin-left: 0.8rem;
}

.footer-links a {
  color: #d1d5db;
  text-decoration: none;
  font-size: 0.85rem;
}

.footer-links a:hover {
  text-decoration: underline;
}

/* ====== MODAL (CV) ====== */

.cv-modal-content {
  border-radius: 24px;
  overflow: hidden;
  background: #ffffff;
}

#cv_table {
  font-family: "Montserrat", sans-serif;
  margin: 10px auto 40px;
  width: 100%;
  max-width: 760px;
}

#first_td {
  width: 220px;
}

#first_div {
  border-radius: 90px;
  width: 180px;
  height: 180px;
  background: #9be0cc;
  margin-left: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#cv_image {
  border-radius: 100px;
  width: 160px;
  height: 160px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-image: url("assets/img/dev1.png");
}

.spacer-td {
  width: 40px;
}

#second_td {
  font-size: 42px;
}

#cv_name {
  display: block;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

#second_div {
  width: 180px;
  height: 6px;
  background: #000;
  margin-top: 2px;
}

#cv_position {
  font-size: 1.1rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
  max-height: 32px;
  overflow: hidden;
}

.cv-small {
  font-size: 0.9rem;
  margin-top: 0.15rem;
}

.lang-row {
  margin-top: 0.6rem;
}

.cv-lang-icon {
  width: 24px;
  margin-bottom: 2px;
  margin-right: 0.35rem;
}

#third_td {
  text-align: right;
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 0.16em;
  padding-top: 12px;
}

#third_div {
  width: 120px;
  height: 6px;
  background: #000;
  float: right;
  margin-top: 4px;
}

#cv_stack {
  padding-top: 12px;
  font-size: 0.94rem;
  padding-right: 20px;
  max-height: 54px;
  overflow: hidden;
}

#white_transition {
  background: linear-gradient(#ffffff00, #ffffff30, #ffffffdd, white);
  position: absolute;
  width: calc(100% - 20px);
  height: 160px;
  top: 145px;
  left: 10px;
  pointer-events: none;
}

/* cv success box */

.cv-success {
  background: #d3faf1;
  width: 100%;
  max-width: 100%;
  margin: 40px auto 0;
  padding: 30px 16px;
}

.cv-success .success-inner {
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
}

.badge-step {
  background: #00bc8d;
  display: block;
  width: 110px;
  margin: -40px auto 35px;
  font-weight: 500;
  border-radius: 999px;
  padding: 5px 6px;
  font-size: 0.68rem;
  color: #fff;
  letter-spacing: 0.08em;
}

.cv-success h3 {
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
}

.code-group {
  margin: 1.2rem auto 1.2rem;
  max-width: 420px;
}

.code-input {
  background: #00bc8d;
  color: white;
  text-align: center;
  font-weight: 600;
  border-radius: 999px 0 0 999px;
  border: 0;
}

.code-btn {
  background: #1b1e29;
  color: white;
  border-radius: 0 999px 999px 0;
  border: 0;
  padding: 0.45rem 1.2rem;
  border-left: 2px solid #d3faf1;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.cv-note {
  color: #4b5563;
  font-size: 0.86rem;
  margin-bottom: 0;
}

.accent-link {
  color: #00bc8d;
  text-decoration: none;
}

.accent-link:hover {
  text-decoration: underline;
}

.modal-input {
  border-radius: 999px;
  padding-inline: 1rem;
}

/* ====== RESPONSIVE ====== */

@media (max-width: 991.98px) {
  #hero {
    min-height: auto;
    padding-top: 3.5rem;
    padding-bottom: 3rem;
  }

  .hero-left {
    margin-bottom: 2.2rem;
  }

  .hero-meta {
    gap: 0.6rem;
  }

  .section-1,
  .section-2 {
    padding: 1.7rem 1.5rem;
  }

  .map-pin {
    padding: 1.8rem 1.5rem;
    background-size: 180px;
  }

  #cv_table {
    margin-top: 0;
  }

  #first_div {
    margin-left: 0;
  }

  .info-card {
    margin-top: 1rem;
  }

  .industry-card {
    margin-top: 0.5rem;
  }

  .process-steps {
    border-left-width: 1px;
  }
}

@media (max-width: 575.98px) {
  #hero h1 {
    font-size: 2rem;
  }

  #hero p {
    font-size: 0.9rem;
  }

  .hero-bullets {
    font-size: 0.9rem;
  }

  .hero-meta {
    flex-direction: column;
    gap: 0.35rem;
  }

  .cards-container {
    padding-inline: 0.5rem;
  }

  .map-pin h2 {
    font-size: 1.6rem;
  }

  .custom-navbar {
    margin-top: 0.8rem;
  }

  .info-title {
    font-size: 1.6rem;
  }

  .industry-card {
    padding: 1.3rem 1.3rem;
  }
}
