/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #FAFAF8;
  --yellow: #F5C518;
  --yellow-dark: #D4A900;
  --black: #111111;
  --text: #1C1C1E;
  --muted: #6E6E73;
  --light: #E8E8EC;
  --white: #ffffff;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --shadow: 0 2px 16px rgba(0,0,0,0.08);
  --shadow-hover: 0 8px 32px rgba(0,0,0,0.14);
  --transition: 0.25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  padding-top: 120px;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

h1, h2, h3, h4, h5 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--black);
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== EU BAR ===== */
#eu-bar {
  background: #003399;
  display: flex;
  align-items: center;
  padding: 8px 16px;
  gap: 12px;
}

.eu-bar__logos {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.eu-bar__logos img {
  height: 36px;
  width: auto;
  display: inline-block;
}

.eu-bar__text {
  flex: 1;
  color: #fff;
  font-size: 12px;
  font-family: 'DM Sans', sans-serif;
  line-height: 1.4;
}

.eu-bar__link {
  color: #FFD700;
  font-size: 11px;
  font-family: 'DM Sans', sans-serif;
  white-space: nowrap;
  text-decoration: underline;
  text-underline-offset: 2px;
  flex-shrink: 0;
}

/* ===== HEADER ===== */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 1px 0 var(--light);
}

#main-nav {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
}

.nav__logo img {
  height: 52px;
  width: auto;
}

.nav__logo-text {
  display: flex;
  align-items: center;
}

.nav__logo-img {
  height: 52px;
  width: auto;
  mix-blend-mode: multiply;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav__links a {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--muted);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--black);
  background: var(--light);
}

.btn-contact-nav {
  background: var(--yellow) !important;
  color: var(--black) !important;
  font-weight: 700 !important;
  padding: 10px 22px !important;
  border-radius: 100px !important;
}

.btn-contact-nav:hover {
  background: var(--yellow-dark) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--light);
  padding: 16px 24px;
  gap: 4px;
}

.nav__mobile a {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 500;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  color: var(--text);
  transition: background var(--transition);
}

.nav__mobile a:hover { background: var(--light); }

.nav__mobile .btn-contact-nav {
  margin-top: 8px;
  text-align: center;
  background: var(--yellow) !important;
  border-radius: 100px !important;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--yellow);
  color: var(--black);
}

.btn-primary:hover {
  background: var(--yellow-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(245,197,24,0.4);
}

.btn-secondary {
  background: var(--white);
  color: var(--black);
  border: 2px solid var(--light);
}

.btn-secondary:hover {
  border-color: var(--black);
  transform: translateY(-1px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.8);
}

/* ===== HERO ===== */
.hero {
  padding: 80px 0 72px;
  overflow: hidden;
}

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

.hero__tag {
  display: inline-block;
  background: var(--yellow);
  color: var(--black);
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.hero__title {
  font-size: clamp(36px, 5vw, 60px);
  letter-spacing: -1.5px;
  margin-bottom: 20px;
  color: var(--black);
}

.hero__title em {
  font-style: normal;
  color: var(--yellow-dark);
}

.hero__subtitle {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero__image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--light);
}

.hero__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__image-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero__image-badge .badge-icon {
  width: 40px;
  height: 40px;
  background: var(--yellow);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.hero__image-badge .badge-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--black);
}

.hero__image-badge .badge-sub {
  font-size: 11px;
  color: var(--muted);
}

/* ===== TRUST STRIP ===== */
.trust-strip {
  background: var(--black);
  padding: 20px 0;
  overflow: hidden;
}

.trust-strip__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.7);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
}

.trust-item::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--yellow);
}

/* ===== SECTIONS ===== */
.section {
  padding: 88px 0;
}

.section-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 48px;
}

/* ===== SERVICES GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  cursor: pointer;
}

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

.service-card--featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.service-card__image {
  position: relative;
  overflow: hidden;
}

.service-card--featured .service-card__image {
  aspect-ratio: 16/9;
}

.service-card:not(.service-card--featured) .service-card__image {
  aspect-ratio: 16/10;
}

.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-card:hover .service-card__image img {
  transform: scale(1.04);
}

.service-card__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.18), transparent);
}

.service-card__body {
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-card__tag {
  display: inline-block;
  background: var(--yellow);
  color: var(--black);
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
  width: fit-content;
}

.service-card__title {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--black);
}

.service-card--featured .service-card__title {
  font-size: 26px;
  letter-spacing: -0.5px;
}

.service-card__text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 20px;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--black);
}

.service-card__link svg {
  transition: transform var(--transition);
}

.service-card:hover .service-card__link svg {
  transform: translateX(4px);
}

/* ===== HOW WE WORK ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.step-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: var(--yellow);
}

.step-number {
  font-family: 'DM Sans', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--light);
  line-height: 1;
  margin-bottom: 12px;
}

.step-title {
  font-size: 17px;
  margin-bottom: 8px;
}

.step-text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* ===== DUAL PANELS ===== */
.dual-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 48px;
}

.panel {
  border-radius: var(--radius-lg);
  padding: 48px 40px;
}

.panel--dark {
  background: var(--black);
  color: var(--white);
}

.panel--yellow {
  background: var(--yellow);
  color: var(--black);
}

.panel__icon {
  font-size: 40px;
  margin-bottom: 20px;
}

.panel__title {
  font-size: 26px;
  color: inherit;
  margin-bottom: 12px;
}

.panel--dark .panel__title { color: var(--white); }

.panel__text {
  font-size: 15px;
  line-height: 1.7;
  opacity: 0.8;
  margin-bottom: 24px;
}

.panel__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.panel__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
}

.panel__list li::before {
  content: '✓';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-top: 1px;
}

.panel--dark .panel__list li::before {
  background: rgba(255,255,255,0.15);
  color: var(--yellow);
}

.panel--yellow .panel__list li::before {
  background: rgba(0,0,0,0.12);
  color: var(--black);
}

/* ===== FAQ ===== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 22px 28px;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: background var(--transition);
}

.faq-question:hover { background: var(--bg); }

.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: transform var(--transition), background var(--transition);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--yellow);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-answer-inner {
  padding: 0 28px 22px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}

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

/* ===== CTA BANNER ===== */
.cta-banner {
  background: var(--black);
  border-radius: var(--radius-lg);
  padding: 64px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin: 0 0 88px;
}

.cta-banner__title {
  font-size: 36px;
  color: var(--white);
  letter-spacing: -0.5px;
}

.cta-banner__title em {
  font-style: normal;
  color: var(--yellow);
}

.cta-banner__sub {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  margin-top: 8px;
}

.cta-banner__actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: var(--black);
  padding: 64px 0;
  margin-top: 0;
}

.page-hero__tag {
  display: inline-block;
  background: rgba(245,197,24,0.15);
  color: var(--yellow);
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.page-hero__title {
  font-size: clamp(32px, 5vw, 52px);
  color: var(--white);
  letter-spacing: -1px;
}

.page-hero__sub {
  font-size: 17px;
  color: rgba(255,255,255,0.6);
  margin-top: 12px;
  max-width: 560px;
  line-height: 1.7;
}

/* ===== ABOUT PAGE ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--light);
}

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

.admin-card {
  background: var(--black);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 32px;
}

.admin-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--black);
  flex-shrink: 0;
}

.admin-info__name {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
}

.admin-info__role {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 4px;
}

.admin-info__phone {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--yellow);
}

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

.value-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}

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

.value-icon {
  font-size: 32px;
  margin-bottom: 14px;
}

.value-title {
  font-size: 18px;
  margin-bottom: 8px;
}

.value-text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* Table */
.styled-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 32px;
}

.styled-table th {
  background: var(--black);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-align: left;
  padding: 14px 20px;
}

.styled-table th:first-child { border-radius: 10px 0 0 0; }
.styled-table th:last-child { border-radius: 0 10px 0 0; }

.styled-table td {
  padding: 14px 20px;
  font-size: 14px;
  border-bottom: 1px solid var(--light);
  color: var(--text);
}

.styled-table tr:nth-child(even) td { background: rgba(0,0,0,0.02); }

.check { color: #22c55e; font-size: 16px; }

/* ===== SERVICII PAGE ===== */
.service-section {
  padding: 72px 0;
  border-bottom: 1px solid var(--light);
}

.service-section:last-child { border-bottom: none; }

.service-section__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

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

.service-section__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--light);
}

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

.service-section__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--yellow);
  color: var(--black);
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.service-section__title {
  font-size: clamp(24px, 3vw, 36px);
  margin-bottom: 14px;
  letter-spacing: -0.3px;
}

.service-section__text {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 24px;
}

.service-bullets {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.service-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
}

.service-bullets li::before {
  content: '→';
  color: var(--yellow-dark);
  font-weight: 700;
  flex-shrink: 0;
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}

.contact-info-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/2;
  background: var(--light);
  margin-bottom: 28px;
}

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

.contact-data {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  box-shadow: var(--shadow);
}

.contact-data h3 {
  font-size: 17px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--light);
}

.contact-data-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-data-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-data-item .label {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-data-item .value {
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  color: var(--text);
}

.contact-data-item a.value {
  color: var(--black);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow);
}

.contact-form-wrap h2 {
  font-size: 26px;
  margin-bottom: 6px;
}

.contact-form-wrap p {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 28px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

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

.form-group.full { grid-column: 1 / -1; }

.form-group label {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  padding: 12px 16px;
  border: 1.5px solid var(--light);
  border-radius: var(--radius-sm);
  background: var(--bg);
  color: var(--text);
  transition: border-color var(--transition);
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--yellow);
  background: var(--white);
}

.form-group textarea { resize: vertical; min-height: 120px; }

#form-message {
  margin-top: 14px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  display: none;
}

#form-message.success {
  background: #f0fdf4;
  color: #16a34a;
  border: 1px solid #bbf7d0;
  display: block;
}

#form-message.error {
  background: #fef2f2;
  color: #dc2626;
  border: 1px solid #fecaca;
  display: block;
}

/* ===== FOOTER ===== */
footer {
  background: var(--black);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.footer-logo-img {
  height: 52px;
  width: auto;
}

.footer-tagline {
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.footer-url {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.5px;
}

.footer-col h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}

.footer-col ul li a:hover { color: var(--white); }

.footer-contact-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 14px;
}

.footer-contact-item .fc-label {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
}

.footer-contact-item .fc-value {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
}

.footer-legal-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 10px;
}

.footer-legal-item .fl-label {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
}

.footer-legal-item .fl-value {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
}

.footer-legal-item a.fl-value {
  color: var(--yellow);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

.footer-bottom a {
  color: rgba(255,255,255,0.5);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ===== EU POPUP ===== */
#eu-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(4px);
}

.eu-popup__box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  max-width: 520px;
  width: 100%;
  text-align: center;
}

.eu-popup__logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}

.eu-popup__logos img {
  height: 48px;
  width: auto;
}

.eu-popup__title {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--black);
}

.eu-popup__text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.eu-popup__text a {
  color: #003399;
  text-decoration: underline;
}

/* ===== REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  body { padding-top: 100px; }

  .eu-bar__link { display: none; }
  .eu-bar__logos img { height: 30px; }
  .eu-bar__text { font-size: 11px; }

  .nav__links { display: none; }
  .hamburger { display: flex; }

  .nav__mobile.open {
    display: flex;
  }

  #main-nav { padding: 0 20px; }

  .hero { padding: 48px 0 56px; }
  .hero__grid { grid-template-columns: 1fr; gap: 36px; }
  .hero__title { font-size: 34px; }
  .hero__subtitle { font-size: 16px; }
  .hero__image-wrap { aspect-ratio: 16/9; }

  .services-grid { grid-template-columns: 1fr; }
  .service-card--featured { grid-column: 1; display: block; }
  .service-card--featured .service-card__image { aspect-ratio: 16/9; }

  .steps-grid { grid-template-columns: 1fr 1fr; }

  .dual-panels { grid-template-columns: 1fr; }

  .cta-banner { flex-direction: column; text-align: center; padding: 40px 28px; }
  .cta-banner__title { font-size: 26px; }
  .cta-banner__actions { justify-content: center; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .values-grid { grid-template-columns: 1fr; }

  .service-section__grid { grid-template-columns: 1fr; gap: 32px; }
  .service-section__grid.reverse { direction: ltr; }

  .contact-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }

  .section { padding: 56px 0; }

  .eu-popup__box { padding: 28px 24px; }

  .page-hero { padding: 48px 0; }
}

@media (max-width: 480px) {
  .steps-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
