/* =============================================================================
   SUNSETSTACK LLC — styles.css
   Sunset-themed dark UI for a software consulting firm
   ============================================================================= */

/* ---------------------------------------------------------------------------
   CSS CUSTOM PROPERTIES
   --------------------------------------------------------------------------- */
:root {
  /* Sunset palette */
  --night:      #0C0120;   /* deepest night sky */
  --dusk:       #190A2C;   /* dark dusk purple */
  --twilight:   #3C1050;   /* rich purple twilight */
  --horizon:    #C12A6A;   /* deep magenta horizon */
  --sunset:     #E6501E;   /* burnt orange sunset */
  --golden:     #F5A623;   /* golden hour */
  --glow:       #FFCC70;   /* warm amber glow */

  /* Text */
  --text:        #FFF0E8;  /* warm white */
  --text-muted:  #C0A0B8;  /* muted pink-grey */
  --text-dim:    #7A5872;  /* very muted */

  /* Surfaces */
  --card-bg:     rgba(255, 255, 255, 0.035);
  --card-border: rgba(230, 80, 30, 0.14);
  --card-hover:  rgba(255, 255, 255, 0.07);

  /* Gradients */
  --grad:      linear-gradient(135deg, var(--horizon), var(--sunset), var(--golden));
  --grad-text: linear-gradient(90deg, var(--horizon) 0%, var(--sunset) 50%, var(--golden) 100%);

  /* Typography */
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;

  /* Geometry */
  --radius:    16px;
  --radius-sm: 8px;
  --ease:      cubic-bezier(0.4, 0, 0.2, 1);
  --trans:     0.3s var(--ease);
}

/* ---------------------------------------------------------------------------
   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);
  background-color: var(--night);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ---------------------------------------------------------------------------
   UTILITIES
   --------------------------------------------------------------------------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

.gradient-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---------------------------------------------------------------------------
   BUTTONS
   --------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  cursor: pointer;
  border: none;
  transition: transform var(--trans), box-shadow var(--trans), border-color var(--trans), color var(--trans);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.1);
  opacity: 0;
  transition: opacity var(--trans);
}

.btn:hover::after { opacity: 1; }

.btn--primary {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 4px 22px rgba(230, 80, 30, 0.38);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(230, 80, 30, 0.55);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1.5px solid rgba(255, 255, 255, 0.22);
}

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

.btn--full { width: 100%; }

/* ---------------------------------------------------------------------------
   SECTIONS — common
   --------------------------------------------------------------------------- */
.section {
  padding: 120px 0;
}

.section__header {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 72px;
}

.section__tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--golden);
  background: rgba(245, 166, 35, 0.1);
  border: 1px solid rgba(245, 166, 35, 0.24);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 18px;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 18px;
  color: var(--text);
}

.section__subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ---------------------------------------------------------------------------
   REVEAL ANIMATION
   --------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}

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

/* ---------------------------------------------------------------------------
   NAVIGATION
   --------------------------------------------------------------------------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 10px 0;
  transition: background 0.35s ease, padding 0.35s ease, backdrop-filter 0.35s ease;
}

.nav.scrolled {
  background: rgba(12, 1, 32, 0.88);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  padding: 8px 0;
  border-bottom: 1px solid rgba(230, 80, 30, 0.1);
}

.nav__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  line-height: 1;
}

.nav__logo-img {
  height: 68px;
  width: auto;
  display: block;
  margin-bottom: 4px;
}

.nav__logo-name {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-top: 0;
  padding-top: 0;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav__links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--trans);
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--grad);
  border-radius: 2px;
  transition: width var(--trans);
}

.nav__links a:hover {
  color: var(--text);
}

.nav__links a:hover::after { width: 100%; }

.nav__cta {
  background: var(--grad) !important;
  color: #fff !important;
  padding: 9px 22px;
  border-radius: 50px;
  font-weight: 600 !important;
}
.nav__cta::after { display: none; }
.nav__cta:hover {
  box-shadow: 0 4px 22px rgba(230, 80, 30, 0.5);
  transform: translateY(-1px);
}

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

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

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(12, 1, 32, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 999;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.mobile-menu.open { display: flex; }

.mobile-menu__close {
  position: absolute;
  top: 24px;
  right: 28px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  transition: color var(--trans);
}

.mobile-menu__close:hover { color: var(--text); }

.mobile-menu__close svg {
  width: 28px;
  height: 28px;
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.mobile-menu a {
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--text);
  transition: color var(--trans);
}

.mobile-menu a:hover { color: var(--golden); }

/* ---------------------------------------------------------------------------
   HERO
   --------------------------------------------------------------------------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 120px 28px 100px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 55% at 50% 105%, rgba(230, 80, 30, 0.28) 0%, transparent 62%),
    radial-gradient(ellipse 65% 80% at 85% 45%, rgba(198, 42, 107, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 65% 80% at 15% 45%, rgba(60, 16, 80, 0.36) 0%, transparent 60%),
    linear-gradient(185deg, var(--night) 0%, var(--dusk) 38%, #280A3E 65%, #1A0520 100%);
  z-index: 0;
}

/* Glowing horizon bar */
.hero__horizon {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--horizon) 30%, var(--sunset) 50%, var(--golden) 70%, transparent 100%);
  opacity: 0.6;
  z-index: 1;
}

.hero__particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: float-up linear infinite;
}

@keyframes float-up {
  0%   { transform: translateY(100vh) scale(0);   opacity: 0; }
  8%   { opacity: 0.7; }
  88%  { opacity: 0.4; }
  100% { transform: translateY(-120px) scale(1.2); opacity: 0; }
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
}

.hero__logo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 36px;
}

.hero__logo {
  height: 84px;
  width: auto;
  animation: logo-glow 3.5s ease-in-out infinite alternate;
}

.hero__logo-name {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 7px;
  margin-top: 14px;
  line-height: 1;
}

.hero__logo-name-main {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 4vw, 2.15rem);
  font-weight: 800;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 1.5px;
}

.hero__logo-name-sub {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  align-self: flex-end;
  padding-bottom: 3px;
}

@keyframes logo-glow {
  from { filter: drop-shadow(0 0 18px rgba(245, 166, 35, 0.3)) drop-shadow(0 0 40px rgba(230, 80, 30, 0.15)); }
  to   { filter: drop-shadow(0 0 34px rgba(245, 166, 35, 0.65)) drop-shadow(0 0 70px rgba(230, 80, 30, 0.35)); }
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7.5vw, 6.2rem);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero__title-line {
  display: block;
}

.hero__title-gradient {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Hero fade-in keyframe */
.hero__fade-in {
  opacity: 0;
  transform: translateY(24px);
  animation: hero-fade 0.8s var(--ease) forwards;
  animation-delay: var(--delay, 0s);
}

@keyframes hero-fade {
  to { opacity: 1; transform: translateY(0); }
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.18rem);
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto 48px;
  line-height: 1.8;
}

.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Scroll indicator */
.hero__scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
  color: var(--text-dim);
  font-size: 0.68rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, transparent, var(--golden));
  animation: scroll-drop 1.6s ease-in-out infinite;
}

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

/* ---------------------------------------------------------------------------
   STATS BAR
   --------------------------------------------------------------------------- */
.stats-bar {
  background: rgba(255, 255, 255, 0.025);
  border-top: 1px solid rgba(230, 80, 30, 0.1);
  border-bottom: 1px solid rgba(230, 80, 30, 0.1);
  padding: 52px 28px;
}

.stats-bar__inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 0 52px;
}

.stat__number {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 800;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat__label {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}

.stat__divider {
  width: 1px;
  height: 52px;
  background: rgba(230, 80, 30, 0.18);
  flex-shrink: 0;
}

/* ---------------------------------------------------------------------------
   SERVICES
   --------------------------------------------------------------------------- */
.services {
  background:
    radial-gradient(ellipse 90% 50% at 50% 0%, rgba(60, 16, 80, 0.28) 0%, transparent 60%);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 22px;
}

.service-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 40px 34px;
  transition: background var(--trans), border-color var(--trans), transform var(--trans), box-shadow var(--trans);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--grad);
  opacity: 0;
  transition: opacity var(--trans);
}

.service-card:hover {
  background: var(--card-hover);
  border-color: rgba(230, 80, 30, 0.28);
  transform: translateY(-6px);
  box-shadow: 0 22px 64px rgba(230, 80, 30, 0.13);
}

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

.service-card__icon {
  width: 52px;
  height: 52px;
  background: rgba(230, 80, 30, 0.1);
  border: 1px solid rgba(230, 80, 30, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--golden);
  transition: background var(--trans), border-color var(--trans);
}

.service-card__icon svg {
  width: 22px;
  height: 22px;
}

.service-card:hover .service-card__icon {
  background: rgba(230, 80, 30, 0.2);
  border-color: rgba(230, 80, 30, 0.4);
}

.service-card h3 {
  font-size: 1.12rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}

.service-card p {
  font-size: 0.925rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ---------------------------------------------------------------------------
   ABOUT
   --------------------------------------------------------------------------- */
.about {
  background:
    radial-gradient(ellipse 80% 55% at 105% 50%, rgba(193, 42, 106, 0.1) 0%, transparent 60%),
    radial-gradient(ellipse 80% 55% at -5% 50%, rgba(60, 16, 80, 0.18) 0%, transparent 60%);
}

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

.about__visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.about__glow {
  position: absolute;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(230, 80, 30, 0.26) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse-glow 3.5s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { transform: scale(1);    opacity: 0.45; }
  50%       { transform: scale(1.12); opacity: 0.75; }
}

.about__logo-card {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.032);
  border: 1px solid rgba(230, 80, 30, 0.14);
  border-radius: 24px;
  padding: 48px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.about__logo-card img {
  height: 120px;
  width: auto;
  filter: drop-shadow(0 0 22px rgba(245, 166, 35, 0.42));
}

.about__badge {
  position: absolute;
  bottom: -18px;
  right: 16px;
  background: rgba(12, 1, 32, 0.92);
  border: 1px solid rgba(109, 220, 138, 0.28);
  border-radius: 50px;
  padding: 9px 20px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #6ddc8a;
  display: flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(12px);
  z-index: 2;
}

.about__badge-dot {
  width: 8px;
  height: 8px;
  background: #6ddc8a;
  border-radius: 50%;
  animation: blink-dot 1.6s ease-in-out infinite;
}

@keyframes blink-dot {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.25; }
}

.about__content .section__tag { display: inline-block; }

.about__content .section__title {
  text-align: left;
  margin-top: 18px;
}

.about__content p {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.82;
  margin-bottom: 16px;
}

.about__list {
  margin: 28px 0 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.94rem;
  color: var(--text);
}

.about__list li svg {
  width: 18px;
  height: 18px;
  color: var(--golden);
  flex-shrink: 0;
}

/* ---------------------------------------------------------------------------
   TECHNOLOGIES
   --------------------------------------------------------------------------- */
.tech {
  background:
    radial-gradient(ellipse 80% 50% at 50% 105%, rgba(60, 16, 80, 0.28) 0%, transparent 60%);
}

.tech__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 22px;
}

.tech__category {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: border-color var(--trans);
}

.tech__category:hover {
  border-color: rgba(245, 166, 35, 0.3);
}

.tech__category h4 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: var(--golden);
  margin-bottom: 18px;
}

.tech__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tech__tag {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 6px;
  padding: 5px 11px;
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: background var(--trans), color var(--trans), border-color var(--trans);
}

.tech__tag:hover {
  background: rgba(230, 80, 30, 0.1);
  border-color: rgba(230, 80, 30, 0.28);
  color: var(--text);
}

/* ---------------------------------------------------------------------------
   PROCESS
   --------------------------------------------------------------------------- */
.process {
  background:
    radial-gradient(ellipse 80% 50% at 0% 50%, rgba(193, 42, 106, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 80% 50% at 100% 50%, rgba(230, 80, 30, 0.08) 0%, transparent 60%);
}

.process__steps {
  max-width: 780px;
  margin: 0 auto;
  position: relative;
}

.process__steps::before {
  content: '';
  position: absolute;
  left: 29px;
  top: 10px;
  bottom: 10px;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(230, 80, 30, 0.4) 10%,
    rgba(245, 166, 35, 0.45) 50%,
    rgba(193, 42, 106, 0.3) 90%,
    transparent 100%
  );
}

.process__step {
  display: flex;
  gap: 36px;
  align-items: flex-start;
  padding: 30px 0;
}

.process__number {
  flex-shrink: 0;
  width: 58px;
  height: 58px;
  background: var(--grad);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 800;
  color: #fff;
  box-shadow: 0 0 28px rgba(230, 80, 30, 0.38);
  position: relative;
  z-index: 1;
}

.process__content h3 {
  font-size: 1.18rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}

.process__content p {
  font-size: 0.94rem;
  color: var(--text-muted);
  line-height: 1.78;
}

/* ---------------------------------------------------------------------------
   CTA BANNER
   --------------------------------------------------------------------------- */
.cta-banner {
  background:
    linear-gradient(110deg, rgba(60, 16, 80, 0.9) 0%, rgba(193, 42, 106, 0.25) 40%, rgba(230, 80, 30, 0.2) 70%, rgba(60, 16, 80, 0.9) 100%),
    var(--dusk);
  border-top: 1px solid rgba(230, 80, 30, 0.14);
  border-bottom: 1px solid rgba(230, 80, 30, 0.14);
  padding: 80px 28px;
}

.cta-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-banner__text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--text);
}

.cta-banner__text p {
  font-size: 1rem;
  color: var(--text-muted);
}

/* ---------------------------------------------------------------------------
   CONTACT
   --------------------------------------------------------------------------- */
.contact {
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(193, 42, 106, 0.12) 0%, transparent 60%);
}

.contact__container {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.contact__info .section__tag { display: inline-block; }

.contact__info .section__title {
  text-align: left;
  margin: 18px 0 16px;
}

.contact__info > p {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.82;
  margin-bottom: 40px;
}

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

.contact__detail {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.contact__detail svg {
  width: 20px;
  height: 20px;
  color: var(--golden);
  flex-shrink: 0;
}

.contact__detail a:hover { color: var(--golden); }

/* Form */
.contact-form {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 44px 40px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

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

.form-group {
  margin-bottom: 22px;
}

.form-group label {
  display: block;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: 0.2px;
}

.required { color: var(--horizon); }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.048);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  padding: 13px 15px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text);
  outline: none;
  transition: border-color var(--trans), background var(--trans), box-shadow var(--trans);
  -webkit-appearance: none;
  appearance: none;
}

.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath stroke='%23C0A0B8' stroke-width='1.5' fill='none' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}

.form-group select option {
  background: var(--dusk);
  color: var(--text);
}

.form-group textarea {
  resize: vertical;
  min-height: 118px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-dim);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(230, 80, 30, 0.52);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 0 0 3px rgba(230, 80, 30, 0.1);
}

.form-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-dim);
  margin-top: 14px;
}

/* ---------------------------------------------------------------------------
   FOOTER
   --------------------------------------------------------------------------- */
.footer {
  background: rgba(0, 0, 0, 0.28);
  border-top: 1px solid rgba(230, 80, 30, 0.1);
}

.footer__top {
  padding: 64px 0 52px;
}

.footer__container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  flex-wrap: wrap;
}

.footer__brand {
  max-width: 280px;
}

.footer__logo {
  height: 34px;
  width: auto;
  margin-bottom: 16px;
}

.footer__brand p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.footer__links {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}

.footer__col h5 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: var(--golden);
  margin-bottom: 18px;
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer__col a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color var(--trans);
}

.footer__col a:hover { color: var(--text); }

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 20px 0;
}

.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer__bottom p {
  font-size: 0.8rem;
  color: var(--text-dim);
}

.footer__bottom a:hover { color: var(--golden); }

/* ---------------------------------------------------------------------------
   RESPONSIVE — ≤ 960px
   --------------------------------------------------------------------------- */
@media (max-width: 960px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }

  .section { padding: 80px 0; }

  .about__container {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .about__visual { order: -1; }

  .about__content .section__title { text-align: center; }
  .about__content .section__tag { display: block; text-align: center; }
  .about__list { align-items: flex-start; }

  .contact__container {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .contact__info .section__title { text-align: center; }
  .contact__info .section__tag { display: block; text-align: center; }
  .contact__info > p { text-align: center; }
  .contact__details { align-items: flex-start; }

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

  .cta-banner__inner {
    flex-direction: column;
    text-align: center;
  }
}

/* ---------------------------------------------------------------------------
   RESPONSIVE — ≤ 600px
   --------------------------------------------------------------------------- */
@media (max-width: 600px) {
  .hero__title {
    font-size: clamp(2.4rem, 11vw, 3.5rem);
  }

  .stat { padding: 12px 22px; }
  .stat__divider { display: none; }

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

  .contact-form {
    padding: 30px 22px;
  }

  .footer__container {
    flex-direction: column;
  }

  .footer__links { gap: 40px; }

  .footer__bottom-inner {
    flex-direction: column;
    text-align: center;
  }

  .process__steps::before { left: 27px; }
}
