/* ============================================
   MasonryGrowth — White Premium Brand Theme
   ============================================ */

:root {
  --navy: #0f1d35;
  --navy-mid: #1a2744;
  --navy-soft: #2d3f5e;
  --orange: #f26522;
  --orange-dark: #d9541a;
  --orange-glow: rgba(242, 101, 34, 0.12);
  --orange-light: #fff4ee;
  --brick: #c45c26;
  --white: #ffffff;
  --cream: #fafbfc;
  --gray-50: #f6f7f9;
  --gray-100: #eef0f4;
  --gray-200: #dde1e8;
  --gray-400: #8b95a5;
  --gray-600: #4a5568;
  --gray-800: #1e2530;
  --shadow-xs: 0 1px 3px rgba(15, 29, 53, 0.04);
  --shadow-sm: 0 4px 16px rgba(15, 29, 53, 0.06);
  --shadow-md: 0 12px 40px rgba(15, 29, 53, 0.08);
  --shadow-lg: 0 24px 64px rgba(15, 29, 53, 0.1);
  --shadow-orange: 0 12px 32px rgba(242, 101, 34, 0.25);
  --radius: 14px;
  --radius-lg: 24px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --header-height: 76px;
  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ---- Typography ---- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.12;
  color: var(--navy);
  letter-spacing: -0.03em;
}

h1 { font-size: clamp(2.5rem, 5.5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 2.85rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.4rem); font-weight: 700; }

.text-orange { color: var(--orange); }
.text-navy { color: var(--navy); }
.text-muted { color: var(--gray-600); }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

.section-title {
  margin-bottom: 18px;
}

.section-desc {
  font-size: 1.08rem;
  color: var(--gray-600);
  max-width: 560px;
  line-height: 1.8;
}

/* ---- Buttons ---- */
.booking-card {
  margin-top: 28px;
  padding: 24px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--orange-light), var(--white));
  box-shadow: var(--shadow-sm);
}

.booking-card-content h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.booking-card-content p {
  color: var(--gray-600);
  margin-bottom: 18px;
}

.booking-btn {
  width: 100%;
  justify-content: center;
}

.booking-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(15, 29, 53, 0.72);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.booking-modal-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.booking-modal {
  width: min(100%, 900px);
  height: min(90vh, 760px);
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.booking-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: var(--navy);
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: var(--shadow-xs);
}

.booking-modal-frame {
  width: 100%;
  height: 100%;
  border: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 34px;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  border-radius: 100px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  box-shadow: var(--shadow-orange);
}

.btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(242, 101, 34, 0.35);
}

.btn-outline {
  background: var(--white);
  color: var(--navy);
  border-color: var(--gray-200);
  box-shadow: var(--shadow-xs);
}

.btn-outline:hover {
  border-color: var(--navy);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.btn-navy:hover {
  background: var(--navy-soft);
  border-color: var(--navy-soft);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: transparent;
  padding-left: 0;
  padding-right: 0;
}

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

/* ---- Header — Always White ---- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gray-100);
  transition: box-shadow var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow-sm);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.logo img {
  height: 65px;
  width: auto;
}

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

.nav-link {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gray-600);
  position: relative;
  padding: 4px 0;
  letter-spacing: -0.01em;
}

.nav-item {
  position: relative;
}

.nav-item:hover .nav-submenu,
.nav-item:focus-within .nav-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-submenu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translate(-50%, 8px);
  min-width: 220px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  z-index: 1001;
}

.nav-submenu a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--gray-700);
  font-size: 0.9rem;
  font-weight: 600;
}

.nav-submenu a:hover {
  background: var(--orange-light);
  color: var(--orange);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
  transition: width var(--transition);
}

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

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-cta {
  padding: 11px 22px;
  font-size: 0.85rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ---- Hero — White Premium ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--white);
  overflow: hidden;
  padding-top: var(--header-height);
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 55%;
  height: 80%;
  background: radial-gradient(ellipse, var(--orange-glow) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gray-200), transparent);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  padding: 48px 0 80px;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange-light);
  border: 1px solid rgba(242, 101, 34, 0.18);
  color: var(--orange-dark);
  padding: 9px 18px;
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero-badge .dot {
  width: 7px;
  height: 7px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

.hero h1 {
  margin-bottom: 24px;
  color: var(--navy);
}

.hero h1 .highlight {
  color: var(--orange);
  position: relative;
  display: inline;
}

.hero h1 .highlight::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 12px;
  background: var(--orange-glow);
  z-index: -1;
  border-radius: 4px;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--gray-600);
  margin-bottom: 12px;
  line-height: 1.85;
  max-width: 520px;
}

.hero-sub {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 36px;
  padding-left: 16px;
  border-left: 3px solid var(--orange);
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid var(--gray-100);
}

.stat-item { text-align: left; }

.stat-number {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.04em;
}

.stat-number span.accent {
  color: var(--orange);
}

.stat-label {
  font-size: 0.82rem;
  color: var(--gray-400);
  font-weight: 500;
  letter-spacing: 0.01em;
}

.hero-visual {
  position: relative;
}

.hero-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-image-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.hero-float-card {
  position: absolute;
  bottom: 28px;
  left: -24px;
  background: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
  animation: float 4s ease-in-out infinite;
}

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

.hero-float-card .float-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.hero-float-card .float-value {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: -0.03em;
}

.hero-float-card .float-desc {
  font-size: 0.82rem;
  color: var(--gray-600);
  margin-top: 2px;
}

.hero-proof {
  position: absolute;
  top: 24px;
  right: -16px;
  background: var(--navy);
  color: var(--white);
  padding: 14px 20px;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  box-shadow: var(--shadow-md);
  letter-spacing: -0.01em;
}

/* ---- Hook Banner ---- */
.hook-banner {
  background: var(--navy);
  padding: 28px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hook-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(242, 101, 34, 0.08), transparent);
}

.hook-banner p {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
}

.hook-banner a {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.hook-banner a:hover {
  color: var(--orange-light);
}

/* ---- Sections ---- */
section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header .section-label::before {
  display: none;
}

.section-header .section-desc {
  margin: 0 auto;
}

/* ---- Services ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  border: 1px solid var(--gray-100);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--brick));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--gray-100);
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -0.05em;
}

.service-card h3 {
  margin-bottom: 14px;
}

.service-card p {
  color: var(--gray-600);
  font-size: 0.95rem;
  margin-bottom: 24px;
  line-height: 1.75;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  color: var(--orange);
  font-weight: 700;
  font-size: 0.88rem;
}

.service-link:hover { gap: 12px; }

/* ---- Strategy ---- */
.strategy-section {
  background: var(--cream);
}

.strategy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.strategy-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.strategy-image img {
  width: 100%;
  height: 460px;
  object-fit: cover;
}

.experience-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: var(--white);
  padding: 22px 28px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
}

.experience-badge .years {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  letter-spacing: -0.04em;
}

.experience-badge .label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gray-600);
  margin-top: 4px;
}

.strategy-content h2 { margin-bottom: 22px; }

.strategy-content p {
  color: var(--gray-600);
  margin-bottom: 16px;
}

.strategy-points { margin-top: 32px; }

.strategy-point {
  display: flex;
  gap: 18px;
  margin-bottom: 22px;
}

.point-icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  background: var(--orange-light);
  color: var(--orange);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.point-text h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.point-text p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* ---- Results Banner ---- */
.results-banner {
  background: var(--white);
  padding: 80px 0;
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.result-item .result-number {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.04em;
}

.result-item .result-number::after {
  content: '';
  display: block;
  width: 32px;
  height: 3px;
  background: var(--orange);
  margin: 12px auto 0;
  border-radius: 2px;
}

.result-item .result-label {
  color: var(--gray-600);
  font-size: 0.88rem;
  font-weight: 500;
}

/* ---- Process ---- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.process-step {
  text-align: center;
  padding: 36px 22px;
  background: var(--cream);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  transition: all var(--transition);
}

.process-step:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.process-step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  border-radius: 50%;
  margin: 0 auto 20px;
}

.process-steps { counter-reset: step; }

.process-step h4 {
  font-family: var(--font-display);
  margin-bottom: 10px;
  font-size: 1rem;
}

.process-step p {
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.65;
}

/* ---- Testimonials ---- */
.testimonials-section {
  background: var(--cream);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-xs);
  border: 1px solid var(--gray-100);
  transition: all var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

.testimonial-stars {
  color: var(--orange);
  font-size: 0.95rem;
  margin-bottom: 18px;
  letter-spacing: 3px;
}

.testimonial-text {
  font-size: 0.98rem;
  color: var(--gray-600);
  font-style: italic;
  margin-bottom: 28px;
  line-height: 1.85;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
}

.author-info .name {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy);
  font-size: 0.92rem;
}

.author-info .role {
  font-size: 0.78rem;
  color: var(--gray-400);
}

/* ---- CTA ---- */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 88px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(242, 101, 34, 0.12) 0%, transparent 70%);
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.1rem;
  margin-bottom: 36px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
  line-height: 1.8;
}

.cta-section .btn {
  position: relative;
  z-index: 1;
}

.cta-section .btn-primary {
  padding: 18px 42px;
  font-size: 1rem;
}

/* ---- Page Hero (inner) ---- */
.page-hero {
  background: var(--white);
  padding: calc(var(--header-height) + 56px) 0 56px;
  text-align: center;
  border-bottom: 1px solid var(--gray-100);
  position: relative;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 100%;
  background: radial-gradient(ellipse at top, var(--orange-glow), transparent 70%);
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  margin-bottom: 16px;
}

.page-hero p {
  color: var(--gray-600);
  font-size: 1.12rem;
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.8;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.82rem;
  font-weight: 500;
}

.breadcrumb a { color: var(--gray-400); }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb span { color: var(--orange); font-weight: 600; }

/* ---- About ---- */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-story img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  height: 440px;
  object-fit: cover;
  width: 100%;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.value-card {
  text-align: center;
  padding: 40px 28px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  transition: all var(--transition);
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--orange);
}

.value-icon {
  font-size: 2rem;
  margin-bottom: 18px;
}

.value-card h3 {
  margin-bottom: 12px;
  font-size: 1.05rem;
}

.value-card p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ---- Services Page ---- */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 80px;
}

.service-detail:nth-child(even) { direction: rtl; }
.service-detail:nth-child(even) > * { direction: ltr; }

.service-detail img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  height: 400px;
  object-fit: cover;
  width: 100%;
}

.service-detail-content .tag {
  display: inline-block;
  background: var(--orange-light);
  color: var(--orange-dark);
  padding: 7px 16px;
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.service-detail-content h2 { margin-bottom: 18px; }

.service-detail-content p {
  color: var(--gray-600);
  margin-bottom: 14px;
}

.service-features { margin-top: 28px; }

.service-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 0.94rem;
  color: var(--gray-600);
  border-bottom: 1px solid var(--gray-100);
}

.service-features li::before {
  content: '→';
  color: var(--orange);
  font-weight: 700;
  font-family: var(--font-display);
}

/* ---- Contact ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 64px;
}

.contact-info h2 { margin-bottom: 18px; }

.contact-info > p {
  color: var(--gray-600);
  margin-bottom: 40px;
  line-height: 1.85;
}

.contact-item {
  display: flex;
  gap: 18px;
  margin-bottom: 28px;
}

.contact-item-icon {
  width: 50px;
  height: 50px;
  background: var(--orange-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-item-text h4 {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.contact-item-text p,
.contact-item-text a {
  font-size: 0.9rem;
  color: var(--gray-600);
}

.contact-item-text a:hover { color: var(--orange); }

.contact-form {
  background: var(--white);
  padding: 44px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
}

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

.form-group label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--gray-200);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--gray-800);
  transition: all var(--transition);
  background: var(--cream);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
  background: var(--white);
  box-shadow: 0 0 0 4px var(--orange-glow);
}

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

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

/* ---- Results ---- */
.case-study-hero {
  background: var(--cream);
  padding: 60px 0;
}

.case-study-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--gray-100);
}

.case-study-image img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.case-study-content {
  padding: 52px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.case-study-content .tag {
  display: inline-block;
  background: var(--orange-light);
  color: var(--orange-dark);
  padding: 7px 16px;
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
  width: fit-content;
}

.case-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.metric {
  text-align: center;
  padding: 20px 12px;
  background: var(--cream);
  border-radius: var(--radius);
  border: 1px solid var(--gray-100);
}

.metric .value {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: -0.03em;
}

.metric .label {
  font-size: 0.78rem;
  color: var(--gray-600);
  margin-top: 6px;
  font-weight: 500;
}

.results-banner.dark {
  background: var(--navy);
  border: none;
}

.results-banner.dark .result-item .result-number {
  color: var(--white);
}

.results-banner.dark .result-item .result-number::after {
  background: var(--orange);
}

.results-banner.dark .result-item .result-label {
  color: rgba(255, 255, 255, 0.65);
}

/* ---- Footer ---- */
.footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.65);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.85;
  margin-top: 18px;
  max-width: 280px;
}

.footer-brand .logo img {
  height: 70px;
}

.footer h4 {
  font-family: var(--font-display);
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.footer-links li { margin-bottom: 12px; }

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  transition: all var(--transition);
}

.footer-links a:hover {
  color: var(--orange);
  padding-left: 4px;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  transition: all var(--transition);
}

.social-link:hover {
  background: var(--orange);
  transform: translateY(-3px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: 0.82rem;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.45);
}

.footer-bottom a:hover { color: var(--orange); }

/* ---- Animations ---- */
.fade-up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-left {
  opacity: 0;
  transform: translateX(-36px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.fade-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-right {
  opacity: 0;
  transform: translateX(36px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.fade-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.stagger-1 { transition-delay: 0.08s; }
.stagger-2 { transition-delay: 0.16s; }
.stagger-3 { transition-delay: 0.24s; }
.stagger-4 { transition-delay: 0.32s; }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .hero-grid,
  .strategy-grid,
  .about-story,
  .service-detail,
  .contact-grid,
  .case-study-card {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-visual { order: -1; }
  .hero-image-wrap img { height: 360px; }
  .hero-float-card { left: 16px; bottom: 16px; }
  .hero-proof { right: 16px; top: 16px; }

  .services-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .service-detail:nth-child(even) { direction: ltr; }

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

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

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

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

@media (max-width: 768px) {
  section { padding: 72px 0; }

  .hamburger { display: flex; }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 82%;
    max-width: 340px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    gap: 22px;
    padding: 40px;
    transition: right var(--transition);
    box-shadow: var(--shadow-lg);
    border-left: 1px solid var(--gray-100);
  }

  .nav-links.open { right: 0; }

  .nav-link {
    color: var(--navy);
    font-size: 1.05rem;
  }

  .nav-cta { margin-top: 12px; width: 100%; }

  .hero-stats { gap: 28px; }
  .values-grid { grid-template-columns: 1fr; }

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

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

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

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .case-study-content { padding: 32px 24px; }
  .case-metrics { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 22px; }
}

@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; }
  .results-grid { grid-template-columns: 1fr; }
}
