/* ===================================================================
   Space City Terminals (MMS) — Main Stylesheet
   Color Palette:
     Primary Green:  #08D240
     Light Green:    #9BECB2
     Dark Blue:      #034D94
     Medium Blue:    #1E74A3
   =================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@400;500;600;700;800;900&display=swap');

/* ---------- CSS Custom Properties ---------- */
:root {
  --green: #08D240;
  --green-light: #9BECB2;
  --blue-dark: #034D94;
  --blue-medium: #1E74A3;
  --white: #ffffff;
  --off-white: #f4f7fa;
  --dark: #0a1628;
  --gray: #6b7a90;
  --gray-light: #d0d8e4;

  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(3, 77, 148, 0.10);
  --shadow-lg: 0 12px 48px rgba(3, 77, 148, 0.15);
  --transition: 0.3s 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(--dark);
  line-height: 1.7;
  background: var(--white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  font-weight: 700;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Utility ---------- */
.section-padding {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.section-padding::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  right: -80px;
  bottom: -80px;
  background: url('sct-watermark.png') no-repeat center / contain;
  opacity: 0.10;
  pointer-events: none;
  z-index: 0;
  -webkit-mask-image: radial-gradient(circle, black 15%, transparent 60%);
  mask-image: radial-gradient(circle, black 15%, transparent 60%);
}

.section-padding>.container {
  position: relative;
  z-index: 1;
}

.section-padding-sm {
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.section-padding-sm::after {
  content: '';
  position: absolute;
  width: 350px;
  height: 350px;
  left: -60px;
  top: -60px;
  background: url('sct-watermark.png') no-repeat center / contain;
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
  -webkit-mask-image: radial-gradient(circle, black 15%, transparent 60%);
  mask-image: radial-gradient(circle, black 15%, transparent 60%);
}

.section-padding-sm>.container {
  position: relative;
  z-index: 1;
}

.text-center {
  text-align: center;
}

.section-label {
  display: inline-block;
  background: linear-gradient(135deg, var(--green), var(--green-light));
  color: var(--dark);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--blue-dark);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 700px;
  margin: 0 auto 48px;
  line-height: 1.8;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(-100%);
  transition: var(--transition);
}

.btn:hover::after {
  transform: translateX(0);
}

.btn-primary {
  background: linear-gradient(135deg, var(--green), #06bf38);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(8, 210, 64, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(8, 210, 64, 0.45);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--blue-dark);
}

.btn-outline {
  background: transparent;
  color: var(--blue-dark);
  border: 2px solid var(--blue-dark);
}

.btn-outline:hover {
  background: var(--blue-dark);
  color: var(--white);
}

/* ===================================================================
   NAVIGATION
   =================================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(3, 77, 148, 0.97);
  backdrop-filter: blur(16px);
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--white);
}

.logo-img {
  width: 70px;
  height: 56px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 8px 16px;
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}

.nav-links a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown>a::after {
  content: ' ▾';
  font-size: 0.7em;
  opacity: 0.6;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: var(--transition);
}

@media (min-width: 769px) {
  .nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

.dropdown-menu a {
  display: block;
  color: var(--dark) !important;
  padding: 10px 20px !important;
  font-size: 0.9rem !important;
  border-radius: 0 !important;
}

.dropdown-menu a:hover {
  background: var(--off-white) !important;
  color: var(--blue-dark) !important;
}

.nav-cta {
  background: linear-gradient(135deg, var(--green), #06bf38) !important;
  color: var(--white) !important;
  border-radius: 50px !important;
  padding: 10px 24px !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 16px rgba(8, 210, 64, 0.3);
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(8, 210, 64, 0.45) !important;
  background: linear-gradient(135deg, #06bf38, var(--green)) !important;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}

.nav-hamburger span {
  width: 26px;
  height: 3px;
  background: var(--white);
  border-radius: 3px;
  transition: var(--transition);
}

/* ===================================================================
   HERO
   =================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  background:
    linear-gradient(160deg, #020e1f 0%, var(--blue-dark) 25%, #021d45 50%, #0a3a6e 80%, var(--blue-medium) 100%);
  overflow: hidden;
}

/* Subtle diagonal grid overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      -45deg,
      rgba(8, 210, 64, 0.02) 0px,
      rgba(8, 210, 64, 0.02) 1px,
      transparent 1px,
      transparent 60px
    ),
    repeating-linear-gradient(
      45deg,
      rgba(30, 116, 163, 0.03) 0px,
      rgba(30, 116, 163, 0.03) 1px,
      transparent 1px,
      transparent 60px
    ),
    radial-gradient(ellipse at 15% 85%, rgba(8, 210, 64, 0.1) 0%, transparent 45%),
    radial-gradient(ellipse at 85% 15%, rgba(30, 116, 163, 0.15) 0%, transparent 45%);
  pointer-events: none;
}

/* Diagonal accent band */
.hero::after {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 140%;
  background: linear-gradient(
    135deg,
    transparent 0%,
    rgba(8, 210, 64, 0.03) 40%,
    rgba(8, 210, 64, 0.06) 50%,
    rgba(8, 210, 64, 0.03) 60%,
    transparent 100%
  );
  transform: rotate(-12deg);
  pointer-events: none;
}

/* Background decorative shapes container */
.hero-bg-shapes {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

/* Floating glowing orbs */
.bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.bg-orb-1 {
  width: 400px;
  height: 400px;
  background: rgba(8, 210, 64, 0.08);
  top: 10%;
  right: 15%;
  animation: orb-drift-1 12s ease-in-out infinite alternate;
}

.bg-orb-2 {
  width: 300px;
  height: 300px;
  background: rgba(30, 116, 163, 0.1);
  bottom: 5%;
  left: 5%;
  animation: orb-drift-2 10s ease-in-out infinite alternate;
}

.bg-orb-3 {
  width: 200px;
  height: 200px;
  background: rgba(8, 210, 64, 0.06);
  top: 60%;
  right: 40%;
  animation: orb-drift-3 14s ease-in-out infinite alternate;
}

/* Subtle diagonal accent lines */
.bg-line {
  position: absolute;
  background: linear-gradient(90deg, transparent, rgba(8, 210, 64, 0.08), transparent);
  transform-origin: center;
}

.bg-line-1 {
  width: 120%;
  height: 1px;
  top: 30%;
  left: -10%;
  transform: rotate(-8deg);
}

.bg-line-2 {
  width: 100%;
  height: 1px;
  top: 70%;
  left: 0;
  transform: rotate(-5deg);
}

@keyframes orb-drift-1 {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-30px, 20px) scale(1.1); }
}

@keyframes orb-drift-2 {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(20px, -25px) scale(1.05); }
}

@keyframes orb-drift-3 {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-15px, -20px) scale(0.95); }
}



.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(8, 210, 64, 0.15);
  border: 1px solid rgba(8, 210, 64, 0.3);
  color: var(--green-light);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}

.hero h1 {
  font-size: clamp(2.5rem, 5.5vw, 4.2rem);
  color: var(--white);
  margin-bottom: 24px;
  font-weight: 900;
  letter-spacing: -1px;
}

.hero h1 span {
  background: linear-gradient(135deg, var(--green), var(--green-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 40px;
  max-width: 560px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 48px;
  margin-top: 80px;
}

.hero-stat {
  text-align: center;
}

.hero-stat .num {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--green);
}

.hero-stat .label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 4px;
}

/* Decorative graphic on right side of hero — logo assembly */
.hero-graphic {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  width: 700px;
  height: 700px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Faint radial glow behind the assembled logo */
.hero-graphic::before {
  content: '';
  position: absolute;
  width: 120%;
  height: 120%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(8, 210, 64, 0.08) 0%, rgba(3, 77, 148, 0.06) 40%, transparent 70%);
  animation: glow-pulse 4s ease-in-out infinite alternate;
}

@keyframes glow-pulse {
  0%   { opacity: 0.6; transform: scale(0.95); }
  100% { opacity: 1;   transform: scale(1.05); }
}

/* Hero logo — simple fade in */
.logo-fade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: url('master-logo.png') no-repeat center / contain;
  opacity: 0;
  -webkit-mask-image: radial-gradient(circle, black 25%, transparent 62%);
  mask-image: radial-gradient(circle, black 25%, transparent 62%);
  animation: logo-fade-in 2s ease-out 0.4s forwards;
}

@keyframes logo-fade-in {
  0%   { opacity: 0; transform: scale(0.96); }
  100% { opacity: 0.7; transform: scale(1); }
}

/* ===================================================================
   ABOUT / DESCRIPTION
   =================================================================== */
.about-section {
  background: var(--white);
}

.about-content {
  max-width: 800px;
}

.about-text h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--blue-dark);
  margin-bottom: 20px;
}

.about-text p {
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.9;
  margin-bottom: 16px;
}

.about-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.about-stat-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.about-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.about-stat-card i {
  font-size: 2rem;
  margin-bottom: 12px;
}

.about-stat-card h4 {
  font-size: 1.1rem;
  color: var(--blue-dark);
  margin-bottom: 6px;
}

.about-stat-card p {
  color: var(--gray);
  font-size: 0.85rem;
  line-height: 1.5;
}

/* ===================================================================
   SERVICES / WHAT WE OFFER
   =================================================================== */
.offers-section {
  background: var(--off-white);
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.offer-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  text-align: center;
  cursor: pointer;
}

.offer-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--blue-medium));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.offer-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.offer-card:hover::before {
  transform: scaleX(1);
}

.offer-icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 20px;
  transition: var(--transition);
}

.offer-icon.rail {
  background: rgba(8, 210, 64, 0.1);
  color: var(--green);
}

.offer-icon.transload {
  background: rgba(30, 116, 163, 0.1);
  color: var(--blue-medium);
}

.offer-icon.barge {
  background: rgba(3, 77, 148, 0.1);
  color: var(--blue-dark);
}

.offer-icon.services {
  background: rgba(8, 210, 64, 0.1);
  color: var(--green);
}

.offer-icon.tank {
  background: rgba(30, 116, 163, 0.1);
  color: var(--blue-medium);
}

.offer-icon.warehouse {
  background: rgba(3, 77, 148, 0.1);
  color: var(--blue-dark);
}

.offer-card h3 {
  font-size: 1.2rem;
  color: var(--blue-dark);
  margin-bottom: 10px;
}

.offer-card p {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.offer-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--green);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}

.offer-link:hover {
  gap: 12px;
}

/* ===================================================================
   CTA BANNER
   =================================================================== */
.cta-banner {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-medium));
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(8, 210, 64, 0.08) 0%, transparent 50%);
}

.cta-banner::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  right: -80px;
  bottom: -80px;
  background: url('sct-watermark.png') no-repeat center / contain;
  opacity: 0.15;
  pointer-events: none;
  -webkit-mask-image: radial-gradient(circle, black 20%, transparent 65%);
  mask-image: radial-gradient(circle, black 20%, transparent 65%);
}

/* ===================================================================
   FOOTER
   =================================================================== */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.65);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand p {
  margin-top: 12px;
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 300px;
}

.footer-brand .nav-logo {
  margin-bottom: 8px;
}

.footer h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 16px;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul a {
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer ul a:hover {
  color: var(--green-light);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: 0.85rem;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
}

.footer-socials a:hover {
  background: var(--green);
  color: var(--white);
  transform: translateY(-2px);
}

/* ===================================================================
   SCROLL ANIMATIONS
   =================================================================== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===================================================================
   RESPONSIVE
   =================================================================== */
@media (max-width: 992px) {
  .hero-graphic {
    width: 350px;
    height: 350px;
    right: 50%;
    transform: translate(50%, -50%);
  }

  .hero-logo-watermark {
    opacity: 0.28;
  }

  .hero-stats {
    gap: 32px;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(3, 40, 90, 0.98);
    backdrop-filter: blur(24px);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 100px 32px 40px;
    gap: 0;
    z-index: 999;
    overflow-y: auto;
  }

  .nav-links.open {
    display: flex;
  }

  /* Top-level nav items */
  .nav-links>a,
  .nav-links>.nav-dropdown>a {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 1.25rem;
    font-weight: 600;
    padding: 16px 0;
    color: var(--white) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: none !important;
    border-radius: 0 !important;
  }

  .nav-links>a:last-child {
    border-bottom: none;
  }

  /* Dropdown container */
  .nav-dropdown {
    width: 100%;
    text-align: center;
  }

  /* Hide dropdowns by default on mobile */
  .dropdown-menu {
    position: static;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: none;
    border-radius: 12px;
    padding: 8px 0;
    margin: 4px 0 8px;
  }

  .dropdown-menu.show {
    display: block;
  }

  .dropdown-menu a {
    display: block;
    color: rgba(255, 255, 255, 0.75) !important;
    font-size: 1rem !important;
    padding: 12px 20px !important;
    border-radius: 0 !important;
    font-weight: 400 !important;
  }

  .dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    color: var(--green-light) !important;
  }

  /* CTA button in mobile menu */
  .nav-cta {
    margin-top: 16px !important;
    width: 100% !important;
    text-align: center !important;
    padding: 16px 24px !important;
    border-radius: 12px !important;
  }

  /* Hamburger */
  .nav-hamburger {
    display: flex;
    z-index: 1001;
  }

  .nav-hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-hamburger.open span:nth-child(2) {
    opacity: 0;
  }

  .nav-hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  .hero-stats {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }

  .hero-graphic {
    width: 300px;
    height: 300px;
    right: 50%;
    top: 45%;
    transform: translate(50%, -50%);
  }

  .hero-logo-watermark {
    opacity: 0.22;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .offers-grid {
    grid-template-columns: 1fr;
  }

  .about-visual {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .section-padding {
    padding: 64px 0;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .about-visual {
    grid-template-columns: 1fr;
  }
}
