/* ======================================================
   MY BUSINESS SOLUTIONS — PROFESSIONAL STYLESHEET v3
   ====================================================== */
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700;800&family=Nunito+Sans:ital,wght@0,300;0,400;0,600;0,700;1,400&display=swap');

/* EMERGENCY ICON FIX - Force all Font Awesome SVG icons to reasonable sizes */
svg:not(:root) {
  max-width: 24px !important;
  max-height: 24px !important;
  width: auto !important;
  height: auto !important
}

.fas svg,
.fa-solid svg,
.far svg,
.fa-regular svg,
.fab svg,
.fa-brands svg,
.fa svg {
  max-width: 1em !important;
  max-height: 1em !important;
  width: 1em !important;
  height: 1em !important;
  display: inline-block !important
}

i svg,
svg.svg-inline--fa {
  max-width: 1em !important;
  max-height: 1em !important;
  width: 1em !important;
  height: 1em !important
}

:root {
  --orange: #E8481C;
  --orange-dark: #C43710;
  --orange-light: #FF6B3D;
  --orange-soft: rgba(232, 72, 28, 0.08);
  --blue: #1B72C0;
  --blue-dark: #0F4F8A;
  --blue-light: #4BAAD4;
  --blue-soft: rgba(27, 114, 192, 0.08);
  --dark: #0D1B2E;
  --dark-2: #162438;
  --mid-dark: #243B55;
  --mid: #4A6380;
  --grey: #7B92A9;
  --border: #E2ECF5;
  --light-grey: #D4E1ED;
  --light: #F4F8FC;
  --white: #FFFFFF;
  --grad-orange: linear-gradient(135deg, #E8481C 0%, #FF6B3D 100%);
  --grad-blue: linear-gradient(135deg, #1B72C0 0%, #4BAAD4 100%);
  --grad-dark: linear-gradient(135deg, #0D1B2E 0%, #162438 55%, #0F3461 100%);
  --shadow-xs: 0 1px 4px rgba(13, 27, 46, 0.06);
  --shadow-sm: 0 2px 12px rgba(13, 27, 46, 0.08);
  --shadow: 0 4px 24px rgba(13, 27, 46, 0.10);
  --shadow-md: 0 8px 32px rgba(13, 27, 46, 0.13);
  --shadow-lg: 0 16px 56px rgba(13, 27, 46, 0.16);
  --shadow-orange: 0 8px 28px rgba(232, 72, 28, 0.30);
  --shadow-blue: 0 8px 28px rgba(27, 114, 192, 0.25);
  --radius-sm: 6px;
  --radius: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.42s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased
}

body {
  font-family: 'Nunito Sans', sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
  padding-top: 70px;
  /* offset for fixed header */
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Sora', sans-serif;
  line-height: 1.18;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.02em
}

h1 {
  font-size: clamp(2rem, 4.5vw, 3.6rem)
}

h2 {
  font-size: clamp(1.7rem, 3vw, 2.6rem)
}

h3 {
  font-size: clamp(1.1rem, 2vw, 1.45rem)
}

h4 {
  font-size: 1.05rem;
  font-weight: 600
}

p {
  color: var(--mid);
  line-height: 1.8;
  font-size: 0.96rem
}

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

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

ul {
  list-style: none
}

button {
  cursor: pointer;
  font-family: inherit
}

svg {
  max-width: 100%;
  max-height: 100%
}

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

.section {
  padding: 80px 0
}

.section-sm {
  padding: 64px 0
}

/* LOGO */
.site-logo {
  display: flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
  text-decoration: none
}

.logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  flex-shrink: 0;
  display: block
}

.logo-text {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 0.88rem;
  color: var(--white);
  line-height: 1.25;
  letter-spacing: -0.01em
}

.logo-text span {
  display: none
}

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

/* LABEL */
.label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: 'Sora', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  background: var(--orange-soft);
  border: 1px solid rgba(232, 72, 28, 0.15);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 18px
}

.label::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0
}

.label.blue {
  color: var(--blue);
  background: var(--blue-soft);
  border-color: rgba(27, 114, 192, 0.15)
}

.label.blue::before {
  background: var(--blue)
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: 'Sora', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
  letter-spacing: 0.01em;
  cursor: pointer
}

.btn i,
.btn svg {
  font-size: 0.9em;
  width: 0.9em;
  height: 0.9em
}

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

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(232, 72, 28, 0.38);
  filter: brightness(1.06)
}

.btn-secondary {
  background: var(--grad-blue);
  color: var(--white);
  box-shadow: var(--shadow-blue)
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(27, 114, 192, 0.38)
}

.btn-outline {
  background: transparent;
  color: var(--orange);
  border-color: var(--orange)
}

.btn-outline:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-2px)
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4)
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white)
}

.btn-ghost {
  background: var(--light);
  color: var(--dark);
  border-color: var(--border)
}

.btn-ghost:hover {
  background: var(--white);
  box-shadow: var(--shadow-sm)
}

.btn-lg {
  padding: 15px 32px;
  font-size: 0.94rem
}

.btn-sm {
  padding: 9px 18px;
  font-size: 0.82rem
}

.arrow {
  transition: transform 0.22s var(--ease)
}

.btn:hover .arrow {
  transform: translateX(4px)
}

/* HEADER */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(13, 27, 46, 0.96);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: var(--transition-slow)
}

.site-header.scrolled {
  background: rgba(13, 27, 46, 0.99);
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.25)
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 24px
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2px
}

.nav-item {
  position: relative
}

.nav-link {
  font-family: 'Sora', sans-serif;
  font-size: 0.83rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  padding: 7px 12px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 4px
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08)
}

.nav-link.active {
  color: var(--orange-light)
}

.chevron {
  font-size: 0.62rem;
  opacity: 0.7;
  transition: transform 0.22s var(--ease)
}

.nav-item:hover .chevron {
  transform: rotate(180deg)
}

/* DROPDOWN */
.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  min-width: 262px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s var(--ease), transform 0.22s var(--ease), visibility 0.22s;
  border: 1px solid var(--border)
}

.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(-50%) translateY(0)
}

.dropdown-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--mid-dark);
  transition: var(--transition)
}

.dropdown-link:hover {
  background: var(--light);
  color: var(--orange)
}

.dropdown-link:hover .dd-icon {
  background: var(--grad-orange)
}

.dropdown-link:hover .dd-icon i,
.dropdown-link:hover .dd-icon svg {
  color: var(--white)
}

.dd-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition)
}

.dd-icon i,
.dd-icon svg {
  font-size: 0.82rem;
  width: 0.82rem;
  height: 0.82rem;
  color: var(--orange);
  transition: var(--transition)
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition)
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--dark);
  position: relative;
  overflow: hidden;
  padding-top: 0
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--grad-dark)
}

.hex-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='104'%3E%3Cpath d='M30 4L58 20v36L30 72 2 56V20L30 4zm0 8L8 24v28l22 12 22-12V24L30 12z' fill='%23fff'/%3E%3C/svg%3E")
}

.hero-glow {
  position: absolute;
  z-index: 1;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none
}

.hero-glow-1 {
  width: 500px;
  height: 500px;
  background: rgba(232, 72, 28, 0.13);
  top: -100px;
  right: -50px
}

.hero-glow-2 {
  width: 380px;
  height: 380px;
  background: rgba(75, 170, 212, 0.10);
  bottom: -60px;
  left: -60px
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  padding: 60px 0
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232, 72, 28, 0.12);
  border: 1px solid rgba(232, 72, 28, 0.25);
  color: var(--orange-light);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 22px
}

.hero-label::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--orange-light);
  border-radius: 50%
}

.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
  font-weight: 800
}

.hero h1 em {
  font-style: normal;
  color: var(--orange-light)
}

.hero-desc {
  color: rgba(255, 255, 255, 0.62);
  font-size: 1rem;
  margin-bottom: 36px;
  max-width: 480px;
  line-height: 1.85
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap
}

.hero-stats {
  display: flex;
  gap: 0;
  margin-top: 44px;
  padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.09)
}

.hero-stat {
  flex: 1;
  padding-right: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.09)
}

.hero-stat:last-child {
  border-right: none;
  padding-left: 24px;
  padding-right: 0
}

.hero-stat:not(:first-child) {
  padding-left: 24px
}

.hero-stat-num {
  font-family: 'Sora', sans-serif;
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.03em
}

.hero-stat-num span {
  color: var(--orange)
}

.hero-stat-label {
  font-size: 0.77rem;
  color: rgba(255, 255, 255, 0.42);
  margin-top: 5px;
  font-weight: 500
}

/* HERO VISUAL — photo with floating cards */
.hero-visual {
  position: relative
}

.hero-img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.45)
}

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

.hero-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 27, 46, 0.5) 0%, transparent 55%)
}

/* Floating stat cards overlaid on hero image */
.hero-float-card {
  position: absolute;
  z-index: 10;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 160px
}

.hero-float-1 {
  top: 28px;
  left: -28px;
  animation: floatA 4s ease-in-out infinite
}

.hero-float-2 {
  bottom: 80px;
  right: -28px;
  animation: floatB 5s ease-in-out infinite 1s
}

.hero-float-3 {
  bottom: 24px;
  left: -16px;
  animation: floatA 4.5s ease-in-out infinite 0.5s
}

@keyframes floatA {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-8px)
  }
}

@keyframes floatB {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-6px)
  }
}

.hfc-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.hfc-icon i,
.hfc-icon svg {
  font-size: 1rem;
  width: 1rem;
  height: 1rem
}

.hfc-icon.orange {
  background: var(--orange-soft)
}

.hfc-icon.orange i,
.hfc-icon.orange svg {
  color: var(--orange)
}

.hfc-icon.blue {
  background: var(--blue-soft)
}

.hfc-icon.blue i,
.hfc-icon.blue svg {
  color: var(--blue)
}

.hfc-icon.green {
  background: rgba(34, 197, 94, 0.1)
}

.hfc-icon.green i,
.hfc-icon.green svg {
  color: #16a34a
}

.hfc-label {
  font-family: 'Sora', sans-serif;
  font-size: 0.68rem;
  color: var(--grey);
  font-weight: 600;
  margin-bottom: 2px;
  text-transform: uppercase;
  letter-spacing: 0.06em
}

.hfc-value {
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1
}

/* PARTNERS STRIP */
.partners-strip {
  background: var(--white);
  padding: 36px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border)
}

.partners-label {
  font-family: 'Sora', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey);
  text-align: center;
  margin-bottom: 24px
}

.partners-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap
}

.partner-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  transition: var(--transition);
  min-height: 62px;
  cursor: default
}

.partner-logo-wrap:hover {
  background: var(--light);
  border-color: var(--border);
  box-shadow: var(--shadow-sm)
}

.partner-logo-img {
  height: 28px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  opacity: 0.85;
  filter: grayscale(40%);
  transition: var(--transition)
}

.partner-logo-wrap:hover .partner-logo-img {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.05)
}

.partner-logo-text {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--dark-2);
  letter-spacing: -0.02em;
  transition: var(--transition);
  opacity: 0.75
}

.partner-logo-wrap:hover .partner-logo-text {
  color: var(--orange);
  opacity: 1
}

.partner-divider {
  width: 1px;
  height: 28px;
  background: var(--border);
  margin: 0 4px
}

/* ABOUT SECTION */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center
}

.about-image-wrap {
  position: relative
}

.about-img-container {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
  position: relative
}

.about-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease)
}

.about-img-container:hover img {
  transform: scale(1.03)
}

.about-img-container::before {
  content: '';
  position: absolute;
  inset: 14px -14px -14px 14px;
  background: var(--orange-soft);
  border: 2px solid rgba(232, 72, 28, 0.12);
  border-radius: var(--radius-xl);
  z-index: -1
}

.about-badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--grad-orange);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  box-shadow: var(--shadow-orange);
  text-align: center;
  min-width: 100px
}

.about-badge-num {
  font-family: 'Sora', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1
}

.about-badge-text {
  font-size: 0.74rem;
  opacity: 0.9;
  margin-top: 4px;
  font-weight: 600
}

.about-content h2 {
  margin-bottom: 18px
}

.about-content>p {
  margin-bottom: 14px;
  line-height: 1.82
}

.about-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 28px 0
}

.about-point {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 15px;
  background: var(--light);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: var(--transition)
}

.about-point:hover {
  border-color: rgba(232, 72, 28, 0.2);
  background: rgba(232, 72, 28, 0.04)
}

.about-point-icon {
  color: var(--orange);
  font-size: 0.88rem;
  flex-shrink: 0;
  line-height: 1
}

.about-point-text {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--dark-2);
  font-family: 'Sora', sans-serif
}

/* SERVICE CARDS - Centered Design */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 56px
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px 26px;
  transition: var(--transition-slow);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease)
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: rgba(232, 72, 28, 0.12)
}

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

/* SERVICE ICON — 64px container, centered */
.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--orange-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  flex-shrink: 0;
  transition: var(--transition)
}

.service-icon i,
.service-icon svg {
  font-size: 1.45rem;
  width: 1.45rem;
  height: 1.45rem;
  color: var(--orange);
  transition: var(--transition)
}

.service-card:hover .service-icon {
  background: var(--grad-orange);
  box-shadow: var(--shadow-orange);
  transform: scale(1.06)
}

.service-card:hover .service-icon i,
.service-card:hover .service-icon svg {
  color: var(--white)
}

.service-card h3 {
  font-size: 1.02rem;
  margin-bottom: 10px;
  line-height: 1.3;
  text-align: center
}

.service-card p {
  font-size: 0.88rem;
  line-height: 1.78;
  margin-bottom: 22px;
  text-align: center;
  flex-grow: 1
}

/* SERVICE LINK - Centered Button Design */
.service-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Sora', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  background: var(--orange);
  border: 1px solid var(--orange);
  padding: 10px 24px;
  border-radius: var(--radius);
  transition: var(--transition);
  margin-top: auto;
  box-shadow: var(--shadow-orange)
}

.service-link .arrow {
  font-size: 0.8rem;
  transition: transform 0.3s var(--ease)
}

.service-card:hover .service-link {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(232, 72, 28, 0.38)
}

.service-card:hover .service-link .arrow {
  transform: translateX(4px)
}

/* TEAM */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px
}

.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition-slow)
}

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

.team-img {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--grad-blue);
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center
}

.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 0.5s var(--ease)
}

.team-card:hover .team-img img {
  transform: scale(1.05)
}

.team-img i,
.team-img svg {
  font-size: 5rem;
  width: 5rem;
  height: 5rem;
  opacity: 0.22;
  color: white;
  padding-bottom: 0;
  z-index: 1
}

.team-info {
  padding: 18px 20px
}

.team-name {
  font-family: 'Sora', sans-serif;
  font-size: 0.93rem;
  font-weight: 700;
  margin-bottom: 3px
}

.team-role {
  font-size: 0.79rem;
  color: var(--orange);
  font-weight: 600
}

.team-bio {
  font-size: 0.8rem;
  color: var(--grey);
  margin-top: 7px;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden
}

.team-socials {
  display: flex;
  gap: 6px;
  margin-top: 12px
}

.team-social {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-sm);
  background: var(--light);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey);
  transition: var(--transition)
}

.team-social i,
.team-social svg {
  font-size: 0.7rem;
  width: 0.7rem;
  height: 0.7rem
}

.team-social:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  transform: translateY(-2px)
}

/* TESTIMONIALS */
.testimonials {
  background: var(--dark)
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px
}

.testi-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  transition: var(--transition-slow);
  position: relative;
  overflow: hidden
}

.testi-card::before {
  content: '\201C';
  font-family: 'Sora', sans-serif;
  font-size: 5rem;
  font-weight: 800;
  line-height: 0.8;
  color: var(--orange);
  opacity: 0.14;
  position: absolute;
  top: 18px;
  right: 22px
}

.testi-card:hover {
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-4px);
  border-color: rgba(232, 72, 28, 0.18)
}

.testi-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 18px
}

.testi-stars i,
.testi-stars svg {
  color: var(--orange);
  font-size: 0.8rem;
  width: 0.8rem;
  height: 0.8rem
}

.testi-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.78;
  margin-bottom: 24px;
  font-style: italic
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px
}

.testi-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--grad-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  color: var(--white);
  font-size: 0.86rem;
  letter-spacing: 0.04em
}

.testi-name {
  font-family: 'Sora', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white)
}

.testi-company {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.36);
  margin-top: 2px
}

/* PRICING */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
  align-items: start
}

.price-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 38px 30px;
  transition: var(--transition-slow);
  position: relative
}

.price-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--light-grey);
  transform: translateY(-4px)
}

.price-card.featured {
  border-color: var(--orange);
  background: var(--orange);
  transform: scale(1.04);
  box-shadow: var(--shadow-orange)
}

.price-card.featured:hover {
  transform: scale(1.04) translateY(-4px)
}

.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--dark);
  color: var(--white);
  font-family: 'Sora', sans-serif;
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 50px
}

.price-tier {
  font-family: 'Sora', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 10px
}

.price-card.featured .price-tier {
  color: rgba(255, 255, 255, 0.65)
}

.price-amount {
  font-family: 'Sora', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: -0.03em
}

.price-card.featured .price-amount {
  color: var(--white)
}

.price-period {
  font-size: 0.82rem;
  color: var(--grey);
  margin-bottom: 0
}

.price-card.featured .price-period {
  color: rgba(255, 255, 255, 0.65)
}

.price-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 20px 0
}

.price-card.featured .price-divider {
  border-color: rgba(255, 255, 255, 0.18)
}

.price-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.87rem;
  padding: 6px 0;
  color: var(--mid)
}

.price-card.featured .price-feature {
  color: rgba(255, 255, 255, 0.88)
}

.price-check {
  color: var(--orange);
  flex-shrink: 0;
  font-size: 0.8rem;
  margin-top: 3px
}

.price-card.featured .price-check {
  color: white
}

.price-x {
  color: var(--light-grey);
  flex-shrink: 0;
  font-size: 0.8rem;
  margin-top: 3px
}

.price-card.featured .price-x {
  color: rgba(255, 255, 255, 0.25)
}

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 56px auto 0
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 10px;
  overflow: hidden;
  transition: var(--transition)
}

.faq-item.open {
  box-shadow: var(--shadow-sm);
  border-color: rgba(232, 72, 28, 0.2)
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  background: var(--white);
  font-family: 'Sora', sans-serif;
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--dark);
  transition: var(--transition);
  gap: 16px;
  user-select: none
}

.faq-question:hover {
  background: var(--light)
}

.faq-item.open .faq-question {
  background: var(--light);
  color: var(--orange)
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--light);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition)
}

.faq-icon i,
.faq-icon svg {
  font-size: 0.7rem;
  width: 0.7rem;
  height: 0.7rem;
  color: var(--grey);
  transition: var(--transition)
}

.faq-item.open .faq-icon {
  background: var(--orange);
  border-color: var(--orange);
  transform: rotate(45deg)
}

.faq-item.open .faq-icon i,
.faq-item.open .faq-icon svg {
  color: var(--white)
}

.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s var(--ease), padding 0.28s var(--ease)
}

.faq-item.open .faq-answer {
  padding: 0 24px 22px;
  max-height: 400px
}

.faq-answer p {
  font-size: 0.9rem;
  color: var(--mid);
  line-height: 1.8
}

/* CTA BAND */
.cta-band {
  background: var(--grad-dark);
  padding: 88px 0;
  text-align: center;
  position: relative;
  overflow: hidden
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='104'%3E%3Cpath d='M30 4L58 20v36L30 72 2 56V20L30 4zm0 8L8 24v28l22 12 22-12V24L30 12z' fill='%23fff'/%3E%3C/svg%3E");
  opacity: 0.025
}

.cta-band::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(232, 72, 28, 0.15) 0%, transparent 55%), radial-gradient(circle at 70% 50%, rgba(75, 170, 212, 0.10) 0%, transparent 55%)
}

.cta-band-content {
  position: relative;
  z-index: 1
}

.cta-band h2 {
  color: var(--white);
  margin-bottom: 14px
}

.cta-band p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 1rem;
  margin-bottom: 36px
}

.cta-btns {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap
}

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 72px
}

.contact-detail {
  display: flex;
  gap: 16px;
  margin-bottom: 22px;
  align-items: flex-start
}

.contact-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-md);
  background: var(--orange-soft);
  border: 1px solid rgba(232, 72, 28, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.contact-icon i,
.contact-icon svg {
  font-size: 1rem;
  width: 1rem;
  height: 1rem;
  color: var(--orange)
}

.contact-detail h4 {
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 4px;
  font-family: 'Sora', sans-serif
}

.contact-detail p {
  font-size: 0.9rem;
  margin: 0;
  color: var(--mid)
}

.form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 44px 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border)
}

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

.form-group {
  margin-bottom: 18px
}

.form-group label {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 7px;
  letter-spacing: 0.04em
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.91rem;
  color: var(--dark);
  background: var(--white);
  outline: none;
  transition: var(--transition)
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(232, 72, 28, 0.08)
}

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

.form-group select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237B92A9' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center
}

.form-success {
  display: none;
  background: rgba(22, 163, 74, 0.08);
  border: 1.5px solid rgba(22, 163, 74, 0.35);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  text-align: center;
  color: #15803d;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 20px
}

.form-success.show {
  display: block
}

.form-success i,
.form-success svg {
  margin-right: 8px
}

/* PAGE HERO */
.page-hero {
  background: var(--dark);
  padding: 80px 0 80px;
  /* body padding-top handles header offset */
  text-align: center;
  position: relative;
  overflow: hidden
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-dark)
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 200px;
  background: radial-gradient(ellipse, rgba(232, 72, 28, 0.12) 0%, transparent 70%)
}

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

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  font-size: 0.79rem;
  color: rgba(255, 255, 255, 0.4)
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.4);
  transition: var(--transition)
}

.breadcrumb a:hover {
  color: var(--orange-light)
}

.breadcrumb i,
.breadcrumb svg {
  font-size: 0.58rem;
  width: 0.58rem;
  height: 0.58rem
}

.breadcrumb span {
  color: var(--orange-light);
  font-weight: 600
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 14px
}

.page-hero p {
  color: rgba(255, 255, 255, 0.58);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto
}

.page-hero-icon {
  width: 68px;
  height: 68px;
  border-radius: 18px;
  background: rgba(232, 72, 28, 0.14);
  border: 1px solid rgba(232, 72, 28, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px
}

.page-hero-icon i,
.page-hero-icon svg {
  color: var(--orange-light);
  font-size: 1.5rem;
  width: 1.5rem;
  height: 1.5rem
}

/* SERVICE DETAIL */
.service-detail-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px
}

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

.service-content p {
  margin-bottom: 14px;
  line-height: 1.82
}

.service-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 32px 0
}

.service-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 16px;
  background: var(--light);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--orange);
  transition: var(--transition)
}

.service-feature:hover {
  background: rgba(232, 72, 28, 0.04);
  box-shadow: var(--shadow-sm)
}

/* SERVICE FEATURE ICON — 40px container */
.service-feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--orange-soft);
  border: 1px solid rgba(232, 72, 28, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.service-feature-icon i,
.service-feature-icon svg {
  font-size: 0.9rem;
  width: 0.9rem;
  height: 0.9rem;
  color: var(--orange)
}

.service-feature h4 {
  font-size: 0.87rem;
  margin-bottom: 4px;
  line-height: 1.3
}

.service-feature p {
  font-size: 0.8rem;
  margin: 0;
  line-height: 1.6
}

.sidebar-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px 22px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  margin-bottom: 18px
}

.sidebar-card h4 {
  font-family: 'Sora', sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border)
}

.sidebar-service-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  border-radius: var(--radius-sm);
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--mid);
  transition: var(--transition);
  margin-bottom: 2px
}

.sidebar-service-link:hover {
  background: var(--light);
  color: var(--orange);
  padding-left: 14px
}

.sidebar-service-link.current {
  background: var(--orange-soft);
  color: var(--orange);
  font-weight: 700;
  border: 1px solid rgba(232, 72, 28, 0.14)
}

.sidebar-service-link .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--grey);
  flex-shrink: 0
}

.sidebar-service-link:hover .dot,
.sidebar-service-link.current .dot {
  background: var(--orange)
}

.ss-icon {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-sm);
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition)
}

.ss-icon i,
.ss-icon svg {
  font-size: 0.75rem;
  width: 0.75rem;
  height: 0.75rem;
  color: var(--grey);
  transition: var(--transition)
}

.sidebar-service-link:hover .ss-icon {
  background: var(--orange-soft)
}

.sidebar-service-link:hover .ss-icon i,
.sidebar-service-link:hover .ss-icon svg,
.sidebar-service-link.current .ss-icon i,
.sidebar-service-link.current .ss-icon svg {
  color: var(--orange)
}

.sidebar-service-link.current .ss-icon {
  background: var(--orange-soft)
}

/* BLOG */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition-slow)
}

.blog-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
  border-color: rgba(232, 72, 28, 0.12)
}

.blog-thumb {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--grad-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative
}

.blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease)
}

.blog-card:hover .blog-thumb img {
  transform: scale(1.05)
}

.blog-thumb i,
.blog-thumb svg {
  font-size: 2.8rem;
  width: 2.8rem;
  height: 2.8rem;
  opacity: 0.22;
  color: white
}

.blog-body {
  padding: 22px 22px
}

.blog-meta {
  display: flex;
  gap: 14px;
  margin-bottom: 10px;
  font-size: 0.76rem;
  color: var(--grey)
}

.blog-meta span {
  display: flex;
  align-items: center;
  gap: 5px
}

.blog-meta i,
.blog-meta svg {
  font-size: 0.7rem;
  width: 0.7rem;
  height: 0.7rem
}

.blog-card h3 {
  font-size: 1rem;
  margin-bottom: 10px;
  line-height: 1.38
}

.blog-card h3 a:hover {
  color: var(--orange)
}

.blog-card p {
  font-size: 0.86rem;
  margin-bottom: 16px;
  line-height: 1.72
}

.blog-tag {
  display: inline-block;
  background: var(--blue-soft);
  border-radius: 50px;
  padding: 3px 12px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 0.04em
}

/* FOOTER */
.site-footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.55);
  padding: 80px 0 0
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
  margin-bottom: 60px
}

.footer-brand .site-logo {
  margin-bottom: 16px
}

.footer-brand p {
  font-size: 0.86rem;
  line-height: 1.8;
  margin: 0
}

.footer-title {
  font-family: 'Sora', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 18px
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 7px
}

.footer-link {
  font-size: 0.86rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.48)
}

.footer-link:hover {
  color: var(--orange-light);
  transform: translateX(3px)
}

.footer-link i,
.footer-link svg {
  font-size: 0.62rem;
  width: 0.62rem;
  height: 0.62rem;
  opacity: 0.6
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.86rem
}

.footer-contact-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.footer-contact-icon i,
.footer-contact-icon svg {
  font-size: 0.76rem;
  width: 0.76rem;
  height: 0.76rem;
  color: var(--orange-light)
}

.footer-socials {
  display: flex;
  gap: 7px;
  margin-top: 18px
}

.footer-social {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.45);
  transition: var(--transition)
}

.footer-social i,
.footer-social svg {
  font-size: 0.76rem;
  width: 0.76rem;
  height: 0.76rem
}

.footer-social:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  transform: translateY(-2px)
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.28)
}

/* 404 */
.error-section {
  min-height: calc(100vh - 70px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--light)
}

.error-code {
  font-family: 'Sora', sans-serif;
  font-size: clamp(6rem, 18vw, 10rem);
  font-weight: 800;
  line-height: 0.9;
  background: var(--grad-orange);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
  display: block
}

/* SECTION HEADER */
.section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 56px
}

.section-header h2 {
  margin-bottom: 14px
}

.section-header p {
  font-size: 0.97rem
}

/* UTILS */
.text-center {
  text-align: center
}

.text-orange {
  color: var(--orange)
}

.text-blue {
  color: var(--blue)
}

.text-white {
  color: var(--white) !important
}

.text-muted {
  color: var(--grey)
}

.bg-light {
  background: var(--light)
}

.bg-dark {
  background: var(--dark)
}

/* ANIMATIONS */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.animate-fade-up {
  animation: fadeUp 0.65s var(--ease) both
}

.animate-fade-up.delay-1 {
  animation-delay: .1s
}

.animate-fade-up.delay-2 {
  animation-delay: .22s
}

.animate-fade-up.delay-3 {
  animation-delay: .34s
}

.animate-fade-up.delay-4 {
  animation-delay: .46s
}

/* RESPONSIVE */
@media(max-width:1024px) {
  .hero-inner {
    gap: 44px
  }

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

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

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

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto
  }

  .price-card.featured {
    transform: none
  }
}

@media(max-width:768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px
  }

  .hero-visual {
    display: none
  }

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

  .about-img-container::before {
    display: none
  }

  .about-badge {
    right: 0;
    bottom: -10px
  }

  .contact-grid {
    grid-template-columns: 1fr
  }

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

  .testi-grid {
    grid-template-columns: 1fr
  }

  .blog-grid {
    grid-template-columns: 1fr
  }

  .service-detail-grid {
    grid-template-columns: 1fr
  }

  .service-features {
    grid-template-columns: 1fr
  }

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

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

  .nav-toggle {
    display: flex
  }

  .header-cta {
    display: none
  }

  .site-nav {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(13, 27, 46, 0.99);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 24px 20px;
    overflow-y: auto;
    align-items: stretch;
    gap: 2px
  }

  .site-nav.open {
    display: flex
  }

  .nav-link {
    padding: 12px 16px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8)
  }

  .dropdown {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.04);
    margin: 6px 0;
    border-radius: var(--radius-md);
    border-color: rgba(255, 255, 255, 0.08);
    pointer-events: all
  }

  .dropdown-link {
    color: rgba(255, 255, 255, 0.65)
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 20px
  }

  .hero-stat {
    border-right: none;
    padding: 0 !important
  }

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

  .form-card {
    padding: 28px 22px
  }
}

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

  .services-grid {
    grid-template-columns: 1fr
  }

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

  .container {
    padding: 0 18px
  }
}

/* WORDPRESS EDITOR CONTENT */
.entry-content {
  line-height: 1.8
}

.entry-content>* {
  margin-bottom: 1.5em
}

.entry-content>*:last-child {
  margin-bottom: 0
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4 {
  margin-bottom: 0.8em;
  margin-top: 1.5em
}

.entry-content h1:first-child,
.entry-content h2:first-child,
.entry-content h3:first-child,
.entry-content h4:first-child {
  margin-top: 0
}

.entry-content p {
  margin-bottom: 1.2em
}

.entry-content ul,
.entry-content ol {
  margin-bottom: 1.2em;
  padding-left: 1.5em
}

.entry-content ul {
  list-style: disc
}

.entry-content ol {
  list-style: decimal
}

.entry-content li {
  margin-bottom: 0.5em
}

.entry-content blockquote {
  border-left: 4px solid var(--orange);
  padding-left: 20px;
  margin: 1.5em 0;
  font-style: italic;
  color: var(--mid)
}

.entry-content img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md)
}

.entry-content figure {
  margin: 1.5em 0
}

.entry-content figcaption {
  font-size: 0.85rem;
  color: var(--grey);
  text-align: center;
  margin-top: 8px
}

.entry-content a {
  color: var(--orange);
  text-decoration: underline
}

.entry-content a:hover {
  color: var(--orange-dark)
}

.entry-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5em 0
}

.entry-content th,
.entry-content td {
  padding: 12px;
  border: 1px solid var(--border);
  text-align: left
}

.entry-content th {
  background: var(--light);
  font-weight: 600
}

.entry-content code {
  background: var(--light);
  padding: 2px 6px;
  border-radius: 4px;
  font-family: monospace;
  font-size: 0.9em
}

.entry-content pre {
  background: var(--dark);
  color: var(--white);
  padding: 20px;
  border-radius: var(--radius-md);
  overflow-x: auto;
  margin: 1.5em 0
}

.entry-content pre code {
  background: none;
  padding: 0
}

/* WordPress alignment */
.alignleft {
  float: left;
  margin-right: 20px;
  margin-bottom: 20px
}

.alignright {
  float: right;
  margin-left: 20px;
  margin-bottom: 20px
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px
}

.alignwide {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto
}

.alignfull {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw)
}