:root {
  --orange: #f06600;
  --orange-light: #ff8833;
  --orange-dark: #c45200;
  --dark: #1a1a1a;
  --dark2: #2a2a2a;
  --grey: #333333;
  --grey-mid: #666666;
  --grey-light: #999999;
  --off-white: #faf9f7;
  --white: #ffffff;
  --border: rgba(0, 0, 0, 0.08);
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 16px 64px rgba(0, 0, 0, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--grey);
  background: var(--white);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  line-height: 1.1;
}

/* ── NAVBAR ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
  background: transparent; /* default transparan */
}
nav.scrolled {
  background: var(--white); /* jadi putih */
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.08);
}
nav.scrolled .nav-links a {
  color: var(--grey);
}
nav.scrolled .hamburger span {
  background: var(--grey);
}
nav .nav-links a {
  color: white;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  height: 72px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo img {
  height: 38px;
  width: auto;
}
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: var(--grey);
  letter-spacing: 0.02em;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform 0.25s;
}
.nav-links a:hover {
  color: var(--orange);
}
.nav-links a:hover::after {
  transform: scaleX(1);
}
.nav-cta {
  background: var(--orange);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition:
    background 0.2s,
    transform 0.2s;
}
.nav-cta:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
}
.nav-cta::after {
  display: none !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: 0.3s;
}

/* ── MOBILE NAV ── */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
  }
  .nav-links.open li {
    padding: 0;
  }
  .nav-links.open a {
    display: block;
    padding: 14px 32px;
    font-size: 15px;
    color: var(--grey);
  }
  .nav-links.open .nav-cta {
    margin: 8px 32px;
    display: inline-block;
    border-radius: 6px;
    padding: 12px 22px;
  }
}

/* ── SECTIONS ── */
section {
  padding: 100px 32px;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
}
.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
  display: block;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--dark);
  margin-bottom: 20px;
}
.section-subtitle {
  font-size: 17px;
  line-height: 1.7;
  color: var(--grey-mid);
  max-width: 560px;
}

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(240, 102, 0, 0.25) 0%,
    transparent 70%
  );
}
.hero-orb-1 {
  width: 800px;
  height: 800px;
  top: -300px;
  right: -200px;
}
.hero-orb-2 {
  width: 400px;
  height: 400px;
  bottom: -100px;
  left: -100px;
}
.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(240, 102, 0, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(240, 102, 0, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-left {
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(240, 102, 0, 0.15);
  border: 1px solid rgba(240, 102, 0, 0.3);
  color: var(--orange-light);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 28px;
}
.hero-badge span {
  width: 7px;
  height: 7px;
  background: var(--orange);
  border-radius: 50%;
}
.hero-h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 24px;
}
.hero-h1 em {
  color: var(--orange);
  font-style: normal;
}
.hero-sub {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 40px;
  max-width: 480px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: var(--white);
  padding: 15px 30px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition:
    background 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(240, 102, 0, 0.35);
}
.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(240, 102, 0, 0.4);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  padding: 15px 30px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.4);
}
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.hero-stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--orange);
}
.hero-stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 2px;
}

.hero-right {
  position: relative;
}
.hero-card-stack {
  position: relative;
}
.hero-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 24px;
  backdrop-filter: blur(8px);
}
.hero-card-main {
}
.hero-card-float {
  position: absolute;
  background: rgba(30, 30, 30, 0.9);
  border: 1px solid rgba(240, 102, 0, 0.3);
  border-radius: 12px;
  padding: 16px 20px;
  backdrop-filter: blur(8px);
}
.hero-card-float-1 {
  bottom: -24px;
  left: -24px;
}
.hero-card-float-2 {
  top: -24px;
  right: -24px;
}
.float-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.float-value {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  color: var(--white);
  font-size: 20px;
}
.float-value span {
  color: var(--orange);
}
.tech-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}
.tech-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.tech-icon {
  font-size: 22px;
}
.tech-name {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
}
.tech-sub {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
}
.hero-card-title {
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .hero-right {
    display: none;
  }
  #hero {
    min-height: auto;
    padding: 120px 24px 80px;
  }
}

/* ── ABOUT ── */
#about {
  background: var(--off-white);
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-big-num {
  font-family: 'Syne', sans-serif;
  font-size: 9rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  opacity: 0.12;
  position: absolute;
  top: -20px;
  left: -20px;
  pointer-events: none;
  user-select: none;
}
.about-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.about-card {
  background: var(--white);
  border-radius: 12px;
  padding: 24px 28px;
  border: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 18px;
  box-shadow: var(--shadow);
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
.about-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.about-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(240, 102, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.about-card h4 {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  margin-bottom: 4px;
  color: var(--dark);
}
.about-card p {
  font-size: 14px;
  color: var(--grey-mid);
  line-height: 1.6;
}
.about-text .section-subtitle {
  max-width: 100%;
}
.about-highlight {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  padding: 2px 10px;
  border-radius: 4px;
  margin-right: 4px;
}

@media (max-width: 900px) {
  .about-inner {
    grid-template-columns: 1fr;
  }
  .about-big-num {
    font-size: 5rem;
  }
}

/* ── SERVICES ── */
#services {
  background: var(--white);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 56px;
}
.service-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 30px;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.3s,
    box-shadow 0.3s,
    border-color 0.3s;
  cursor: default;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(240, 102, 0, 0.2);
}
.service-card:hover::before {
  transform: scaleX(1);
}
.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(240, 102, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 22px;
}
.service-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--dark);
}
.service-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--grey-mid);
}
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 18px;
}
.service-tag {
  font-size: 11px;
  font-weight: 500;
  color: var(--orange);
  background: rgba(240, 102, 0, 0.08);
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: 0.02em;
}

/* ── TECH STACK ── */
#tech {
  background: var(--dark);
  padding: 80px 32px;
}
#tech .section-title {
  color: var(--white);
}
#tech .section-subtitle {
  color: rgba(255, 255, 255, 0.5);
}
.tech-stack-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.tech-stack-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 36px 24px;
  text-align: center;
  transition:
    border-color 0.3s,
    background 0.3s,
    transform 0.3s;
}
.tech-stack-card:hover {
  border-color: rgba(240, 102, 0, 0.4);
  background: rgba(240, 102, 0, 0.06);
  transform: translateY(-4px);
}
.tech-stack-logo {
  font-size: 48px;
  margin-bottom: 16px;
  display: block;
  filter: grayscale(20%);
}
.tech-stack-name {
  font-family: 'Syne', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.tech-stack-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 768px) {
  .tech-stack-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 480px) {
  .tech-stack-grid {
    grid-template-columns: 1fr;
  }
}

/* ── HOW WE WORK ── */
#process {
  background: var(--off-white);
}
.process-steps {
  display: flex;
  gap: 0;
  margin-top: 60px;
  position: relative;
  overflow: hidden;
}
.process-step {
  flex: 1;
  position: relative;
  padding: 0 20px;
}
.process-step:first-child {
  padding-left: 0;
}
.process-step:last-child {
  padding-right: 0;
}
.step-connector {
  position: absolute;
  top: 28px;
  left: calc(50% + 28px);
  right: calc(-50% + 28px);
  height: 2px;
  background: linear-gradient(90deg, var(--orange), rgba(240, 102, 0, 0.3));
}
.process-step:last-child .step-connector {
  display: none;
}
.step-num-wrap {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 20px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 16px rgba(240, 102, 0, 0.35);
}
.step-title {
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.step-desc {
  font-size: 13px;
  line-height: 1.6;
  color: var(--grey-mid);
}

@media (max-width: 900px) {
  .process-steps {
    flex-direction: column;
    gap: 32px;
  }
  .step-connector {
    display: none;
  }
  .process-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 0;
  }
  .step-num-wrap {
    flex-shrink: 0;
    margin-bottom: 0;
  }
}

/* ── PORTFOLIO ── */
#portfolio {
  background: var(--white);
}
.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 56px;
}
.portfolio-card {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.portfolio-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.portfolio-header {
  background: linear-gradient(135deg, var(--dark2) 0%, #111 100%);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
}
.portfolio-header::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(240, 102, 0, 0.15);
}
.portfolio-num {
  font-family: 'Syne', sans-serif;
  font-size: 4rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.06);
  position: absolute;
  top: 10px;
  right: 24px;
  line-height: 1;
}
.portfolio-icon {
  font-size: 36px;
  margin-bottom: 16px;
}
.portfolio-title {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  color: var(--white);
  margin-bottom: 4px;
}
.portfolio-category {
  font-size: 12px;
  color: var(--orange);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.portfolio-body {
  background: var(--off-white);
  padding: 30px 36px;
}
.portfolio-row {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  align-items: flex-start;
}
.portfolio-row-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  min-width: 72px;
  margin-top: 2px;
}
.portfolio-row-label.problem {
  color: #e53935;
}
.portfolio-row-label.solution {
  color: var(--orange);
}
.portfolio-row-label.result {
  color: #43a047;
}
.portfolio-row-text {
  font-size: 14px;
  color: var(--grey-mid);
  line-height: 1.6;
}
.portfolio-result-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(67, 160, 71, 0.1);
  color: #2e7d32;
  border-radius: 6px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 500;
  margin-top: 16px;
}

@media (max-width: 768px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
}

/* ── WHY US ── */
#why {
  background: var(--orange);
  padding: 100px 32px;
}
#why .section-label {
  color: rgba(255, 255, 255, 0.6);
}
#why .section-title {
  color: var(--white);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.why-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  padding: 32px 24px;
  text-align: center;
  transition:
    background 0.3s,
    transform 0.3s;
}
.why-card:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-4px);
}
.why-icon {
  font-size: 36px;
  margin-bottom: 18px;
}
.why-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  color: var(--white);
  margin-bottom: 10px;
}
.why-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 480px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

/* ── CONTACT FOOTER ── */
#contact {
  background: var(--dark);
  padding: 100px 32px 60px;
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
#contact .section-title {
  color: var(--white);
}
#contact .section-subtitle {
  color: rgba(255, 255, 255, 0.5);
  max-width: 100%;
}
.contact-info {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
  text-decoration: none;
  transition: color 0.2s;
}
.contact-item:hover {
  color: var(--orange);
}
.contact-item-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(240, 102, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.contact-form {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 36px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  transition:
    border-color 0.2s,
    background 0.2s;
  outline: none;
  resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: rgba(240, 102, 0, 0.5);
  background: rgba(255, 255, 255, 0.08);
}
.form-group select option {
  background: #222;
}
.form-submit {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 8px;
  background: var(--orange);
  color: var(--white);
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.2s;
  letter-spacing: 0.02em;
}
.form-submit:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
}

.footer-bottom {
  max-width: 1200px;
  margin: 60px auto 0;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-logo {
  height: 32px;
  filter: brightness(10) saturate(0) opacity(0.6);
}
.footer-copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}
.footer-links {
  display: flex;
  gap: 24px;
}
.footer-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--orange);
}

@media (max-width: 768px) {
  .contact-inner {
    grid-template-columns: 1fr;
  }
}

/* ── ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.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;
}

/* ── TOAST ── */
.toast {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  background: var(--dark2);
  color: var(--white);
  padding: 14px 22px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  border-left: 3px solid var(--orange);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transform: translateY(80px);
  opacity: 0;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* Utility */
.mt-4 {
  margin-top: 16px;
}
.flex-center {
  display: flex;
  align-items: center;
}
.gap-12 {
  gap: 12px;
}
