/* ========================
   DESIGN TOKENS
   ======================== */
:root {
  --color-yellow: #f5c518;
  --color-yellow-dark: #e0b000;
  --color-yellow-light: #ffd740;
  --color-black: #0a0a0a;
  --color-dark: #111111;
  --color-dark-alt: #1a1a1a;
  --color-gray: #888888;
  --color-light-gray: #f4f4f4;
  --color-white: #ffffff;
  --color-text: #222222;
  --color-text-light: #555555;

  --font-body: 'Outfit', sans-serif;
  --font-heading: 'Outfit', sans-serif;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --shadow-card: 0 4px 24px rgba(0,0,0,0.10);
  --shadow-hover: 0 8px 40px rgba(0,0,0,0.18);
  --shadow-yellow: 0 4px 20px rgba(245,197,24,0.35);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-white);
  overflow-x: hidden;
  line-height: 1.6;
}

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

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

ul {
  list-style: none;
}

/* ========================
   TYPOGRAPHY
   ======================== */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.2;
  font-weight: 800;
}

h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

p {
  line-height: 1.75;
  color: var(--color-text-light);
}

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

.section {
  padding: 90px 0;
}

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

.section--gray {
  background: var(--color-light-gray);
}

.section-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-yellow);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--color-text-light);
  max-width: 600px;
  margin-bottom: 48px;
}

.section--dark .section-subtitle {
  color: rgba(255,255,255,0.65);
}

/* ========================
   BUTTONS
   ======================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

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

.btn-primary:hover {
  background: var(--color-yellow-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-yellow);
}

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

.btn-outline:hover {
  border-color: var(--color-yellow);
  color: var(--color-yellow);
  transform: translateY(-2px);
}

.btn-large {
  padding: 18px 40px;
  font-size: 1.1rem;
}

/* ========================
   HEADER / NAV
   ======================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
  padding: 0;
}

.header.scrolled {
  background: rgba(10,10,10,0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 24px;
  max-width: 1200px;
  margin: 0 auto;
}

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

.logo-icon {
  width: 42px;
  height: 42px;
  background: var(--color-yellow);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--color-white);
}

.logo-sub {
  font-size: 0.7rem;
  color: var(--color-yellow);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-yellow);
  transition: width var(--transition);
}

.nav-link:hover {
  color: var(--color-yellow);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--color-yellow);
  color: var(--color-black);
  padding: 9px 20px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.95rem;
  transition: all var(--transition);
}

.nav-phone:hover {
  background: var(--color-yellow-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-yellow);
}

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

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  transition: all var(--transition);
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/images/nowe-taxi-3.png');
  background-size: cover;
  background-position: center 45%;
  background-repeat: no-repeat;
  transform: scale(1.05);
  animation: heroZoom 12s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.12); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,0,0,0.80) 0%,
    rgba(0,0,0,0.55) 50%,
    rgba(0,0,0,0.40) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  padding-top: 100px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,197,24,0.15);
  border: 1px solid rgba(245,197,24,0.4);
  padding: 6px 16px;
  border-radius: 100px;
  color: var(--color-yellow);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
  animation: fadeInUp 0.6s ease both;
}

.hero-title {
  color: var(--color-white);
  margin-bottom: 20px;
  animation: fadeInUp 0.7s 0.1s ease both;
}

.hero-title span {
  color: var(--color-yellow);
}

.hero-desc {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.78);
  max-width: 560px;
  margin-bottom: 40px;
  animation: fadeInUp 0.7s 0.2s ease both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.7s 0.3s ease both;
}

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 72px;
  flex-wrap: wrap;
  animation: fadeInUp 0.7s 0.4s ease both;
}

.hero-stat {
  border-left: 3px solid var(--color-yellow);
  padding-left: 16px;
}

.hero-stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: var(--color-white);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

.hero-scroll svg {
  width: 20px;
  height: 20px;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ========================
   PHONE STICKY BAR
   ======================== */
.phone-bar {
  background: var(--color-yellow);
  text-align: center;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.phone-bar a {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--color-black);
  transition: opacity var(--transition);
}

.phone-bar a:hover {
  opacity: 0.8;
}

.phone-bar-label {
  font-size: 0.88rem;
  color: rgba(0,0,0,0.6);
  font-weight: 500;
}

/* ========================
   SERVICES
   ======================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all var(--transition);
  border: 1px solid rgba(0,0,0,0.06);
  cursor: default;
}

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

.service-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--color-light-gray);
  position: relative;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.service-icon-wrap {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: linear-gradient(135deg, rgba(245,197,24,0.1), rgba(0,0,0,0.05));
  position: relative;
  z-index: 1;
  transition: all var(--transition-slow);
}

.service-icon-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--color-yellow) 0%, var(--color-yellow-dark) 100%);
  opacity: 0;
  z-index: -1;
  transition: opacity var(--transition);
}

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

.service-icon {
  font-size: 3.5rem;
  line-height: 1;
  transition: transform var(--transition), filter var(--transition);
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.1));
}

.service-card:hover .service-icon {
  transform: scale(1.15) translateY(-5px);
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.3));
}

.service-card-body {
  padding: 32px 24px;
}

.service-card-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--color-text);
}

.service-card-desc {
  font-size: 0.92rem;
  color: var(--color-text-light);
  line-height: 1.65;
}

.service-card-tag {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-yellow-dark);
  background: rgba(245,197,24,0.12);
  padding: 4px 10px;
  border-radius: 100px;
}

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

.about-image-wrap {
  position: relative;
}

.about-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-hover);
}

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

.about-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--color-yellow);
  color: var(--color-black);
  padding: 20px 24px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-yellow);
}

.about-badge-num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
}

.about-badge-text {
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: 4px;
  opacity: 0.7;
}

.about-content .section-subtitle {
  margin-bottom: 24px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 32px 0;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 500;
}

.about-feature-icon {
  width: 36px;
  height: 36px;
  background: rgba(245,197,24,0.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

/* ========================
   AREA / MAP
   ======================== */
.area-section {
  position: relative;
  overflow: hidden;
}

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

.area-map {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  aspect-ratio: 1;
}

.area-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(20%);
}

.area-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.area-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  transition: all var(--transition);
}

.area-item:hover {
  background: rgba(245,197,24,0.08);
  border-color: rgba(245,197,24,0.25);
  transform: translateX(6px);
}

.area-item-icon {
  font-size: 1.4rem;
  width: 42px;
  text-align: center;
  flex-shrink: 0;
}

.area-item-text strong {
  display: block;
  color: var(--color-white);
  font-weight: 600;
  margin-bottom: 2px;
}

.area-item-text span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

/* ========================
   ADVANTAGES
   ======================== */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.advantage-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(0,0,0,0.06);
  transition: all var(--transition);
  text-align: center;
}

.advantage-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(245,197,24,0.3);
}

.advantage-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  display: block;
}

.advantage-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--color-text);
}

.advantage-desc {
  font-size: 0.88rem;
  line-height: 1.65;
}

/* ========================
   REVIEWS
   ======================== */
.reviews-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 24px;
}

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

.rating-big {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
  color: var(--color-yellow);
}

.stars {
  display: flex;
  gap: 3px;
  flex-wrap: nowrap;
}

.star {
  color: var(--color-yellow);
  font-size: 1.2rem;
}

.rating-count {
  font-size: 0.85rem;
  color: var(--color-gray);
  margin-top: 4px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.review-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(0,0,0,0.06);
  transition: all var(--transition);
}

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

.review-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.review-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-yellow) 0%, var(--color-yellow-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--color-black);
  flex-shrink: 0;
}

.review-meta {
  flex: 1;
}

.review-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-text);
  margin-bottom: 4px;
}

.review-stars {
  display: flex;
  gap: 2px;
}

.review-stars .star {
  font-size: 0.9rem;
}

.review-text {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--color-text-light);
}

.google-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--color-gray);
}

/* ========================
   CTA SECTION
   ======================== */
.cta-section {
  background: var(--color-yellow);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '🚕';
  position: absolute;
  font-size: 20rem;
  opacity: 0.05;
  top: -40px;
  right: -40px;
  line-height: 1;
}

.cta-section h2 {
  color: var(--color-black);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}

.cta-section p {
  color: rgba(0,0,0,0.6);
  font-size: 1.1rem;
  max-width: 520px;
  margin: 0 auto 40px;
}

.cta-phone-big {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--color-black);
  transition: opacity var(--transition);
}

.cta-phone-big:hover {
  opacity: 0.75;
}

.cta-sub {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-top: 32px;
  flex-wrap: wrap;
}

.cta-sub-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  color: rgba(0,0,0,0.65);
}

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

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

.footer-brand p {
  margin-top: 16px;
  font-size: 0.9rem;
  line-height: 1.75;
  max-width: 320px;
}

.footer-heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-white);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}

.footer-link:hover {
  color: var(--color-yellow);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.9rem;
}

.footer-contact-icon {
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-contact-item a {
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}

.footer-contact-item a:hover {
  color: var(--color-yellow);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copy {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  transition: color var(--transition);
}

.footer-legal a:hover {
  color: var(--color-yellow);
}

/* ========================
   ANIMATIONS
   ======================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ========================
   RESPONSIVE
   ======================== */
@media (max-width: 1024px) {
  .about-grid,
  .area-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .about-image-wrap {
    max-width: 560px;
  }

  .about-badge {
    bottom: -16px;
    right: -8px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 64px 0;
  }

  .nav {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 72px;
    left: 0;
    width: 100%;
    height: calc(100vh - 72px);
    background: rgba(10,10,10,0.97);
    padding: 48px 24px;
    gap: 32px;
    align-items: center;
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255,255,255,0.08);
    overflow-y: auto;
  }

  .nav-link {
    font-size: 1.2rem;
  }

  .nav.open {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .hero-stats {
    gap: 28px;
    margin-top: 48px;
  }

  .footer-grid,
  .advantages-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .reviews-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
  }

  .btn {
    justify-content: center;
  }

  .cta-phone-big {
    font-size: 2rem;
  }
}
