/* =============================================
   RUMAH DIGITAL INOVASI - Landing Page CSS
   Design System: White + Orange + Black
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* =============================================
   CSS CUSTOM PROPERTIES
   ============================================= */
:root {
  --orange: #ff751f;
  --orange-dark: #e55a00;
  --orange-light: #ff9547;
  --orange-glow: rgba(255, 117, 31, 0.25);
  --orange-subtle: rgba(255, 117, 31, 0.08);
  --black: #0a0a0a;
  --dark: #141414;
  --dark-2: #1e1e1e;
  --dark-3: #2a2a2a;
  --gray: #555555;
  --gray-light: #888888;
  --border: #e2e2e2;
  --border-dark: #2e2e2e;
  --white: #ffffff;
  --off-white: #f9f8f6;
  --section-alt: #f4f4f2;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow: 0 4px 20px rgba(0,0,0,0.10);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.14);
  --shadow-orange: 0 8px 30px rgba(255,117,31,0.35);
  --shadow-orange-sm: 0 4px 16px rgba(255,117,31,0.28);

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.18s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  --navbar-h: 72px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  color: var(--black);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
  list-style: none;
}

button {
  font-family: var(--font);
  cursor: pointer;
  border: none;
  outline: none;
}

input, textarea, select {
  font-family: var(--font);
}

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

.section-padding {
  padding: 100px 0;
}

/* =============================================
   TYPOGRAPHY
   ============================================= */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.18;
  color: var(--black);
  letter-spacing: -0.02em;
}

.section-title span {
  color: var(--orange);
}

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

.section-desc {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 600px;
  line-height: 1.75;
  margin-top: 16px;
}

.section-desc--white {
  color: rgba(255,255,255,0.72);
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: var(--white);
  box-shadow: var(--shadow-orange-sm);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-orange);
  background: linear-gradient(135deg, var(--orange-light) 0%, var(--orange) 100%);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-outline {
  border-color: var(--border);
  color: var(--black);
  background: transparent;
}

.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: var(--orange-subtle);
}

.btn-white {
  background: var(--white);
  color: var(--orange);
  font-weight: 700;
  box-shadow: var(--shadow-lg);
}

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

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

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

/* =============================================
   NAVBAR
   ============================================= */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--navbar-h);
  transition: var(--transition);
}

#navbar.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.08), var(--shadow-sm);
}

/* === Navbar di atas hero gelap (belum di-scroll) === */
#navbar:not(.scrolled) .navbar-logo img {
  filter: brightness(0) invert(1);
}

#navbar:not(.scrolled) .nav-links a {
  color: rgba(255, 255, 255, 0.88);
}

#navbar:not(.scrolled) .nav-links a:hover,
#navbar:not(.scrolled) .nav-links a.active {
  color: var(--orange-light);
  background: rgba(255, 255, 255, 0.10);
}

#navbar:not(.scrolled) .btn-outline {
  border-color: rgba(255, 255, 255, 0.40);
  color: rgba(255, 255, 255, 0.88);
  background: transparent;
}

#navbar:not(.scrolled) .btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(255, 117, 31, 0.12);
}

#navbar:not(.scrolled) .hamburger span {
  background: rgba(255, 255, 255, 0.90);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--navbar-h);
  gap: 24px;
}

.navbar-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.navbar-logo img {
  height: 48px;
  width: auto;
}

.navbar-logo svg {
  height: 48px;
  width: auto;
}

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

.nav-links a {
  padding: 8px 14px;
  border-radius: var(--radius-full);
  font-size: 14.5px;
  font-weight: 500;
  color: var(--black);
  transition: var(--transition-fast);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--orange);
  background: var(--orange-subtle);
}

.navbar-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  background: none;
  transition: var(--transition-fast);
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--navbar-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  padding: 32px 24px;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: var(--transition);
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
  display: flex;
}

.mobile-menu a {
  padding: 16px 20px;
  border-radius: var(--radius);
  font-size: 18px;
  font-weight: 600;
  color: var(--black);
  border-bottom: 1px solid var(--border);
  transition: var(--transition-fast);
}

.mobile-menu a:hover {
  color: var(--orange);
  background: var(--orange-subtle);
}

.mobile-menu .btn {
  margin-top: 16px;
}

/* =============================================
   HERO SECTION
   ============================================= */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--black);
  overflow: hidden;
  padding-top: var(--navbar-h);
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,117,31,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,117,31,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
}

.hero-bg-glow {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,117,31,0.20) 0%, transparent 70%);
  top: -200px;
  right: -200px;
  z-index: 0;
}

.hero-bg-glow-2 {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,117,31,0.10) 0%, transparent 70%);
  bottom: -100px;
  left: -100px;
  z-index: 0;
}

/* Hero 2-column grid layout */
#hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  min-height: calc(100vh - var(--navbar-h));
  padding-top: 40px;
  padding-bottom: 80px;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(255,117,31,0.12);
  border: 1px solid rgba(255,117,31,0.30);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  color: var(--orange-light);
  letter-spacing: 0.5px;
  margin-bottom: 28px;
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  animation: pulse-dot 2s ease-in-out infinite;
}

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

.hero-title {
  font-size: clamp(2.6rem, 5.5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 24px;
}

.hero-title .highlight {
  color: var(--orange);
  position: relative;
  display: inline-block;
}

.hero-title .highlight::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), transparent);
  border-radius: 2px;
}

.hero-desc {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 600px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.10);
  flex-wrap: wrap;
}

.hero-stat-item {
  text-align: left;
}

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

.hero-stat-number span {
  color: var(--orange);
}

.hero-stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.50);
  margin-top: 4px;
  font-weight: 500;
}

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.5;
  z-index: 1;
}

.hero-scroll span {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  font-weight: 600;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--orange), transparent);
  animation: scroll-anim 2s ease-in-out infinite;
}

@keyframes scroll-anim {
  0% { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  51% { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0.2; }
}

/* =============================================
   HERO VISUAL — Orbit Animation
   ============================================= */
.hero-visual {
  position: relative;
  width: 100%;
  height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  flex-shrink: 0;
}

/* Glow radial base */
.hv-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,117,31,0.18) 0%, rgba(255,117,31,0.05) 50%, transparent 70%);
  animation: hv-pulse-glow 4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes hv-pulse-glow {
  0%, 100% { transform: scale(1);   opacity: 0.8; }
  50%       { transform: scale(1.1); opacity: 1;   }
}

/* Central hub */
.hv-hub {
  position: absolute;
  width: 116px;
  height: 116px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.hv-hub-core {
  position: relative;
  z-index: 2;
  width: 108px;
  height: 108px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255,117,31,0.22) 0%, rgba(255,117,31,0.06) 100%);
  border: 1.5px solid rgba(255,117,31,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: hv-hub-breathe 3s ease-in-out infinite;
  box-shadow:
    0 0 0 8px  rgba(255,117,31,0.07),
    0 0 0 18px rgba(255,117,31,0.03),
    0 0 40px   rgba(255,117,31,0.22);
}
@keyframes hv-hub-breathe {
  0%, 100% { box-shadow: 0 0 0 8px rgba(255,117,31,0.07), 0 0 0 18px rgba(255,117,31,0.03), 0 0 40px rgba(255,117,31,0.22); }
  50%       { box-shadow: 0 0 0 14px rgba(255,117,31,0.10), 0 0 0 28px rgba(255,117,31,0.04), 0 0 70px rgba(255,117,31,0.35); }
}

.hv-hub-core img {
  width: 68px;
  filter: brightness(0) invert(1);
}

/* Rotating dashed rings around hub */
.hv-hub-dash {
  position: absolute;
  border-radius: 50%;
  border: 1.5px dashed rgba(255,117,31,0.25);
  pointer-events: none;
}
.hv-hub-dash-1 { width: 144px; height: 144px; animation: hv-slow-spin 18s linear infinite; }
.hv-hub-dash-2 { width: 168px; height: 168px; animation: hv-slow-spin 12s linear infinite reverse; border-color: rgba(255,255,255,0.08); }
@keyframes hv-slow-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Orbit rings */
.hv-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.05);
  pointer-events: none;
}

/* Orbit 1: 3 icons, clockwise 12s, radius 130px */
.hv-orbit-1 {
  width: 260px;
  height: 260px;
  animation: hv-orbit1-spin 12s linear infinite;
}
@keyframes hv-orbit1-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Orbit 2: 2 icons, counter-clockwise 22s, radius 200px */
.hv-orbit-2 {
  width: 400px;
  height: 400px;
  animation: hv-orbit2-spin 22s linear infinite reverse;
}
@keyframes hv-orbit2-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Item: centered & then pushed to radius via initial rotate+translateY */
.hv-orbit-item {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 54px;
  height: 54px;
  margin: -27px 0 0 -27px;
  pointer-events: auto;
}

/* Initial positions on orbit-1 (radius = 130px = 260/2) */
.hv-orbit-1 .hv-orbit-item:nth-child(1) { transform: rotate(0deg)   translateY(-130px); }
.hv-orbit-1 .hv-orbit-item:nth-child(2) { transform: rotate(120deg) translateY(-130px); }
.hv-orbit-1 .hv-orbit-item:nth-child(3) { transform: rotate(240deg) translateY(-130px); }

/* Initial positions on orbit-2 (radius = 200px = 400/2) */
.hv-orbit-2 .hv-orbit-item:nth-child(1) { transform: rotate(50deg)  translateY(-200px); }
.hv-orbit-2 .hv-orbit-item:nth-child(2) { transform: rotate(230deg) translateY(-200px); }

/* Icon box inside each item — counter-rotates to stay upright */
.hv-orbit-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: rgba(20, 20, 20, 0.75);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  gap: 3px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.08);
  transition: transform 0.25s, box-shadow 0.25s;
  cursor: default;
  position: relative;
}

.hv-orbit-icon span {
  font-size: 9px;
  font-weight: 700;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.4px;
  text-transform: uppercase;
  font-family: var(--font);
}

.hv-orbit-icon:hover {
  border-color: var(--orange);
  box-shadow: 0 4px 20px rgba(255,117,31,0.3), inset 0 1px 0 rgba(255,255,255,0.12);
  transform: scale(1.15) !important;
}

/* Counter-rotation for orbit-1 icons (CW parent → CCW icons) */
.hv-counter-1 {
  animation: hv-ccw1 12s linear infinite;
}
@keyframes hv-ccw1 {
  from { transform: rotate(0deg); }
  to   { transform: rotate(-360deg); }
}

/* Counter-rotation for orbit-2 icons (CCW parent → CW icons) */
.hv-counter-2 {
  animation: hv-ccw2 22s linear infinite reverse;
}
@keyframes hv-ccw2 {
  from { transform: rotate(0deg); }
  to   { transform: rotate(-360deg); }
}

/* Floating notification cards */
.hv-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  background: rgba(18, 18, 18, 0.80);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.07);
  white-space: nowrap;
  z-index: 20;
}

.hv-card-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
  animation: hv-dot-blink 2s ease-in-out infinite;
}
@keyframes hv-dot-blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.35; }
}

.hv-card-icon {
  font-size: 20px;
  line-height: 1;
  flex-shrink: 0;
}

.hv-card-title {
  font-size: 12.5px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 2px;
  font-family: var(--font);
}

.hv-card-sub {
  font-size: 11px;
  color: rgba(255,255,255,0.50);
  font-family: var(--font);
}

/* Card positions + float animations */
.hv-card-1 {
  top: 40px;
  right: 0;
  animation: hv-float-a 4.2s ease-in-out infinite;
}
.hv-card-2 {
  bottom: 80px;
  left: -20px;
  animation: hv-float-b 5.0s ease-in-out infinite;
}
.hv-card-3 {
  bottom: 28px;
  right: 10px;
  animation: hv-float-c 3.6s ease-in-out infinite;
}

@keyframes hv-float-a {
  0%, 100% { transform: translateY(0px);  }
  50%       { transform: translateY(-10px); }
}
@keyframes hv-float-b {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(8px);  }
}
@keyframes hv-float-c {
  0%, 100% { transform: translateY(0px);  }
  50%       { transform: translateY(-7px); }
}

/* Glowing dot particles */
.hv-dot {
  position: absolute;
  border-radius: 50%;
  background: var(--orange);
  animation: hv-twinkle var(--dur, 3s) ease-in-out infinite var(--del, 0s);
  pointer-events: none;
}
@keyframes hv-twinkle {
  0%, 100% { opacity: 0.08; transform: scale(0.7); }
  50%       { opacity: 0.7;  transform: scale(1.3); }
}

/* Responsive: hide visual on ≤1024px */
@media (max-width: 1024px) {
  #hero .container {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 60px;
    padding-bottom: 80px;
  }
  .hero-visual { display: none; }
  .hero-content { max-width: 700px; }
}

/* =============================================
   ABOUT SECTION
   ============================================= */
#about {
  background: var(--off-white);
  padding: 100px 0;
}

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

.about-visual {
  position: relative;
}

.about-logo-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 60px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.about-logo-wrap::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--orange-subtle);
}

.about-logo-wrap img, .about-logo-wrap svg {
  width: 100%;
  max-width: 320px;
  position: relative;
  z-index: 1;
}

.about-badge-float {
  position: absolute;
  padding: 14px 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 14px;
}

.about-badge-float.top-right {
  top: -16px;
  right: -24px;
}

.about-badge-float.bottom-left {
  bottom: -16px;
  left: -24px;
}

.about-badge-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

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

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 18px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.about-feature:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.about-feature-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--orange-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.about-feature h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 2px;
}

.about-feature p {
  font-size: 13px;
  color: var(--gray-light);
  line-height: 1.5;
}

/* =============================================
   SERVICES SECTION
   ============================================= */
#services {
  background: var(--white);
  padding: 100px 0;
}

.services-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 70px;
}

.services-header .section-desc {
  margin: 16px auto 0;
}

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

/* Special layout: 2 cards centered on last row if 5 items */
.services-grid .service-card:nth-child(4) {
  grid-column: 1 / 2;
}

.services-grid .service-card:nth-child(5) {
  grid-column: 2 / 3;
}

.service-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: var(--transition);
  cursor: default;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.service-card:hover {
  border-color: rgba(255,117,31,0.35);
  box-shadow: 0 16px 48px rgba(255,117,31,0.12), var(--shadow);
  transform: translateY(-6px);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius);
  background: var(--orange-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 24px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  transform: scale(1.08) rotate(-3deg);
  box-shadow: var(--shadow-orange-sm);
}

.service-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.service-desc {
  font-size: 14.5px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.service-tag {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  background: var(--section-alt);
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  color: var(--gray);
  transition: var(--transition-fast);
}

.service-card:hover .service-tag {
  background: var(--orange-subtle);
  color: var(--orange-dark);
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.service-feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--gray);
}

.service-feature-item::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--orange-subtle);
  color: var(--orange);
  font-size: 11px;
  font-weight: 800;
  flex-shrink: 0;
  transition: var(--transition-fast);
}

.service-card:hover .service-feature-item::before {
  background: var(--orange);
  color: var(--white);
}

/* Services - center last row (2 items in a 3-column grid) */
.services-row-last {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 820px;
  margin: 24px auto 0;
}

/* =============================================
   WHY US SECTION
   ============================================= */
#why-us {
  background: var(--dark);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

#why-us::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,117,31,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,117,31,0.04) 1px, transparent 1px);
  background-size: 50px 50px;
}

.why-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

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

.why-content .section-desc {
  color: rgba(255,255,255,0.6);
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  transition: var(--transition);
}

.why-item:hover {
  background: rgba(255,117,31,0.08);
  border-color: rgba(255,117,31,0.25);
  transform: translateX(6px);
}

.why-item-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--orange-subtle);
  border: 1px solid rgba(255,117,31,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.why-item-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.why-item-desc {
  font-size: 13.5px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

/* Stats Grid */
.why-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.stat-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  transform: scaleX(0);
  transition: var(--transition);
}

.stat-card:hover {
  background: rgba(255,117,31,0.08);
  border-color: rgba(255,117,31,0.25);
  transform: translateY(-4px);
}

.stat-card:hover::before {
  transform: scaleX(1);
}

.stat-number {
  font-size: 3rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-number span {
  color: var(--orange);
}

.stat-label {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
  line-height: 1.4;
}

/* =============================================
   PROCESS SECTION
   ============================================= */
#process {
  background: var(--section-alt);
  padding: 100px 0;
}

.process-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 70px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light), var(--orange));
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.process-step-num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--gray-light);
  margin: 0 auto 20px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.process-step:hover .process-step-num {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  box-shadow: var(--shadow-orange);
  transform: scale(1.1);
}

.process-step-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
}

.process-step-desc {
  font-size: 13.5px;
  color: var(--gray);
  line-height: 1.6;
}

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

.testimonials-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

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

.testimonial-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  right: 28px;
  font-size: 5rem;
  font-weight: 900;
  color: var(--orange-subtle);
  line-height: 1;
  color: rgba(255,117,31,0.12);
}

.testimonial-card:hover {
  border-color: rgba(255,117,31,0.3);
  box-shadow: 0 12px 40px rgba(255,117,31,0.08), var(--shadow);
  transform: translateY(-4px);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.testimonial-stars span {
  color: var(--orange);
  font-size: 16px;
}

.testimonial-text {
  font-size: 14.5px;
  color: var(--gray);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  color: var(--white);
  flex-shrink: 0;
}

.testimonial-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--black);
}

.testimonial-role {
  font-size: 12px;
  color: var(--gray-light);
  margin-top: 2px;
}

/* =============================================
   CTA BANNER
   ============================================= */
#cta {
  background: linear-gradient(135deg, var(--orange-dark) 0%, var(--orange) 50%, var(--orange-light) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

#cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 50px 50px;
}

.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.cta-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.80);
  margin-bottom: 40px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-outline-white {
  border: 2px solid rgba(255,255,255,0.60);
  color: var(--white);
  background: transparent;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-size: 15px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  cursor: pointer;
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: white;
  transform: translateY(-2px);
}

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

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 72px;
  align-items: start;
}

.contact-info-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.contact-info-desc {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 36px;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-item-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: var(--orange-subtle);
  border: 1px solid rgba(255,117,31,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.contact-item-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 4px;
}

.contact-item-value {
  font-size: 15px;
  font-weight: 600;
  color: var(--black);
}

.contact-item-value a {
  color: var(--black);
  transition: var(--transition-fast);
}

.contact-item-value a:hover {
  color: var(--orange);
}

/* Contact Form */
.contact-form {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 44px;
  box-shadow: var(--shadow-lg);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-group:last-of-type {
  margin-bottom: 0;
}

.form-group label {
  font-size: 13px;
  font-weight: 700;
  color: var(--black);
  letter-spacing: 0.3px;
}

.form-control {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 14.5px;
  color: var(--black);
  background: var(--white);
  transition: var(--transition-fast);
  outline: none;
}

.form-control:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--orange-glow);
}

.form-control::placeholder {
  color: #bbb;
}

textarea.form-control {
  resize: vertical;
  min-height: 140px;
}

.form-submit {
  margin-top: 24px;
}

.form-submit .btn {
  width: 100%;
}

.form-success {
  display: none;
  text-align: center;
  padding: 20px;
  background: rgba(255,117,31,0.08);
  border: 1px solid rgba(255,117,31,0.25);
  border-radius: var(--radius);
  color: var(--orange-dark);
  font-weight: 600;
  margin-top: 16px;
}

/* =============================================
   FOOTER
   ============================================= */
#footer {
  background: var(--black);
  padding: 60px 0 0;
}

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

.footer-brand-logo {
  margin-bottom: 18px;
}

.footer-brand-logo img,
.footer-brand-logo svg {
  height: 44px;
  filter: brightness(0) invert(1);
}

.footer-brand-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.50);
  line-height: 1.75;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  transition: var(--transition-fast);
}

.footer-social a:hover {
  background: var(--orange);
  border-color: var(--orange);
  transform: translateY(-2px);
}

.footer-col-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.30);
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: var(--transition-fast);
}

.footer-col ul li a:hover {
  color: var(--orange);
  padding-left: 4px;
}

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

.footer-copyright {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

.footer-copyright a {
  color: var(--orange);
}

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

.footer-legal a {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  transition: var(--transition-fast);
}

.footer-legal a:hover {
  color: rgba(255,255,255,0.7);
}

/* =============================================
   FLOATING WHATSAPP BUTTON
   ============================================= */
.float-wa {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.float-wa-tooltip {
  background: var(--black);
  color: var(--white);
  padding: 10px 16px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: var(--transition);
  pointer-events: none;
  box-shadow: var(--shadow-lg);
}

.float-wa-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 7px solid var(--black);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

.float-wa:hover .float-wa-tooltip {
  opacity: 1;
  transform: translateX(0);
}

.float-wa-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
  position: relative;
}

.float-wa-btn::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.25);
  animation: wa-pulse 2.5s ease-in-out infinite;
}

@keyframes wa-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.2); opacity: 0; }
}

.float-wa-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 36px rgba(37, 211, 102, 0.55);
}

.float-wa-btn svg {
  width: 30px;
  height: 30px;
  fill: white;
  position: relative;
  z-index: 1;
}

/* =============================================
   SCROLL ANIMATIONS
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1), transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1), transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1), transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

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

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 104px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(16px);
  transition: var(--transition);
  z-index: 998;
  font-size: 18px;
  color: var(--gray);
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  box-shadow: var(--shadow-orange-sm);
  transform: translateY(-3px);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid .service-card:nth-child(4),
  .services-grid .service-card:nth-child(5) {
    grid-column: auto;
  }

  .services-row-last {
    max-width: 100%;
  }

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

  .about-visual {
    order: -1;
  }

  .about-logo-wrap {
    padding: 40px;
  }

  .about-badge-float.top-right {
    top: 16px;
    right: 16px;
  }

  .about-badge-float.bottom-left {
    bottom: 16px;
    left: 16px;
  }

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

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

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

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

  .process-steps::before {
    display: none;
  }
}

@media (max-width: 768px) {
  :root {
    --navbar-h: 64px;
  }

  .section-padding {
    padding: 72px 0;
  }

  #hero, #about, #services, #why-us, #process, #testimonials, #cta, #contact {
    padding: 72px 0;
  }

  .nav-links,
  .navbar-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hero-stats {
    gap: 24px;
    margin-top: 40px;
  }

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

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

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

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

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

  .contact-form {
    padding: 28px 20px;
  }

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

  .why-stats {
    grid-template-columns: 1fr 1fr;
  }

  .float-wa {
    bottom: 24px;
    right: 24px;
  }

  .float-wa-btn {
    width: 54px;
    height: 54px;
  }

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

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-stats {
    flex-direction: column;
    gap: 16px;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .why-stats {
    grid-template-columns: 1fr;
  }

  .cta-actions {
    flex-direction: column;
  }

  .footer-social {
    flex-wrap: wrap;
  }
}
