/* ============================================
   ProSportConnex — Design System
   ============================================ */

/* --- Reset & Base --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: #111;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: #2563eb;
  text-decoration: none;
  transition: color .2s;
}

a:hover {
  color: #1d4ed8;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* Focus visible */
:focus-visible {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  font-weight: 700;
  color: #111;
}

h1 { font-size: 2.75rem; }
h2 { font-size: 2.35rem; }
h3 { font-size: 1.65rem; }
h4 { font-size: 1.35rem; }

p { margin-bottom: 1rem; }

.text-light { color: #fff; }
.text-muted { color: #666; }
.text-accent { color: #2563eb; }
.text-center { text-align: center; }

/* --- Layout --- */
.container {
  width: 100%;
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 6.5rem 0;
}

.section--dark {
  background: #0a0a0a;
  color: #e5e5e5;
}

.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: #fff;
}

.section--gray {
  background: #f7f7f8;
}

.section__header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3.5rem;
}

.section__header p {
  color: #666;
  font-size: 1.2rem;
  margin-top: .75rem;
}

.section--dark .section__header p {
  color: #a3a3a3;
}

/* Grid */
.grid {
  display: grid;
  gap: 2.5rem;
}

.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
.grid--4 { grid-template-columns: 1fr; }
.grid--5 { grid-template-columns: 1fr; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: 1rem 2.25rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all .2s;
  text-align: center;
  line-height: 1.4;
}

.btn--primary {
  background: #2563eb;
  color: #fff;
}

.btn--primary:hover {
  background: #1d4ed8;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, .35);
}

.btn--outline {
  border: 2px solid #2563eb;
  color: #2563eb;
  background: transparent;
}

.btn--outline:hover {
  background: #2563eb;
  color: #fff;
  transform: translateY(-1px);
}

.btn--white {
  background: #fff;
  color: #111;
}

.btn--white:hover {
  background: #f0f0f0;
  color: #111;
  transform: translateY(-1px);
}

.btn--outline-white {
  border: 2px solid rgba(255,255,255,.3);
  color: #fff;
  background: transparent;
}

.btn--outline-white:hover {
  border-color: #fff;
  background: rgba(255,255,255,.1);
  color: #fff;
}

.btn--lg {
  padding: 1.15rem 2.75rem;
  font-size: 1.15rem;
}

.btn--sm {
  padding: .7rem 1.5rem;
  font-size: .9rem;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* --- Header / Nav --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(10, 10, 10, .95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: background .3s;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: inline-flex;
  align-items: center;
  color: #fff;
}

.logo img {
  height: 55px;
  width: auto;
  display: block;
}

.footer .logo img {
  height: 45px;
}

.nav {
  display: none;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__link {
  color: #a3a3a3;
  font-size: 1rem;
  font-weight: 500;
  transition: color .2s;
}

.nav__link:hover,
.nav__link--active {
  color: #fff;
}

.header__cta {
  display: none;
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all .3s;
}

.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);
}

/* Mobile nav */
.nav--mobile {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  height: calc(100vh - 80px);
  background: #0a0a0a;
  padding: 2rem 1.5rem;
  z-index: 999;
}

.nav--mobile.active {
  display: block;
}

.nav--mobile .nav__list {
  flex-direction: column;
  gap: 0;
}

.nav--mobile .nav__link {
  display: block;
  padding: 1rem 0;
  font-size: 1.1rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
  width: 100%;
}

.nav--mobile .btn {
  width: 100%;
  margin-top: 1.5rem;
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0a0a0a 0%, #111827 40%, #1e3a5f 70%, #1d4ed8 100%);
  padding-top: 80px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(37, 99, 235, .15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(96, 165, 250, .1) 0%, transparent 40%),
    radial-gradient(ellipse at 50% 80%, rgba(139, 92, 246, .08) 0%, transparent 40%);
  pointer-events: none;
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  padding: 3rem 0;
}

.hero__content {
  position: relative;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, .12);
  color: #e5e5e5;
  padding: .6rem 1.25rem;
  border-radius: 100px;
  font-size: .85rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.hero__badge svg {
  color: #60a5fa;
}

.hero__title {
  font-size: 2.75rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -.03em;
}

.hero__title span {
  color: #2563eb;
}

.hero__subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, .65);
  max-width: 580px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero .btn-group {
  margin-bottom: 0;
}

.hero .btn--primary {
  border-radius: 100px;
  padding: 1rem 2.5rem;
  font-size: 1.05rem;
}

.hero .btn--outline-white {
  border-radius: 100px;
  padding: 1rem 2rem;
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.08);
  flex-wrap: wrap;
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: .4rem;
  color: rgba(255, 255, 255, .5);
  font-size: .85rem;
}

.hero__trust-item svg {
  flex-shrink: 0;
}

.hero__stars {
  display: flex;
  gap: 2px;
  color: #fbbf24;
}

.hero__trust-rating {
  display: flex;
  align-items: center;
  gap: .5rem;
}

.hero__trust-rating strong {
  color: #fff;
  font-size: .9rem;
  font-weight: 700;
}

/* --- Hero Form --- */
.hero__form-wrapper {
  position: relative;
}

.hero__form-card {
  background: rgba(255, 255, 255, .06);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .3);
}

.hero__form-card h3 {
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: .5rem;
  font-weight: 700;
}

.hero__form-card .hero__form-sub {
  color: rgba(255,255,255,.5);
  font-size: .95rem;
  margin-bottom: 1.75rem;
}

.hero__form-card .form__group {
  margin-bottom: 1.15rem;
}

.hero__form-card .form__input,
.hero__form-card .form__textarea {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  color: #fff;
  border-radius: 12px;
  padding: .95rem 1.15rem;
  font-size: 1rem;
}

.hero__form-card .form__input::placeholder,
.hero__form-card .form__textarea::placeholder {
  color: rgba(255, 255, 255, .35);
}

.hero__form-card .form__input:focus,
.hero__form-card .form__textarea:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, .2);
  outline: none;
  background: rgba(255, 255, 255, .1);
}

.hero__form-card .form__textarea {
  min-height: 100px;
  resize: vertical;
}

.hero__form-card .btn {
  width: 100%;
  border-radius: 12px;
  padding: 1.05rem;
  font-size: 1.1rem;
}

.hero__form-card .form__note {
  color: rgba(255,255,255,.35);
  font-size: .75rem;
  margin-top: .75rem;
  text-align: center;
}

.hero__form-card .form__note a {
  color: rgba(255,255,255,.5);
  text-decoration: underline;
}

/* Legacy - keep for other pages if used */
.hero__highlight {
  display: none;
}

/* --- Value Props --- */
.value-card {
  padding: 2.5rem;
  border-radius: 16px;
  border: 1px solid #e5e5e5;
  transition: all .3s;
}

.value-card:hover {
  border-color: #2563eb;
  box-shadow: 0 4px 20px rgba(37, 99, 235, .08);
  transform: translateY(-2px);
}

.value-card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(37, 99, 235, .08);
  color: #2563eb;
  border-radius: 14px;
  margin-bottom: 1.5rem;
}

.value-card__title {
  font-size: 1.3rem;
  margin-bottom: .6rem;
}

.value-card__text {
  color: #666;
  font-size: 1.05rem;
  margin-bottom: 0;
  line-height: 1.7;
}

/* --- Service Cards --- */
.service-card {
  padding: 2.5rem;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e5e5e5;
  transition: all .3s;
}

.service-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,.08);
  transform: translateY(-3px);
}

.section--dark .service-card {
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.08);
}

.section--dark .service-card:hover {
  border-color: rgba(37, 99, 235, .3);
  box-shadow: 0 8px 30px rgba(0,0,0,.3);
}

.service-card__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2563eb;
  margin-bottom: 1rem;
}

.service-card__title {
  font-size: 1.3rem;
  margin-bottom: .5rem;
}

.service-card__text {
  color: #666;
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

.section--dark .service-card__text {
  color: #a3a3a3;
}

.service-card__link {
  font-weight: 600;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
}

/* --- Steps --- */
.steps {
  display: grid;
  gap: 2rem;
}

.step {
  position: relative;
  padding: 2.5rem;
  text-align: center;
}

.step__number {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2563eb;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 800;
  border-radius: 50%;
  margin: 0 auto 1.25rem;
}

.step__title {
  font-size: 1.25rem;
  margin-bottom: .5rem;
}

.step__text {
  color: #666;
  font-size: 1.05rem;
  margin-bottom: 0;
}

/* --- Benefits --- */
.benefits-list {
  max-width: 780px;
  margin: 0 auto;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1.15rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.benefit-item:last-child {
  border-bottom: none;
}

.benefit-item__icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(37, 99, 235, .15);
  color: #60a5fa;
  border-radius: 50%;
  margin-top: 2px;
}

.benefit-item__text {
  font-size: 1.15rem;
  color: #e5e5e5;
  margin-bottom: 0;
}

/* --- Pricing --- */
.pricing-card {
  padding: 3rem 2.5rem;
  border-radius: 18px;
  border: 1px solid #e5e5e5;
  text-align: center;
  transition: all .3s;
  position: relative;
  background: #fff;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.1);
}

.pricing-card--featured {
  border-color: #2563eb;
  box-shadow: 0 0 0 1px #2563eb;
}

.pricing-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #2563eb;
  color: #fff;
  padding: .35rem 1.25rem;
  border-radius: 100px;
  font-size: .8rem;
  font-weight: 600;
  white-space: nowrap;
}

.pricing-card__name {
  font-size: 1.4rem;
  margin-bottom: .5rem;
}

.pricing-card__price {
  font-size: 3.5rem;
  font-weight: 800;
  color: #111;
  line-height: 1;
  margin-bottom: .25rem;
}

.pricing-card__period {
  color: #666;
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.pricing-card__features {
  text-align: left;
  margin-bottom: 2rem;
}

.pricing-card__features li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: .6rem 0;
  color: #444;
  font-size: 1.05rem;
}

.pricing-card__features li svg {
  flex-shrink: 0;
  color: #2563eb;
  margin-top: 3px;
}

.pricing-card .btn {
  width: 100%;
}

/* --- Portfolio Cards --- */
.portfolio-card {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e5e5e5;
  transition: all .3s;
  background: #fff;
}

.portfolio-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.1);
}

.portfolio-card__preview {
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.portfolio-card__preview--clinic {
  background: linear-gradient(135deg, #0ea5e9, #2563eb);
}

.portfolio-card__preview--lawyers {
  background: linear-gradient(135deg, #1e293b, #334155);
}

.portfolio-card__preview--restaurant {
  background: linear-gradient(135deg, #dc2626, #f97316);
}

.portfolio-card__preview--gym {
  background: linear-gradient(135deg, #7c3aed, #a855f7);
}

.portfolio-card__preview--real-estate {
  background: linear-gradient(135deg, #059669, #10b981);
}

.portfolio-card__preview--shop {
  background: linear-gradient(135deg, #d97706, #f59e0b);
}

.portfolio-card__body {
  padding: 1.75rem;
}

.portfolio-card__sector {
  font-size: .9rem;
  font-weight: 600;
  color: #2563eb;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: .5rem;
}

.portfolio-card__title {
  font-size: 1.3rem;
  margin-bottom: .5rem;
}

.portfolio-card__text {
  color: #666;
  font-size: 1rem;
  margin-bottom: 0;
}

/* --- FAQ --- */
.faq-item {
  border-bottom: 1px solid #e5e5e5;
}

.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  font-size: 1.2rem;
  font-weight: 600;
  color: #111;
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  gap: 1rem;
}

.faq-item__question:hover {
  color: #2563eb;
}

.faq-item__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .3s;
}

.faq-item.active .faq-item__icon {
  transform: rotate(45deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}

.faq-item__answer p {
  padding-bottom: 1.5rem;
  color: #666;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* --- CTA Section --- */
.cta-section {
  text-align: center;
  padding: 6.5rem 0;
}

.cta-section h2 {
  font-size: 2.35rem;
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #a3a3a3;
}

/* --- Footer --- */
.footer {
  background: #0a0a0a;
  color: #a3a3a3;
  padding: 5rem 0 2.5rem;
  border-top: 1px solid rgba(255,255,255,.06);
}

.footer__grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer__brand p {
  font-size: 1rem;
  margin-top: .75rem;
  max-width: 300px;
}

.footer__title {
  font-size: .95rem;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 1rem;
}

.footer__links li {
  margin-bottom: .5rem;
}

.footer__links a {
  color: #a3a3a3;
  font-size: 1rem;
  transition: color .2s;
}

.footer__links a:hover {
  color: #fff;
}

.footer__contact a {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: #a3a3a3;
  font-size: 1rem;
  margin-bottom: .75rem;
}

.footer__contact a:hover {
  color: #2563eb;
}

.footer__bottom {
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,.06);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: .9rem;
}

.footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer__legal a {
  color: #666;
  font-size: .9rem;
}

.footer__legal a:hover {
  color: #a3a3a3;
}

/* --- Contact Form --- */
.form {
  max-width: 660px;
  margin: 0 auto;
}

.form__group {
  margin-bottom: 1.5rem;
}

.form__label {
  display: block;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: .5rem;
  color: #111;
}

.form__input,
.form__textarea {
  width: 100%;
  padding: 1rem 1.15rem;
  border: 1px solid #d4d4d4;
  border-radius: 10px;
  font-size: 1.05rem;
  transition: border-color .2s, box-shadow .2s;
  background: #fff;
  color: #111;
}

.form__input:focus,
.form__textarea:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, .1);
  outline: none;
}

.form__textarea {
  resize: vertical;
  min-height: 150px;
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: #999;
}

.form__submit {
  width: 100%;
}

.form__note {
  font-size: .9rem;
  color: #666;
  margin-top: 1rem;
  text-align: center;
}

/* Contact info block */
.contact-info {
  display: grid;
  gap: 1.5rem;
  margin-top: 3rem;
}

.contact-info__item {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  padding: 1.75rem;
  background: #f7f7f8;
  border-radius: 14px;
}

.contact-info__icon {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(37, 99, 235, .08);
  color: #2563eb;
  border-radius: 12px;
  flex-shrink: 0;
}

.contact-info__text strong {
  display: block;
  margin-bottom: .25rem;
}

.contact-info__text a {
  color: #2563eb;
}

/* --- WhatsApp Float --- */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 66px;
  height: 66px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 15px rgba(37, 211, 102, .4);
  z-index: 900;
  transition: transform .2s, box-shadow .2s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, .5);
  color: #fff;
}

/* --- Legal Pages --- */
.legal-content {
  max-width: 860px;
  margin: 0 auto;
  padding-top: 130px;
  padding-bottom: 5rem;
}

.legal-content h1 {
  margin-bottom: 2rem;
}

.legal-content h2 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.legal-content p,
.legal-content li {
  color: #444;
  line-height: 1.8;
}

.legal-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-content ul li {
  margin-bottom: .5rem;
}

/* --- Page Header --- */
.page-header {
  background: #0a0a0a;
  padding: 9rem 0 4.5rem;
  text-align: center;
}

.page-header h1 {
  color: #fff;
  font-size: 2.75rem;
  margin-bottom: .75rem;
}

.page-header p {
  color: #a3a3a3;
  font-size: 1.25rem;
  max-width: 660px;
  margin: 0 auto;
}

/* --- Page Header with background image --- */
.page-header--bg {
  background-size: cover;
  background-position: center;
  position: relative;
}

.page-header--bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, .7);
}

.page-header--bg > .container {
  position: relative;
  z-index: 1;
}

/* --- Service Detail --- */
.service-detail {
  display: grid;
  gap: 3rem;
}

.service-detail__item {
  padding: 2.5rem;
  border-radius: 16px;
  border: 1px solid #e5e5e5;
  background: #fff;
}

.service-detail__image {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.service-detail__image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

.service-detail__item h3 {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1rem;
}

.service-detail__item h3 svg {
  color: #2563eb;
  flex-shrink: 0;
}

.service-detail__item p {
  color: #555;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.service-detail__item ul {
  list-style: none;
  padding: 0;
}

.service-detail__item ul li {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  padding: .5rem 0;
  color: #444;
  font-size: 1.05rem;
}

.service-detail__item ul li::before {
  content: '✓';
  color: #2563eb;
  font-weight: 700;
  flex-shrink: 0;
}

/* --- Utilities --- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: .5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* --- Marquee Strip --- */
.marquee {
  overflow: hidden;
  white-space: nowrap;
  background: #2563eb;
  padding: .9rem 0;
  position: relative;
}

.marquee__inner {
  display: inline-flex;
  animation: marquee 25s linear infinite;
}

.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: 0 2.75rem;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.marquee__item span {
  opacity: .4;
  font-size: .7rem;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --- Scroll Reveal --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .8s cubic-bezier(.16, 1, .3, 1), transform .8s cubic-bezier(.16, 1, .3, 1);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }
.reveal-delay-5 { transition-delay: .5s; }

/* --- Gradient Text --- */
.gradient-text {
  background: linear-gradient(135deg, #2563eb, #60a5fa, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- Stats Section --- */
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.stat {
  text-align: center;
  padding: 2rem;
}

.stat__number {
  font-size: 3.5rem;
  font-weight: 800;
  color: #2563eb;
  line-height: 1;
  margin-bottom: .5rem;
  font-variant-numeric: tabular-nums;
}

.stat__label {
  font-size: 1.05rem;
  color: #a3a3a3;
  margin-bottom: 0;
}

/* --- Grain texture on dark sections --- */
.section--dark::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

.section--dark {
  position: relative;
}

.section--dark > .container {
  position: relative;
  z-index: 1;
}

/* --- Enhanced card glow on hover --- */
.value-card:hover {
  border-color: rgba(37, 99, 235, .4);
  box-shadow: 0 4px 30px rgba(37, 99, 235, .12), 0 0 60px rgba(37, 99, 235, .05);
  transform: translateY(-4px);
}

.service-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,.08), 0 0 40px rgba(37, 99, 235, .06);
  transform: translateY(-5px);
}

.pricing-card:hover {
  box-shadow: 0 20px 50px rgba(0,0,0,.12), 0 0 40px rgba(37, 99, 235, .06);
  transform: translateY(-6px);
}

.portfolio-card:hover {
  box-shadow: 0 20px 50px rgba(0,0,0,.12);
  transform: translateY(-6px);
}

/* --- Enhanced buttons --- */
.btn--primary {
  position: relative;
  overflow: hidden;
}

.btn--primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.15) 0%, transparent 50%);
  opacity: 0;
  transition: opacity .3s;
}

.btn--primary:hover::after {
  opacity: 1;
}

.btn--primary:hover {
  box-shadow: 0 4px 20px rgba(37, 99, 235, .4), 0 0 40px rgba(37, 99, 235, .15);
}

/* --- Hero enhanced --- */
.hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(37, 99, 235, .12) 0%, transparent 60%);
  pointer-events: none;
  animation: heroGlow 6s ease-in-out infinite alternate;
}

@keyframes heroGlow {
  0% { transform: translate(0, 0) scale(1); opacity: .6; }
  100% { transform: translate(-30px, -20px) scale(1.1); opacity: 1; }
}

/* Hero entrance animations */
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes heroSlideRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

.hero__content {
  animation: heroFadeIn .8s cubic-bezier(.16, 1, .3, 1) .1s both;
}

.hero__badge {
  animation: heroFadeIn .8s cubic-bezier(.16, 1, .3, 1) .15s both;
}

.hero__title {
  animation: heroFadeIn .8s cubic-bezier(.16, 1, .3, 1) .25s both;
}

.hero__subtitle {
  animation: heroFadeIn .8s cubic-bezier(.16, 1, .3, 1) .35s both;
}

.hero .btn-group {
  animation: heroFadeIn .8s cubic-bezier(.16, 1, .3, 1) .45s both;
}

.hero__trust {
  animation: heroFadeIn .8s cubic-bezier(.16, 1, .3, 1) .55s both;
}

.hero__form-wrapper {
  animation: heroSlideRight .9s cubic-bezier(.16, 1, .3, 1) .3s both;
}

/* --- WhatsApp float pulse --- */
.whatsapp-float {
  animation: whatsappPulse 2s ease-in-out infinite;
}

@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 4px 15px rgba(37, 211, 102, .4); }
  50% { box-shadow: 0 4px 25px rgba(37, 211, 102, .6), 0 0 40px rgba(37, 211, 102, .2); }
}

.whatsapp-float:hover {
  animation: none;
}

/* --- Step connector line --- */
@media (min-width: 1024px) {
  .step {
    position: relative;
  }
  .step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 32px;
    right: -1rem;
    width: 2rem;
    height: 2px;
    background: linear-gradient(90deg, #2563eb, transparent);
  }
}

/* ============================================
   Responsive
   ============================================ */

/* Tablet (768px+) */
@media (min-width: 768px) {
  h1 { font-size: 3.25rem; }
  h2 { font-size: 2.5rem; }

  .grid--2 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--5 { grid-template-columns: repeat(2, 1fr); }

  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero__title {
    font-size: 3rem;
  }

  .hero__grid {
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
  }

  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }

  .contact-info {
    grid-template-columns: repeat(3, 1fr);
  }

  .stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Desktop (1024px+) */
@media (min-width: 1024px) {
  h1 { font-size: 3.75rem; }

  .nav {
    display: block;
  }

  .header__cta {
    display: inline-flex;
  }

  .hamburger {
    display: none;
  }

  .nav--mobile {
    display: none !important;
  }

  .grid--4 { grid-template-columns: repeat(4, 1fr); }
  .grid--5 { grid-template-columns: repeat(5, 1fr); }

  .steps {
    grid-template-columns: repeat(4, 1fr);
  }

  .hero__title {
    font-size: 3.5rem;
  }

  .hero__grid {
    grid-template-columns: 1.1fr .9fr;
    gap: 4.5rem;
  }

  .hero__form-card {
    padding: 2.5rem;
  }

  .cta-section h2 {
    font-size: 2.75rem;
  }
}
