/* ==========================================
   Design Vision — Hlavní styly
   Barvy: navy #1C3A6E | blue #2A5298 | bg #E8F0F8 | orange #E85D04
   ========================================== */

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

:root {
  --navy:        #1C3A6E;
  --navy-dark:   #152C54;
  --blue:        #2A5298;
  --blue-light:  #E8F0F8;
  --orange:      #E85D04;
  --orange-h:    #C44F03;
  --white:       #FFFFFF;
  --text:        #222222;
  --text-mid:    #555555;
  --text-light:  #888888;
  --border:      #D0DCE8;
  --radius:      10px;
  --shadow:      0 4px 24px rgba(28, 58, 110, 0.10);
  --shadow-lg:   0 8px 40px rgba(28, 58, 110, 0.16);
  --transition:  0.25s ease;
  --max-w:       1180px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

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

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--orange);
  color: var(--white);
}
.btn--primary:hover { background: var(--orange-h); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(232,93,4,0.35); }

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

.btn--outline-dark {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn--outline-dark:hover { background: var(--navy); color: var(--white); }

.btn--full { width: 100%; justify-content: center; }
.btn--sm { padding: 10px 20px; font-size: 0.875rem; }

/* TEXT HELPERS */
.text-orange { color: var(--orange); }

/* SECTION HEADER */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}
.section-header p {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 580px;
  margin: 0 auto;
}
.section-header--light h2 { color: var(--white); }
.section-header--light p  { color: rgba(255,255,255,0.80); }

/* ==========================================
   HEADER
   ========================================== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.header.scrolled { box-shadow: var(--shadow); }

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

.header__logo img {
  height: 53px;
  width: auto;
}

.nav { display: flex; align-items: center; gap: 8px; }
.nav__link {
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-mid);
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
}
.nav__link:hover { color: var(--navy); background: var(--blue-light); }
.nav__cta {
  background: var(--orange);
  color: var(--white) !important;
  margin-left: 8px;
}
.nav__cta:hover { background: var(--orange-h) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================
   HERO
   ========================================== */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -40%; right: -10%;
  width: 60%; height: 160%;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.05) 0%, transparent 70%);
  pointer-events: none;
}

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

.hero__badge {
  display: inline-block;
  background: var(--blue-light);
  color: var(--blue);
  border: none;
  border-radius: 100px;
  padding: 5px 16px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero__desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.80);
  margin-bottom: 36px;
  max-width: 480px;
}

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

.hero__stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.hero__stat strong {
  display: block;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}
.hero__stat span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  margin-top: 4px;
}

/* Browser mockup */
.hero__visual { display: flex; justify-content: center; align-items: center; }

.hero__mockup {
  width: 100%;
  max-width: 480px;
  filter: drop-shadow(0 24px 60px rgba(0,0,0,0.35));
}

.mockup__browser {
  background: #1a2332;
  border-radius: 12px;
  overflow: hidden;
}
.mockup__bar {
  background: #2a3547;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.mockup__bar span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #4a5568;
}
.mockup__bar span:nth-child(1) { background: #fc5c57; }
.mockup__bar span:nth-child(2) { background: #fdbc40; }
.mockup__bar span:nth-child(3) { background: #33c748; }
.mockup__url {
  flex: 1;
  background: #3a4a61;
  border-radius: 4px;
  padding: 4px 12px;
  font-size: 0.72rem;
  color: #a0aec0;
  margin-left: 8px;
  font-family: monospace;
}
.mockup__screen {
  padding: 16px;
  background: var(--white);
}
.mockup__nav {
  height: 32px;
  background: var(--navy);
  border-radius: 4px;
  margin-bottom: 12px;
}
.mockup__hero-block {
  height: 80px;
  background: linear-gradient(135deg, var(--blue), var(--navy));
  border-radius: 6px;
  margin-bottom: 16px;
}
.mockup__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.mockup__card {
  height: 52px;
  background: var(--blue-light);
  border-radius: 6px;
  border: 2px solid var(--border);
}

/* ==========================================
   WHY US
   ========================================== */
.why {
  padding: 100px 0;
  background: var(--white);
}

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

.why__item {
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.why__item:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--orange);
}

.why__icon {
  width: 48px; height: 48px;
  background: var(--orange);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.why__icon svg {
  width: 22px; height: 22px;
  color: var(--white);
}

.why__item h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.why__item p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ==========================================
   PACKAGES
   ========================================== */
.packages {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
}

.packages__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}

.package {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition);
}
.package:hover { transform: translateY(-6px); }

.package--featured {
  border: 3px solid var(--orange);
  transform: scale(1.03);
}
.package--featured:hover { transform: scale(1.03) translateY(-6px); }

.package__badge {
  position: absolute;
  top: 18px; right: 18px;
  background: var(--orange);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.package__delivery {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--blue-light);
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.package__type {
  padding: 0 32px 4px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
}

.package__header {
  padding: 28px 32px 20px;
  border-bottom: 1px solid var(--border);
}
.package__header h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}
.package__amount {
  font-size: 2rem;
  font-weight: 800;
  color: var(--orange);
  display: block;
  line-height: 1;
}
.package__note {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 4px;
  display: block;
}

.package__desc {
  padding: 16px 32px 20px;
  font-size: 0.88rem;
  color: var(--text-mid);
  border-bottom: 1px solid var(--border);
  min-height: 72px;
}

.package__features {
  padding: 20px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text);
  line-height: 1.4;
}
.feature::before {
  content: '';
  width: 18px; height: 18px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 1px;
  background-size: 10px;
  background-position: center;
  background-repeat: no-repeat;
}
.feature--yes::before {
  background-color: #E8F5E9;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%2334A853' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.feature--no {
  color: var(--text-light);
}
.feature__free {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  margin-left: 6px;
}
.feature__free strong {
  background: #E8F5E9;
  color: #2E7D32;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.feature--no::before {
  background-color: #F5F5F5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M3 3l6 6M9 3l-6 6' stroke='%23AAAAAA' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
}

.package .btn {
  margin: 0 32px 32px;
  justify-content: center;
}

.packages__note {
  text-align: center;
  margin-top: 40px;
  color: rgba(255,255,255,0.70);
  font-size: 0.88rem;
}
.packages__note strong { color: var(--white); }

.packages__custom {
  margin-top: 48px;
  padding: 36px 48px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.packages__custom p {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .packages__custom {
    flex-direction: column;
    text-align: center;
    padding: 28px 24px;
  }
}

/* ==========================================
   PROCESS
   ========================================== */
.process {
  padding: 100px 0;
  background: var(--blue-light);
}

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

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

.process__number {
  font-size: 5rem;
  font-weight: 400;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 12px;
  display: block;
}

.process__step h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 10px;
  line-height: 1.3;
}

.process__step p {
  font-size: 0.9375rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin: 0;
}

/* ==========================================
   REFERENCES
   ========================================== */
.references {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
}

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

.ref-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 1 / 1;
  box-shadow: var(--shadow);
  background: #000;
}

.ref-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top center;
  display: block;
  transition: transform 0.4s ease;
}

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

.ref-card__info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #152C54;
  padding: 18px 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.ref-card__info h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 12px;
}

.ref-card__tag {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

.ref-card__info p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.55;
  margin-bottom: 14px;
}


/* ==========================================
   TESTIMONIALS
   ========================================== */
.testimonials {
  padding: 100px 0;
  background: var(--white);
}

.testimonials__slider {
  position: relative;
}

.testimonials__track-wrap {
  overflow: hidden;
}

.testimonials__track {
  display: flex;
  gap: 28px;
  transition: transform 0.4s ease;
}

.testimonials__track .testimonial {
  flex: 0 0 calc((100% - 56px) / 3);
  min-width: 0;
}

.slider__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.slider__btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--border);
  color: var(--navy);
  font-size: 1.1rem;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider__btn:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}
.slider__btn:disabled {
  opacity: 0.35;
  cursor: default;
}
.slider__btn:disabled:hover {
  background: var(--white);
  border-color: var(--border);
  color: var(--navy);
}

.slider__dots {
  display: flex;
  gap: 8px;
}
.slider__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background var(--transition), transform var(--transition);
}
.slider__dot.active {
  background: var(--orange);
  transform: scale(1.3);
}

.testimonial {
  background: var(--blue-light);
  border-radius: var(--radius);
  padding: 32px;
  border-left: 4px solid var(--orange);
}
.testimonial__stars {
  color: var(--orange);
  font-size: 1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.testimonial__text {
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial__author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial__avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 2px solid var(--orange);
  overflow: hidden;
  flex-shrink: 0;
}
.testimonial__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}
.testimonial__author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--navy);
}
.testimonial__author span {
  font-size: 0.78rem;
  color: var(--text-light);
}

/* ==========================================
   ABOUT
   ========================================== */
.about {
  padding: 100px 0;
  background: var(--blue-light);
}

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

.about__text h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 24px;
}
.about__text p {
  color: var(--text-mid);
  margin-bottom: 16px;
  line-height: 1.75;
}
.about__text p:last-of-type { margin-bottom: 32px; }

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

.stat-card {
  background: #fff;
  border-radius: 14px;
  padding: 24px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 2px 12px rgba(28,58,110,0.08);
}

.about__stats-heading {
  grid-column: 1 / -1;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-mid);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 4px;
}

.stat-card__label {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
}

.stat-card--more {
  background: transparent;
  border: 2px dashed var(--navy);
  box-shadow: none;
}

.stat-card--more .stat-card__label {
  font-weight: 400;
  font-style: italic;
  color: var(--navy);
}

/* ==========================================
   CONTACT
   ========================================== */
.contact {
  padding: 100px 0;
  background: var(--white);
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: flex-start;
}

.contact__info h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
}
.contact__info > p {
  color: var(--text-mid);
  margin-bottom: 40px;
  line-height: 1.75;
}

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

.contact__detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact__detail svg {
  width: 22px; height: 22px;
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 2px;
}
.contact__detail strong {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
  margin-bottom: 4px;
}
.contact__detail a,
.contact__detail span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--navy);
}
.contact__detail a:hover { color: var(--orange); }

/* FORM */
.contact__form {
  background: var(--blue-light);
  padding: 40px;
  border-radius: 14px;
}

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

.form__group {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}
.form__group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.form__group input,
.form__group select,
.form__group textarea {
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232,93,4,0.12);
}
.form__group textarea { resize: vertical; min-height: 100px; }

.form__group--checkbox { margin-bottom: 24px; }
.form__honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}
.checkbox-label input[type="checkbox"] {
  width: 18px; height: 18px;
  margin: 0;
  padding: 0;
  flex-shrink: 0;
  accent-color: var(--orange);
  margin-top: 2px;
}
.checkbox-label span {
  font-size: 0.82rem;
  color: var(--text-mid);
  line-height: 1.5;
}

.form__status {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  display: none;
}
.form__status.success {
  display: block;
  background: #E8F5E9;
  color: #2E7D32;
  border: 1px solid #A5D6A7;
}
.form__status.error {
  display: block;
  background: #FFEBEE;
  color: #C62828;
  border: 1px solid #EF9A9A;
}

.form__recaptcha-notice {
  font-size: 0.78rem;
  color: var(--text-mid);
  margin-top: 8px;
}

.form__recaptcha-notice a {
  color: var(--text-mid);
}

/* skrytí výchozí plovoucí reCAPTCHA badge */
.grecaptcha-badge { visibility: hidden; }

/* ==========================================
   FOOTER
   ========================================== */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.75);
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
  gap: 48px;
  padding: 64px 24px 48px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer__logo img {
  height: 40px;
  width: auto;
}
.footer__logo-text {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.90);
  letter-spacing: -0.01em;
}
.footer__logo-text strong {
  font-weight: 700;
  color: #ffffff;
}

.footer__brand p {
  font-size: 0.85rem;
  line-height: 1.7;
  max-width: 260px;
}

.footer__links h4,
.footer__contact h4 {
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.footer__links a,
.footer__contact a,
.footer__contact span {
  display: block;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 10px;
  transition: color var(--transition);
}
.footer__links a:hover,
.footer__contact a:hover { color: var(--orange); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.10);
}
.footer__bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
}
.footer__bottom a { color: rgba(255,255,255,0.55); }
.footer__bottom a:hover { color: var(--orange); }

/* ==========================================
   BACK TO TOP
   ========================================== */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px; height: 48px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(232,93,4,0.4);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--transition), transform var(--transition);
  pointer-events: none;
  z-index: 900;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-to-top:hover { background: var(--orange-h); }

/* ==========================================
   ANIMATIONS
   ========================================== */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.nav__link.active:not(.nav__cta) {
  color: var(--navy);
  font-weight: 600;
  background: var(--blue-light);
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1024px) {
  .hero__inner        { grid-template-columns: 1fr; gap: 48px; }
  .hero__visual       { display: none; }
  .why__grid          { grid-template-columns: repeat(2, 1fr); }
  .packages__grid     { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .package--featured  { transform: scale(1); }
  .package--featured:hover { transform: translateY(-6px); }
  .process__steps  { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .process__number { font-size: 3.5rem; min-width: 60px; }
  .references__grid   { grid-template-columns: repeat(2, 1fr); }
  .testimonials__track .testimonial { flex: 0 0 100%; }
  .about__inner       { grid-template-columns: 1fr; gap: 48px; }
  .contact__inner     { grid-template-columns: 1fr; gap: 48px; }
  .footer__inner      { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 72px; left: 0; right: 0;
    z-index: 999;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 24px 24px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    transform: translateY(-200%);
    transition: transform var(--transition);
  }
  .nav.open { transform: translateY(0); }
  .nav__link { padding: 12px 16px; font-size: 1rem; }
  .nav__cta  { margin-left: 0; margin-top: 8px; text-align: center; }
  .hamburger { display: flex; }

  .hero { padding: 120px 0 60px; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }

  .why__grid { grid-template-columns: 1fr; }
  .references__grid { grid-template-columns: 1fr; }
  .ref-card { aspect-ratio: unset; }
  .ref-card img { height: 220px; object-fit: cover; }
  .ref-card__info { position: static; }
  .contact__form { padding: 24px 20px; }
  .form__row { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 32px; padding: 40px 24px 32px; }
  .footer__bottom .container { flex-direction: column; gap: 8px; text-align: center; }

  .back-to-top { bottom: 20px; right: 20px; }
}
