/* ============================================================
   SKYROX MARKETING — Global Stylesheet v3.0
   Mobile-First · Fully Responsive · Production Ready
   Coral:#F15A53 | Navy:#1D2631 | White:#FFFFFF
============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=DM+Serif+Display:ital@0;1&display=swap');

:root {
  --coral: #F15A53;
  --coral-d: #d94a44;
  --coral-10: rgba(241, 90, 83, .10);
  --coral-20: rgba(241, 90, 83, .20);
  --navy: #1D2631;
  --navy-10: rgba(29, 38, 49, .08);
  --white: #fff;
  --gray: #f5f4f2;
  --muted: #5a6478;
  --font-d: 'Bebas Neue', sans-serif;
  --font-s: 'DM Serif Display', serif;
  --font-b: 'DM Sans', sans-serif;
  --r: 14px;
  --r-lg: 20px;
  --shadow: 0 8px 40px rgba(29, 38, 49, .09);
  --shadow-lg: 0 24px 80px rgba(29, 38, 49, .14);
  --ease: cubic-bezier(.4, 0, .2, 1);
  --t: .35s;
  --nav-h: 72px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%
}

body {
  font-family: var(--font-b);
  color: var(--navy);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale
}

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

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

ul {
  list-style: none
}

button {
  font-family: var(--font-b);
  cursor: pointer
}

input,
textarea,
select {
  font-family: var(--font-b)
}

::-webkit-scrollbar {
  width: 5px
}

::-webkit-scrollbar-track {
  background: var(--gray)
}

::-webkit-scrollbar-thumb {
  background: var(--coral);
  border-radius: 3px
}

/* ---- NAVBAR ---- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  background: rgba(29, 38, 49, .97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(241, 90, 83, .10);
  transition: box-shadow var(--t) var(--ease);
}

.navbar.scrolled {
  box-shadow: 0 4px 32px rgba(0, 0, 0, .25)
}

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

.nav-favicon {
  height: 36px;
  width: 36px;
  object-fit: contain;
  border-radius: 6px
}

.nav-brand-text {
  font-family: var(--font-d);
  font-size: 1.45rem;
  color: var(--white);
  letter-spacing: .05em;
  line-height: 1;
  white-space: nowrap
}

.nav-brand-text span {
  color: var(--coral)
}

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

.nav-links a {
  color: rgba(255, 255, 255, .70);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .07em;
  text-transform: uppercase;
  transition: color var(--t);
  position: relative;
  padding-bottom: 2px;
  white-space: nowrap
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--coral);
  transition: width var(--t) var(--ease)
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--coral)
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  width: 100%
}

.nav-cta {
  background: var(--coral) !important;
  color: var(--white) !important;
  padding: 9px 20px;
  border-radius: 7px;
  font-weight: 700 !important;
  transition: background var(--t), transform var(--t) !important
}

.nav-cta:hover {
  background: var(--coral-d) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 18px rgba(241, 90, 83, .32) !important
}

.nav-cta::after {
  display: none !important
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  padding: 8px;
  flex-shrink: 0
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .3s var(--ease);
  transform-origin: center
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg)
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0)
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg)
}

.mob-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(29, 38, 49, .99);
  z-index: 999;
  overflow-y: auto;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 26px;
  padding: 40px 5vw
}

.mob-menu.open {
  display: flex
}

.mob-menu a {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 700;
  transition: color .2s;
  text-align: center
}

.mob-menu a:hover,
.mob-menu a[aria-current="page"] {
  color: var(--coral)
}

.mob-cta {
  margin-top: 8px;
  padding: 14px 36px !important;
  background: var(--coral);
  border-radius: 8px;
  font-size: 1rem !important
}

/* ---- PAGE HERO ---- */
.page-hero {
  background: var(--navy);
  padding: calc(var(--nav-h) + 80px) 5vw 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 70%, rgba(241, 90, 83, .14) 0%, transparent 68%);
  pointer-events: none
}

.page-hero .eyebrow {
  display: inline-block;
  color: var(--coral);
  font-size: .72rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 14px;
  position: relative
}

.page-hero h1 {
  font-family: var(--font-d);
  font-size: clamp(3rem, 8vw, 7rem);
  color: var(--white);
  line-height: .92;
  margin-bottom: 18px;
  position: relative
}

.page-hero h1 span {
  color: var(--coral)
}

.page-hero p {
  font-size: clamp(.93rem, 2vw, 1.06rem);
  color: rgba(255, 255, 255, .58);
  max-width: 560px;
  position: relative;
  line-height: 1.75
}

/* ---- SECTIONS ---- */
section {
  padding: clamp(60px, 9vw, 100px) 5vw
}

.section-label {
  font-size: .72rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--coral);
  font-weight: 700;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px
}

.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--coral);
  flex-shrink: 0
}

.section-label.center {
  justify-content: center
}

.section-label.center::before {
  display: none
}

.section-title {
  font-family: var(--font-d);
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: .94;
  color: var(--navy);
  margin-bottom: 18px
}

.section-title span {
  color: var(--coral)
}

.section-title.white {
  color: var(--white)
}

.section-desc {
  font-size: clamp(.9rem, 1.5vw, 1rem);
  color: var(--muted);
  max-width: 540px;
  line-height: 1.78
}

.section-header {
  margin-bottom: clamp(40px, 6vw, 64px)
}

.section-header.center {
  text-align: center
}

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

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 700;
  font-size: .84rem;
  letter-spacing: .09em;
  text-transform: uppercase;
  border: 2px solid transparent;
  transition: all var(--t) var(--ease);
  white-space: nowrap;
  cursor: pointer
}

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

.btn-primary:hover {
  background: var(--coral-d);
  border-color: var(--coral-d);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(241, 90, 83, .35)
}

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

.btn-outline:hover {
  border-color: var(--coral);
  color: var(--coral);
  transform: translateY(-3px)
}

.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border-color: rgba(29, 38, 49, .2)
}

.btn-outline-dark:hover {
  border-color: var(--coral);
  color: var(--coral);
  transform: translateY(-3px)
}

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

.btn-white:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .18)
}

/* ---- MARQUEE STRIP ---- */
.marquee-strip {
  background: var(--coral);
  padding: 16px 0;
  overflow: hidden;
  white-space: nowrap
}

.marquee-track {
  display: inline-flex;
  gap: 52px;
  animation: marquee 22s linear infinite;
  will-change: transform
}

.marquee-item {
  font-family: var(--font-d);
  font-size: 1.2rem;
  color: rgba(255, 255, 255, .65);
  letter-spacing: .1em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0
}

.marquee-item b {
  color: var(--white)
}

.marquee-dot {
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, .35);
  border-radius: 50%;
  flex-shrink: 0
}

@keyframes marquee {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
}

/* ---- SERVICE CARDS ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
  gap: 20px
}

.service-card {
  background: var(--white);
  border-radius: var(--r);
  padding: clamp(24px, 4vw, 38px) clamp(20px, 3.5vw, 34px);
  border: 1px solid rgba(29, 38, 49, .07);
  transition: all var(--t) var(--ease);
  position: relative;
  overflow: hidden
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--coral), var(--coral-d));
  opacity: 0;
  transition: opacity var(--t) var(--ease)
}

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

.service-card:hover::before {
  opacity: 1
}

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

.svc-icon {
  width: 50px;
  height: 50px;
  background: var(--coral-10);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background var(--t)
}

.svc-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--coral);
  fill: none;
  stroke-width: 2;
  transition: stroke var(--t)
}

.service-card:hover .svc-icon {
  background: rgba(255, 255, 255, .15)
}

.service-card:hover .svc-icon svg {
  stroke: var(--white)
}

.service-card h3 {
  font-family: var(--font-d);
  font-size: 1.55rem;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: .02em;
  transition: color var(--t)
}

.service-card p {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.72;
  transition: color var(--t)
}

.service-card:hover h3,
.service-card:hover p {
  color: var(--white)
}

.svc-tag {
  display: inline-block;
  margin-top: 14px;
  padding: 4px 10px;
  background: var(--coral-10);
  color: var(--coral);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: all var(--t)
}

.service-card:hover .svc-tag {
  background: rgba(255, 255, 255, .16);
  color: var(--white)
}

/* ---- PROCESS ---- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 220px), 1fr));
  gap: 24px
}

.process-step {
  padding: 28px 22px;
  border-left: 3px solid rgba(241, 90, 83, .15);
  transition: border-color var(--t)
}

.process-step:hover {
  border-color: var(--coral)
}

.step-num {
  font-family: var(--font-d);
  font-size: 3.5rem;
  color: rgba(241, 90, 83, .12);
  line-height: 1;
  margin-bottom: 12px;
  transition: color var(--t)
}

.process-step:hover .step-num {
  color: rgba(241, 90, 83, .25)
}

.process-step h4 {
  font-family: var(--font-d);
  font-size: 1.35rem;
  color: var(--navy);
  margin-bottom: 9px
}

.process-step p {
  font-size: .87rem;
  color: var(--muted);
  line-height: 1.72
}

/* ---- REVIEWS ---- */
/* ===========================
   REVIEWS SLIDER
=========================== */

.reviews-slider {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
}

.reviews-wrapper {
  width: 100%;
  overflow: hidden;
  touch-action: manipulation;
}

.reviews-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease-in-out;
  user-select: none;

}

/* Review Card */
.review-card {
  flex: 0 0 calc((100% - 40px) / 3);
  /* 3 cards */
  background: #fff;
  border-radius: var(--r);
  border-top: 5px solid var(--coral);
  transition: all var(--t);
}

.review-card:hover {
  border-top: 2px solid var(--coral);
  font-weight: 900;
  transform: translateY(-4px);
}

.review-card a {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  text-decoration: none;
}

.review-card img {
  width: 100%;
  display: block;
  border-radius: var(--r);
  user-select: none;
  -webkit-user-drag: none;
}

.review-card div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  font-size: small;
}

.review-card div span {
  color: dodgerblue;
}

/* ===========================
   NAVIGATION BUTTONS
=========================== */

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, .15);
  cursor: pointer;
  z-index: 10;
  transition: .3s;
  font-size: 22px;
  font-weight: bold;
}

.slider-btn:hover {
  background: var(--coral);
  color: #fff;
}

.prev {
  left: -42px;
}

.next {
  right: -42px;
}

/* ===========================
   RESPONSIVE
=========================== */

@media (max-width: 992px) {
  .review-card {
    flex: 0 0 calc((100% - 20px) / 2);
  }

  .next {
    display: none;
  }

  .prev {
    display: none;
  }
}

@media (max-width: 600px) {
  .review-card {
    flex: 0 0 100%;
  }

  .prev {
    display: none;
    /* left: 5px; */
  }

  .next {
    display: none;
    right: 5px;
  }
}



/* ---- PORTFOLIO ---- */
.pf-filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px
}

.pf-btn {
  padding: 8px 18px;
  border-radius: 6px;
  border: 1.5px solid rgba(29, 38, 49, .14);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  cursor: pointer;
  transition: all var(--t);
  background: var(--white);
  color: var(--navy)
}

.pf-btn.active,
.pf-btn:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy)
}

.pf-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
  gap: 20px
}

.pf-card {
  border-radius: var(--r);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  cursor: pointer;
  transition: transform var(--t) var(--ease)
}

.pf-card:hover {
  transform: scale(1.025)
}

.pf-card:nth-child(4n+1) {
  background: linear-gradient(135deg, #1D2631, #2d3f52)
}

.pf-card:nth-child(4n+2) {
  background: linear-gradient(135deg, #F15A53, #c93f39)
}

.pf-card:nth-child(4n+3) {
  background: linear-gradient(135deg, #2a3f55, #1D2631)
}

.pf-card:nth-child(4n+4) {
  background: linear-gradient(135deg, #c93f39, #2a3f55)
}

.pf-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(29, 38, 49, .94) 0%, transparent 58%);
  padding: clamp(16px, 3vw, 26px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end
}

.pf-tag {
  display: inline-block;
  background: var(--coral);
  color: var(--white);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 3px;
  margin-bottom: 8px
}

.pf-card h4 {
  font-family: var(--font-d);
  font-size: 1.35rem;
  color: var(--white);
  margin-bottom: 3px
}

.pf-card p {
  font-size: .76rem;
  color: rgba(255, 255, 255, .56)
}

.pf-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  transition: all var(--t);
  backdrop-filter: blur(6px)
}

.pf-card:hover .pf-icon {
  background: var(--coral);
  transform: translate(-50%, -50%) scale(1.1)
}

/* ---- LOCATIONS ---- */
.loc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 240px), 1fr));
  gap: 20px
}

.loc-card {
  background: var(--white);
  border-radius: var(--r);
  padding: clamp(24px, 3.5vw, 34px) clamp(20px, 3vw, 28px);
  border: 1.5px solid var(--navy-10);
  transition: all var(--t) var(--ease);
  position: relative;
  overflow: hidden
}

.loc-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t) var(--ease)
}

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

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

.loc-flag {
  font-size: 2rem;
  margin-bottom: 12px
}

.loc-card h4 {
  font-family: var(--font-d);
  font-size: 1.55rem;
  color: var(--navy);
  margin-bottom: 5px
}

.loc-card p {
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.65
}

.loc-badge {
  display: inline-block;
  margin-top: 12px;
  background: var(--coral-10);
  color: var(--coral);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 4px
}

/* ---- CTA BANNER ---- */
.cta-banner {
  background: var(--coral);
  padding: clamp(70px, 10vw, 100px) 5vw;
  text-align: center;
  position: relative;
  overflow: hidden
}

.cta-banner::before {
  content: 'HIT THE TARGET';
  font-family: var(--font-d);
  font-size: clamp(8vw, 13vw, 14vw);
  color: rgba(255, 255, 255, .06);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: -.02em;
  line-height: 1
}

.cta-banner h2 {
  font-family: var(--font-d);
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  color: var(--white);
  line-height: .94;
  margin-bottom: 16px;
  position: relative
}

.cta-banner p {
  font-size: clamp(.9rem, 1.5vw, 1.05rem);
  color: rgba(255, 255, 255, .78);
  max-width: 480px;
  margin: 0 auto 32px;
  position: relative;
  line-height: 1.72
}

/* ---- CONTACT ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 72px);
  align-items: flex-start
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px
}

.channel {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 18px;
  background: var(--gray);
  border-radius: 10px;
  transition: all var(--t);
  border: 1px solid transparent
}

.channel:hover {
  border-color: var(--coral);
  background: var(--white);
  box-shadow: var(--shadow)
}

.ch-icon {
  width: 38px;
  height: 38px;
  background: var(--coral-10);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.ch-icon svg {
  width: 18px;
  height: 18px;
  fill: var(--coral)
}

.ch-text h5 {
  font-weight: 700;
  font-size: .84rem;
  color: var(--navy)
}

.ch-text p {
  font-size: .76rem;
  color: var(--muted)
}

.contact-form-box {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: clamp(24px, 4vw, 42px) clamp(20px, 3.5vw, 38px);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--navy-10)
}

.contact-form-box h3 {
  font-family: var(--font-d);
  font-size: 1.9rem;
  color: var(--navy);
  margin-bottom: 24px
}

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

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

label {
  display: block;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .05em;
  color: var(--navy);
  margin-bottom: 6px
}

input,
textarea,
select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid rgba(29, 38, 49, .11);
  border-radius: 8px;
  font-size: .87rem;
  color: var(--navy);
  background: var(--gray);
  transition: border-color var(--t), background var(--t);
  outline: none;
  appearance: none;
  -webkit-appearance: none
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--coral);
  background: var(--white)
}

textarea {
  resize: vertical;
  min-height: 100px
}

.form-submit {
  width: 100%;
  padding: 14px;
  background: var(--coral);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: .87rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--t)
}

.form-submit:hover {
  background: var(--coral-d);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(241, 90, 83, .32)
}

.form-success {
  display: none;
  text-align: center;
  padding: 18px;
  color: #2e7d32;
  font-weight: 700;
  font-size: .88rem
}

/* ---- ABOUT ---- */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 72px);
  align-items: center
}

.about-visual {
  background: var(--navy);
  border-radius: var(--r-lg);
  padding: clamp(32px, 5vw, 48px);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px
}

.about-visual::after {
  content: '';
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(241, 90, 83, .10)
}

.founder-photo {
  width: clamp(140px, 18vw, 180px);
  height: clamp(140px, 18vw, 180px);
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  border: 4px solid var(--coral);
  position: relative;
  z-index: 1;
  display: block;
  margin: 0 auto;
  box-shadow: 0 12px 40px rgba(241, 90, 83, .25)
}

.about-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: var(--coral);
  border-radius: 12px;
  padding: 14px 18px;
  text-align: center;
  z-index: 2
}

.about-badge .n {
  font-family: var(--font-d);
  font-size: 2rem;
  color: var(--white);
  line-height: 1
}

.about-badge .t {
  font-size: .65rem;
  color: rgba(255, 255, 255, .8);
  letter-spacing: .1em;
  text-transform: uppercase
}

.founder-card {
  margin-top: 28px;
  background: var(--gray);
  border-radius: var(--r);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--navy-10)
}

.founder-av-sm {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  border: 2px solid var(--coral);
  flex-shrink: 0
}

.founder-info h4 {
  font-weight: 700;
  font-size: .92rem;
  color: var(--navy)
}

.founder-info p {
  font-size: .76rem;
  color: var(--muted)
}

.founder-info a {
  color: var(--coral);
  font-size: .76rem;
  font-weight: 700
}

/* ---- TAGS & UTILS ---- */
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 16px
}

.tag {
  padding: 4px 11px;
  background: var(--coral-10);
  color: var(--coral);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 4px
}

.divider {
  height: 1px;
  background: rgba(29, 38, 49, .07)
}

.gmb-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
  color: rgba(255, 255, 255, .4);
  font-size: .74rem;
  flex-wrap: wrap;
  text-align: center
}

.gmb-badge a {
  color: var(--coral);
  font-weight: 700
}

/* ---- FAQ ---- */
.faq-item {
  border-bottom: 1px solid rgba(29, 38, 49, .09)
}

.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .93rem;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  gap: 14px
}

.faq-q svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  color: var(--coral);
  transition: transform var(--t)
}

.faq-item.open .faq-q svg {
  transform: rotate(45deg)
}

.faq-a {
  display: none;
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.76;
  padding-bottom: 16px
}

.faq-item.open .faq-a {
  display: block
}

/* ---- FOOTER ---- */
footer {
  background: var(--navy);
  color: rgba(255, 255, 255, .52);
  padding: clamp(56px, 8vw, 76px) 5vw clamp(28px, 4vw, 36px)
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.6fr;
  gap: clamp(28px, 4vw, 44px);
  margin-bottom: clamp(40px, 6vw, 56px)
}

.footer-brand-name {
  font-family: var(--font-d);
  font-size: 1.7rem;
  color: var(--white);
  letter-spacing: .05em;
  margin-bottom: 8px
}

.footer-brand-name span {
  color: var(--coral)
}

.footer-brand p {
  font-size: .85rem;
  line-height: 1.72;
  max-width: 260px;
  margin-bottom: 18px
}

.social-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap
}

.soc-btn {
  width: 34px;
  height: 34px;
  border-radius: 7px;
  background: rgba(255, 255, 255, .05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .42);
  transition: all var(--t)
}

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

.soc-btn svg {
  width: 14px;
  height: 14px;
  fill: currentColor
}

.footer-col h5 {
  font-weight: 700;
  font-size: .74rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 14px
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.footer-col ul li a {
  font-size: .84rem;
  color: rgba(255, 255, 255, .46);
  transition: color var(--t)
}

.footer-col ul li a:hover {
  color: var(--coral)
}

.footer-nl p {
  font-size: .84rem;
  line-height: 1.65;
  margin-bottom: 12px
}

.nl-form {
  display: flex;
  gap: 6px
}

.nl-form input {
  flex: 1;
  padding: 10px 12px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 7px;
  color: var(--white);
  font-size: .82rem;
  min-width: 0
}

.nl-form input::placeholder {
  color: rgba(255, 255, 255, .26)
}

.nl-form input:focus {
  border-color: var(--coral)
}

.nl-form button {
  background: var(--coral);
  color: var(--white);
  border: none;
  border-radius: 7px;
  padding: 10px 14px;
  font-weight: 700;
  font-size: .78rem;
  cursor: pointer;
  transition: background var(--t);
  white-space: nowrap
}

.nl-form button:hover {
  background: var(--coral-d)
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .07);
  flex-wrap: wrap;
  gap: 10px
}

.footer-bottom p {
  font-size: .76rem
}

.footer-bottom a {
  color: var(--coral)
}

/* ---- WHATSAPP FLOAT ---- */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 998;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, .42);
  transition: all var(--t);
  text-decoration: none
}

.wa-float:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 28px rgba(37, 211, 102, .56)
}

.wa-float svg {
  width: 25px;
  height: 25px;
  fill: var(--white)
}

.wa-pulse {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: rgba(37, 211, 102, .22);
  animation: waPulse 2.4s ease infinite
}

@keyframes waPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1
  }

  50% {
    transform: scale(1.3);
    opacity: 0
  }
}

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

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

.anim-1 {
  animation: fadeUp .6s var(--ease) .1s both
}

.anim-2 {
  animation: fadeUp .6s var(--ease) .22s both
}

.anim-3 {
  animation: fadeUp .6s var(--ease) .36s both
}

.anim-4 {
  animation: fadeUp .6s var(--ease) .5s both
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .55s var(--ease), transform .55s var(--ease)
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0)
}

/* ---- RESPONSIVE TABLET ---- */
@media(max-width:1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr
  }

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

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

  .about-visual {
    min-height: 260px
  }
}

/* ---- RESPONSIVE MOBILE ---- */
@media(max-width:768px) {
  :root {
    --nav-h: 64px
  }

  .nav-links {
    display: none
  }

  .hamburger {
    display: flex
  }

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

  .page-hero {
    padding: calc(var(--nav-h) + 56px) 5vw 56px
  }

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

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

/* ---- RESPONSIVE SMALL MOBILE ---- */
@media(max-width:480px) {
  .btn {
    padding: 13px 22px;
    font-size: .8rem
  }

  .contact-form-box {
    padding: 22px 16px
  }

  .pf-filter {
    gap: 6px
  }

  .pf-btn {
    padding: 7px 14px;
    font-size: .74rem
  }

  .wa-float {
    bottom: 16px;
    right: 16px;
    width: 48px;
    height: 48px
  }

  .wa-float svg {
    width: 22px;
    height: 22px
  }

  .nav-brand-text {
    font-size: 1.2rem
  }
}