/* ============ DESIGN TOKENS ============ */
:root {
  --bg-main: #F7F4EE;
  --dark-bg: #181615;
  --card-light: #FFFFFF;
  --orange: #FF9E0D;
  --orange-hover: #E88B00;
  --text-dark: #191716;
  --text-muted: #6C6661;
  --border-light: #E6E1DA;
  --font-family: 'Plus Jakarta Sans', sans-serif;
  --max-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-main);
  color: var(--text-dark);
  font-family: var(--font-family);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

/* ============ NAVBAR ============ */
.navbar-wrapper {
  position: fixed;
  top: 16px;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 20px;
  display: flex;
  justify-content: center;
}

.navbar {
  background-color: var(--dark-bg);
  color: #fff;
  width: 100%;
  max-width: var(--max-width);
  border-radius: 999px;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 1.25rem;
}

.logo-dot {
  width: 12px;
  height: 12px;
  background-color: var(--orange);
  border-radius: 50%;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 24px;
  font-size: 0.9rem;
  font-weight: 500;
}

.nav-menu a {
  color: #A09C97;
  transition: color 0.2s;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: #FFFFFF;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.theme-toggle {
  background: transparent;
  border: 1px solid #332F2C;
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.btn-nav {
  background-color: #FFFFFF;
  color: var(--dark-bg);
  padding: 8px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.2s, background-color 0.2s;
}

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

.btn-orange {
  background-color: var(--orange);
  color: #181615;
}

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

.btn-outline {
  background: #FFFFFF;
  color: var(--text-dark);
  border: 1px solid var(--border-light);
}

.btn-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.1);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  font-size: 0.75rem;
}

/* ============ HERO SECTION ============ */
.hero-section {
  padding-top: 140px;
  padding-bottom: 60px;
}

.hero-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.hero-badge-top {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #EFECE6;
  border: 1px solid #E2DDD5;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.highlight-orange {
  color: var(--orange);
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 40px;
}

/* Hero Grid Layout */
.hero-grid {
  display: grid;
  grid-template-columns: 260px 1fr 260px;
  gap: 20px;
  align-items: flex-end;
}

/* Left Column */
.hero-left {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-bottom: 40px;
}

.social-title {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
}

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

.social-icon {
  width: 36px;
  height: 36px;
  background: var(--dark-bg);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
}

.reviews-card .avatar-group {
  display: flex;
  margin-bottom: 8px;
}

.reviews-card .avatar-group img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid var(--bg-main);
  margin-left: -10px;
}

.reviews-card .avatar-group img:first-child {
  margin-left: 0;
}

.reviews-info .rating-number {
  font-weight: 800;
  font-size: 0.95rem;
}

.reviews-info .rating-number .orange {
  color: var(--orange);
}

.reviews-info .rating-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Center Column */
.hero-center {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.image-wrapper {
  position: relative;
  width: 100%;
  max-width: 380px;
}

.hero-img {
  width: 100%;
  height: auto;
  border-radius: 200px 200px 0 0;
  display: block;
}

/* Floating Skill Tags */
.skill-tag {
  position: absolute;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.tag-prototype { top: 10%; right: -20px; background: #FFFFFF; color: #181615; }
.tag-dashboard { top: 15%; right: -60px; background: var(--orange); color: #181615; }
.tag-mobile { top: 38%; right: -40px; background: #181615; color: #FFFFFF; }
.tag-website { top: 60%; left: -20px; background: #181615; color: #FFFFFF; }
.tag-system { top: 65%; right: -30px; background: var(--orange); color: #181615; }

.hero-cta-buttons {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

/* Right Column */
.hero-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 40px;
  padding-bottom: 40px;
}

.stamp-circle {
  position: relative;
  width: 100px;
  height: 100px;
  background: var(--dark-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.rotating-text {
  width: 100%;
  height: 100%;
  animation: rotateStamp 12s linear infinite;
  fill: #fff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
}

@keyframes rotateStamp {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.stamp-arrow {
  position: absolute;
  font-size: 1.2rem;
  color: var(--orange);
}

.quote-box {
  background: #EFECE6;
  padding: 16px;
  border-radius: 16px;
  text-align: left;
  font-size: 0.85rem;
  font-weight: 600;
  max-width: 200px;
}

.quote-mark {
  color: var(--orange);
  font-size: 2rem;
  line-height: 1;
}

/* ============ MARQUEE TICKER ============ */
.ticker-banner {
  background-color: var(--dark-bg);
  color: #FFFFFF;
  padding: 18px 0;
  overflow: hidden;
  white-space: nowrap;
}

.ticker-track {
  display: inline-flex;
  gap: 28px;
  align-items: center;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  animation: ticker 18s linear infinite;
}

.ticker-track .star {
  color: var(--orange);
}

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============ SERVICES SECTION ============ */
.services-section {
  padding: 90px 0;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section-tag {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.section-tag .dots {
  color: var(--orange);
  margin-right: 4px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 30px;
}

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-item {
  background-color: var(--card-light);
  border-radius: 100px;
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.3s ease;
}

.service-header {
  display: flex;
  align-items: center;
  gap: 24px;
}

.service-num {
  font-size: 1rem;
  font-weight: 700;
  color: var(--orange);
}

.service-title {
  font-size: 1.25rem;
  font-weight: 700;
}

.service-arrow-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: var(--orange);
  border: none;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.service-item.active {
  background-color: var(--dark-bg);
  color: #FFFFFF;
  border-radius: 24px;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px;
  position: relative;
}

.service-item.active .service-arrow-btn {
  position: absolute;
  top: 32px;
  right: 32px;
}

.service-content {
  margin-top: 20px;
}

.service-subtags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.subtag {
  background: rgba(255, 255, 255, 0.1);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.8rem;
  color: #E2DDD5;
}

.service-desc {
  font-size: 0.9rem;
  color: #A09C97;
  max-width: 500px;
}

.about-section {
  padding: 60px 0;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .hero-left, .hero-right {
    align-items: center;
    text-align: center;
    padding-bottom: 0;
  }

  .nav-menu {
    display: none;
  }
}