:root {
  --red: #d71920;
  --red-dark: #a90f17;
  --black: #111111;
  --ink: #242424;
  --muted: #6f6f6f;
  --line: #ece8e5;
  --soft: #f8f5f2;
  --soft-red: #fff1f1;
  --white: #ffffff;
  --shadow: 0 20px 45px rgba(18, 18, 18, 0.08);
  --dark-surface: #111111;
  --dark-card: #1e1b1a;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  transition: background-color 0.3s ease, color 0.3s ease;
}

body,
.main-nav,
.hero,
.about-section,
.skills-wrap,
.soft-section,
.contact-section,
.info-card,
.service-card,
.package-card,
.project-card,
.simple-card,
.contact-form,
.console-placeholder,
.project-empty-state,
.social-row a,
.footer-social a,
.theme-toggle,
.contact-form input,
.contact-form textarea {
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form select,
.addon-strip,
.process-card,
.testimonial-card,
.custom-accordion .accordion-item,
.custom-accordion .accordion-button,
.custom-accordion .accordion-body,
.start-project-section,
.start-project-card {
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

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

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

.section-pad {
  padding: 110px 0;
}

.main-nav {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(17, 17, 17, 0.06);
  transition: box-shadow 0.25s ease, padding 0.25s ease;
}

.main-nav.scrolled {
  box-shadow: 0 10px 30px rgba(17, 17, 17, 0.08);
}

.navbar-brand {
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.02rem, 2vw, 1.26rem);
  font-weight: 800;
  letter-spacing: 0;
  color: var(--black);
  white-space: nowrap;
}

.navbar-brand span {
  color: var(--red);
}

.nav-link {
  position: relative;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0.25rem;
  font-size: 0.91rem;
  line-height: 1.2;
  padding-inline: 0.35rem !important;
}

.nav-link:hover,
.nav-link.active {
  color: var(--red);
}

.nav-link.active:not(.nav-cta) {
  background: transparent;
}

.nav-link:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0.35rem;
  right: 0.35rem;
  bottom: 0.18rem;
  height: 2px;
  border-radius: 999px;
  background: var(--red);
  opacity: 0;
  transform: scaleX(0.35);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-link:not(.nav-cta):hover::after,
.nav-link:not(.nav-cta).active::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-cta {
  border: 1px solid var(--red);
  color: var(--red);
  border-radius: 999px;
  padding: 0.45rem 1rem !important;
  margin-left: 0.5rem;
}

.nav-cta:hover {
  background: var(--red);
  color: #ffffff;
}

.nav-cta.active,
.nav-cta.active:hover {
  background: var(--red);
  color: #ffffff;
}

.theme-toggle {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--black);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0.45rem;
}

.theme-toggle:hover {
  color: var(--red);
  border-color: rgba(215, 25, 32, 0.35);
  transform: translateY(-2px);
}

.toggle-icon {
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.theme-toggle:hover .toggle-icon {
  transform: rotate(14deg);
}

.mobile-nav-actions {
  display: none;
  align-items: center;
  gap: 0.55rem;
}

.mobile-theme-toggle {
  margin: 0;
}

.hero {
  min-height: 100vh;
  padding-top: 150px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(215, 25, 32, 0.08), transparent 26%),
    linear-gradient(135deg, #ffffff 0%, #fbf8f5 100%);
}

.accent {
  position: absolute;
  border: 2px solid rgba(215, 25, 32, 0.18);
  border-radius: 50%;
  animation: drift 9s ease-in-out infinite;
}

.accent-one {
  width: 170px;
  height: 170px;
  right: 10%;
  top: 20%;
}

.accent-two {
  width: 90px;
  height: 90px;
  left: 8%;
  bottom: 18%;
  animation-delay: 1.8s;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--red);
}

.hero h1,
.section-title {
  font-family: "Manrope", sans-serif;
  color: var(--black);
  font-weight: 800;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero h1 {
  font-size: clamp(2.55rem, 5.4vw, 4.6rem);
  line-height: 1.04;
  margin-bottom: 1.15rem;
}

.hero-role {
  color: var(--red);
  font-weight: 800;
  font-size: clamp(1rem, 1.7vw, 1.14rem);
  line-height: 1.45;
  margin-bottom: 1rem;
  text-wrap: balance;
}

#heroRoleText {
  display: inline-block;
  min-width: 210px;
  color: var(--black);
  position: relative;
}

#heroRoleText::after {
  content: "";
  display: inline-block;
  width: 2px;
  height: 1.1em;
  margin-left: 4px;
  background: var(--red);
  vertical-align: -0.16em;
  animation: caretBlink 0.85s steps(1) infinite;
}

.hero-text {
  color: var(--muted);
  font-size: clamp(1rem, 1.45vw, 1.08rem);
  line-height: 1.72;
  max-width: 600px;
  margin-bottom: 2rem;
  text-wrap: pretty;
}

#offerTypewriter {
  display: inline-flex;
  min-width: 250px;
}

#offerTypewriter::after {
  content: "";
  width: 2px;
  height: 1.1em;
  margin-left: 5px;
  background: var(--red);
  animation: caretBlink 0.85s steps(1) infinite;
}

.hero-actions,
.project-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.55rem;
}

.trust-strip span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(17, 17, 17, 0.04);
}

.trust-strip i {
  color: var(--red);
}

.hero-credibility {
  display: grid;
  gap: 0.55rem;
  max-width: 560px;
  margin-top: 1rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 30px rgba(17, 17, 17, 0.04);
}

.hero-credibility span {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--ink);
  font-weight: 800;
  font-size: 0.9rem;
}

.hero-credibility i {
  color: var(--red);
}

.btn {
  border-radius: 999px;
  font-weight: 800;
  padding: 0.84rem 1.35rem;
  line-height: 1.15;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary-red {
  background: var(--red);
  color: #ffffff;
  border: 1px solid var(--red);
  box-shadow: 0 14px 28px rgba(215, 25, 32, 0.2);
}

.btn-primary-red:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  color: #ffffff;
}

.btn-outline-dark {
  border: 1px solid var(--black);
  color: var(--black);
}

.btn-outline-dark:hover {
  background: var(--black);
  color: #ffffff;
}

.btn-soft {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--black);
}

.btn-soft:hover {
  border-color: rgba(215, 25, 32, 0.28);
  color: var(--red);
  background: var(--soft-red);
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 2rem;
}

.social-row a,
.footer-social a {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--white);
  color: var(--black);
  border: 1px solid var(--line);
  transition: transform 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.social-row a:hover,
.footer-social a:hover {
  color: var(--red);
  border-color: rgba(215, 25, 32, 0.3);
  transform: translateY(-4px);
}

.scroll-cue {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 1.5rem;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

.scroll-cue span {
  width: 24px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  position: relative;
  background: var(--white);
}

.scroll-cue span::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--red);
  transform: translateX(-50%);
  animation: scrollDot 1.6s ease-in-out infinite;
}

.scroll-cue:hover {
  color: var(--red);
}

.hero-visual {
  position: relative;
  max-width: 520px;
  margin-left: auto;
}

.business-visual {
  min-height: auto;
}

.hero-flip-card {
  position: relative;
  z-index: 3;
  width: min(390px, 100%);
  min-height: 500px;
  margin-left: auto;
  margin-right: auto;
  perspective: 1000px;
  outline: none;
  cursor: pointer;
}

.business-visual .hero-flip-card {
  margin-top: 0;
}

.hero-flip-inner {
  position: relative;
  width: 100%;
  min-height: 500px;
  transform-style: preserve-3d;
  transition: transform 0.65s cubic-bezier(0.2, 0.75, 0.25, 1);
}

.hero-flip-card.is-flipped .hero-flip-inner {
  transform: rotateY(180deg);
}

.hero-flip-card:focus-visible {
  border-radius: var(--radius);
  box-shadow: 0 0 0 4px rgba(215, 25, 32, 0.12);
}

.hero-flip-face {
  position: absolute;
  inset: 0;
  overflow: visible;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.hero-flip-front {
  display: block;
}

.hero-flip-front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 20px;
}

.hero-skill-float,
.profile-info-card,
.profile-value-card {
  position: absolute;
  z-index: 2;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.hero-skill-float {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  padding: 0.62rem 0.82rem;
  border-radius: 999px;
  color: var(--black);
  font-weight: 800;
  line-height: 1;
}

.hero-skill-float i,
.profile-value-card i {
  color: var(--red);
}

.skill-html {
  left: -32px;
  top: 70px;
}

.skill-css {
  right: -30px;
  top: 300px;
}

.skill-js {
  left: 58px;
  bottom: -12px;
}

.profile-info-card {
  right: -18px;
  top: 32px;
  width: 152px;
  padding: 0.82rem 0.9rem;
}

.profile-info-card strong,
.profile-info-card span,
.profile-value-card strong {
  display: block;
}

.profile-info-card strong,
.profile-value-card strong {
  color: var(--black);
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  line-height: 1.25;
}

.profile-info-card span {
  color: var(--muted);
  margin-top: 0.22rem;
  font-size: 0.82rem;
  line-height: 1.35;
}

.profile-value-card {
  left: -28px;
  bottom: 48px;
  width: 220px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
}

.profile-value-card i {
  flex: 0 0 auto;
}

.hero-flip-back {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
  background:
    linear-gradient(135deg, rgba(215, 25, 32, 0.96), rgba(169, 15, 23, 0.96)),
    var(--red);
  color: #ffffff;
  transform: rotateY(180deg);
  overflow: hidden;
  text-shadow: none;
}

.hero-flip-back .mini-label {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  margin-bottom: 0.5rem;
  padding: 0.26rem 0.55rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-flip-back strong {
  display: block;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  line-height: 1.15;
  color: #ffffff;
  text-wrap: balance;
}

.hero-flip-back p {
  margin: 1rem 0 1.4rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.6;
  text-wrap: pretty;
}

.hero-flip-back a {
  width: max-content;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  padding: 0.72rem 1rem;
  border-radius: 999px;
  background: #ffffff;
  color: var(--red);
  font-size: 0.9rem;
  font-weight: 800;
}

.live-site-card {
  position: relative;
  overflow: hidden;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow);
  animation: floatImage 5.5s ease-in-out infinite;
}

.sample-preview-card {
  position: relative;
  z-index: 1;
  width: min(390px, 100%);
  margin: 1rem auto 0;
  padding: 1.25rem;
  animation: none;
}

.sample-preview-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.7rem;
  margin-top: 1rem;
}

.sample-preview-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: center;
  min-height: 72px;
  padding: 0.75rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(215, 25, 32, 0.055), transparent 46%),
    var(--soft);
  animation: previewTile 5.8s ease-in-out infinite;
}

.sample-preview-item:nth-child(2) {
  animation-delay: 0.35s;
}

.sample-preview-item:nth-child(3) {
  animation-delay: 0.7s;
}

.sample-preview-item i {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  color: var(--red);
  box-shadow: 0 10px 22px rgba(17, 17, 17, 0.08);
}

.sample-preview-item strong,
.sample-preview-item span {
  display: block;
}

.sample-preview-item strong {
  color: var(--black);
  font-family: "Manrope", sans-serif;
  font-size: 0.92rem;
  line-height: 1.15;
}

.sample-preview-item span {
  color: var(--muted);
  font-size: 0.8rem;
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.25rem 0.2rem 0.9rem;
}

.browser-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--line);
}

.browser-bar span:first-child {
  background: var(--red);
}

.browser-bar small {
  margin-left: 0.45rem;
  color: var(--muted);
  font-weight: 800;
  font-size: 0.78rem;
}

.site-preview {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
  min-height: 230px;
  padding: 1.25rem;
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(215, 25, 32, 0.1), transparent 44%),
    var(--soft);
}

.preview-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.preview-badge {
  display: inline-flex;
  margin-bottom: 0.7rem;
  padding: 0.32rem 0.62rem;
  border-radius: 999px;
  background: var(--white);
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 800;
}

.preview-copy strong {
  color: var(--black);
  font-family: "Manrope", sans-serif;
  font-size: 1.42rem;
  line-height: 1.08;
}

.preview-copy p {
  color: var(--muted);
  margin: 0.7rem 0 1rem;
  font-size: 0.88rem;
}

.preview-button {
  display: inline-flex;
  padding: 0.62rem 0.86rem;
  border-radius: 999px;
  background: var(--red);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.82rem;
  box-shadow: 0 0 0 0 rgba(215, 25, 32, 0.34);
  animation: ctaPulse 2.2s ease-in-out infinite;
}

.preview-photo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
}

.preview-photo-grid span {
  min-height: 84px;
  border-radius: 12px;
  background:
    linear-gradient(145deg, rgba(17, 17, 17, 0.12), rgba(215, 25, 32, 0.18)),
    #ffffff;
  animation: previewTile 5.5s ease-in-out infinite;
}

.preview-photo-grid span:nth-child(2) {
  animation-delay: 0.25s;
}

.preview-photo-grid span:nth-child(3) {
  animation-delay: 0.5s;
}

.preview-photo-grid span:nth-child(4) {
  animation-delay: 0.75s;
}

.preview-section {
  height: 18px;
  margin-top: 0.85rem;
  border-radius: 999px;
  background: var(--soft);
  position: relative;
  overflow: hidden;
}

.preview-section::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 42%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(215, 25, 32, 0.1), rgba(215, 25, 32, 0.42));
  animation: scanSection 3.6s ease-in-out infinite;
}

.section-two {
  width: 84%;
}

.section-two::after {
  animation-delay: 0.35s;
}

.section-three {
  width: 64%;
}

.section-three::after {
  animation-delay: 0.7s;
}

.lead-popup {
  position: absolute;
  left: -20px;
  bottom: 54px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  max-width: 270px;
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  animation: leadPop 4.6s ease-in-out infinite;
}

.lead-popup i {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--soft-red);
  color: var(--red);
}

.lead-popup strong,
.lead-popup span {
  display: block;
}

.lead-popup strong {
  color: var(--black);
  font-family: "Manrope", sans-serif;
  line-height: 1.1;
}

.lead-popup span {
  color: var(--muted);
  font-size: 0.82rem;
}

.tech-chip {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.75rem;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--black);
  box-shadow: var(--shadow);
  font-size: 0.82rem;
  font-weight: 800;
  animation: chipFloat 4.6s ease-in-out infinite;
}

.tech-chip i {
  color: var(--red);
}

.chip-html {
  left: -18px;
  top: 18%;
}

.chip-css {
  right: -12px;
  bottom: 34%;
  animation-delay: 0.8s;
}

.chip-js {
  left: 12%;
  bottom: -8px;
  animation-delay: 1.4s;
}

.profile-card {
  position: relative;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
  animation: floatImage 5.5s ease-in-out infinite;
}

.profile-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 20px;
}

.profile-badge,
.hero-stat {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.profile-badge {
  left: -28px;
  bottom: 48px;
  max-width: 230px;
  display: flex;
  gap: 0.75rem;
  align-items: center;
  padding: 0.95rem;
  font-weight: 800;
  font-size: 0.9rem;
}

.profile-badge i {
  color: var(--red);
}

.hero-stat {
  right: -18px;
  top: 28px;
  padding: 1rem;
  max-width: 190px;
}

.business-visual .hero-stat {
  position: relative;
  right: auto;
  top: auto;
  width: min(390px, 100%);
  max-width: none;
  margin: 1rem auto 0;
}

.hero-stat strong,
.hero-stat span {
  display: block;
}

.hero-stat strong {
  color: var(--black);
}

.hero-stat span {
  color: var(--muted);
  font-size: 0.84rem;
}

.about-section {
  background: var(--white);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.12;
  margin-bottom: 1.2rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2.4rem;
}

.section-heading.text-center {
  margin-left: auto;
  margin-right: auto;
}

.lead-copy {
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  line-height: 1.75;
  margin-bottom: 2rem;
  text-wrap: pretty;
}

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

.info-card,
.service-card,
.package-card,
.project-card,
.simple-card,
.contact-form,
.console-placeholder {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(17, 17, 17, 0.045);
}

.info-card {
  padding: 1rem;
  min-height: 112px;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  overflow-wrap: anywhere;
}

.info-card i,
.service-card i {
  color: var(--red);
  font-size: 1.35rem;
}

.skills-wrap {
  padding: 80px 0 20px;
  background: var(--soft);
}

.skills-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
}

.skills-panel {
  position: sticky;
  top: 96px;
  padding: 1.15rem;
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.panel-label {
  display: block;
  color: #ffb5b8;
  font-weight: 800;
  margin-bottom: 0.9rem;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.skill-list {
  display: grid;
  gap: 0.52rem;
}

.skill-list span {
  display: flex;
  align-items: center;
  gap: 0.62rem;
  padding: 0.55rem 0.65rem;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  font-weight: 700;
  font-size: 0.88rem;
}

.skill-list i {
  width: 18px;
  color: #ff686d;
}

.content-section {
  padding-bottom: 90px;
}

.service-card {
  padding: 1.55rem;
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card:hover,
.package-card:hover,
.project-card:hover,
.simple-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: rgba(215, 25, 32, 0.22);
}

.service-card h3,
.package-card h3,
.timeline-item h3,
.simple-card h3,
.project-card h4,
.console-placeholder h4 {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  color: var(--black);
}

.service-card h3 {
  font-size: 1.18rem;
  line-height: 1.25;
  margin: 1rem 0 0.55rem;
}

.service-card p,
.package-card li,
.project-card p,
.timeline-item p,
.simple-card p,
.console-placeholder p,
.process-card p,
.testimonial-card p {
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 0;
}

.addon-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.7rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.addon-strip span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 800;
  color: var(--ink);
  font-size: 0.9rem;
}

.addon-strip i {
  color: var(--red);
}

.package-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  min-height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.package-card.featured {
  background: var(--red);
  color: var(--white);
  transform: translateY(-10px);
  padding-top: 2rem;
}

.package-card.featured h3,
.package-card.featured .price,
.package-card.featured li {
  color: var(--white);
}

.badge-rec {
  display: inline-flex;
  align-self: flex-start;
  margin: 0 0 1rem;
  padding: 0.34rem 0.72rem;
  border-radius: 999px;
  background: var(--white);
  color: var(--red);
  font-weight: 800;
  font-size: 0.76rem;
}

.price {
  font-family: "Manrope", sans-serif;
  font-size: 2.6rem;
  color: var(--red);
  font-weight: 800;
  margin: 0.6rem 0 1rem;
}

.package-card ul {
  padding-left: 1.15rem;
  margin: 0 0 1.5rem;
}

.btn-package {
  width: max-content;
  max-width: 100%;
  margin-top: auto;
  background: var(--black);
  color: #ffffff;
  border: 1px solid var(--black);
}

.featured .btn-package {
  background: #ffffff;
  color: var(--red);
  border-color: #ffffff;
}

.package-note {
  text-align: center;
  color: var(--muted);
  margin-top: 1.5rem;
  font-weight: 700;
}

.package-best {
  color: var(--muted);
  margin-bottom: 1rem;
}

.featured .package-best {
  color: rgba(255, 255, 255, 0.86);
}

.trust-card {
  height: 100%;
  padding: 1.45rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(17, 17, 17, 0.045);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background-color 0.3s ease, color 0.3s ease;
}

.trust-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: rgba(215, 25, 32, 0.22);
}

.trust-card i {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--soft-red);
  color: var(--red);
  margin-bottom: 1rem;
}

.trust-card h3 {
  font-family: "Manrope", sans-serif;
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--black);
}

.trust-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.skill-category-grid,
.experience-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.skills-strip {
  padding: 38px 0;
  border-block: 1px solid var(--line);
}

.skills-strip-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.skills-strip-heading .section-kicker {
  margin-bottom: 0;
}

.skills-strip-heading p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.6;
  text-align: right;
}

.skills-cloud {
  padding-top: 0.35rem;
}

.skills-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.skills-list span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 44px;
  padding: 0.68rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(17, 17, 17, 0.04);
}

.skills-list i {
  color: var(--red);
}

.skill-category-card,
.experience-card {
  height: 100%;
  padding: 1.45rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(17, 17, 17, 0.045);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background-color 0.3s ease, color 0.3s ease;
}

.skill-category-card:hover,
.experience-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: rgba(215, 25, 32, 0.22);
}

.skill-category-card > i {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--soft-red);
  color: var(--red);
  margin-bottom: 1rem;
}

.skill-category-card h3,
.experience-card h3 {
  font-family: "Manrope", sans-serif;
  color: var(--black);
  font-weight: 800;
}

.skill-category-card h3 {
  font-size: 1.12rem;
  margin-bottom: 0.85rem;
}

.skill-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.skill-badges span {
  display: inline-flex;
  padding: 0.34rem 0.62rem;
  border-radius: 999px;
  background: var(--soft-red);
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 800;
}

.experience-section {
  background: var(--white);
}

.experience-card span {
  display: inline-flex;
  margin-bottom: 0.75rem;
  padding: 0.3rem 0.62rem;
  border-radius: 999px;
  background: var(--soft-red);
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.experience-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.projects-section {
  overflow: hidden;
}

.project-marquee {
  border-block: 1px solid var(--line);
  background: var(--black);
  color: var(--white);
  overflow: hidden;
  margin-bottom: 60px;
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 2rem;
  animation: marquee 22s linear infinite;
  padding: 1rem 0;
}

.marquee-track span {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  color: var(--white);
  white-space: nowrap;
}

.marquee-track span:nth-child(even) {
  color: #ff686d;
}

.project-group {
  margin-bottom: 48px;
}

.project-group > h3 {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  margin-bottom: 1.25rem;
}

.project-card {
  height: 100%;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.website-project-card,
.gui-project-card {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.hidden-project {
  display: none;
  opacity: 0;
  transform: translateY(18px);
}

.hidden-project.is-visible {
  display: block;
  animation: projectFadeIn 0.42s ease forwards;
}

.hidden-project.is-hiding {
  display: block;
  animation: projectFadeOut 0.25s ease forwards;
}

.project-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  object-position: top;
}

.project-image-wrap {
  display: none;
  height: 230px;
  background: var(--soft);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.project-image-wrap.is-visible {
  display: block;
}

.project-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.project-card.has-image .project-fallback-preview {
  display: none;
}

.concept-card {
  display: flex;
  flex-direction: column;
}

.concept-card .project-body {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.concept-card .project-actions {
  margin-top: auto;
}

.project-preview {
  min-height: 210px;
  display: grid;
  align-content: end;
  gap: 0.55rem;
  padding: 1rem;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(17, 17, 17, 0.72), rgba(17, 17, 17, 0.08)),
    var(--soft);
  position: relative;
  overflow: hidden;
}

.project-preview::before,
.project-preview::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.24);
}

.project-preview::before {
  width: 150px;
  height: 150px;
  right: -44px;
  top: -46px;
}

.project-preview::after {
  width: 90px;
  height: 90px;
  left: -28px;
  bottom: 48px;
}

.project-preview span {
  position: relative;
  z-index: 1;
  width: max-content;
  max-width: 100%;
  padding: 0.42rem 0.68rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--black);
  font-size: 0.78rem;
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(17, 17, 17, 0.12);
}

.cafe-preview,
.barbershop-preview {
  background:
    linear-gradient(145deg, rgba(28, 28, 28, 0.78), rgba(215, 25, 32, 0.22)),
    linear-gradient(135deg, #eeeeee, #ffffff);
}

.resort-preview,
.laundry-preview {
  background:
    linear-gradient(145deg, rgba(18, 96, 126, 0.72), rgba(215, 25, 32, 0.14)),
    linear-gradient(135deg, #cdeef5, #ffffff);
}

.catering-preview,
.store-preview {
  background:
    linear-gradient(145deg, rgba(125, 54, 12, 0.76), rgba(215, 25, 32, 0.14)),
    linear-gradient(135deg, #ffe0b9, #ffffff);
}

.salon-preview,
.van-preview {
  background:
    linear-gradient(145deg, rgba(48, 55, 87, 0.76), rgba(215, 25, 32, 0.14)),
    linear-gradient(135deg, #dce4ff, #ffffff);
}

.project-card.horizontal {
  display: grid;
  grid-template-columns: 42% 1fr;
}

.project-card.horizontal img {
  height: 100%;
}

.project-placeholder-card {
  min-height: 100%;
}

.project-placeholder-visual {
  min-height: 100%;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(215, 25, 32, 0.08), transparent),
    var(--soft);
  color: var(--red);
  font-size: 2.4rem;
}

.project-body {
  padding: 1.25rem;
}

.project-type {
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 1rem 0;
}

.tags span {
  font-size: 0.76rem;
  font-weight: 800;
  padding: 0.32rem 0.62rem;
  border-radius: 999px;
  background: var(--soft-red);
  color: var(--red);
}

.btn-sm {
  padding: 0.55rem 0.84rem;
  font-size: 0.82rem;
}

.btn-light-outline {
  border: 1px solid var(--line);
  color: var(--black);
}

.btn-light-outline:hover {
  background: var(--black);
  color: #ffffff;
}

.console-placeholder {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.25rem;
  align-items: center;
  padding: 1.5rem;
}

.console-placeholder > i {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  font-size: 1.55rem;
}

.view-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 1.6rem;
}

.btn-view-more {
  border: 1px solid rgba(215, 25, 32, 0.32);
  color: var(--red);
  background: var(--white);
  padding: 0.72rem 1.15rem;
  box-shadow: 0 10px 24px rgba(17, 17, 17, 0.045);
}

.btn-view-more:hover {
  color: #ffffff;
  background: var(--red);
  border-color: var(--red);
}

.project-empty-state {
  display: none;
  text-align: center;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.25rem;
}

.project-empty-state.is-visible {
  display: block;
}

.project-empty-state i {
  width: 58px;
  height: 58px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  color: var(--red);
  box-shadow: 0 10px 24px rgba(17, 17, 17, 0.055);
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.project-empty-state h4 {
  font-family: "Manrope", sans-serif;
  color: var(--black);
  font-weight: 800;
  margin-bottom: 0.35rem;
}

.project-empty-state p {
  color: var(--muted);
  margin: 0;
}

.timeline {
  position: relative;
  display: grid;
  gap: 1.3rem;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 13px;
  width: 2px;
  background: var(--line);
}

.experience-timeline::after {
  content: "";
  position: absolute;
  top: 0;
  left: 13px;
  width: 2px;
  height: var(--timeline-progress, 0%);
  background: linear-gradient(var(--red), var(--red-dark));
  transition: height 0.2s ease-out;
}

.timeline-item {
  position: relative;
  margin-left: 48px;
  padding: 1.3rem 1.45rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.3s ease;
  will-change: transform;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -42px;
  top: 26px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 6px var(--soft-red);
  z-index: 1;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.timeline-item:hover,
.timeline-item.timeline-active {
  transform: translateX(8px);
  border-color: rgba(215, 25, 32, 0.28);
  box-shadow: var(--shadow);
}

.timeline-item:hover::before,
.timeline-item.timeline-active::before {
  transform: scale(1.18);
  box-shadow: 0 0 0 8px var(--soft-red);
}

.time {
  color: var(--red);
  font-weight: 800;
  font-size: 0.86rem;
}

.place {
  font-weight: 800;
  color: var(--black) !important;
}

.soft-section {
  background: var(--soft);
}

.stack-cards {
  display: grid;
  gap: 1rem;
}

.simple-card {
  padding: 1.4rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.simple-card span {
  display: inline-flex;
  margin-top: 0.8rem;
  color: var(--red);
  font-weight: 800;
}

.process-section {
  background: var(--white);
}

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

.five-step-grid {
  grid-template-columns: repeat(5, 1fr);
}

.process-card,
.testimonial-card {
  position: relative;
  height: 100%;
  padding: 1.45rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(17, 17, 17, 0.045);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background-color 0.3s ease, color 0.3s ease;
}

.process-card:hover,
.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: rgba(215, 25, 32, 0.22);
}

.process-card span {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: rgba(215, 25, 32, 0.16);
  font-family: "Manrope", sans-serif;
  font-size: 2.3rem;
  font-weight: 800;
  line-height: 1;
}

.process-card i,
.testimonial-card i {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--soft-red);
  color: var(--red);
  margin-bottom: 1rem;
}

.process-card h3,
.testimonial-card strong {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  color: var(--black);
}

.process-card h3 {
  margin-bottom: 0.55rem;
}

.testimonial-card p {
  margin-bottom: 1.15rem;
}

.testimonial-card strong,
.testimonial-card span {
  display: block;
}

.testimonial-card span {
  color: var(--red);
  font-weight: 800;
  font-size: 0.86rem;
  margin-top: 0.2rem;
}

.requirements-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
}

.requirements-grid span {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 64px;
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(17, 17, 17, 0.04);
}

.requirements-grid i {
  color: var(--red);
}

.feedback-note {
  max-width: 720px;
  margin: 1.5rem auto 0;
  text-align: center;
  color: var(--muted);
  font-weight: 700;
}

.faq-section {
  background: var(--white);
}

.custom-accordion {
  display: grid;
  gap: 0.8rem;
}

.custom-accordion .accordion-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(17, 17, 17, 0.035);
}

.custom-accordion .accordion-button {
  background: var(--white);
  color: var(--black);
  font-weight: 800;
  box-shadow: none;
}

.custom-accordion .accordion-button:not(.collapsed) {
  color: var(--red);
  background: var(--soft-red);
}

.custom-accordion .accordion-button:focus {
  box-shadow: 0 0 0 4px rgba(215, 25, 32, 0.08);
}

.custom-accordion .accordion-body {
  color: var(--muted);
  background: var(--white);
}

.start-project-section {
  padding: 34px 0 0;
  background: var(--white);
}

.start-project-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2rem;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(215, 25, 32, 0.92), rgba(169, 15, 23, 0.96)),
    var(--red);
  color: #ffffff;
  box-shadow: var(--shadow);
}

.start-project-card .section-kicker {
  color: #ffffff;
  margin-bottom: 0.7rem;
}

.start-project-card .section-kicker::before {
  background: #ffffff;
}

.start-project-card h2 {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  margin-bottom: 0.4rem;
}

.start-project-card p {
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
  max-width: 650px;
}

.start-project-card .btn-primary-red {
  background: #ffffff;
  color: var(--red);
  border-color: #ffffff;
  box-shadow: none;
  flex: 0 0 auto;
}

.start-project-card .btn-primary-red:hover {
  background: #111111;
  border-color: #111111;
  color: #ffffff;
}

.contact-section {
  background:
    linear-gradient(90deg, rgba(215, 25, 32, 0.05), transparent 36%),
    var(--white);
}

.contact-copy p {
  color: var(--muted);
  margin-bottom: 1.4rem;
}

.contact-list {
  display: grid;
  gap: 0.85rem;
}

.contact-list a,
.contact-list span {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  color: var(--ink);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.contact-list i {
  color: var(--red);
}

.contact-social a {
  width: auto;
  border-radius: 999px;
  padding: 0 0.9rem;
  gap: 0.5rem;
}

.contact-form {
  padding: 2rem;
}

.contact-form label {
  display: block;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 0.45rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.88rem 1rem;
  outline: none;
  background: var(--white);
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--muted);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: rgba(215, 25, 32, 0.55);
  box-shadow: 0 0 0 4px rgba(215, 25, 32, 0.08);
}

.site-footer {
  background: var(--black);
  color: var(--white);
  padding: 60px 0 24px;
}

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

.site-footer h2,
.site-footer h3 {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer a {
  display: block;
  margin-bottom: 0.45rem;
}

.site-footer a:hover {
  color: var(--white);
}

.footer-social {
  display: flex;
  gap: 0.6rem;
  margin-top: 1rem;
}

.footer-social a {
  display: inline-flex;
  margin: 0;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.14);
}

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.92rem;
}

.project-toast {
  width: min(360px, calc(100vw - 32px));
  border: 1px solid rgba(215, 25, 32, 0.18);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.project-toast .toast-body {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.75rem;
  align-items: center;
  color: var(--ink);
  font-weight: 700;
}

.project-toast i {
  color: var(--red);
  font-size: 1.15rem;
}

.project-status-modal .modal-content {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.project-status-modal .modal-header,
.project-status-modal .modal-footer {
  border-color: var(--line);
}

.project-status-modal .modal-title {
  font-family: "Manrope", sans-serif;
  color: var(--black);
  font-weight: 800;
}

.project-status-modal .section-kicker {
  margin-bottom: 0.35rem;
}

.project-status-modal .section-kicker::before {
  width: 18px;
}

.status-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: var(--soft-red);
  color: var(--red);
  font-size: 1.25rem;
}

.project-status-modal p {
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.project-status-modal .status-small {
  margin-bottom: 0;
  font-size: 0.92rem;
}

body.dark-mode {
  --red: #e63946;
  --red-dark: #c92432;
  --black: #f8f2ec;
  --ink: #eee9e4;
  --muted: #b9b1aa;
  --line: #34302d;
  --soft: #171514;
  --soft-red: rgba(230, 57, 70, 0.14);
  --white: #1e1b1a;
  --shadow: 0 20px 45px rgba(0, 0, 0, 0.28);
  background: #12100f;
}

body.dark-mode .main-nav {
  background: rgba(18, 16, 15, 0.94);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

body.dark-mode .main-nav.scrolled {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.32);
}

body.dark-mode .navbar-toggler {
  border-color: rgba(255, 255, 255, 0.16);
  background-color: #f8f2ec;
}

body.dark-mode .mobile-theme-toggle {
  background: #1e1b1a;
  border-color: rgba(255, 255, 255, 0.14);
  color: #f8f2ec;
}

body.dark-mode .navbar-toggler:focus {
  box-shadow: 0 0 0 4px rgba(230, 57, 70, 0.16);
}

body.dark-mode .navbar-collapse {
  border-top-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode .hero {
  background:
    radial-gradient(circle at 12% 18%, rgba(230, 57, 70, 0.14), transparent 28%),
    linear-gradient(135deg, #12100f 0%, #1a1715 100%);
}

body.dark-mode .about-section,
body.dark-mode .contact-section {
  background-color: #12100f;
}

body.dark-mode .contact-section {
  background-image: linear-gradient(90deg, rgba(230, 57, 70, 0.1), transparent 38%);
}

body.dark-mode .skills-wrap,
body.dark-mode .soft-section,
body.dark-mode .project-empty-state {
  background: var(--soft);
}

body.dark-mode .skills-panel,
body.dark-mode .project-marquee,
body.dark-mode .site-footer,
body.dark-mode .console-placeholder > i {
  background: #0f0d0c;
  color: #ffffff;
}

body.dark-mode .project-marquee .marquee-track span,
body.dark-mode .site-footer h2,
body.dark-mode .site-footer h3,
body.dark-mode .console-placeholder > i,
body.dark-mode .btn-primary-red,
body.dark-mode .nav-cta:hover,
body.dark-mode .nav-cta.active,
body.dark-mode .btn-view-more:hover {
  color: #ffffff;
}

body.dark-mode .nav-link {
  color: #eee9e4;
}

body.dark-mode .nav-link:hover,
body.dark-mode .nav-link.active:not(.nav-cta) {
  color: #ff737d;
  background: transparent;
}

body.dark-mode .nav-link:not(.nav-cta)::after {
  background: #ff737d;
}

body.dark-mode .nav-cta {
  color: #ff6f79;
  border-color: rgba(230, 57, 70, 0.65);
}

body.dark-mode .nav-cta:hover,
body.dark-mode .nav-cta.active,
body.dark-mode .nav-cta.active:hover {
  background: var(--red);
  border-color: var(--red);
  color: #ffffff;
}

body.dark-mode .skill-list span {
  background: rgba(255, 255, 255, 0.08);
}

body.dark-mode .service-card,
body.dark-mode .package-card,
body.dark-mode .project-card,
body.dark-mode .simple-card,
body.dark-mode .contact-form,
body.dark-mode .project-status-modal .modal-content,
body.dark-mode .console-placeholder,
body.dark-mode .info-card,
body.dark-mode .profile-card,
body.dark-mode .profile-badge,
body.dark-mode .hero-stat,
body.dark-mode .hero-flip-front,
body.dark-mode .hero-skill-float,
body.dark-mode .profile-info-card,
body.dark-mode .profile-value-card,
body.dark-mode .live-site-card,
body.dark-mode .hero-credibility,
body.dark-mode .sample-preview-item,
body.dark-mode .lead-popup,
body.dark-mode .project-toast,
body.dark-mode .addon-strip,
body.dark-mode .trust-card,
body.dark-mode .skill-category-card,
body.dark-mode .experience-card,
body.dark-mode .requirements-grid span,
body.dark-mode .process-card,
body.dark-mode .testimonial-card,
body.dark-mode .custom-accordion .accordion-item,
body.dark-mode .custom-accordion .accordion-button,
body.dark-mode .custom-accordion .accordion-body {
  background: var(--white);
  border-color: var(--line);
}

body.dark-mode .project-status-modal .modal-header,
body.dark-mode .project-status-modal .modal-footer {
  border-color: var(--line);
}

body.dark-mode .project-status-modal .btn-close {
  filter: invert(1) grayscale(1);
}

body.dark-mode .process-section,
body.dark-mode .faq-section,
body.dark-mode .start-project-section {
  background: #12100f;
}

body.dark-mode .custom-accordion .accordion-button:not(.collapsed) {
  background: var(--soft-red);
  color: var(--red);
}

body.dark-mode .custom-accordion .accordion-button::after {
  filter: invert(1) grayscale(1);
}

body.dark-mode .project-placeholder-visual {
  background:
    linear-gradient(135deg, rgba(230, 57, 70, 0.13), transparent),
    #171514;
}

body.dark-mode .sample-preview-item {
  background:
    linear-gradient(135deg, rgba(230, 57, 70, 0.12), transparent 46%),
    #171514;
}

body.dark-mode .sample-preview-item i {
  background: #1e1b1a;
}

body.dark-mode .site-preview {
  background:
    linear-gradient(135deg, rgba(230, 57, 70, 0.16), transparent 44%),
    #171514;
}

body.dark-mode .preview-badge,
body.dark-mode .preview-photo-grid span {
  background-color: #1e1b1a;
}

body.dark-mode .btn-outline-dark {
  border-color: #f8f2ec;
  color: #f8f2ec;
}

body.dark-mode .btn-outline-dark:hover,
body.dark-mode .btn-light-outline:hover,
body.dark-mode .btn-package {
  background: #f8f2ec;
  border-color: #f8f2ec;
  color: #12100f;
}

body.dark-mode .btn-primary-red:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  color: #ffffff;
}

body.dark-mode .btn-soft {
  background: #1e1b1a;
  border-color: #34302d;
  color: #f8f2ec;
}

body.dark-mode .btn-soft:hover {
  background: rgba(230, 57, 70, 0.14);
  border-color: rgba(230, 57, 70, 0.45);
  color: #ff6f79;
}

body.dark-mode .package-card.featured {
  background: var(--red);
  border-color: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

body.dark-mode .package-card.featured h3,
body.dark-mode .package-card.featured .price,
body.dark-mode .package-card.featured li {
  color: #ffffff;
}

body.dark-mode .package-card.featured .btn-package {
  background: #ffffff;
  border-color: #ffffff;
  color: var(--red);
}

body.dark-mode .package-card.featured .btn-package:hover {
  background: #111111;
  border-color: #111111;
  color: #ffffff;
}

body.dark-mode .start-project-card .btn-primary-red {
  background: #ffffff;
  border-color: #ffffff;
  color: var(--red);
}

body.dark-mode .start-project-card .btn-primary-red:hover {
  background: #111111;
  border-color: #111111;
  color: #ffffff;
}

body.dark-mode .badge-rec {
  background: #ffffff;
}

body.dark-mode .social-row a,
body.dark-mode .footer-social a,
body.dark-mode .theme-toggle,
body.dark-mode .scroll-cue span,
body.dark-mode .trust-strip span,
body.dark-mode .tech-chip {
  background: var(--white);
  border-color: var(--line);
  color: #f8f2ec;
}

body.dark-mode .contact-form input,
body.dark-mode .contact-form textarea,
body.dark-mode .contact-form select {
  background: #12100f;
  border-color: var(--line);
  color: var(--ink);
}

body.dark-mode .contact-form input::placeholder,
body.dark-mode .contact-form textarea::placeholder {
  color: var(--muted);
}

body.dark-mode .timeline::before {
  background: var(--line);
}

body.dark-mode .timeline-item {
  background: var(--white);
  border-color: var(--line);
}

body.dark-mode .timeline-item::before {
  box-shadow: 0 0 0 6px rgba(230, 57, 70, 0.16);
}

body.dark-mode .experience-timeline::after {
  background: linear-gradient(#e63946, #b9141d);
}

body.dark-mode .timeline-item:hover,
body.dark-mode .timeline-item.timeline-active {
  border-color: rgba(230, 57, 70, 0.4);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.26);
}

body.dark-mode .timeline-item:hover::before,
body.dark-mode .timeline-item.timeline-active::before {
  box-shadow: 0 0 0 8px rgba(230, 57, 70, 0.18);
}

body.dark-mode .footer-social a {
  background: rgba(255, 255, 255, 0.08);
}

body.dark-mode .project-toast .btn-close {
  filter: invert(1) grayscale(1);
  opacity: 0.8;
}

/* Final dark-mode polish for contrast and structure. */
body.dark-mode .navbar .nav-link {
  color: #f3eee9 !important;
  background: transparent;
}

body.dark-mode .navbar .nav-link:hover,
body.dark-mode .navbar .nav-link.active:not(.nav-cta) {
  color: #ff737d !important;
  background: transparent;
}

body.dark-mode .navbar .nav-cta {
  color: #ff737d !important;
  border-color: rgba(230, 57, 70, 0.75);
  background: transparent;
}

body.dark-mode .navbar .nav-cta:hover,
body.dark-mode .navbar .nav-cta.active {
  color: #ffffff !important;
  background: var(--red);
  border-color: var(--red);
}

.process-section {
  border-top: 1px solid transparent;
}

.process-card {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-height: 240px;
}

.process-card i {
  flex: 0 0 auto;
}

body.dark-mode .process-card,
body.dark-mode .testimonial-card,
body.dark-mode .trust-card,
body.dark-mode .skills-list span,
body.dark-mode .skill-category-card,
body.dark-mode .experience-card {
  background: #1e1b1a;
  border-color: #34302d;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
}

body.dark-mode .process-card:hover,
body.dark-mode .testimonial-card:hover,
body.dark-mode .trust-card:hover,
body.dark-mode .skill-category-card:hover,
body.dark-mode .experience-card:hover {
  border-color: rgba(230, 57, 70, 0.38);
}

body.dark-mode .process-card span {
  color: rgba(230, 57, 70, 0.22);
}

body.dark-mode .process-card i,
body.dark-mode .testimonial-card i,
body.dark-mode .trust-card i {
  background: rgba(230, 57, 70, 0.14);
  color: #ff737d;
}

body.dark-mode .process-card h3,
body.dark-mode .testimonial-card strong,
body.dark-mode .trust-card h3,
body.dark-mode .skills-list span,
body.dark-mode .skill-category-card h3,
body.dark-mode .experience-card h3,
body.dark-mode .hero-skill-float,
body.dark-mode .profile-info-card strong,
body.dark-mode .profile-value-card strong,
body.dark-mode .sample-preview-item strong {
  color: #fff8f2;
}

body.dark-mode .process-card p,
body.dark-mode .testimonial-card p,
body.dark-mode .trust-card p,
body.dark-mode .experience-card p,
body.dark-mode .profile-info-card span,
body.dark-mode .sample-preview-item span {
  color: #bbb2ab;
}

body.dark-mode .requirements-grid span {
  background: #1e1b1a;
  border-color: #34302d;
}

body.dark-mode .start-project-card {
  background:
    linear-gradient(135deg, #d71920 0%, #b9141d 100%),
    var(--red);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

body.dark-mode .start-project-card h2,
body.dark-mode .start-project-card .section-kicker {
  color: #ffffff;
}

body.dark-mode .start-project-card p {
  color: rgba(255, 255, 255, 0.86);
}

body.dark-mode .start-project-card .btn-primary-red {
  background: #ffffff;
  border-color: #ffffff;
  color: #d71920 !important;
}

body.dark-mode .start-project-card .btn-primary-red:hover {
  background: #111111;
  border-color: #111111;
  color: #ffffff !important;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.delay-1 {
  transition-delay: 0.12s;
}

.delay-2 {
  transition-delay: 0.22s;
}

@keyframes floatImage {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

@keyframes drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(10px, -18px, 0);
  }
}

@keyframes caretBlink {
  0%,
  45% {
    opacity: 1;
  }
  46%,
  100% {
    opacity: 0;
  }
}

@keyframes scrollDot {
  0% {
    opacity: 0;
    transform: translate(-50%, 0);
  }
  35% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, 14px);
  }
}

@keyframes chipFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes ctaPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(215, 25, 32, 0.32);
    transform: translateY(0);
  }
  50% {
    box-shadow: 0 0 0 12px rgba(215, 25, 32, 0);
    transform: translateY(-2px);
  }
}

@keyframes previewTile {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.82;
  }
  50% {
    transform: translateY(-5px);
    opacity: 1;
  }
}

@keyframes scanSection {
  0% {
    transform: translateX(-105%);
  }
  48%,
  100% {
    transform: translateX(250%);
  }
}

@keyframes leadPop {
  0%,
  20% {
    opacity: 0;
    transform: translateY(18px) scale(0.96);
  }
  34%,
  82% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateY(10px) scale(0.98);
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes projectFadeIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes projectFadeOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(12px);
  }
}

@media (max-width: 1199px) {
  .skills-layout {
    grid-template-columns: 220px minmax(0, 1fr);
  }

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

  .skill-category-grid,
  .experience-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .mobile-nav-actions {
    display: flex;
  }

  .navbar > .container {
    gap: 0.75rem;
  }

  .section-pad {
    padding: 86px 0;
  }

  .hero {
    padding-top: 130px;
    text-align: left;
  }

  .navbar-collapse {
    margin-top: 0.85rem;
    padding: 0.9rem 0;
    border-top: 1px solid var(--line);
  }

  .theme-toggle {
    display: none;
  }

  .mobile-theme-toggle {
    display: inline-flex;
    width: 40px;
    height: 40px;
  }

  .navbar-nav {
    align-items: stretch !important;
  }

  .nav-link {
    width: 100%;
    padding: 0.78rem 0 !important;
    margin: 0;
  }

  .nav-link:not(.nav-cta)::after {
    left: 0;
    right: auto;
    bottom: 0.45rem;
    width: 34px;
  }

  .nav-cta {
    margin-top: 0.35rem;
  }

  .hero-visual {
    margin: 0;
  }

  .business-visual {
    min-height: auto;
  }

  .profile-badge,
  .hero-stat,
  .lead-popup {
    position: static;
    margin-top: 1rem;
    max-width: none;
  }

  .hero-flip-card {
    position: relative;
    inset: auto;
    width: 100%;
    min-height: 480px;
    margin-bottom: 1rem;
  }

  .hero-flip-inner {
    min-height: 480px;
  }

  .sample-preview-card {
    position: static;
    width: 100%;
    margin-top: 1rem;
    animation: none;
  }

  .lead-popup {
    animation: none;
  }

  .tech-chip {
    position: static;
    margin: 0 0.4rem 0.8rem 0;
  }

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

  .skills-layout {
    display: block;
  }

  .skills-panel {
    position: static;
    margin-bottom: 2rem;
  }

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

  .package-card.featured {
    transform: none;
  }

  .project-card.horizontal {
    grid-template-columns: 1fr;
  }

  .project-card.horizontal img {
    height: 230px;
  }

  .console-placeholder {
    grid-template-columns: 1fr;
  }

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

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

  .start-project-card {
    align-items: flex-start;
    flex-direction: column;
  }

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

@media (max-width: 767px) {
  .nav-cta {
    margin-left: 0;
    text-align: center;
  }

  .hero h1 {
    font-size: 2.75rem;
  }

  #heroRoleText {
    min-width: 0;
  }

  #offerTypewriter {
    min-width: 0;
  }

  .hero-actions,
  .project-actions {
    align-items: stretch;
  }

  .hero-actions .btn,
  .project-actions .btn {
    width: 100%;
  }

  .trust-strip span {
    width: 100%;
  }

  .site-preview {
    grid-template-columns: 1fr;
  }

  .skill-html {
    left: -12px;
    top: 68px;
  }

  .skill-css {
    right: -10px;
    top: 280px;
  }

  .skill-js {
    left: 52px;
    bottom: -10px;
  }

  .profile-info-card {
    right: -8px;
    top: 28px;
    width: 148px;
  }

  .profile-value-card {
    left: -10px;
    bottom: 44px;
    width: 210px;
  }

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

  .contact-form {
    padding: 1.2rem;
  }

  .contact-social a {
    width: 100%;
    justify-content: flex-start;
    height: 42px;
  }

  .addon-strip {
    display: grid;
    grid-template-columns: 1fr;
  }

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

  .five-step-grid,
  .skill-category-grid,
  .experience-card-grid,
  .requirements-grid {
    grid-template-columns: 1fr;
  }

  .skills-strip-heading {
    display: block;
  }

  .skills-strip-heading p {
    margin-top: 0.55rem;
    text-align: left;
  }

  .start-project-card {
    padding: 1.4rem;
  }

  .start-project-card .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .section-pad {
    padding: 74px 0;
  }

  .hero {
    padding-top: 112px;
  }

  .hero h1 {
    font-size: 2.35rem;
  }

  .hero-flip-card,
  .hero-flip-inner {
    min-height: 460px;
  }

  .hero-flip-back {
    justify-content: center;
    padding: 1.45rem;
  }

  .hero-flip-back .mini-label {
    margin-bottom: 0.65rem;
    font-size: 0.62rem;
    line-height: 1;
  }

  .hero-flip-back strong {
    font-size: clamp(1.32rem, 7vw, 1.72rem);
    line-height: 1.18;
  }

  .hero-flip-back p {
    margin: 0.85rem 0 1.1rem;
    font-size: 0.92rem;
    line-height: 1.55;
  }

  .hero-flip-back a {
    padding: 0.62rem 0.82rem;
    font-size: 0.82rem;
  }

  .hero-skill-float {
    padding: 0.54rem 0.68rem;
    font-size: 0.84rem;
  }

  .skill-html {
    left: -8px;
  }

  .skill-css {
    right: -8px;
    top: 250px;
  }

  .skill-js {
    left: 48px;
  }

  .profile-info-card {
    right: -4px;
    width: 140px;
  }

  .profile-value-card {
    left: -4px;
    bottom: 38px;
    width: min(210px, calc(100% - 32px));
  }

  .section-title {
    font-size: 2rem;
  }

  .skill-list {
    grid-template-columns: 1fr;
  }

  .skills-list {
    justify-content: flex-start;
  }

  .skills-list span {
    min-height: 40px;
    padding: 0.58rem 0.82rem;
    font-size: 0.9rem;
  }

  .project-card img,
  .project-card.horizontal img {
    height: 190px;
  }

  .timeline-item {
    margin-left: 34px;
  }

  .timeline-item::before {
    left: -35px;
  }
}

@media (max-width: 380px) {
  .hero-flip-card,
  .hero-flip-inner {
    min-height: 480px;
  }

  .hero-flip-back {
    padding: 1.2rem;
  }

  .hero-flip-back strong {
    font-size: 1.25rem;
  }

  .hero-flip-back p {
    font-size: 0.88rem;
  }
}
