/* ===== FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;1,400;1,500;1,600&display=swap');

/* ===== VARIABLES ===== */
:root {
  --bg: #0d0d0d;
  --bg-card: #141414;
  --text: #f5f5f5;
  --text-dim: #999999;
  --text-muted: #666666;
  --accent-orange: #e87b4b;
  --accent-yellow: #e6d68d;
  --border: #222222;
  --border-light: #333333;
  --font-sans: 'Inter', -apple-system, sans-serif;
  --font-serif: 'Playfair Display', serif;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

button {
  font-family: var(--font-sans);
  border: none;
  cursor: pointer;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== NAV ===== */
.nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 30px 0;
}

.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-sans);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-dim);
  transition: color 0.3s;
}

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

.nav-cta-link {
  background: #fff;
  color: #000 !important;
  padding: 10px 24px;
  border-radius: 30px;
  font-weight: 500 !important;
  font-size: 0.85rem;
  transition: transform 0.3s var(--ease) !important;
}

.nav-cta-link:hover {
  transform: translateY(-2px);
}

/* ===== TEXT GRADIENT ===== */
.text-gradient {
  background: linear-gradient(90deg, #ffffff 0%, var(--accent-orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  padding-bottom: 0.15em;
  line-height: 1.2;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 150px 24px 80px;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50vh;
  background: radial-gradient(ellipse 70% 60% at 50% 100%, rgba(232, 123, 75, 0.35) 0%, rgba(230, 214, 141, 0.15) 40%, transparent 100%);
  z-index: 0;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 900px;
}

/* Floating Bounding Box Elements */
.hero-box {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 60px 40px;
  margin-bottom: 40px;
}

.hero-box::before,
.hero-box::after,
.hero-box-inner::before,
.hero-box-inner::after {
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--accent-orange);
}

.hero-box::before {
  top: -3px;
  left: -3px;
}

.hero-box::after {
  top: -3px;
  right: -3px;
}

.hero-box-inner::before {
  bottom: -3px;
  left: -3px;
}

.hero-box-inner::after {
  bottom: -3px;
  right: -3px;
}

.tag-float {
  position: absolute;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  z-index: 10;
}

.tag-orange {
  background: var(--accent-orange);
  color: #fff;
  top: 60%;
  left: -60px;
}

/* Moved .tag-white so it doesn't overlap title */
.tag-white {
  background: #fff;
  color: #000;
  top: -15px;
  right: 60px;
}

.tag-yellow {
  background: var(--accent-yellow);
  color: #000;
  bottom: -15px;
  right: 20%;
}

.hero h1 {
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}

.hero h1 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
}

.hero-desc {
  font-size: 0.95rem;
  color: var(--text-dim);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Rounded CTA Button */
.btn-rounded {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 6px 20px 6px 6px;
  border-radius: 50px;
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.3s var(--ease);
  position: relative;
  z-index: 2;
}

.btn-rounded:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-icon {
  width: 32px;
  height: 32px;
  background: var(--accent-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.btn-icon svg {
  width: 14px;
  height: 14px;
}

/* ===== INTRO (BIG TEXT) ===== */
.intro-section {
  padding: 100px 0;
  text-align: center;
  position: relative;
}

.intro-text {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  line-height: 1.5;
  font-weight: 400;
  color: var(--text);
  max-width: 900px;
  margin: 0 auto 40px;
}

.intro-text span {
  color: var(--text-dim);
}

/* ===== SERVICES / CARDS ===== */
.services-section {
  padding: 80px 0 120px;
}

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

.section-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -1px;
}

.section-title em {
  font-family: var(--font-serif);
  font-style: italic;
  display: inline-block;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 70%;
  background: radial-gradient(ellipse 100% 100% at 50% 100%, rgba(232, 123, 75, 0.25) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  pointer-events: none;
  z-index: 0;
}

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

.card:hover {
  border-color: var(--border-light);
  transform: translateY(-5px);
}

.card>* {
  position: relative;
  z-index: 1;
}

.card-num {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.card h3 {
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 30px;
}

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
}

.card-tag {
  font-size: 0.65rem;
  padding: 4px 10px;
  border: 1px solid var(--border);
  border-radius: 20px;
  color: var(--text-dim);
}

.card-plus {
  margin-top: auto;
  width: 28px;
  height: 28px;
  background: var(--accent-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  transition: transform 0.3s;
}

.card:hover .card-plus {
  transform: rotate(90deg);
}

/* ===== PROCESS CARDS (NEW LAYOUT) ===== */
.process-section {
  padding: 100px 0 140px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 60px;
}

@media (min-width: 1024px) {
  .process-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.process-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  text-align: left;
  transition: all 0.3s var(--ease);
  position: relative;
}

.process-card:hover {
  border-color: var(--accent-orange);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(232, 123, 75, 0.1);
}

.process-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
}

.process-icon {
  width: 48px;
  height: 48px;
  background: rgba(232, 123, 75, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-orange);
}

.process-icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 1.5;
}

.process-arrow {
  width: 28px;
  height: 28px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  transition: all 0.3s;
}

.process-arrow svg {
  width: 14px;
  height: 14px;
}

.process-card:hover .process-arrow {
  background: var(--accent-orange);
  border-color: var(--accent-orange);
  color: #fff;
}

.process-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.process-card p {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.6;
}

/* ===== CTA FOOTER ===== */
.cta-footer {
  padding: 120px 0;
  text-align: center;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
}

.cta-footer h2 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 500;
  margin-bottom: 24px;
}

.cta-footer h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--accent-orange);
}

.cta-footer p {
  color: var(--text-dim);
  margin-bottom: 40px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive */
@media (max-width: 1024px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hero-box {
    padding: 50px 20px 40px;
    margin-top: 20px;
  }

  .tag-float {
    font-size: 0.65rem;
    padding: 4px 10px;
  }

  .tag-orange {
    top: -14px;
    left: 10%;
  }

  .tag-white {
    top: -14px;
    right: 10px;
  }

  .tag-yellow {
    bottom: -14px;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }

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

  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}