
:root {
  --red: #C41E1E;
  --red-dark: #8B0000;
  --white: #FFFFFF;
  --bg-light: #F5F5F5;
  --bg-lighter: #F8F8F8;
  --bg-beige: #FDF8F5;
  --text-primary: #1A1A1A;
  --text-secondary: #2C2C2C;
  --text-muted: #666666;
  --text-light: #888888;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 30px;
  --transition: 0.3s ease;
}


.fullll img, .fullll svg {
  display: block;
  max-width: 100%;
  height: auto;
}

.fullll a {
  color: inherit;
  text-decoration: none;
}

ul { list-style: none; }

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

/* ===== BUTTONS ===== */
.fullll .btn {
  display: inline-block;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  border: none;
  border-radius: var(--radius-sm);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.fullll .btn--primary {
  background: var(--red);
  color: var(--white);
  padding: 16px 48px;
}

.fullll .btn--primary:hover,
.fullll .btn--primary:focus-visible {
  background: var(--red-dark);
  transform: scale(1.02);
  box-shadow: 0 4px 15px rgba(196,30,30,0.3);
}

.fullll .btn--sm {
  padding: 10px 24px;
  font-size: 14px;
}

.fullll .btn--full {
  width: 100%;
  padding: 18px 48px;
}

.fullll .btn:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 2px;
}

/* ===== HEADER ===== */
.fullll .header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: box-shadow var(--transition);
}

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

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

.fullll .header__logo {
  flex-shrink: 0;
}

.fullll .logo-text {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
}

.logo-dot {
  color: var(--red);
}

.header__nav {
  flex: 1;
}

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

.fullll .nav__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition);
  position: relative;
}

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

.fullll .nav__link:hover::after,
.fullll .nav__link:focus-visible::after {
  width: 100%;
}

.fullll .nav__link:hover,
.nav__link:focus-visible {
  color: var(--red);
}

.fullll .header__cta {
  flex-shrink: 0;
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.burger__line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.burger.active .burger__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger.active .burger__line:nth-child(2) {
  opacity: 0;
}

.burger.active .burger__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== HERO ===== */
.hero {
  padding: 120px 0 80px;
}

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

.hero__text h1 {
  font-size: 46px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--text-primary);
}

.hero__text p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 16px;
  max-width: 600px;
}

.hero__text p:last-child {
  margin-bottom: 0;
}

.hero__text strong {
  color: var(--text-primary);
  font-weight: 600;
}

.hero__illustration {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero__illustration svg,
.hero__illustration img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}

/* ===== SECTION TITLES ===== */
.fullll .section-title {
  font-size: 34px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 48px;
  color: var(--text-primary);
}

/* ===== ADVANTAGES ===== */
.fullll .advantages {
  padding: 80px 0;
}

.advantages > .container {
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: 60px 48px;
}

.fullll .advantages__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.fullll .advantage-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-md);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: default;
  position: relative;
  overflow: hidden;
}

.fullll .advantage-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.fullll .advantage-card__content {
  flex: 1;
  padding-right: 200px;
}

.advantage-card__icon {
  margin-bottom: 16px;
}

.advantage-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-primary);
}

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

.advantage-card__image {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 240px;
  pointer-events: none;
}

.advantage-card__image svg,
.advantage-card__image img {
  width: 100%;
  height: auto;
  display: block;
}

.advantage-card--fullheight-img .advantage-card__image {
  top: 0;
  bottom: 0;
  width: auto;
  height: 100%;
}

.advantage-card--fullheight-img .advantage-card__image img {
  width: auto;
  height: 100%;
  object-fit: contain;
}

/* ===== SERVICES ===== */
.services {
  padding: 80px 0;
}

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

.service-card {
  background: #ede6e4;
  border-radius: var(--radius-md);
  padding: 32px 24px;
  padding-bottom: 0;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.service-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.service-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.service-card__image {
  overflow: hidden;
  margin-top: auto;
  margin-left: -24px;
  margin-right: -24px;
  height: 220px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
}

.service-card__image svg,
.service-card__image img {
  width: 100%;
  height: auto;

  object-fit: cover;
  transition: transform var(--transition);
}

.service-card:hover .service-card__image svg,
.service-card:hover .service-card__image img {
  transform: scale(1.05);
}

.services__cta {
  text-align: center;
  margin-top: 48px;
}

/* ===== IDEAL CLIENT ===== */
.ideal-client {
  padding: 80px 0;
}

.ideal-client__slider {
  position: relative;
  overflow: hidden;
}

.slider-track {
  display: flex;
  transition: transform 0.5s ease;
}

.slider-track.is-dragging {
  transition: none;
}

.slide {
  flex: 0 0 100%;
  min-width: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.ideal-client__image {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.ideal-client__text {
  padding-left: 20px;
}

.ideal-client__text h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.ideal-client__text p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #ddd;
  background: transparent;
  cursor: pointer;
  transition: all var(--transition);
  padding: 0;
}

.slider-dot.active {
  background: var(--red);
  border-color: var(--red);
}

.slider-dot:hover {
  border-color: var(--red);
}

.slider-dot:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 2px;
}

/* ===== PARTNERS ===== */
.partners {
  padding: 48px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.partners__logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.partner-logo {
  height: 60px;
  filter: grayscale(100%);
  opacity: 0.5;
  transition: filter var(--transition), opacity var(--transition);
  cursor: default;
  display: flex;
  align-items: center;
}

.partner-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
}

.partner-logo svg,
.partner-logo img {
  height: 100%;
  width: auto;
  object-fit: contain;
}

/* ===== CONTACT ===== */
.contact {
  padding: 80px 0;
  background: linear-gradient(to bottom, #7280b7 0%, #e6e8ee 100%);
}

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

.contact__illustration svg,
.contact__illustration img {
  width: 100%;
  max-width: 600px;
  height: auto;
}

.contact__form-wrapper h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.contact__subtitle {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  position: relative;
}

.form-input {
  width: 100%;
  padding: 18px 20px;
  font-family: inherit;
  font-size: 15px;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--text-primary);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-input:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(196,30,30,0.15);
}

.form-input.error {
  border-color: #E53935;
}

.form-input.success {
  border-color: #4CAF50;
}

.form-label {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 15px;
  color: var(--text-light);
  pointer-events: none;
  transition: all 0.2s ease;
  background: var(--white);
  padding: 0 4px;
}

.form-input:focus ~ .form-label,
.form-input:not(:placeholder-shown) ~ .form-label {
  top: 0;
  font-size: 12px;
  color: var(--red);
}

.form-disclaimer {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  text-align: center;
  margin-top: 8px;
}

.form-disclaimer a {
  text-decoration: underline;
  color: rgba(255,255,255,0.8);
}

.form-disclaimer a:hover {
  color: var(--white);
}

.form-success {
  text-align: center;
  padding: 40px 0;
}

.form-success svg {
  margin: 0 auto 16px;
}

.form-success p {
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
}

/* ===== HOW WE WORK ===== */
.how-we-work {
  padding: 80px 0;
}

.steps {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 16px;
}

.step-card {
  background-color: var(--bg-lighter);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 70% auto;
  border-radius: var(--radius-md);
  padding: 32px 24px;
  flex: 1;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  min-height: 400px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.step-card__number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.step-card:last-of-type {
  background-position: right bottom;
}

.step-card__content {
  padding-bottom: 180px;
}

.step-card__text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 0;
}

.step-arrow {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

/* ===== PACKAGING ===== */
/* ===== PACKAGING SLIDER ===== */
.packaging {
  padding: 80px 0;
}

.packaging > .container {
  background: var(--bg-beige);
  border-radius: var(--radius-lg);
  padding: 60px 48px;
}

/* Main slider wrapper */
.packaging-slider {
  position: relative;
  user-select: none;
  -webkit-user-select: none;
}

/* Arrows */
.pkg-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: var(--white);
  box-shadow: var(--shadow-md);
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition), opacity var(--transition);
}

.pkg-arrow:hover {
  background: var(--red);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.pkg-arrow:active {
  transform: translateY(-50%) scale(0.95);
}

.pkg-arrow--prev { left: -24px; }
.pkg-arrow--next { right: -24px; }

.pkg-arrow:disabled {
  opacity: 0.3;
  pointer-events: none;
}

/* Viewport & track */
.pkg-viewport {
  overflow: hidden;
  border-radius: var(--radius-md);
}

.pkg-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  gap: 24px;
  cursor: grab;
}

.pkg-track.is-dragging {
  transition: none;
  cursor: grabbing;
}

/* Card */
.pkg-card {
  flex: 0 0 calc((100% - 48px) / 3);
  min-width: 0;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.pkg-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

/* ---- Image gallery inside each card ---- */
.pkg-card__gallery {
  position: relative;
  margin-bottom: 20px;
}

.pkg-gallery-viewport {
  overflow: hidden;
  border-radius: var(--radius-sm);
}

.pkg-gallery-track {
  display: flex;
  transition: transform 0.4s ease;
}

.pkg-gallery-slide {
  flex: 0 0 100%;
  min-width: 0;
}

.pkg-gallery-slide svg,
.pkg-gallery-slide img {
  width: 100%;
  height: auto;
  display: block;
}

.pkg-gallery-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
}

.pkg-gallery-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: #ddd;
  cursor: pointer;
  padding: 0;
  transition: background var(--transition), transform var(--transition);
}

.pkg-gallery-dot.active {
  background: var(--red);
  transform: scale(1.25);
}

.pkg-gallery-dot:hover {
  background: var(--red);
}

/* Card price list */
.pkg-card__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pkg-card__list li {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  line-height: 1.4;
  padding-bottom: 10px;
  border-bottom: 1px solid #f0f0f0;
}

.pkg-card__list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.pkg-card__list li span:first-child {
  color: var(--text-secondary);
}

.price {
  font-weight: 500;
  white-space: nowrap;
  color: var(--text-primary);
}

/* Main dots */
.pkg-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.pkg-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #ddd;
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: all var(--transition);
}

.pkg-dot.active {
  background: var(--red);
  border-color: var(--red);
}

.pkg-dot:hover {
  border-color: var(--red);
}

.pkg-dot:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 2px;
}

.packaging__cta {
  text-align: center;
  margin-top: 48px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--text-primary);
  color: var(--white);
  padding: 48px 0;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.footer__brand .logo-text {
  color: var(--white);
  display: block;
  margin-bottom: 8px;
}

.footer__brand p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}

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

.footer__nav a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}

.footer__nav a:hover {
  color: var(--white);
}

.footer__copy p {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

/* ===== ANIMATIONS ===== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.advantages__grid .animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.advantages__grid .animate-on-scroll:nth-child(3) { transition-delay: 0.2s; }
.advantages__grid .animate-on-scroll:nth-child(4) { transition-delay: 0.3s; }

.services__grid .animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.services__grid .animate-on-scroll:nth-child(3) { transition-delay: 0.2s; }
.services__grid .animate-on-scroll:nth-child(4) { transition-delay: 0.3s; }

/* ===== RESPONSIVE: TABLET ===== */
@media (max-width: 1199px) {
  .hero {
    padding: 100px 0 60px;
  }

  .hero__text h1 {
    font-size: 38px;
  }

  .section-title {
    font-size: 30px;
    margin-bottom: 40px;
  }

  .advantages > .container,
  .packaging > .container {
    padding: 48px 32px;
  }

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

  .steps {
    flex-wrap: wrap;
    gap: 24px;
  }

  .step-arrow {
    display: none;
  }

  .step-card {
    max-width: none;
  }

  .pkg-card {
    flex: 0 0 calc((100% - 24px) / 2);
  }

  .pkg-arrow--prev { left: -16px; }
  .pkg-arrow--next { right: -16px; }
}

/* ===== RESPONSIVE: SMALL TABLET ===== */
@media (max-width: 1023px) {
  .header__nav,
  .header__cta {
    display: none;
  }

  .header__nav.active {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 999;
    padding-top: 100px;
    animation: fadeIn 0.3s ease;
  }

  .header__nav.active .nav__list {
    flex-direction: column;
    gap: 24px;
  }

  .header__nav.active .nav__link {
    font-size: 20px;
  }

  .burger {
    display: flex;
  }

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

  .hero__text h1 {
    font-size: 34px;
  }

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

  .advantage-card {
    flex-direction: row;
  }

  .slide {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .ideal-client__text {
    padding-left: 0;
  }

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

  .contact__illustration {
    display: flex;
    justify-content: center;
  }

  .contact__illustration svg,
  .contact__illustration img {
    max-width: 300px;
  }

  .pkg-card {
    flex: 0 0 100%;
  }

  .pkg-arrow {
    width: 40px;
    height: 40px;
  }

  .pkg-arrow--prev { left: -8px; }
  .pkg-arrow--next { right: -8px; }

  .packaging-slider {
    margin: 0 -8px;
    padding: 0 8px;
  }

  .partners__logos {
    gap: 30px;
  }

  .partner-logo {
    height: 50px;
  }
}

/* ===== RESPONSIVE: MOBILE ===== */
@media (max-width: 767px) {
  .container {
    padding: 0 16px;
  }

  .hero {
    padding: 88px 0 48px;
  }

  .hero__text h1 {
    font-size: 28px;
  }

  .hero__text p {
    font-size: 15px;
  }

  .section-title {
    font-size: 24px;
    margin-bottom: 32px;
  }

  .advantages > .container,
  .packaging > .container {
    padding: 32px 16px;
    border-radius: 20px;
  }

  .advantage-card {
    flex-direction: column;
    padding: 24px;
  }

  .advantage-card__content {
    padding-right: 120px;
  }

  .advantage-card__image {
    width: 140px;
  }

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

  .service-card {
    padding: 24px 20px;
    padding-bottom: 0;
    display: flex;
    flex-direction: column;
  }

  .service-card__image {
    margin-left: -20px;
    margin-right: -20px;
    height: 160px;
    overflow: hidden;
    justify-content: flex-end;
    align-items: flex-end;
  }

  .service-card__image img {
    object-fit: contain;
    max-height: 160px;
    width: auto;
    max-width: 70%;
  }

  .btn--primary:not(.btn--sm):not(.btn--full) {
    display: block;
    width: 100%;
    text-align: center;
  }

  .steps {
    flex-direction: column;
  }

  .step-arrow {
    display: none;
  }

  .contact__form-wrapper h2 {
    font-size: 24px;
  }

  .footer__inner {
    flex-direction: column;
    text-align: center;
  }

  .footer__nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  .partners__logos {
    gap: 20px;
  }

  .partner-logo {
    height: 40px;
  }
}

/* ===== RESPONSIVE: SMALL MOBILE ===== */
@media (max-width: 374px) {
  .hero__text h1 {
    font-size: 24px;
  }

  .section-title {
    font-size: 22px;
  }

  .contact__form-wrapper h2 {
    font-size: 20px;
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Focus styles for keyboard navigation */
a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 2px;
}

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

  html {
    scroll-behavior: auto;
  }

  .animate-on-scroll {
    opacity: 1;
    transform: none;
  }
}
