/* ========================================
   GPCONSULT OÜ — Professional Accounting
   ======================================== */

@font-face {
  font-family: 'DM Serif Display';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/fonts/dm-serif-display-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'DM Serif Display';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/fonts/dm-serif-display-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url(/fonts/inter-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url(/fonts/inter-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  --navy-900: #0b1a2e;
  --navy-800: #0f2440;
  --navy-700: #132e52;
  --navy-600: #1a3d6d;
  --navy-500: #245a9e;
  --blue-400: #3b82f6;
  --gold-500: #c9a84c;
  --gold-400: #d4b865;
  --gold-700: #866e1f;
  --gold-300: #e0ca82;
  --green-500: #22c55e;
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #a3b1c6;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --white: #ffffff;
  --shadow-sm: 0 1px 2px rgba(0,0,0,.05);
  --shadow-md: 0 4px 12px rgba(0,0,0,.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.12);
  --shadow-xl: 0 20px 60px rgba(0,0,0,.15);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: .3s cubic-bezier(.4,0,.2,1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  color: var(--slate-700);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  min-height: 100vh;
  min-height: -webkit-fill-available;
}

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

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

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

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

.section {
  padding: 100px 0;
}

.section__tag {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-700);
  margin-bottom: 12px;
}

.section__tag--center {
  text-align: center;
}

.section__title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--navy-800);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section__title--center {
  text-align: center;
}

.section__desc {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 56px;
  color: var(--slate-500);
  font-size: 1.05rem;
}

/* ───────── HEADER ───────── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255,255,255,.92);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--slate-200);
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.header .logo {
  margin-left: 24px;
}

.logo__mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-600));
  color: var(--gold-400);
  font-family: 'DM Serif Display', serif;
  font-size: 1.1rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
}

.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo__name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy-800);
  letter-spacing: 1px;
}

.logo__sub {
  font-size: .65rem;
  color: var(--slate-400);
  letter-spacing: 2px;
  font-weight: 500;
}

.nav {
  display: flex;
  gap: 32px;
}

.nav__link {
  text-decoration: none;
  font-size: .9rem;
  font-weight: 500;
  color: var(--slate-600);
  position: relative;
  transition: var(--transition);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-500);
  transition: var(--transition);
}

.nav__link:hover {
  color: var(--navy-800);
}

.nav__link:hover::after {
  width: 100%;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Language Switcher */
.lang-switcher {
  position: relative;
}

.lang-switcher__btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: .85rem;
  font-weight: 500;
  color: var(--slate-700);
  transition: var(--transition);
}

.lang-switcher__btn:hover {
  background: var(--slate-100);
  border-color: var(--slate-300);
}

.lang-switcher__flag {
  width: 24px;
  height: 18px;
  border-radius: 2px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(0,0,0,.08);
  flex-shrink: 0;
}

.lang-switcher__arrow {
  font-size: .6rem;
  transition: var(--transition);
  color: var(--slate-400);
}

.lang-switcher.open .lang-switcher__arrow {
  transform: rotate(180deg);
}

.lang-switcher__dropdown {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 150px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: var(--transition);
  overflow: hidden;
}

.lang-switcher.open .lang-switcher__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 10px 16px;
  border: none;
  background: none;
  font-size: .9rem;
  color: var(--slate-700);
  cursor: pointer;
  transition: var(--transition);
}

.lang-option:hover {
  background: var(--slate-50);
  color: var(--navy-800);
}

.lang-option.active {
  background: var(--slate-100);
  color: var(--navy-800);
  font-weight: 600;
}

.lang-option__flag {
  width: 24px;
  height: 18px;
  border-radius: 2px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(0,0,0,.08);
  flex-shrink: 0;
}

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

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

/* ───────── HERO ───────── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(15,36,64,.04) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(201,168,76,.06) 0%, transparent 40%),
    linear-gradient(180deg, var(--slate-50) 0%, var(--white) 100%);
  z-index: 0;
}

.hero__bg::before {
  content: '';
  position: absolute;
  top: 50%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,.08) 0%, transparent 70%);
  transform: translateY(-50%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero__tag {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 16px;
}

.hero__title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  color: var(--navy-800);
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero__subtitle {
  font-size: 1.1rem;
  color: var(--slate-500);
  margin-bottom: 36px;
  max-width: 500px;
  line-height: 1.8;
}

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

/* Hero visual - floating cards */
.hero__visual {
  position: relative;
  height: 420px;
}

.hero__card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 20px 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 600;
  font-size: .95rem;
  color: var(--navy-800);
  animation: float 6s ease-in-out infinite;
  border: 1px solid var(--slate-100);
}

.hero__card i {
  font-size: 1.4rem;
}

.hero__card--1 {
  top: 20%;
  left: 5%;
  animation-delay: 0s;
}

.hero__card--1 i { color: var(--green-500); }

.hero__card--2 {
  top: 48%;
  right: 5%;
  animation-delay: -2s;
}

.hero__card--2 i { color: var(--blue-400); }

.hero__card--3 {
  bottom: 8%;
  left: 15%;
  animation-delay: -4s;
}

.hero__card--3 i { color: var(--gold-500); }

@-webkit-keyframes float {
  0%, 100% { -webkit-transform: translateY(0px); transform: translateY(0px); }
  50% { -webkit-transform: translateY(-14px); transform: translateY(-14px); }
}

@keyframes float {
  0%, 100% { -webkit-transform: translateY(0px); transform: translateY(0px); }
  50% { -webkit-transform: translateY(-14px); transform: translateY(-14px); }
}

/* ───────── BUTTONS ───────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-size: .95rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}

.btn--primary {
  background: linear-gradient(135deg, var(--navy-800), var(--navy-600));
  color: var(--white);
  border-color: var(--navy-800);
}

.btn--primary:hover {
  background: linear-gradient(135deg, var(--navy-700), var(--navy-500));
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--outline {
  background: transparent;
  color: var(--navy-800);
  border-color: var(--slate-300);
}

.btn--outline:hover {
  border-color: var(--navy-800);
  background: var(--navy-800);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--block {
  width: 100%;
}

/* ───────── TRUST BAR ───────── */
.trust-bar {
  background: var(--navy-800);
  padding: 28px 0;
}

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

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
}

.trust-bar__item i {
  font-size: 1.5rem;
  color: var(--gold-400);
  opacity: .9;
}

.trust-bar__item strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .5px;
}

.trust-bar__item span {
  font-size: .75rem;
  color: var(--slate-400);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ───────── ABOUT ───────── */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 72px;
  align-items: center;
}

.about__image {
  position: relative;
  width: 100%;
  /* Width = first grid column only (1fr of 1fr+1.3fr ≈ 43.5% of container). Same as original layout; no px cap. */
}

/* picture is inline by default — without this it shrink-wraps to intrinsic image width and stays small */
.about__image picture {
  display: block;
  width: 100%;
}

.about__photo {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
  outline: 1px solid var(--slate-200);
}

.about__badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: .85rem;
  color: var(--navy-800);
  cursor: pointer;
  transition: box-shadow .25s, transform .25s;
}

.about__badge:hover,
.about__badge:focus-visible {
  box-shadow: 0 8px 28px rgba(0,0,0,.12);
  transform: translateY(-2px);
}

.about__badge i {
  color: var(--gold-500);
  font-size: 1.3rem;
}

.about__badge-text {
  display: flex;
  flex-direction: column;
}

.about__badge-cert {
  font-size: .72rem;
  font-weight: 500;
  color: var(--gold-700);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height .35s ease, opacity .3s ease, margin-top .3s ease;
  margin-top: 0;
}

.about__badge:hover .about__badge-cert,
.about__badge:focus-visible .about__badge-cert,
.about__badge.show-cert .about__badge-cert {
  max-height: 24px;
  opacity: 1;
  margin-top: 3px;
}

.about__text {
  color: var(--slate-600);
  margin-bottom: 16px;
  font-size: 1.02rem;
  line-height: 1.8;
}

.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--slate-200);
}

.about__stat {
  text-align: center;
}

.about__stat strong {
  display: block;
  font-size: 1.6rem;
  color: var(--navy-800);
  font-family: 'DM Serif Display', serif;
}

.about__stat span {
  font-size: .8rem;
  color: var(--slate-500);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ───────── SERVICES ───────── */
.services {
  background: var(--slate-50);
}

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

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid var(--slate-200);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-300));
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(15,36,64,.06), rgba(15,36,64,.02));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-card__icon i {
  font-size: 1.3rem;
  color: var(--navy-700);
}

.service-card__title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.1rem;
  color: var(--navy-800);
  margin-bottom: 10px;
  line-height: 1.3;
}

.service-card__text {
  font-size: .9rem;
  color: var(--slate-500);
  line-height: 1.65;
}

/* ───────── PRICING ───────── */
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 40px;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  border: 1px solid var(--slate-200);
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

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

.pricing-card--featured {
  border: 2px solid var(--navy-800);
  box-shadow: var(--shadow-lg);
}

.pricing-card__badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy-800);
  color: var(--gold-400);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

.pricing-card__header {
  text-align: center;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--slate-200);
}

.pricing-card__name {
  font-family: 'DM Serif Display', serif;
  font-size: 1.1rem;
  color: var(--navy-800);
  margin-bottom: 12px;
  line-height: 1.3;
}

/* Vertical stack: centering "75€ / month" as one row shifts the digit left of the title. */
.pricing-card__price {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.pricing-card__amount {
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--navy-800);
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
}

.pricing-card__period {
  font-size: .8rem;
  color: var(--slate-400);
  line-height: 1.2;
}

.pricing-card__features {
  list-style: none;
  margin-bottom: 28px;
  flex: 1;
}

.pricing-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: .9rem;
  color: var(--slate-600);
}

.pricing-card__features i {
  color: var(--green-500);
  margin-top: 4px;
  font-size: .75rem;
}

.pricing__note {
  text-align: center;
  font-size: .85rem;
  color: var(--slate-500);
  max-width: 800px;
  margin: 0 auto 48px;
  line-height: 1.7;
  padding: 20px;
  background: var(--slate-50);
  border-radius: var(--radius-md);
  border: 1px solid var(--slate-200);
}

.pricing__custom {
  text-align: center;
  font-size: .9rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--slate-500);
  max-width: 700px;
  margin: 40px auto 0;
  padding: 20px 24px;
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
}

.pricing__extras {
  background: var(--slate-50);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--slate-200);
}

.pricing__extras-title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.3rem;
  color: var(--navy-800);
  margin-bottom: 24px;
  text-align: center;
}

.pricing__extras-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.extra-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--slate-200);
}

.extra-item__name {
  font-size: .88rem;
  color: var(--slate-700);
}

.extra-item__price {
  font-weight: 700;
  font-size: .88rem;
  color: var(--navy-800);
  white-space: nowrap;
}

/* ───────── CONTACT ───────── */
.contact {
  background: var(--slate-50);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}

.contact__text {
  color: var(--slate-500);
  margin-bottom: 32px;
  line-height: 1.8;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.contact__detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact__detail i {
  color: var(--gold-500);
  font-size: 1.1rem;
  margin-top: 3px;
  width: 20px;
  text-align: center;
}

.contact__detail a {
  color: var(--navy-800);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

.contact__detail a:hover {
  color: var(--gold-500);
}

.contact__detail div {
  display: flex;
  flex-direction: column;
}

.contact__detail strong {
  color: var(--navy-800);
}

.contact__detail span {
  font-size: .9rem;
  color: var(--slate-500);
}

.contact__business {
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--slate-200);
}

.contact__business p {
  font-size: .88rem;
  color: var(--slate-600);
  margin-bottom: 4px;
}

.contact__form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--slate-200);
}

.form-status {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  margin-bottom: 16px;
  line-height: 1.4;
}

.form-status--success {
  background: #f0fdf4;
  color: #166534;
  border: 1px solid #bbf7d0;
}

.form-status--error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--slate-700);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-size: .95rem;
  font-family: 'Inter', sans-serif;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-sm);
  background: var(--slate-50);
  color: var(--slate-700);
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--navy-600);
  box-shadow: 0 0 0 3px rgba(15,36,64,.08);
  background: var(--white);
}

.form-group textarea {
  resize: vertical;
}

/* ───────── FOOTER ───────── */
.footer {
  background: var(--navy-900);
  color: var(--slate-400);
  padding: 64px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.logo--light .logo__mark {
  background: linear-gradient(135deg, rgba(255,255,255,.15), rgba(255,255,255,.05));
}

.logo--light .logo__name {
  color: var(--white);
}

.logo--light .logo__sub {
  color: var(--slate-500);
}

.footer__brandname {
  margin-top: 14px;
  font-size: .95rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: .3px;
}

.footer__desc {
  margin-top: 8px;
  font-size: .9rem;
  line-height: 1.7;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links h3,
.footer__contact h3 {
  color: var(--white);
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.footer__links a {
  color: var(--slate-400);
  text-decoration: none;
  font-size: .88rem;
  transition: var(--transition);
}

.footer__links a:hover {
  color: var(--gold-400);
}

.footer__contact p {
  font-size: .88rem;
  margin-bottom: 8px;
}

.footer__contact i {
  color: var(--gold-500);
  margin-right: 8px;
  width: 16px;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  padding: 24px 0;
  font-size: .8rem;
}

.footer__bottom p:last-child {
  color: var(--slate-400);
}

/* ───────── SCROLL ANIMATIONS ───────── */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}

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

/* ───────── RESPONSIVE ───────── */

/* Tablet landscape */
@media (max-width: 1024px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .hero__inner {
    gap: 40px;
  }

  .about__grid {
    gap: 48px;
  }
}

/* Tablet portrait + large phones */
@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  .nav {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    width: 100%;
    background: var(--white);
    -webkit-flex-direction: column;
    flex-direction: column;
    padding: 24px;
    gap: 8px;
    box-shadow: var(--shadow-lg);
    border-top: 1px solid var(--slate-200);
    z-index: 999;
    max-height: calc(100vh - 72px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nav.open {
    display: -webkit-flex;
    display: flex;
  }

  .nav__link {
    padding: 12px 16px;
    font-size: 1rem;
    border-radius: var(--radius-sm);
    min-height: 44px;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }

  .nav__link:hover,
  .nav__link:active {
    background: var(--slate-50);
  }

  .nav__link::after {
    display: none;
  }

  .hamburger {
    display: -webkit-flex;
    display: flex;
    min-width: 44px;
    min-height: 44px;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
  }

  .hamburger.active span:nth-child(1) {
    -webkit-transform: rotate(45deg) translate(5px, 5px);
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    -webkit-transform: rotate(-45deg) translate(5px, -5px);
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .hero {
    min-height: auto;
    padding-top: 100px;
    padding-bottom: 60px;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
  }

  .hero__subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__actions {
    -webkit-justify-content: center;
    justify-content: center;
  }

  .hero__visual {
    display: none;
  }

  .trust-bar {
    padding: 24px 0;
  }

  .trust-bar__items {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .trust-bar__item {
    gap: 10px;
  }

  .trust-bar__item i {
    font-size: 1.2rem;
  }

  .trust-bar__item strong {
    font-size: .88rem;
  }

  .about__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about__image {
    max-width: min(340px, 88vw);
    margin: 0 auto;
  }

  .about__badge {
    bottom: -12px;
    right: -8px;
    padding: 10px 14px;
    font-size: .78rem;
  }

  .about__badge-cert {
    font-size: .65rem;
  }

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

  .service-card {
    padding: 28px 24px;
  }

  .service-card:hover {
    -webkit-transform: none;
    transform: none;
  }

  .pricing__grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  .pricing-card {
    padding: 32px 24px;
  }

  .pricing-card:hover {
    -webkit-transform: none;
    transform: none;
  }

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

  .contact__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer__bottom {
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .section {
    padding: 72px 0;
  }

  .section__title {
    font-size: clamp(1.5rem, 5vw, 2.2rem);
  }
}

/* Small phones */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .trust-bar__items {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .about__stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .about__stat strong {
    font-size: 1.3rem;
  }

  .about__stat span {
    font-size: .65rem;
  }

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

  .hero__title {
    font-size: 1.8rem;
  }

  .hero__subtitle {
    font-size: 1rem;
  }

  .hero__actions {
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 12px;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .section {
    padding: 56px 0;
  }

  .contact__form {
    padding: 24px 20px;
  }

  .pricing__extras {
    padding: 24px 16px;
  }

  .extra-item {
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 4px;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    padding: 12px 14px;
  }

  .btn {
    padding: 14px 24px;
    font-size: .9rem;
    min-height: 48px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 14px 16px;
    font-size: 16px;
  }

  .lang-switcher__btn {
    padding: 8px 10px;
  }

  .lang-switcher__code {
    display: none;
  }

  .logo__name {
    font-size: .9rem;
  }

  .logo__mark {
    width: 36px;
    height: 36px;
    font-size: .95rem;
  }
}

/* Very small phones (iPhone SE, Galaxy S) */
@media (max-width: 360px) {
  .hero__title {
    font-size: 1.5rem;
  }

  .section__title {
    font-size: 1.4rem;
  }

  .pricing-card__amount {
    font-size: 1.4rem;
  }

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

/* Safe area insets for notched phones */
@supports (padding: env(safe-area-inset-bottom)) {
  .footer__bottom {
    padding-bottom: calc(24px + env(safe-area-inset-bottom));
  }

  .header__inner {
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
  }
}

/* Landscape phones */
@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    min-height: auto;
    padding-top: 80px;
    padding-bottom: 40px;
  }
}

/* Hover-capable devices only */
@media (hover: hover) and (pointer: fine) {
  .service-card:hover {
    -webkit-transform: translateY(-6px);
    transform: translateY(-6px);
  }

  .pricing-card:hover {
    -webkit-transform: translateY(-4px);
    transform: translateY(-4px);
  }
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    -webkit-transition-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .fade-in {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

/* Print styles */
@media print {
  .header, .hero__visual, .lang-switcher, .hamburger, .contact__form, .btn {
    display: none !important;
  }

  .section {
    padding: 20px 0;
  }

  body {
    color: #000;
    background: #fff;
  }
}
