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

:root {
  --blue-primary: #2560BB;
  --blue-light: #38B6FF;
  --blue-dark: #1a4a8f;
  --red: #FA0644;
  --orange: #FA5300;
  --purple: #AA02FF;
  --dark: #0a0e1a;
  --dark-2: #111827;
  --gray-900: #1a1a2e;
  --gray-800: #2d2d44;
  --gray-700: #3d3d5c;
  --gray-600: #6b7280;
  --gray-400: #9ca3af;
  --gray-300: #d1d5db;
  --gray-200: #e5e7eb;
  --gray-100: #f3f4f6;
  --gray-50: #f9fafb;
  --white: #ffffff;
  --gradient-primary: linear-gradient(135deg, var(--blue-primary), var(--blue-light));
  --gradient-dark: linear-gradient(135deg, var(--dark), var(--dark-2));
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
  --shadow-glow: 0 0 40px rgba(37, 96, 187, 0.3);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue-primary);
  margin-bottom: 16px;
  position: relative;
  padding-left: 32px;
}

.section-tag::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 2px;
  background: var(--gradient-primary);
}

.section-tag--light {
  color: var(--blue-light);
}

.section-tag--light::before {
  background: var(--blue-light);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.section-title--center {
  text-align: center;
}

.section-title--light {
  color: var(--white);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--gradient-primary);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(37, 96, 187, 0.4);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 96, 187, 0.5);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}

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

.btn--outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.25);
}

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

.btn--lg {
  padding: 16px 36px;
  font-size: 1rem;
}

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

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
  background: transparent;
}

.header--scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  padding: 10px 0;
}

.header--scrolled .header__link {
  color: var(--dark);
}

.header--scrolled .header__link:hover {
  color: var(--blue-primary);
}

.header--scrolled .header__link--cta {
  color: var(--white) !important;
}

.header--scrolled .header__logo span {
  color: var(--dark);
}

.header--scrolled .header__menu-btn span {
  background: var(--dark);
}

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

.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  z-index: 1001;
}

.header__logo span {
  transition: var(--transition);
}

.header__logo-icon {
  width: 36px;
  height: 36px;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  position: relative;
}

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

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

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

.header__link--cta {
  background: var(--gradient-primary);
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
}

.header__link--cta::after { display: none; }

.header__link--cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(37, 96, 187, 0.4);
}

.header__menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.header__menu-btn span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
  border-radius: 2px;
}

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

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

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

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}

.hero__bg-video {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0a0e1a 0%, #111827 50%, #0d1b3e 100%);
}

.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(37, 96, 187, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(56, 182, 255, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(37, 96, 187, 0.05) 0%, transparent 70%);
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 120px 24px 80px;
  z-index: 2;
}

.hero__badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue-light);
  padding: 8px 16px;
  border: 1px solid rgba(56, 182, 255, 0.3);
  border-radius: 50px;
  margin-bottom: 24px;
  background: rgba(56, 182, 255, 0.08);
}

.hero__title {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero__text {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--gray-400);
  margin-bottom: 36px;
  max-width: 540px;
}

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

.hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__shield {
  position: relative;
  width: 320px;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: float 6s ease-in-out infinite;
}

.hero__shield svg {
  width: 240px;
  height: auto;
  filter: drop-shadow(0 0 40px rgba(37, 96, 187, 0.3));
}

.hero__shield-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 96, 187, 0.2) 0%, transparent 70%);
  animation: pulse 4s ease-in-out infinite;
}

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

@keyframes pulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hero__scroll-line {
  width: 2px;
  height: 40px;
  background: rgba(255,255,255,0.15);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  width: 100%;
  height: 50%;
  background: var(--blue-light);
  animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
  0% { top: -50%; }
  100% { top: 100%; }
}

/* ===== ABOUT ===== */
.about {
  padding: 120px 0;
  background: var(--white);
}

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

.about__image {
  position: relative;
}

.about__image-card {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--gradient-primary);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: flex-end;
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.about__image-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.15) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(0,0,0,0.1) 0%, transparent 50%);
}

.about__image-decoration {
  position: absolute;
  width: 120px;
  height: 120px;
  border: 3px solid var(--blue-light);
  border-radius: var(--radius-lg);
  top: -20px;
  right: -20px;
  opacity: 0.3;
}

.about__stat {
  position: relative;
  display: flex;
  align-items: baseline;
  gap: 12px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  padding: 20px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.2);
}

.about__stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.about__stat-label {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  line-height: 1.3;
}

.about__text {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--gray-600);
  margin-bottom: 20px;
}

.about__text:last-of-type {
  margin-bottom: 32px;
}

/* ===== SERVICES ===== */
.services {
  padding: 120px 0;
  background: var(--gray-50);
}

.services__header {
  text-align: center;
  margin-bottom: 64px;
}

.services__header .section-tag {
  padding-left: 0;
}

.services__header .section-tag::before {
  display: none;
}

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

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

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

.service-card--featured {
  border-color: var(--blue-primary);
  box-shadow: var(--shadow-glow);
}

.service-card__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  background: var(--gradient-primary);
  padding: 4px 12px;
  border-radius: 50px;
}

.service-card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-card__icon--blue {
  background: rgba(37, 96, 187, 0.1);
  color: var(--blue-primary);
}

.service-card__icon--red {
  background: rgba(250, 6, 68, 0.1);
  color: var(--red);
}

.service-card__icon--orange {
  background: rgba(250, 83, 0, 0.1);
  color: var(--orange);
}

.service-card__icon--purple {
  background: rgba(170, 2, 255, 0.1);
  color: var(--purple);
}

.service-card__title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--dark);
}

.service-card__text {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--gray-600);
}

.service-card__line {
  width: 40px;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 3px;
  margin-top: 20px;
  transition: var(--transition);
}

.service-card:hover .service-card__line {
  width: 60px;
}

/* ===== MODELS ===== */
.models {
  padding: 120px 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.models::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 0% 50%, rgba(37, 96, 187, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 100% 50%, rgba(56, 182, 255, 0.08) 0%, transparent 50%);
}

.models__header {
  text-align: center;
  position: relative;
  margin-bottom: 64px;
}

.models__header .section-tag {
  padding-left: 0;
}

.models__header .section-tag::before {
  display: none;
}

.models__subtitle {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--gray-400);
  max-width: 640px;
  margin: 0 auto;
}

.models__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.model-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: 40px;
  transition: var(--transition);
  position: relative;
}

.model-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-4px);
}

.model-card--featured {
  background: rgba(37, 96, 187, 0.12);
  border-color: rgba(37, 96, 187, 0.4);
}

.model-card--featured:hover {
  border-color: rgba(37, 96, 187, 0.6);
  background: rgba(37, 96, 187, 0.18);
}

.model-card__popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  background: var(--gradient-primary);
  padding: 6px 20px;
  border-radius: 50px;
}

.model-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.model-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(56, 182, 255, 0.15);
  color: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.model-card__tag {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-400);
  background: rgba(255,255,255,0.08);
  padding: 4px 12px;
  border-radius: 50px;
}

.model-card__tag--highlight {
  color: var(--blue-light);
  background: rgba(56, 182, 255, 0.12);
}

.model-card__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.model-card__urgency {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(250, 83, 0, 0.12);
  border: 1px solid rgba(250, 83, 0, 0.25);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 24px;
}

.model-card__urgency-icon {
  flex-shrink: 0;
  color: #FF6B35;
  margin-top: 2px;
}

.model-card__urgency p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.8);
  margin: 0;
}

.model-card__urgency p strong {
  color: #FF6B35;
  font-weight: 700;
}

.model-card__list {
  list-style: none;
  margin-bottom: 32px;
}

.model-card__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--gray-300);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.model-card__list li:last-child {
  border-bottom: none;
}

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

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

.contact__text {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--gray-600);
  margin-bottom: 16px;
}

.contact__whatsapp-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact__whatsapp-card {
  background: var(--gray-50);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  border: 1px solid var(--gray-200);
  text-align: center;
  max-width: 420px;
  width: 100%;
}

.contact__whatsapp-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.contact__whatsapp-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.contact__whatsapp-text {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--gray-600);
  margin-bottom: 28px;
}

.btn--whatsapp {
  background: #25D366;
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  font-size: 1.05rem;
}

.btn--whatsapp:hover {
  background: #1fb855;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

.contact__whatsapp-info {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-200);
}

.contact__whatsapp-info p {
  font-size: 0.9rem;
  color: var(--gray-600);
  margin-bottom: 4px;
}

.contact__whatsapp-info p strong {
  color: var(--dark);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  padding: 80px 0 40px;
  color: var(--gray-400);
}

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

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.footer__description {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--gray-400);
  max-width: 280px;
}

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

.footer__links a,
.footer__contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--gray-400);
  margin-bottom: 12px;
}

.footer__links a:hover,
.footer__contact a:hover {
  color: var(--white);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 32px;
  font-size: 0.8rem;
}

.footer__bottom a {
  color: var(--blue-light);
  text-decoration: underline;
}

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

.footer__cookie {
  text-align: center;
  font-size: 0.8rem;
  color: var(--gray-600);
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

/* ===== ANIMATIONS ===== */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-animate="fade-left"] {
  transform: translateX(30px);
}

[data-animate="fade-right"] {
  transform: translateX(-30px);
}

[data-animate].animated {
  opacity: 1;
  transform: translate(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

  .hero__actions {
    justify-content: center;
  }

  .hero__visual {
    display: none;
  }

  .about__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

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

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

@media (max-width: 768px) {
  .header__nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 14, 26, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    transform: translateX(100%);
    transition: var(--transition);
  }

  .header__nav.open {
    transform: translateX(0);
  }

  .header__nav .header__link {
    font-size: 1.25rem;
    color: var(--white);
  }

  .header__menu-btn {
    display: flex;
  }

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

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

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

  .form-group--full {
    grid-column: auto;
  }

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

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

  .hero__title {
    font-size: clamp(2rem, 6vw, 2.75rem);
  }
}

@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
    width: 100%;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .model-card {
    padding: 28px;
  }

  .contact__form-wrapper {
    padding: 24px;
  }
}
