/* ===== Tokens ===== */
:root {
  --cyan: #24abe2;
  --magenta: #ea048b;
  --yellow: #f8ed1f;
  --white: #ffffff;
  --ink: #111111;
  --bg: #ffffff;
  --fg: #111111;
  --muted: #6b7280;
  --border: #e8eaed;
  --card: #ffffff;
  --soft: #f6f7f9;
  --grad: linear-gradient(120deg, var(--cyan), var(--magenta));
  --grad-full: linear-gradient(
    120deg,
    var(--cyan) 0%,
    var(--magenta) 60%,
    var(--yellow) 120%
  );
  --shadow-brand: 0 20px 60px -20px rgba(36, 171, 226, 0.45);
  --shadow-pink: 0 20px 60px -20px rgba(234, 4, 139, 0.45);
  --r: 18px;
  --radius-pill: 999px;
  --font-sans: Merriweather;
  --font-display: Nunito Sans;
}

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

html {
  scroll-behavior: smooth;
}

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

h1,
h2,
h3,
h4,
h5 {
  font-family: Merriweather;
  letter-spacing: -0.02em;
  line-height: 1.1;
  font-weight: 800;
}

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

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

p {
  font-size: 16px;
  font-family: Nunito Sans;
}

button {
  font: inherit;
  cursor: pointer;
  border: 0;
  background: none;
  color: inherit;
}

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

.container.narrow {
  max-width: 860px;
}

.muted {
  color: #000;
}

.muted-light {
  color: rgba(255, 255, 255, 0.7);
}

.s {
  font-size: 13px;
}

.mt {
  margin-top: 18px;
}

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

.sb {
  justify-content: space-between;
}

.gradient-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 14px;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.btn-lg {
  padding: 14px 28px;
  font-size: 15px;
}

.btn-primary {
  background: var(--grad);
  color: #fff;
  box-shadow: var(--shadow-brand);
  font-family: Nunito Sans;
}

.btn-primary:hover {
  transform: translateY(-2px);
}

.btn-outline {
  border: 1px solid rgba(17, 17, 17, 0.15);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  background: rgba(17, 17, 17, 0.05);
}

.btn-dark {
  background: var(--ink);
  color: #fff;
}

.btn-dark:hover {
  transform: scale(1.04);
}

/* ===== Header ===== */
#header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  transition: all 0.4s ease;
  padding: 10px 0;
  background: transparent;
  background: rgba(255, 255, 255, 0.7);
}

#header.scrolled {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px) saturate(140%);
  box-shadow: 0 8px 30px -12px rgba(0, 0, 0, 0.12);
  border-bottom: 1px solid rgba(17, 17, 17, 0.05);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 18px;
  font-family: var(--font-display);
}

.brand img {
  width: 290px;
}

.brand.big {
  font-size: 28px;
}

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

.nav-links a {
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 500;
  color: rgb(17, 17, 17);
  transition: 0.2s;
  font-family: Nunito Sans;
}

.nav-links a:hover {
  background: rgba(17, 17, 17, 0.05);
  color: var(--fg);
}

.desktop-cta {
  display: inline-flex;
}

.mobile-cta {
  display: none;
}

.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(17, 17, 17, 0.05);
  flex-direction: column;
  gap: 4px;
  align-items: center;
  justify-content: center;
}

.menu-btn span {
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  overflow: hidden;
  padding: 140px 0 100px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.95),
    rgba(255, 255, 255, 0.75) 50%,
    rgba(255, 255, 255, 0.55)
  );
}

.grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(36, 171, 226, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36, 171, 226, 0.08) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.5;
}

.grid-pattern.dim {
  opacity: 0.08;
}

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

.blob-cyan {
  width: 300px;
  height: 300px;
  background: rgba(36, 171, 226, 0.4);
  top: 130px;
  left: -100px;
  animation: float 7s ease-in-out infinite;
}

.blob-magenta {
  width: 400px;
  height: 400px;
  background: rgba(234, 4, 139, 0.35);
  top: 250px;
  right: -100px;
  animation: float 9s ease-in-out infinite;
}

.blob-magenta.tr {
  top: -100px;
  right: -100px;
  animation: none;
}

.blob-cyan.bl {
  bottom: -100px;
  left: -100px;
  top: auto;
  animation: none;
}

.blob-yellow {
  width: 260px;
  height: 260px;
  background: rgba(248, 237, 31, 0.35);
  bottom: 40px;
  left: 30%;
  animation: float 8s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0);
  }

  50% {
    transform: translateY(-22px) rotate(2deg);
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  position: relative;
  z-index: 1;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  font-size: 15px;
  font-weight: 600;
  color: rgba(17, 17, 17, 0.8);
  font-family: Nunito Sans;
}

.badge.light {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

.hero-content h1 {
  font-size: clamp(36px, 6vw, 44px);
  margin: 24px 0;
  font-weight: 900;
  font-family: Merriweather;
}

.hero-content p {
  font-size: clamp(15px, 2vw, 19px);
  color: #000;
  max-width: 560px;
  font-family: Nunito Sans;
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 480px;
  margin-top: 48px;
}

.big-num {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 900;
  font-family: var(--font-display);
  line-height: 1;
}

.hero-stats .muted {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
  font-family: Nunito Sans;
}

.hero-cards {
  position: relative;
  height: 520px;
  display: none;
}

.glass {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(16px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  padding: 20px;
  box-shadow: var(--shadow-brand);
}

.float-card {
  position: absolute;
  animation: float 7s ease-in-out infinite;
}

.card-1 {
  top: 10px;
  right: 0;
  width: 290px;
}

.card-2 {
  top: 185px;
  left: 0;
  width: 255px;
  box-shadow: var(--shadow-pink);
  animation-duration: 9s;
}

.card-3 {
  bottom: 10px;
  right: 25px;
  width: 290px;
  animation-duration: 8s;
}

.icon-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--grad);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
}

.bar {
  height: 8px;
  background: rgba(17, 17, 17, 0.05);
  border-radius: 999px;
  overflow: hidden;
  margin: 16px 0 6px;
}

.bar span {
  display: block;
  height: 100%;
  background: var(--grad);
  border-radius: 999px;
}

.avatars {
  display: flex;
  margin-top: 14px;
}

.avatars span {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -6px;
}

.avatars span:first-child {
  margin-left: 0;
}

.pill {
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(248, 237, 31, 0.4);
  font-size: 10px;
  font-weight: 800;
  color: var(--ink);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-top: 14px;
  text-align: center;
}

.steps div {
  padding: 8px 4px;
  border-radius: 8px;
  background: rgba(17, 17, 17, 0.05);
  font-size: 11px;
  font-weight: 600;
  color: var(--magenta);
}

.t {
  font-size: 14px;
  font-weight: 600;
}

/* ===== Marquee ===== */
.marquee {
  background: #5b7dca;
  color: #fff;
  padding: 40px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.marquee-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: marquee 10s linear infinite;
  font-size: 22px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.marquee-track span {
  color: rgba(255, 255, 255, 0.85);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ===== Section base ===== */
.section {
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}

.section.soft {
  background: var(--soft);
}

.section.dark {
  background: var(--ink);
  color: #fff;
  position: relative;
}

.section.dark .blob {
  filter: blur(100px);
  opacity: 0.4;
}

.section-title {
  /* max-width: 680px; */
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: rgba(17, 17, 17, 0.05);
  color: rgba(17, 17, 17, 0.7);
}

.eyebrow.light {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
}

.section-title h2 {
  font-size: clamp(28px, 4.5vw, 52px);
  margin: 20px 0 14px;
}

.grid {
  display: grid;
  gap: 20px;
  margin-top: 56px;
}

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

.svc-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: var(--card);
  border-radius: var(--r);
  padding: 26px;
  transition: 0.5s;
  cursor: pointer;
}

.svc-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--grad);
  transform: translateY(100%);
  transition: 0.5s;
  z-index: 0;
}

.svc-card > * {
  position: relative;
  z-index: 1;
  transition: color 0.5s;
}

.svc-card:hover {
  transform: translateY(-6px);
  border-color: transparent;
  box-shadow: var(--shadow-brand);
}

.svc-card:hover::before {
  transform: translateY(0);
}

.svc-card:hover,
.svc-card:hover .muted,
.svc-card:hover .arrow {
  color: #fff !important;
}

.svc-card:hover .ico {
  background: #fff;
  color: var(--ink);
}

.ico {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--grad);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 20px;
  box-shadow: var(--shadow-brand);
  transition: 0.4s;
}

.svc-card h3 {
  font-size: 20px;
  margin: 20px 0 6px;
}

.svc-card .muted {
  font-size: 16px;
}

.arrow {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 18px;
  font-size: 15px;
  font-weight: 700;
  color: var(--magenta);
}

/* ===== Why grid ===== */
.why-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.why-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 28px;
  transition: 0.4s;
}

.why-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.08);
}

.why-card h3 {
  font-size: 20px;
  margin: 20px 0 8px;
  color: #fff;
}

.why-card .desc {
  color: rgb(255 255 255);
  font-size: 16px;
}

/* ===== Portfolio ===== */
.filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}

.filters button {
  padding: 8px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 13px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  color: rgba(17, 17, 17, 0.7);
  transition: 0.25s;
}

.filters button:hover {
  background: rgba(17, 17, 17, 0.05);
}

.filters button.active {
  background: var(--grad);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-brand);
}

.portfolio-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-top: 40px;
}

.pf-card {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 20px;
  background: rgba(17, 17, 17, 0.05);
}

.pf-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}

.pf-card:hover img {
  transform: scale(1.1);
}

.pf-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(17, 17, 17, 0.85),
    rgba(17, 17, 17, 0.15) 60%,
    transparent
  );
}

.pf-info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 22px;
  color: #fff;
  z-index: 1;
}

.pf-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(6px);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.pf-info h3 {
  font-size: 18px;
  margin-top: 12px;
}

/* ===== Products ===== */
.products-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.prod-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: linear-gradient(135deg, #fff, #f6f7f9);
  border-radius: 20px;
  padding: 28px;
  transition: 0.4s;
}

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

.prod-card .row.sb {
  align-items: flex-start;
}

.prod-card .ico {
  width: 56px;
  height: 56px;
  font-size: 22px;
  border-radius: 16px;
}

.prod-card .price {
  text-align: right;
}

.prod-card .price .lbl {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.prod-card .price .big-num {
  font-size: 22px;
  margin-top: 2px;
}

.prod-card h3 {
  font-size: 22px;
  margin: 20px 0 8px;
}

/* ===== Process ===== */
.process-grid {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.step .n {
  font-size: 52px;
  font-weight: 900;
  font-family: var(--font-display);
  line-height: 1;
}

.step .underline {
  width: 48px;
  height: 4px;
  background: var(--grad);
  border-radius: 999px;
  margin: 12px 0 16px;
}

.step h3 {
  font-size: 18px;
}

.step .muted {
  margin-top: 8px;
  font-size: 14px;
}

/* ===== Counters ===== */
.counters {
  padding: 64px 0;
  background: var(--soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.counters-grid {
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  text-align: center;
  margin-top: 0;
}

.counter {
  font-size: clamp(34px, 5vw, 60px);
  font-weight: 900;
  font-family: var(--font-display);
}

.lbl {
  margin-top: 8px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* ===== Testimonial ===== */
.testimonial {
  margin-top: 56px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: #fff;
  border-radius: 28px;
  padding: 48px;
  box-shadow: var(--shadow-brand);
  position: relative;
}

.stars {
  color: var(--yellow);
  font-size: 18px;
  letter-spacing: 2px;
  -webkit-text-stroke: 1px #d4ad00;
}

.t-text {
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 500;
  line-height: 1.6;
  margin-top: 24px;
  color: rgba(17, 17, 17, 0.9);
}

.t-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 32px;
  flex-wrap: wrap;
  gap: 16px;
}

.t-user {
  display: flex;
  align-items: center;
  gap: 14px;
}

.t-user img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}

.t-name {
  font-weight: 700;
}

.dots {
  display: flex;
  gap: 8px;
}

.dots button {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.15);
  transition: 0.3s;
}

.dots button.active {
  width: 32px;
  background: var(--grad);
}

/* ===== FAQ ===== */
.faq {
  margin-top: 48px;
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid rgba(17, 17, 17, 0.1);
  background: #fff;
  border-radius: 18px;
  padding: 22px 24px;
  transition: 0.3s;
  cursor: pointer;
}

.faq-item:hover {
  border-color: rgba(36, 171, 226, 0.3);
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  gap: 16px;
}

.faq-q .chev {
  transition: 0.4s;
  color: var(--muted);
}

.faq-item.open .chev {
  transform: rotate(180deg);
  color: var(--magenta);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    margin 0.4s ease;
  color: var(--muted);
  font-size: 14px;
}

.faq-item.open .faq-a {
  max-height: 200px;
  margin-top: 14px;
}

/* ===== CTA ===== */
.cta-wrap {
  padding: 80px 0;
}

.cta {
  position: relative;
  overflow: hidden;
  background: var(--grad-full);
  background-size: 200% 200%;
  animation: gradient 8s ease infinite;
  border-radius: 36px;
  padding: 80px 32px;
  text-align: center;
  color: #fff;
  box-shadow: var(--shadow-brand);
}

@keyframes gradient {
  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

.cta::before,
.cta::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  filter: blur(80px);
}

.cta::before {
  background: rgba(255, 255, 255, 0.2);
  top: -100px;
  left: -100px;
}

.cta::after {
  background: rgba(0, 0, 0, 0.18);
  bottom: -100px;
  right: -100px;
}

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

.cta h2 {
  font-size: clamp(30px, 5vw, 56px);
  max-width: 720px;
  margin: 24px auto 16px;
}

.cta p {
  max-width: 520px;
  margin: 0 auto 36px;
  color: rgba(255, 255, 255, 0.85);
}

/* ===== Footer ===== */
footer {
  position: relative;
  background: #0f1117;
  color: #fff;
  padding: 80px 0 0;
  overflow: hidden;
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #24abe2, #ea048b, #f8ed1f);
}

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

.f-brand img {
  max-width: 220px;
  margin-bottom: 20px;
}

.muted-light {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
}

footer h4 {
  margin-bottom: 20px;
  font-size: 20px;
}

footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

footer ul li {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.75);
  transition: 0.3s;
  cursor: pointer;
}

footer ul li:hover {
  color: #24abe2;
  transform: translateX(5px);
}

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

.socials a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: 0.3s;
}

.socials a:hover {
  background: linear-gradient(135deg, #24abe2, #ea048b);
  border-color: transparent;
  transform: translateY(-5px);
}

.newsletter {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.newsletter input {
  flex: 1;
  height: 50px;
  border: none;
  border-radius: 10px;
  padding: 0 15px;
  outline: none;
}

.copy {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 60px;
  padding: 22px 0;
}

.copy .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.copy span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
}

@media (max-width: 991px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

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

  .newsletter {
    flex-direction: column;
  }

  .copy .row {
    text-align: center;
    justify-content: center;
  }
}

.footer-grid {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  padding: 64px 0;
  margin-top: 0;
}

.f-brand {
  grid-column: span 2;
}

@media (max-width: 768px) {
  .f-brand {
    grid-column: auto;
  }
}

.f-brand p {
  max-width: 340px;
  margin: 16px 0 24px;
  font-size: 14px;
}

.socials {
  display: flex;
  gap: 8px;
}

.socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: grid;
  place-items: center;
  font-weight: 700;
  transition: 0.3s;
}

.socials a:hover {
  background: var(--grad);
  border-color: transparent;
}

footer h4 {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 18px;
}

footer h4.mt {
  margin-top: 28px;
}

footer ul {
  list-style: none;
  display: grid;
  gap: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

footer ul li {
  transition: 0.2s;
}

footer ul li:hover {
  color: #fff;
}

.newsletter {
  display: flex;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  overflow: hidden;
  margin-top: 14px;
}

.newsletter input {
  flex: 1;
  background: transparent;
  border: 0;
  padding: 10px 16px;
  color: #fff;
  font-size: 13px;
  outline: none;
}

.newsletter input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.newsletter .btn {
  border-radius: 0;
  padding: 0 22px;
  font-size: 13px;
  box-shadow: none;
}

.copy {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 22px 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.copy .row.sb {
  flex-wrap: wrap;
  gap: 8px;
  color: #fff;
}

/* ===== Reveal ===== */
.reveal {
  opacity: 1;
  transform: translateY(28px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

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

/* ===== Responsive ===== */
@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1.2fr 0.9fr;
    gap: 40px;
  }

  .hero-cards {
    display: block;
  }
}

@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    inset: 64px 16px auto 16px;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border-radius: 18px;
    box-shadow: 0 20px 60px -20px rgba(0, 0, 0, 0.2);
    display: none;
    border: 1px solid rgba(17, 17, 17, 0.06);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 14px;
  }

  .mobile-cta {
    display: inline-flex;
    justify-content: center;
    margin-top: 8px;
  }

  .desktop-cta {
    display: none;
  }

  .menu-btn {
    display: flex;
  }

  .hero {
    padding: 120px 0 80px;
  }

  .section {
    padding: 72px 0;
  }

  .testimonial {
    padding: 32px 24px;
  }

  .cta {
    padding: 56px 24px;
    border-radius: 24px;
  }
}

/* ABOUT HERO */

.about-hero {
  position: relative;
  padding: 180px 0 120px;
  overflow: hidden;
  text-align: center;
}

.about-hero-content {
  max-width: 900px;
  margin: auto;
}

.about-hero-content h1 {
  font-size: clamp(40px, 6vw, 48px);
  margin: 25px 0;
}

.about-hero-content p {
  font-size: 18px;
  max-width: 750px;
  margin: auto;
}

/* ABOUT GRID */

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

.about-image img {
  width: 100%;
  border-radius: 25px;
  box-shadow: var(--shadow-brand);
}

.about-content h2 {
  margin: 20px 0;
}

.about-content p {
  margin-bottom: 20px;
}

/* MISSION VISION */

.mv-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 25px;
  margin-top: 50px;
}

.mv-card {
  background: #fff;
  padding: 35px;
  border-radius: 20px;
  text-align: left;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.mv-card:hover {
  transform: translateY(-8px);
}

.mv-card .ico {
  font-size: 50px;
  margin-bottom: 20px;
}

.mv-card h3 {
  margin-bottom: 15px;
  padding-top: 15px;
}

/* RESPONSIVE */

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

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

  .about-hero {
    padding: 140px 0 80px;
  }
}

/* WHY CHOOSE US */

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 50px;
}

.why-card {
  position: relative;
  padding: 35px 25px;
  border-radius: 20px;
  background: #262626;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
  transition: 0.35s ease;
  overflow: hidden;
}

.why-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(36, 171, 226, 0.08),
    rgba(234, 4, 139, 0.08)
  );
  opacity: 0;
  transition: 0.35s;
}

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

.why-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.why-card h3 {
  margin-bottom: 12px;
  font-size: 22px;
  position: relative;
  z-index: 2;
}

.why-card p {
  position: relative;
  z-index: 2;
  color: #666;
  line-height: 1.7;
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================
   SERVICES PAGE HERO
========================= */

.services-hero {
  position: relative;
  overflow: hidden;
  padding: 180px 0 120px;
  text-align: center;
  background: linear-gradient(
    135deg,
    rgba(36, 171, 226, 0.08),
    rgba(234, 4, 139, 0.08),
    rgba(248, 237, 31, 0.08)
  );
}

.services-hero-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.services-hero-content h1 {
  font-size: clamp(42px, 6vw, 48px);
  font-weight: 900;
  margin: 25px 0;
  line-height: 1.1;
  font-family: Merriweather;
}

.services-hero-content p {
  max-width: 750px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.8;
  color: #000;
  font-family: Nunito Sans;
}

.services-hero .hero-cta {
  justify-content: center;
  margin-top: 35px;
}

.services-hero::before {
  content: "";
  position: absolute;
  top: -150px;
  left: -150px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: rgba(36, 171, 226, 0.2);
  filter: blur(100px);
}

.services-hero::after {
  content: "";
  position: absolute;
  bottom: -150px;
  right: -150px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: rgba(234, 4, 139, 0.2);
  filter: blur(100px);
}

/* =========================
   SERVICES INTRO
========================= */

#all-services {
  position: relative;
}

#all-services .section-title {
  margin-bottom: 20px;
}

/* =========================
   SERVICE CARD ENHANCEMENT
========================= */

#all-services .svc-card {
  min-height: 260px;
}

#all-services .svc-card h3 {
  margin-top: 20px;
  margin-bottom: 10px;
}

#all-services .svc-card p {
  line-height: 1.7;
}

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

@media (max-width: 992px) {
  .services-hero {
    padding: 150px 0 90px;
  }

  .services-hero-content h1 {
    font-size: 48px;
  }
}

@media (max-width: 768px) {
  .services-hero {
    padding: 130px 0 80px;
  }

  .services-hero-content h1 {
    font-size: 36px;
  }

  .services-hero-content p {
    font-size: 16px;
  }

  .services-hero .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .services-hero .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

/* =========================
   PORTFOLIO PAGE HERO
========================= */

.portfolio-hero {
  position: relative;
  overflow: hidden;
  padding: 180px 0 120px;
  text-align: center;
  background: linear-gradient(
    135deg,
    rgba(36, 171, 226, 0.08),
    rgba(234, 4, 139, 0.08),
    rgba(248, 237, 31, 0.08)
  );
}

.portfolio-hero-content {
  max-width: 900px;
  margin: auto;
  position: relative;
  z-index: 2;
}

.portfolio-hero-content h1 {
  font-size: clamp(42px, 6vw, 48px);
  margin: 25px 0;
  font-family: Merriweather;
}

.portfolio-hero-content p {
  max-width: 750px;
  margin: auto;
  font-size: 18px;
  line-height: 1.8;
}

/* =========================
   PORTFOLIO GRID
========================= */

.portfolio-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
  margin-top: 50px;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 25px;
  height: 420px;
  cursor: pointer;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s;
}

.portfolio-item:hover img {
  transform: scale(1.08);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.1));
  color: #fff;
}

.portfolio-overlay span {
  display: inline-block;
  width: max-content;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  font-size: 12px;
  margin-bottom: 12px;
}

.portfolio-overlay h3 {
  font-size: 24px;
}

/* =========================
   FILTERS
========================= */

.filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.filters button {
  padding: 10px 20px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: 0.3s;
}

.filters button.active,
.filters button:hover {
  background: var(--grad);
  color: #fff;
}

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

@media (max-width: 768px) {
  .portfolio-hero {
    padding: 130px 0 80px;
  }

  .portfolio-hero-content h1 {
    font-size: 36px;
  }

  .portfolio-item {
    height: 320px;
  }

  .portfolio-overlay h3 {
    font-size: 20px;
  }
}

/* CONTACT HERO */

.contact-hero {
  padding: 180px 0 100px;
  background: linear-gradient(
    135deg,
    rgba(36, 171, 226, 0.08),
    rgba(234, 4, 139, 0.08)
  );
  text-align: center;
}

.contact-hero-content {
  max-width: 850px;
  margin: auto;
}

.contact-hero h1 {
  font-size: clamp(40px, 6vw, 48px);
  margin: 20px 0;
}

.contact-hero p {
  font-size: 18px;
  max-width: 700px;
  margin: auto;
  color: #555;
}

/* CONTACT SECTION */

.contact-section {
  padding: 100px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
}

.contact-form-card,
.contact-info-card {
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}

.contact-form-card h2,
.contact-info-card h2 {
  margin-bottom: 12px;
}

.contact-form-card p {
  margin-bottom: 30px;
  color: #666;
}

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

.contact-form-card input,
.contact-form-card select,
.contact-form-card textarea {
  width: 100%;
  padding: 16px;
  border-radius: 14px;
  border: 1px solid #ddd;
  outline: none;
  font-size: 15px;
  font-family: inherit;
}

.contact-form-card textarea {
  resize: none;
  margin-bottom: 20px;
}

.contact-form-card input:focus,
.contact-form-card select:focus,
.contact-form-card textarea:focus {
  border-color: var(--cyan);
}

/* CONTACT INFO */

.info-box {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 25px;
}

.info-box .icon {
  width: 55px;
  height: 55px;
  border-radius: 14px;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
}

.info-box h4 {
  margin-bottom: 4px;
}

.info-box p {
  color: #666;
}

.contact-highlight {
  margin-top: 35px;
  padding: 25px;
  border-radius: 18px;
  background: linear-gradient(
    135deg,
    rgba(36, 171, 226, 0.08),
    rgba(234, 4, 139, 0.08)
  );
}

.contact-highlight h3 {
  margin-bottom: 15px;
}

.contact-highlight ul {
  list-style: none;
}

.contact-highlight li {
  margin-bottom: 10px;
  color: #444;
}

/* MAP */

.map-section {
  padding: 0 0 100px;
}

.map-card {
  margin-top: 40px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.map-card iframe {
  width: 100%;
  height: 500px;
  border: none;
}

/* RESPONSIVE */

@media (max-width: 991px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .contact-form-card,
  .contact-info-card {
    padding: 30px;
  }

  .map-card iframe {
    height: 350px;
  }
}

/* GET QUOTE PAGE */

.quote-hero {
  position: relative;
  padding: 190px 0 130px;
  overflow: hidden;
  text-align: center;
  background:
    radial-gradient(
      circle at top left,
      rgba(36, 171, 226, 0.15),
      transparent 40%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(234, 4, 139, 0.15),
      transparent 40%
    );
}

.quote-content {
  max-width: 900px;
  margin: auto;
  position: relative;
  z-index: 2;
}

.hero-tag {
  display: inline-flex;
  padding: 12px 22px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  font-size: 14px;
  font-weight: 600;
  color: #24abe2;
}

.quote-content h1 {
  font-size: clamp(48px, 7vw, 80px);
  line-height: 1.1;
  margin: 25px 0;
  font-weight: 800;
}

.quote-content p {
  max-width: 750px;
  margin: auto;
  font-size: 20px;
  color: #555;
  line-height: 1.8;
}

.hero-features {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 35px;
}

.hero-features span {
  padding: 12px 20px;
  background: #fff;
  border-radius: 50px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  font-size: 14px;
  font-weight: 600;
}

/* Floating Blobs */

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
}

.blob-cyan {
  width: 320px;
  height: 320px;
  background: #24abe2;
  top: -80px;
  left: -80px;
}

.blob-magenta {
  width: 320px;
  height: 320px;
  background: #ea048b;
  right: -100px;
  bottom: -100px;
}

.quote-content {
  max-width: 850px;
  margin: auto;
}

.quote-content h1 {
  font-size: clamp(42px, 6vw, 72px);
  margin: 20px 0;
}

.quote-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.quote-info h2 {
  margin: 20px 0;
}

.quote-info p {
  margin-bottom: 25px;
}

.quote-info ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.quote-info li {
  margin-bottom: 15px;
  font-size: 17px;
}

.quote-form-card {
  background: #fff;
  padding: 40px;
  border-radius: 25px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
}

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid #ddd;
  border-radius: 12px;
  font-size: 16px;
  outline: none;
  transition: 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #24abe2;
}

.w-100 {
  width: 100%;
}

@media (max-width: 768px) {
  .quote-wrapper {
    grid-template-columns: 1fr;
  }

  #contact {
    padding-left: 10px;
    padding-right: 10px;
  }

  .quote-hero {
    padding: 140px 0 80px;
  }

  .quote-form-card {
    padding: 25px;
  }
}

.floating-buttons {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

.floating-buttons a {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.whatsapp-btn {
  background: #25d366;
}

.call-btn {
  background: #10759f;
}

.header-social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: #f5f7fa;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  font-size: 20px;
}

.header-social a:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Instagram */
.header-social a[aria-label="Instagram"] i {
  background: linear-gradient(
    45deg,
    #f09433,
    #e6683c,
    #dc2743,
    #cc2366,
    #bc1888
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Location */
.header-social a[aria-label="Location"] {
  color: #ea4335;
}

/* WhatsApp */
.header-social a[aria-label="WhatsApp"] {
  color: #25d366;
}

.image-gallery-section {
  padding: 40px 20px;
}

/* Desktop + Mobile Grid */
.gallery-scroll {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.gallery-item {
  height: 280px;
  overflow: hidden;
  border-radius: 15px;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}

.gallery-item img:hover {
  transform: scale(1.08);
}

/* Mobile */
@media (max-width: 768px) {
  .gallery-scroll {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .gallery-item {
    height: 180px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .gallery-scroll {
    grid-template-columns: 1fr;
  }

  .gallery-item {
    height: 250px;
  }
}

/* Popup */

.image-popup {
  position: fixed;
  inset: 0;
  background: #ffffffd4;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.image-popup img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
}

.image-popup span {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 45px;
}
