/* =========================================================================
   Makka — Social Media Marketing Agency
   Homepage stylesheet, rebuilt 1:1 from the Elementor Template Kit
   (templates/*.json + the kit's rendered CSS: kit globals, header, page, footer)
   ========================================================================= */

/* ---------- Kit palette --------------------------------------------------
   secondary #363539 · primary #838383 · text #FFFFFF · accent #FFFFFF2B
   14caab8 #FFFFFF99 · d49ac81 #4766FE · 332724a #1A1A1A · 4d462f5 #D6D6D6
   cfa1f76 #EBEBEB · 7fbea4f #F5F5FF · c94d9ab #032B7C · 044b931 #022261
   638d055 #011336 · ec3c7a7 #4766FE · 3ee16e7 #BF45AF · 2d91fda #F64443
   46f9220 #FDCB56                                                         */
:root {
  --heading: #363539;
  --body: #838383;
  --white: #fff;
  --w20: #ffffff2b;
  --w60: #ffffff99;
  --button: #4766fe;
  --button-hover: #1a1a1a;
  --line: #d6d6d6;
  --light-bg: #ebebeb;
  --xlight-bg: #f5f5ff;
  --smooth-dark: #032b7c;
  --dark-bg: #022261;
  --xdark-bg: #011336;
  --accent-1: #4766fe;
  --accent-2: #bf45af;
  --accent-3: #f64443;
  --accent-4: #fdcb56;

  --container: 1280px;
  --gap: 20px;              /* Elementor widgets spacing */
  --shadow-card: 0 10px 30px rgba(0, 0, 0, .1);
  --shadow-card-hover: 0 0 60px rgba(0, 0, 0, .1);
}

/* ---------- Reset ------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: #fff;
  color: var(--body);
  font-family: "Golos Text", -apple-system, "Segoe UI", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4em;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; border: 0; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, h5, h6, p { margin: 0; }
button { font: inherit; }

/* ---------- ElementsKit icon font (stat icons + rating stars) ----------- */
@font-face {
  font-family: elementskit;
  src: url("fonts/elementskit.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
.ekit::before {
  font-family: elementskit;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
}
.ekit-management::before { content: "\ebce"; }
.ekit-settings1::before  { content: "\ea69"; }
.ekit-review::before     { content: "\eac0"; }
.ekit-apartment1::before { content: "\e801"; }
.ekit-star::before       { content: "\e9d2"; }

/* ---------- Kit typography scale ---------------------------------------- */
.t-big-hero { font-family: Yantramanav, sans-serif; font-weight: 700; font-size: 89.76px; line-height: 1.1em; letter-spacing: -2px; }
.t-h1 { font-family: Yantramanav, sans-serif; font-weight: 700; font-size: 56px; line-height: 1em; }
.t-h2 { font-family: Yantramanav, sans-serif; font-weight: 700; font-size: 44px; line-height: 1.1em; }
.t-h3 { font-family: Yantramanav, sans-serif; font-weight: 700; font-size: 36px; line-height: 1.1em; }
.t-h4 { font-family: Yantramanav, sans-serif; font-weight: 500; font-size: 28px; line-height: 1.2em; }
.t-h5 { font-family: Yantramanav, sans-serif; font-weight: 600; font-size: 22px; line-height: 1.2em; }
.t-h6 { font-family: Yantramanav, sans-serif; font-weight: 500; font-size: 16px; line-height: 1.3em; text-transform: uppercase; }
.t-header { font-family: Yantramanav, sans-serif; font-weight: 600; font-size: 18px; line-height: 1.5em; }
.t-small { font-size: 14px; line-height: 1.4em; }
.t-footer { font-size: 13px; line-height: 1.5em; }

/* ---------- Layout helpers --------------------------------------------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; }
.section { position: relative; }
.section > .container { position: relative; z-index: 2; }

/* Elementor background overlay (::before, sits under the content) */
.ov { position: relative; }
.ov > .container, .ov > * { position: relative; z-index: 2; }
.ov::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  border-radius: inherit;
}

/* ---------- Badge — h6 heading on the img_2.png gradient ---------------- */
.badge {
  display: inline-block;
  padding: 4px 8px 0;
  border-radius: 30px;
  background: url("img_2.png") center center / cover no-repeat;
  color: #fff;
  font-family: Yantramanav, sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.3em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* ---------- Buttons — kit Theme Style ----------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 12px 24px;
  border: 0;
  border-radius: 40px;
  background: var(--button);
  color: #fff;
  font-family: Yantramanav, sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1em;
  cursor: pointer;
  transition: background-color .3s, border-color .3s, color .3s;
}
.btn:hover { background: var(--button-hover); color: #fff; }
.btn--bordered { border: 1px solid var(--button); }
.btn--bordered:hover { border-color: var(--button-hover); }
.btn--outline { border: 1px solid var(--button); background: transparent; color: var(--button); }
.btn--outline:hover { background: var(--button-hover); border-color: var(--button-hover); color: #fff; }
.btn--lg { font-family: Yantramanav, sans-serif; font-weight: 600; font-size: 22px; line-height: 1.2em; }
.btn svg { width: 1em; height: 1em; fill: currentColor; flex: none; }

/* =========================================================================
   HEADER — 80px, transparent, pulled over the hero (margin-bottom −80px)
   ========================================================================= */
.site-header {
  position: relative;
  z-index: 99;
  min-height: 80px;
  margin-bottom: -80px;
  display: flex;
  align-items: center;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0;
  padding: 0 1em;
}
.brand { padding: 10px 0; }
.brand img { height: 28px; width: auto; object-fit: contain; }

.header-right { display: flex; align-items: center; justify-content: flex-end; gap: var(--gap); }
.nav { padding-right: 20px; }
.nav > ul { display: flex; align-items: center; }
.nav > ul > li { position: relative; margin: 0 14px; }
.nav a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 25px 0;
  color: var(--heading);
  font-family: Yantramanav, sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.5em;
  transition: color .3s;
}
.nav a:hover { color: var(--button); }
.nav .caret { width: 11px; height: 11px; fill: currentColor; }

.nav .sub {
  position: absolute;
  top: 100%;
  left: -14px;
  min-width: 200px;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 60px rgba(0, 0, 0, .1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: .25s;
}
.nav li:hover > .sub { opacity: 1; visibility: visible; transform: translateY(0); }
.nav .sub a { padding: 12px 16px; font-size: 18px; }
.nav .sub a:hover { background: var(--button); color: #fff; }

.hide-mobile { display: inline-flex; }
.nav-toggle {
  display: none;
  border: 0;
  background: none;
  color: var(--button);
  padding: 4px;
  cursor: pointer;
}

/* =========================================================================
   1 · HERO
   ========================================================================= */
.hero {
  padding: 80px 0 0;
  margin-bottom: 240px;
  background: linear-gradient(180deg, #ffffff 0%, #4766FE4D 100%);
}
.hero::before {
  background: url("pattern_img_7.png") top center / 840px auto no-repeat;
  opacity: .1;
}
.hero-shape {
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  z-index: 2;
  overflow: hidden;
  line-height: 0;
  direction: ltr;
}
.hero-shape svg {
  display: block;
  position: relative;
  left: 50%;
  width: calc(125% + 1.3px);
  height: auto;
  transform: translateX(-50%);
}
.hero-shape path { fill: #fff; }

.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding: 2em 1em 0;
  z-index: 3;
}
.hero-copy {
  width: 840px;
  max-width: 100%;
  padding: 2em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--gap);
  text-align: center;
}
.hero-copy h1 { color: var(--heading); }
.hero-copy .lead { color: var(--heading); }
.hero-actions { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 10px; }

.hero-shot-wrap {
  width: 100%;
  margin-bottom: -240px;
  border-radius: 20px 20px 0 0;
}
.hero-shot {
  width: 100%;
  height: 720px;
  object-fit: cover;
  object-position: top center;
  border-radius: 20px;
  -webkit-mask-image: url("img_10.png");
  mask-image: url("img_10.png");
  -webkit-mask-size: cover;
  mask-size: cover;
  -webkit-mask-position: top center;
  mask-position: top center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

/* =========================================================================
   2 · SERVICES — "What We Offer"
   ========================================================================= */
.services {
  padding: 4em 1em 6em;
  background: url("pattern_img_5.png") bottom right / 350px auto no-repeat;
}
.services::before {
  background: url("pattern_img_4.png") top left / 80px auto no-repeat;
  opacity: .5;
}
.section-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--gap);
  padding: 2em;
  text-align: center;
}
.section-head > * { max-width: 640px; }
.section-head h2, .section-head h3 { color: var(--heading); }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); padding-top: 1em; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap); padding-top: 1em; }

.svc-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--gap);
  padding: 2em;
  border-radius: 20px;
  background: #fff url("img_1.png") bottom center / contain no-repeat;
  box-shadow: var(--shadow-card);
  transition: box-shadow .35s;
}
.svc-card:hover { box-shadow: var(--shadow-card-hover); }
.svc-card::before {
  background: url("pattern_img_7.png") top right / 250px auto no-repeat;
  opacity: .3;
}
.svc-card .ico { width: 64px; height: 64px; object-fit: contain; }
.svc-card .txt { padding-top: 20px; }
.svc-card h3 { color: var(--heading); margin-bottom: 10px; }
.svc-card p { color: var(--body); }

/* =========================================================================
   3 · BRANDS
   ========================================================================= */
.brands { padding: 4em 1em 6em; background: var(--xlight-bg); }
.logo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}
.logo-grid li {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 40px;
  background: var(--xlight-bg);
}
.logo-grid img {
  height: 70px;
  width: auto;
  object-fit: contain;
  opacity: .5;
  filter: saturate(0);
  transition: opacity 1s, filter 1s;
}
.logo-grid li:hover img { opacity: 1; filter: saturate(1); }

/* =========================================================================
   4 · OUR VALUE
   ========================================================================= */
.value { display: flex; flex-wrap: wrap; justify-content: flex-end; }
.value__text {
  width: 50%;
  display: flex;
  justify-content: flex-end;
  background: var(--smooth-dark);
}
.value__text::before {
  background: url("pattern_img_2.png") bottom left no-repeat;
  opacity: .2;
}
.value__inner {
  width: 640px;
  max-width: 100%;
  padding: 6em 3em 6em 1em;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--gap);
}
.value__inner h2 { color: #fff; }
.value__inner .lead { color: var(--w60); }

.mini-card {
  width: 100%;
  display: flex;
  padding: 20px;
  border-radius: 10px;
  background: #fff;
}
.mini-card img { width: 48px; height: 48px; flex: none; object-fit: contain; margin-right: 16px; }
.mini-card h4 { color: var(--heading); margin-bottom: 4px; }
.mini-card p { color: var(--body); }

.value__media {
  width: 50%;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url("welcome-to-our-team-.jpg") center center / cover no-repeat;
}
.value__media::before { background: url("img_7.png") center left / contain no-repeat; }

.play {
  position: relative;
  z-index: 3;
  width: 100px;
  height: 100px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--button);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .5);
  cursor: pointer;
  transition: background-color .3s, color .3s;
}
.play svg { width: 35px; height: 35px; fill: currentColor; margin-left: 5px; }
.play:hover { background: var(--button); color: #fff; }
.play::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, .6);
  animation: glow 2.6s infinite;
}
@keyframes glow {
  70% { box-shadow: 0 0 0 40px rgba(255, 255, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

/* =========================================================================
   5 · STATS
   ========================================================================= */
.stats { padding: 7em 1em; background: var(--xlight-bg); }
.stats::before {
  background: url("dot_map_2.png") center center / contain no-repeat;
  opacity: .2;
}
.stats-box {
  padding-top: 2em;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-card);
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 2em;
  padding: 0 2em;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  padding: 0 21px;
  text-align: center;
}
.stat:not(:last-child) { border-right: 2px dashed var(--line); }
.stat .ekit { font-size: 49px; color: var(--accent-1); }
.stat strong { font-family: Yantramanav, sans-serif; font-weight: 700; font-size: 44px; line-height: 1.1em; color: var(--heading); }
.stat span { font-family: Yantramanav, sans-serif; font-weight: 500; font-size: 16px; line-height: 1.3em; text-transform: uppercase; color: var(--body); }

.stats-bar {
  padding: 1em 2em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--gap);
  background: var(--accent-2) url("img__2.png") center center / cover no-repeat;
  color: #fff;
}
.stars { display: inline-flex; gap: 2px; line-height: 1; }
.stars .ekit { font-size: 21px; }
.stars--gold .on { color: #facf28; }
.stars--gold .off { color: var(--w20); }
.stars--orange .on { color: #fa5228; }
.stars--orange .off { color: var(--light-bg); }
.stats-bar strong { font-family: Yantramanav, sans-serif; font-weight: 700; font-size: 22px; line-height: 1.2em; }

/* =========================================================================
   6 · PREMIUM SERVICES
   ========================================================================= */
.premium { padding: 6em 1em 0; }
.premium .container { display: flex; flex-wrap: wrap; justify-content: space-between; }
.premium__media { position: relative; width: 50%; padding: 10px; }
.premium__media .shot { width: 100%; height: 650px; object-fit: cover; border-radius: 20px; }
.premium__media .socials {
  position: absolute;
  left: -20px;
  bottom: -20px;
  width: 40%;
  height: 200px;
  object-fit: contain;
  object-position: left bottom;
}
.premium__copy {
  width: 50%;
  padding: 1em 1em 1em 3em;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--gap);
}
.premium__copy::before {
  background: url("pattern_img_4.png") top right / 60px auto no-repeat;
  opacity: .5;
}
.premium__copy h2 { color: var(--heading); }

.arrow-card {
  width: 100%;
  display: flex;
  align-items: center;
  gap: var(--gap);
  padding: 20px;
  border-radius: 10px;
  background: var(--xlight-bg);
}
.arrow-card .txt { flex: 1; }
.arrow-card h4 { color: var(--heading); margin-bottom: 8px; }
.arrow-card p { color: var(--body); }
.arrow-card .arrow {
  flex: none;
  display: grid;
  place-items: center;
  padding: 14px;
  border-radius: 8px;
  background: #fff;
  color: var(--button);
  transition: background-color .3s, color .3s;
}
.arrow-card:hover .arrow { background: var(--button); color: #fff; }
.arrow-card .arrow svg { width: 28px; height: 28px; fill: currentColor; display: block; }

/* =========================================================================
   7 · TESTIMONIAL
   ========================================================================= */
.testimonial { padding: 5em 1em 6em; background: #fff; }
.testimonial::before {
  background: url("dot_map_2.png") center center / contain no-repeat;
  opacity: .1;
}
.testimonial__top { display: flex; flex-wrap: wrap; justify-content: space-between; }
.testimonial__left { width: 50%; padding: 1em 2em 2em 0; display: flex; flex-direction: column; gap: 10px; }
.testimonial__left .eyebrow { color: var(--button); }
.testimonial__left h3 { color: var(--heading); }

.testimonial__right {
  width: 45%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1em 0 2em 2em;
}
.rating-col {
  width: 50%;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 10px;
  text-align: right;
}
.rating-col p { color: var(--heading); font-family: Yantramanav, sans-serif; font-weight: 600; font-size: 18px; line-height: 1.5em; }
.review-col {
  width: 50%;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-left: 1px solid var(--line);
}
.review-col .btn { width: 100%; }

/* — carousel: Elementor testimonial-carousel, "bubble" skin — */
.tcar { position: relative; padding-top: 1em; }
.tcar__viewport { overflow: hidden; }
.tcar__track { display: flex; gap: 21px; transition: transform .5s ease; }
.tcar__slide { flex: 0 0 calc((100% - 42px) / 3); }
.bubble {
  position: relative;
  padding: 2em 3em;
  border-radius: 15px;
  background: var(--xlight-bg);
  color: var(--heading);
}
.bubble::after {
  content: "";
  position: absolute;
  top: 100%;
  left: calc(3em + 85px / 2 - 8px);
  border: 8px solid transparent;
  border-top-color: var(--xlight-bg);
  border-bottom-width: 0;
}
.tcar__person { display: flex; align-items: center; gap: 18px; padding: 2em 3em 0; }
.tcar__person img {
  width: 85px;
  height: 85px;
  flex: none;
  border-radius: 50%;
  border: 4px solid var(--light-bg);
  object-fit: cover;
}
.tcar__person strong { display: block; color: var(--heading); font-family: Yantramanav, sans-serif; font-weight: 600; font-size: 18px; line-height: 1.5em; }
.tcar__person span { color: var(--body); font-size: 14px; line-height: 1.4em; }
.tcar__dots { display: flex; justify-content: center; gap: 10px; padding-top: 20px; }
.tcar__dots button {
  width: 10px; height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--light-bg);
  cursor: pointer;
  transition: background-color .3s;
}
.tcar__dots button.is-active { background: #fa5228; }

/* =========================================================================
   8 · WHY CHOOSE US
   ========================================================================= */
.why {
  padding: 4em 1em 6em;
  background: url("typing-on-a-smartphone-working-online-on-laptop-computer-and-smartphone-on-white-table-at-office-.jpg") center center / cover no-repeat;
}
.why::before { background: var(--smooth-dark); opacity: .7; }
.why .section-head h2 { color: #fff; }
.why-card { display: flex; padding: 20px; border-radius: 20px; background: #fff; }
.why-card img { width: 48px; height: 48px; flex: none; object-fit: contain; margin-right: 20px; }
.why-card h4 { color: var(--heading); margin-bottom: 10px; }
.why-card p { color: var(--body); }

/* =========================================================================
   9 · PLUGIN INTEGRATIONS
   ========================================================================= */
.integrations { margin-top: 6em; padding: 0 1em; }
.integrations__box { padding: 2em 2em 4em; border-radius: 20px; background: var(--xlight-bg); }
.integrations .section-head h2 { color: var(--heading); }
.tool-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--gap);
  padding: 2em;
  border-radius: 10px;
  background: #fff;
  text-align: center;
}
.tool-card img { height: 60px; width: auto; object-fit: contain; }
.tool-card h4 { color: var(--heading); margin-bottom: 10px; }
.tool-card p { color: var(--body); }

/* =========================================================================
   10 · WHO WE ARE
   ========================================================================= */
.story { padding: 6em 1em; }
.story::before {
  background: radial-gradient(at center center, #FFFFFF1A 0%, #FFFFFF 80%);
}
.story .container { display: flex; flex-wrap: wrap; justify-content: space-between; }
.story__media { position: relative; width: 50%; }
.story__media img { width: 100%; height: 500px; object-fit: cover; border-radius: 20px; }
.story__bar {
  position: absolute;
  left: -25px;
  top: 25px;
  width: 25px;
  height: 150px;
  background: url("img_4.png") center center / cover no-repeat;
}
.story__copy {
  width: 50%;
  padding: 1em 1em 1em 3em;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--gap);
}
.story__copy h2 { color: var(--heading); }
.check-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 21px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.check-grid li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 3.5px 0;
  color: var(--body);
  font-weight: 600;
}
.check-grid svg { width: 21px; height: 21px; flex: none; fill: var(--button); }

/* =========================================================================
   11 · CTA
   ========================================================================= */
.cta {
  padding: 7em 0;
  background: url("students-sharing-social-media-content-on-smartphone-outdoors.jpg") center center / cover no-repeat;
}
.cta::before { background: var(--xdark-bg); opacity: .4; }
.cta .container { max-width: 640px; }
.cta__inner {
  padding: 2em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--gap);
  text-align: center;
}
.cta h2, .cta p { color: #fff; }

/* =========================================================================
   FOOTER
   ========================================================================= */
.site-footer { position: relative; padding: 0 1em; background: var(--dark-bg); }
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("Pattern_img_1.png") center right / 150px auto no-repeat;
  opacity: .2;
  pointer-events: none;
}
.site-footer .container { position: relative; z-index: 2; }

.footer-top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--gap);
  padding: 3em 0;
  margin-bottom: 3em;
  border-bottom: 1px solid var(--w20);
}
/* divider widget: 640×10 gradient bar, absolute, offset-y −10px */
.footer-top::after {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  width: 640px;
  max-width: 100%;
  height: 10px;
  background: url("img_1.png") center center / cover no-repeat;
}
.footer-top img { height: 40px; width: auto; object-fit: contain; }

.socials-row { display: flex; gap: 5px; }
.socials-row a {
  padding: 14px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: var(--button);
  transition: background-color .3s, color .3s, transform .3s;
}
.socials-row a:hover { background: var(--button); color: #fff; transform: translateY(-8px); }
.socials-row svg { width: 20px; height: 20px; fill: currentColor; display: block; }

.footer-cols { display: grid; grid-template-columns: repeat(4, 1fr); }
.footer-cols > div { padding: 1em; }
.footer-cols > div:first-child { padding-left: 0; }
.footer-cols > div:last-child { padding-right: 0; }
.footer-cols h3 {
  color: #fff;
  font-family: Yantramanav, sans-serif;
  font-weight: 600;
  font-size: 22px;
  line-height: 1.2em;
  margin-bottom: var(--gap);
}
.footer-cols li { padding: 3.5px 0; }
.footer-cols a { color: var(--w60); transition: color .3s; }
.footer-cols a:hover { color: #fff; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 3em;
  padding: 2em 0;
  border-top: 1px solid var(--w20);
  color: var(--w60);
  font-size: 13px;
  line-height: 1.5em;
}
.footer-bottom ul { display: flex; }
.footer-bottom li { padding: 0 7px; }
.footer-bottom a { color: var(--w60); transition: color .3s; }
.footer-bottom a:hover { color: #fff; }

/* =========================================================================
   Entrance animations (Elementor fadeInUp / fadeInLeft / zoomIn)
   ========================================================================= */
.anim { opacity: 0; transition: opacity .8s ease, transform .8s ease; will-change: opacity, transform; }
.anim.up { transform: translateY(40px); }
.anim.left { transform: translateX(-40px); }
.anim.zoom { transform: scale(.9); }
.anim.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .anim { opacity: 1 !important; transform: none !important; transition: none; }
  .play::after { animation: none; }
  html { scroll-behavior: auto; }
}

/* =========================================================================
   RESPONSIVE — kit breakpoints: 1024px (tablet) · 767px (mobile)
   ========================================================================= */
@media (max-width: 1024px) {
  :root { --container: 1024px; }
  body { font-size: 15px; }
  .t-big-hero { font-size: 64px; }
  .t-h1 { font-size: 40px; }
  .t-h2 { font-size: 32px; }
  .t-h3 { font-size: 28px; }
  .t-h4 { font-size: 24px; }
  .t-h5 { font-size: 20px; }
  .t-h6, .badge, .stat span { font-size: 15px; }
  .t-header, .rating-col p, .tcar__person strong { font-size: 17px; }
  .t-small, .tcar__person span { font-size: 13px; }
  .btn { font-size: 15px; }
  .btn--lg { font-size: 20px; }
  .stat strong, .stats-bar strong { font-size: 32px; }
  .stats-bar strong { font-size: 20px; }
  .footer-cols h3 { font-size: 20px; }
  .footer-bottom, .t-footer { font-size: 12px; }

  .site-header { min-height: 65px; margin-bottom: -65px; }
  .site-header .container { position: relative; }
  .nav-toggle { display: block; }
  .nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    padding: 6px 0;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 0 60px rgba(0, 0, 0, .12);
    display: none;
  }
  .nav.is-open { display: block; }
  .nav > ul { flex-direction: column; align-items: stretch; }
  .nav > ul > li { margin: 0; }
  .nav > ul > li > a { padding: 12px 20px; }
  .nav .sub {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding: 0 0 6px 12px;
    min-width: 0;
  }

  .hero { padding-top: 65px; margin-bottom: 175px; }
  .hero-shot-wrap { margin-bottom: -175px; }
  .hero-shot { height: 450px; }

  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .value__text, .value__media { width: 100%; }
  .value__inner { width: 100%; padding: 3em 1.5em; }
  .value__media { min-height: 420px; }
  .stats { padding: 4em 1em; }
  .stats-box { padding-top: 1em; }
  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 24px 0; padding: 0 1em; }
  .stat:nth-child(2n) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 2px dashed var(--line); padding-bottom: 24px; }
  .premium { padding: 4em 1em 0; }
  .premium__media, .premium__copy { width: 100%; }
  .premium__media .shot { height: 480px; }
  .premium__copy { padding: 2.5em 0 0; }
  .testimonial__left, .testimonial__right { width: 100%; padding: 1em 0; }
  .rating-col { align-items: flex-start; text-align: left; padding-right: 20px; }
  .tcar__slide { flex-basis: calc((100% - 21px) / 2); }
  .story__media, .story__copy { width: 100%; }
  .story__media img { height: 420px; }
  .story__copy { padding: 2.5em 0 0; }
  .story__bar { left: 0; }
  .cta { padding: 4em 0; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
  .footer-cols > div { padding: 1em 1em 1.5em 0; }
  .footer-top::after { width: 384px; }
}

@media (max-width: 767px) {
  :root { --container: 767px; }
  body { font-size: 14px; }
  .hide-mobile { display: none; }
  .t-big-hero { font-size: 36px; letter-spacing: 0; }
  .t-h1 { font-size: 30px; }
  .t-h2 { font-size: 24px; }
  .t-h3 { font-size: 20px; }
  .t-h4 { font-size: 18px; }
  .t-h5 { font-size: 16px; }
  .t-h6, .badge, .stat span { font-size: 14px; }
  .t-header, .rating-col p, .tcar__person strong { font-size: 16px; }
  .t-small, .tcar__person span { font-size: 12px; }
  .btn { font-size: 14px; padding: 10px 20px; }
  .btn--lg { font-size: 16px; }
  .stat strong { font-size: 24px; }
  .stats-bar strong { font-size: 16px; }
  .footer-cols h3 { font-size: 16px; }
  .footer-bottom, .t-footer { font-size: 11px; }

  .site-header { min-height: 60px; margin-bottom: -60px; }
  .brand img { height: 24px; }
  .hero { padding-top: 60px; margin-bottom: 100px; }
  .hero .container { padding: 1em .5em 0; }
  .hero-copy { padding: 1em 0; gap: 14px; }
  .hero-shot-wrap { margin-bottom: -100px; }
  .hero-shot { height: 200px; border-radius: 10px; }

  .section-head { padding: 1.5em 0; }
  .services, .brands, .why { padding: 3em 1em 3.5em; }
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .svc-card, .tool-card { padding: 1.5em; }
  .logo-grid { grid-template-columns: repeat(2, 1fr); }
  .logo-grid li { padding: 10px 20px; }
  .logo-grid img { height: 42px; }

  .value__media { min-height: 350px; }
  .mini-card, .why-card { flex-direction: column; text-align: center; align-items: center; }
  .mini-card img, .why-card img { margin: 0 0 16px; }
  .stats-row { grid-template-columns: 1fr; }
  .stat { border-right: 0 !important; border-bottom: 2px dashed var(--line); padding: 10px; }
  .stat:last-child { border-bottom: 0; }
  .stat .ekit { font-size: 42px; }
  .stats-bar { flex-direction: column; text-align: center; gap: 6px; padding: 1em; }
  .premium__media { padding: 0; }
  .premium__media .shot { height: 300px; }
  .premium__media .socials { left: 0; bottom: 0; }
  .arrow-card { padding: 10px; gap: 12px; }
  .arrow-card .arrow { padding: 10px; }
  .arrow-card .arrow svg { width: 20px; height: 20px; }
  .tcar__slide { flex-basis: 100%; }
  .bubble { padding: 1.5em; }
  .bubble::after { left: 32px; }
  .tcar__person { padding: 1.5em 0 0; justify-content: center; }
  .tcar__person img { width: 75px; height: 75px; }
  .tcar__dots { gap: 5px; }
  .tcar__dots button { width: 7px; height: 7px; }
  .rating-col, .review-col { width: 100%; padding: 0; border: 0; }
  .rating-col { align-items: center; text-align: center; margin-bottom: 14px; }
  .integrations { margin-top: 3em; }
  .integrations__box { padding: 1.5em 1em 2em; }
  .check-grid { grid-template-columns: 1fr; }
  .story { padding: 3em 1em; }
  .story__media img { height: 300px; }
  .cta__inner { padding: 1em 0; }
  .footer-cols { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; padding: 2em 0; margin-bottom: 1em; }
  .footer-bottom { flex-direction: column; text-align: center; margin-top: 1em; padding: 1em 0; }
}
