.landing-page {
  min-height: 100vh;
  background: #fff;
  overflow-x: hidden;
  margin-top: -48px;
  font-family: 'Inter', 'Open Sans', sans-serif;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ========== NAV ========== */
.landing-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  transition: all 0.35s ease;
  background: transparent;
}

.landing-nav.scrolled {
  background: rgba(148, 4, 4, 0.95);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(10px);
}

.landing-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand img {
  height: 38px;
  width: auto;
}

.nav-links-desktop {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-links-desktop a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
  padding: 0.25rem 0;
}

.nav-links-desktop a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #ffc107;
  transition: width 0.25s;
}

.nav-links-desktop a:hover,
.nav-links-desktop a.active {
  color: #ffc107;
}

.nav-links-desktop a:hover::after,
.nav-links-desktop a.active::after {
  width: 100%;
}

.nav-actions-landing {
  display: flex;
  align-items: center;
}

.btn-nav-connect {
  padding: 0.5rem 1.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50px;
  transition: all 0.3s;
}

.btn-nav-connect:hover {
  background: #046965;
  border-color: #046965;
  color: #fff;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.25rem;
  color: #fff;
  cursor: pointer;
  padding: 0.25rem;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: #fff;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.mobile-menu.open {
  display: flex;
  max-height: 500px;
  padding: 1rem 1.5rem 1.5rem;
}

.mobile-menu a {
  font-size: 0.9375rem;
  color: var(--color-gray-700);
  text-decoration: none;
  padding: 0.625rem 0;
  border-bottom: 1px solid var(--color-gray-100);
}

.mobile-menu a:last-child {
  border: none;
}

/* ========== HERO ========== */
.hero-section {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, rgba(169, 5, 13, 0.92), rgba(40, 58, 90, 0.92)),
              url('https://carcul.ci/Assets/img/cta-bg.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(255, 193, 7, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 7rem 1.5rem 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  width: 100%;
}

.hero-text-col h1 {
  font-size: 2.75rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.hero-text-col > p {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  max-width: 500px;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 2rem;
  background: #ffc107;
  color: #1a1a2e;
  font-size: 0.9375rem;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-primary-cta:hover {
  background: #046965;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.btn-secondary-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 2rem;
  background: transparent;
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 500;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-secondary-cta:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.7);
}

.hero-image-col {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-app-img {
  max-width: 100%;
  height: auto;
  max-height: 480px;
  animation: heroFloat 4s ease-in-out infinite alternate;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

@keyframes heroFloat {
  0% { transform: translateY(0); }
  100% { transform: translateY(-12px); }
}

.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  z-index: 3;
}

.hero-wave svg {
  display: block;
  width: 100%;
  height: 80px;
}

/* ========== CLIENTS ========== */
.clients-section {
  padding: 2.5rem 0;
  background: #fff;
}

.clients-label {
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-gray-400);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.clients-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.clients-logos img {
  height: 40px;
  width: auto;
  object-fit: contain;
  opacity: 0.5;
  transition: opacity 0.3s;
  filter: grayscale(100%);
}

.clients-logos img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

/* ========== SECTION TITLES ========== */
.section-title-block {
  margin-bottom: 1.5rem;
}

.section-title-block.centered {
  text-align: center;
  margin-bottom: 3rem;
}

.section-tag {
  display: inline-block;
  padding: 0.3rem 0.875rem;
  background: rgba(175, 12, 12, 0.08);
  color: #af0c0c;
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: 50px;
  margin-bottom: 0.75rem;
}

.section-title-block h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #1a1a2e;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.section-title-block.centered h2::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: #af0c0c;
  margin: 0.75rem auto 0;
  border-radius: 2px;
}

.section-title-block p {
  font-size: 1rem;
  color: var(--color-gray-500);
  line-height: 1.6;
  margin-top: 0.75rem;
}

/* ========== ABOUT ========== */
.about-section {
  padding: 5rem 0;
  background: #f8f9fa;
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.about-img {
  width: 100%;
  max-height: 450px;
  object-fit: contain;
  border-radius: 12px;
}

.about-desc {
  font-size: 0.9375rem;
  color: var(--color-gray-600);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.about-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.about-checklist li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.5rem 0;
  font-size: 0.9375rem;
  color: var(--color-gray-700);
}

.about-checklist li i {
  color: #0c9da0;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.btn-learn-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.5rem;
  border: 2px solid #af0c0c;
  color: #af0c0c;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-learn-more:hover {
  background: #af0c0c;
  color: #fff;
}

/* ========== PILLARS ========== */
.pillars-section {
  padding: 5rem 0;
  background: #fff;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}

.pillar-card {
  text-align: center;
  padding: 2rem 1.25rem;
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--color-gray-200);
  transition: all 0.35s ease;
  position: relative;
}

.pillar-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  border-color: transparent;
}

.pillar-number {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--color-gray-300);
  margin-bottom: 0.75rem;
}

.pillar-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(175, 12, 12, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.pillar-icon i {
  font-size: 1.25rem;
  color: #af0c0c;
}

.pillar-card h3 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 0.625rem;
  line-height: 1.3;
}

.pillar-card p {
  font-size: 0.8125rem;
  color: var(--color-gray-500);
  line-height: 1.6;
}

/* ========== SERVICES ========== */
.services-section {
  padding: 5rem 0;
  background: #f8f9fa;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.service-card {
  background: #fff;
  padding: 1.75rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
  transition: all 0.35s ease;
  border: 1px solid transparent;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.1);
}

.service-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.service-icon-wrap i {
  font-size: 1.25rem;
}

.service-card h3 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}

.service-card:hover h3 {
  color: #af0c0c;
}

.service-card p {
  font-size: 0.8125rem;
  color: var(--color-gray-500);
  line-height: 1.6;
}

/* ========== STATS ========== */
.stats-section {
  position: relative;
  padding: 3.5rem 0;
  background: linear-gradient(135deg, #1a1a2e, #37517e);
  overflow: hidden;
}

.stats-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(175, 12, 12, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.stats-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}



.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: #ffc107;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ========== PRICING ========== */
.pricing-section {
  padding: 5rem 0;
  background: #fff;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.pricing-card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--color-gray-200);
  overflow: hidden;
  transition: all 0.35s;
  display: flex;
  flex-direction: column;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
}

.pricing-card.featured {
  border: 2px solid #af0c0c;
  box-shadow: 0 8px 32px rgba(175, 12, 12, 0.12);
}

.pricing-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.25rem 0.75rem;
  background: #af0c0c;
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 700;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-header {
  text-align: center;
  padding: 2rem 1.5rem 1.25rem;
}

.pricing-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(175, 12, 12, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.pricing-icon i {
  font-size: 1.25rem;
  color: #af0c0c;
}

.pricing-header h3 {
  font-size: 1.125rem;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 0.25rem;
}

.pricing-for {
  font-size: 0.8125rem;
  color: var(--color-gray-400);
}

.pricing-body {
  padding: 0 1.5rem;
  flex: 1;
}

.pricing-amount {
  text-align: center;
  padding: 1rem 0;
  margin-bottom: 1rem;
  border-top: 1px solid var(--color-gray-100);
  border-bottom: 1px solid var(--color-gray-100);
}

.price {
  font-size: 2.5rem;
  font-weight: 800;
  color: #af0c0c;
}

.currency {
  display: block;
  font-size: 0.8125rem;
  color: var(--color-gray-400);
  margin-top: 0.125rem;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0;
  font-size: 0.8125rem;
  color: var(--color-gray-600);
}

.pricing-features li i {
  color: #28a745;
  font-size: 0.625rem;
  flex-shrink: 0;
}

.pricing-install {
  padding: 0.75rem;
  background: var(--color-gray-50);
  border-radius: 8px;
  text-align: center;
  font-size: 0.8125rem;
  color: var(--color-gray-600);
  margin-bottom: 1.25rem;
}

.pricing-install strong {
  color: #1a1a2e;
}

.btn-pricing {
  display: block;
  text-align: center;
  padding: 0.75rem;
  margin: 0 1.5rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: #af0c0c;
  border: 2px solid #af0c0c;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-pricing:hover {
  background: #af0c0c;
  color: #fff;
}

.pricing-card.featured .btn-pricing {
  background: #af0c0c;
  color: #fff;
}

.pricing-card.featured .btn-pricing:hover {
  background: #8a0909;
}

/* ========== TESTIMONIALS ========== */
.testimonials-section {
  padding: 5rem 0;
  background: #f8f9fa;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid var(--color-gray-200);
  transition: all 0.35s;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
}

.testimonial-quote {
  margin-bottom: 1rem;
}

.testimonial-quote i {
  font-size: 1.5rem;
  color: rgba(175, 12, 12, 0.15);
}

.testimonial-text {
  font-size: 0.9375rem;
  color: var(--color-gray-600);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.author-info strong {
  display: block;
  font-size: 0.875rem;
  color: #1a1a2e;
}

.author-info span {
  font-size: 0.75rem;
  color: var(--color-gray-400);
}

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

.testimonial-stars i {
  font-size: 0.75rem;
  color: #ffc107;
}

/* ========== GALLERY ========== */
.gallery-section {
  padding: 5rem 0;
  background: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.gallery-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 16/10;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(175, 12, 12, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 600;
}

/* ========== CTA ========== */
.cta-section {
  position: relative;
  padding: 5rem 0;
  background: linear-gradient(135deg, rgba(169, 5, 13, 0.95), rgba(40, 58, 90, 0.95)),
              url('https://carcul.ci/Assets/img/cta-bg.jpg') center/cover no-repeat;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta-content {
  position: relative;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.cta-content p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.cta-btns {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-cta-white {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 2rem;
  background: #fff;
  color: #af0c0c;
  font-size: 0.9375rem;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-cta-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.btn-cta-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 2rem;
  background: transparent;
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 500;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s;
}

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

/* ========== FAQ ========== */
.faq-section {
  padding: 5rem 0;
  background: #f8f9fa;
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--color-gray-200);
  border-radius: 8px;
  margin-bottom: 0.625rem;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.2s;
}

.faq-item.open {
  border-color: #af0c0c;
}

.faq-question {
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-question span {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #1a1a2e;
  line-height: 1.4;
}

.faq-item.open .faq-question span {
  color: #af0c0c;
}

.faq-question i {
  color: #af0c0c;
  font-size: 0.75rem;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq-answer {
  padding: 0 1.25rem 1rem;
}

.faq-answer p {
  font-size: 0.875rem;
  color: var(--color-gray-500);
  line-height: 1.7;
}

/* ========== CONTACT ========== */
.contact-section {
  padding: 5rem 0;
  background: #fff;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 2.5rem;
}

.contact-info-card {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(175, 12, 12, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon i {
  font-size: 1rem;
  color: #af0c0c;
}

.contact-info-item h4 {
  font-size: 0.875rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 0.25rem;
}

.contact-info-item p {
  font-size: 0.8125rem;
  color: var(--color-gray-500);
  line-height: 1.6;
}

.wa-link {
  font-size: 0.8125rem;
  color: #25d366;
  font-weight: 600;
  text-decoration: none;
}

.wa-link:hover {
  text-decoration: underline;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.875rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-gray-200);
  border-radius: 8px;
  font-size: 0.875rem;
  font-family: inherit;
  color: var(--color-gray-800);
  transition: border-color 0.2s;
  background: #fff;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #af0c0c;
}

.contact-form textarea {
  resize: vertical;
  min-height: 100px;
}

.btn-send {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 2rem;
  background: #af0c0c;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s;
  align-self: flex-start;
}

.btn-send:hover {
  background: #8a0909;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(175, 12, 12, 0.3);
}

/* ========== FOOTER ========== */
.landing-footer {
  background: #1a1a2e;
  color: #fff;
}

.footer-main {
  padding: 3.5rem 0 2.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
}

.footer-logo {
  height: 36px;
  margin-bottom: 1rem;
}

.footer-brand-col p {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  max-width: 280px;
}

.footer-socials {
  display: flex;
  gap: 0.625rem;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #af0c0c;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-size: 0.8125rem;
  transition: all 0.3s;
}

.footer-socials a:hover {
  background: #d41010;
  transform: translateY(-2px);
}

.footer-links-col h4,
.footer-contact-col h4 {
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.footer-links-col a {
  display: block;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}

.footer-links-col a:hover {
  color: #fff;
}

.footer-contact-col p {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-contact-col p i {
  color: #af0c0c;
  font-size: 0.75rem;
  width: 16px;
  flex-shrink: 0;
}

.footer-bottom {
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
}

.footer-bottom strong {
  color: rgba(255, 255, 255, 0.7);
}

/* ========== BACK TO TOP ========== */
.back-to-top {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #af0c0c;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 999;
  transition: all 0.3s;
  font-size: 0.875rem;
  box-shadow: 0 4px 12px rgba(175, 12, 12, 0.3);
}

.back-to-top:hover {
  background: #8a0909;
  transform: translateY(-2px);
}

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

  .hero-text-col > p {
    max-width: 100%;
  }

  .hero-btns {
    justify-content: center;
  }

  .hero-app-img {
    max-height: 360px;
  }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .pillars-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .testimonials-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

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

  .contact-layout {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  .nav-links-desktop,
  .nav-actions-landing {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .hero-text-col h1 {
    font-size: 1.875rem;
  }

  .hero-content {
    padding: 6rem 1.5rem 4rem;
  }

  .section-title-block h2 {
    font-size: 1.625rem;
  }

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

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

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

  .stat-number {
    font-size: 2rem;
  }

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

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-btns {
    flex-direction: column;
    align-items: center;
  }

  .cta-btns {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .hero-text-col h1 {
    font-size: 1.5rem;
  }

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

  .clients-logos {
    gap: 1.5rem;
  }

  .clients-logos img {
    height: 28px;
  }
}
