/* Fonts and theme */
:root {
  --default-font: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --heading-font: "Space Grotesk", var(--default-font);
  --nav-font: "Manrope", var(--default-font);
  --background-color: #080806;
  --default-color: rgba(255, 250, 238, 0.76);
  --heading-color: #fffaf0;
  --accent-color: #f4b63d;
  --accent-2: #30d5c8;
  --accent-3: #ff6a4a;
  --surface-color: #14130f;
  --surface-soft: #1f1c14;
  --contrast-color: #090806;
  --nav-color: #fffaf0;
  --nav-hover-color: #f4b63d;
  --nav-mobile-background-color: #12110d;
  --nav-dropdown-background-color: #17150f;
  --nav-dropdown-color: #fffaf0;
  --nav-dropdown-hover-color: #f4b63d;
  scroll-behavior: smooth;
}

.light-background {
  --background-color: #17150f;
  --surface-color: #211e16;
}

.dark-background {
  --background-color: #070706;
  --default-color: #fffaf0;
  --heading-color: #ffffff;
  --surface-color: #14130f;
  --contrast-color: #090806;
}

* {
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--default-color);
  background:
    linear-gradient(180deg, #080806 0%, #10100c 48%, #0b0a08 100%);
  font-family: var(--default-font);
  line-height: 1.65;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

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

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: color 0.25s ease, border-color 0.25s ease, background-color 0.25s ease, transform 0.25s ease;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), white 18%);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0;
}

p {
  margin-top: 0;
}

button,
input,
textarea {
  font: inherit;
  letter-spacing: 0;
}

button {
  cursor: pointer;
}

/* Form messages */
.php-email-form .error-message,
.php-email-form .sent-message,
.php-email-form .loading {
  display: none;
  padding: 14px 16px;
  margin-bottom: 20px;
  border-radius: 8px;
  font-weight: 700;
}

.php-email-form .error-message {
  color: #ffffff;
  background: #d72f3f;
  text-align: left;
}

.php-email-form .sent-message {
  color: #062314;
  background: #50e3a4;
  text-align: center;
}

.php-email-form .loading {
  color: var(--heading-color);
  background: var(--surface-soft);
  text-align: center;
}

.php-email-form .loading::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 22px;
  margin: 0 10px -5px 0;
  border: 3px solid var(--accent-color);
  border-top-color: transparent;
  border-radius: 50%;
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  to {
    transform: rotate(360deg);
  }
}

/* Header */
.header {
  --background-color: rgba(8, 8, 6, 0.68);
  color: var(--default-color);
  z-index: 997;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  backdrop-filter: blur(18px);
}

.header .branding {
  min-height: 68px;
  padding: 12px 0;
  background-color: var(--background-color);
  border-bottom: 1px solid rgba(255, 250, 238, 0.08);
  transition: min-height 0.3s ease, border-color 0.3s ease;
}

.header .logo {
  line-height: 1;
}

.header .logo .sitename,
.footer .footer-about .logo .sitename {
  margin: 0;
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 30px;
  font-weight: 800;
}

.header .btn-get-free-audit,
.header .btn-get-free-audit:focus {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin: 0 0 0 24px;
  padding: 10px 18px;
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 1px solid var(--accent-color);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
}

.header .btn-get-free-audit:hover,
.header .btn-get-free-audit:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), white 14%);
  transform: translateY(-1px);
}

.scrolled .header {
  --background-color: rgba(8, 8, 6, 0.92);
}

.scrolled .header .branding {
  border-color: rgba(244, 182, 61, 0.22);
}

/* Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0;
    margin: 0;
    list-style: none;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 12px;
    color: var(--nav-color);
    font-family: var(--nav-font);
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
  }

  .navmenu a i,
  .navmenu a:focus i {
    margin-left: 6px;
    font-size: 12px;
    line-height: 0;
  }

  .navmenu li:hover > a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    position: absolute;
    left: 12px;
    top: 132%;
    z-index: 99;
    display: block;
    min-width: 250px;
    padding: 10px;
    margin: 0;
    visibility: hidden;
    opacity: 0;
    background: var(--nav-dropdown-background-color);
    border: 1px solid rgba(255, 250, 238, 0.1);
    border-radius: 8px;
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.34);
    transition: opacity 0.25s ease, top 0.25s ease;
  }

  .navmenu .dropdown ul a {
    padding: 10px 12px;
    color: var(--nav-dropdown-color);
    font-size: 14px;
    font-weight: 700;
    white-space: normal;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover > a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover > ul {
    top: 100%;
    visibility: visible;
    opacity: 1;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -98%;
  }

  .navmenu .dropdown .dropdown:hover > ul {
    top: 0;
    left: -102%;
    visibility: visible;
    opacity: 1;
  }
}

@media (max-width: 1199px) {
  .mobile-nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-right: 0;
    color: var(--nav-color);
    background: transparent;
    border: 1px solid rgba(255, 250, 238, 0.16);
    border-radius: 8px;
    font-size: 28px;
    line-height: 1;
    transition: color 0.25s ease, border-color 0.25s ease;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    position: fixed;
    inset: 76px 16px 18px 16px;
    z-index: 9998;
    display: none;
    visibility: visible;
    opacity: 1;
    padding: 14px;
    margin: 0;
    overflow-y: auto;
    list-style: none;
    background: var(--nav-mobile-background-color);
    border: 1px solid rgba(255, 250, 238, 0.12);
    border-radius: 8px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  }

  .navmenu a,
  .navmenu a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    color: var(--nav-dropdown-color);
    font-family: var(--nav-font);
    font-size: 16px;
    font-weight: 800;
    white-space: normal;
  }

  .navmenu a i,
  .navmenu a:focus i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 32px;
    width: 32px;
    height: 32px;
    margin-left: 8px;
    color: var(--accent-color);
    background: rgba(244, 182, 61, 0.1);
    border-radius: 8px;
    font-size: 12px;
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    color: var(--contrast-color);
    background: var(--accent-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    padding: 8px 0;
    margin: 6px 8px 10px;
    background: rgba(255, 250, 238, 0.04);
    border: 1px solid rgba(255, 250, 238, 0.08);
    box-shadow: none;
  }

  .navmenu .dropdown > .dropdown-active {
    display: block;
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .header {
    height: 100svh;
    overflow: visible;
    background: rgba(8, 8, 6, 0.86);
    backdrop-filter: none;
  }

  .mobile-nav-active .header .branding {
    height: 100%;
    align-items: flex-start !important;
  }

  .mobile-nav-active .header .branding > .container {
    align-items: flex-start !important;
    height: 100%;
  }

  .mobile-nav-active .mobile-nav-toggle {
    position: fixed;
    top: 18px;
    right: 18px;
    z-index: 10000;
    color: #ffffff;
    background: rgba(255, 250, 238, 0.08);
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    inset: 0;
    z-index: 9999;
    overflow: hidden;
    background: rgba(8, 8, 6, 0.78);
    backdrop-filter: blur(10px);
  }

  .mobile-nav-active .navmenu > ul {
    position: fixed !important;
    inset: 76px 16px 18px 16px !important;
    display: flex !important;
    flex-direction: column;
    visibility: visible !important;
    opacity: 1 !important;
    background: #12110d !important;
  }
}

@media (max-width: 767px) {
  .header .branding {
    min-height: 64px;
  }
}

/* Global sections */
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 50px 0;
  scroll-margin-top: 76px;
  overflow: clip;
}

.section-title {
  padding-bottom: 28px;
}

.section-title h2 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 12px;
  color: rgba(255, 250, 238, 0.55);
  font-family: var(--default-font);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0;
}

.section-title h2::after {
  content: "";
  width: 90px;
  height: 1px;
  background: linear-gradient(90deg, var(--accent-color), var(--accent-2));
}

.section-title p {
  max-width: 760px;
  margin: 0;
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 38px;
  font-weight: 800;
  line-height: 1.12;
}

/* Hero */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 68px;
  min-height: calc(100svh - 68px);
  padding: 60px 0 60px;
  color: var(--default-color);
}

.hero img {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(8, 8, 6, 0.35) 0%, rgba(8, 8, 6, 0.20) 48%, rgba(8, 8, 6, 0) 100%),
    linear-gradient(180deg, rgba(8, 8, 6, 0) 0%, rgba(8, 8, 6, 0.40) 100%);
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: 64px;
  font-weight: 800;
}

.hero h1 span {
  display: block;
  color: var(--accent-color);
}

.hero p {
  max-width: 650px;
  margin: 18px 0 0;
  color: rgba(255, 250, 238, 0.82);
  font-size: 20px;
}

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

.hero .cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 20px;
  border: 1px solid rgba(255, 250, 238, 0.2);
  border-radius: 8px;
  color: var(--heading-color);
  font-size: 14px;
  font-weight: 900;
}

.hero .cta-btn.primary {
  color: var(--contrast-color);
  background: var(--accent-color);
  border-color: var(--accent-color);
}

.hero .cta-btn.secondary {
  background: rgba(255, 250, 238, 0.08);
  backdrop-filter: blur(12px);
}

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

/* Clients */
.flex {
  padding-top: 50px;
  background:
    linear-gradient(180deg, #0b0a08 0%, #11100c 100%);
}

.flex .swiper {
  padding: 10px 0 28px;
}

.flex .swiper-wrapper {
  align-items: stretch;
}

.flex .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 92px;
  padding: 18px;
  background: rgba(255, 250, 238, 0.05);
  border: 1px solid rgba(255, 250, 238, 0.09);
  border-radius: 8px;
}

.flex .swiper-slide img {
  max-height: 52px;
  width: auto;
  object-fit: contain;
  opacity: 0.85;
  transition: opacity 0.35s ease, transform 0.35s ease, filter 0.35s ease;
}

.flex .swiper-slide:hover img {
  opacity: 1;
  transform: scale(1.10);
  filter: brightness(1.15);
}

/* Arsenal */
.arsenal {
  background:
    linear-gradient(180deg, #11100c 0%, #090806 100%);
}

.arsenal .nav-tabs {
  gap: 8px;
  border: 0;
}

.arsenal .nav-link {
  width: 100%;
  padding: 14px 16px;
  color: var(--heading-color);
  background: rgba(255, 250, 238, 0.05);
  border: 1px solid rgba(255, 250, 238, 0.1);
  border-radius: 8px;
  font-size: 15px;
  font-weight: 900;
  text-align: left;
}

.arsenal .nav-link:hover {
  color: var(--accent-color);
  border-color: rgba(244, 182, 61, 0.42);
}

.arsenal .nav-link.active {
  color: var(--contrast-color);
  background: var(--accent-color);
  border-color: var(--accent-color);
}

.arsenal .tab-content {
  min-height: 300px;
  padding: 34px;
  background: var(--surface-color);
  border: 1px solid rgba(255, 250, 238, 0.1);
  border-radius: 8px;
}

.arsenal .tab-pane.active {
  animation: fadeIn 0.45s ease-out;
}

.arsenal .details h3 {
  max-width: 800px;
  margin: 0 0 18px;
  font-size: 30px;
  font-weight: 800;
}

.arsenal .details .fst-italic {
  display: inline-block;
  margin-bottom: 18px;
  padding: 10px 12px;
  color: #0b0a08;
  background: color-mix(in srgb, var(--accent-2), white 8%);
  border-radius: 8px;
  font-family: var(--default-font);
  font-size: 14px;
  font-style: normal !important;
  font-weight: 900;
}

.arsenal .details p {
  color: rgba(255, 250, 238, 0.72);
  font-size: 17px;
}

.arsenal .details p:last-child {
  margin-bottom: 0;
}

/* Menu */
.menu {
  background:
    linear-gradient(180deg, #090806 0%, #14120d 100%);
}

.menu .menu-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 0;
  margin: 0 auto 8px;
  list-style: none;
}

.menu .menu-filters li {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 13px;
  color: rgba(255, 250, 238, 0.74);
  background: rgba(255, 250, 238, 0.05);
  border: 1px solid rgba(255, 250, 238, 0.1);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
  cursor: pointer;
  transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.menu .menu-filters li:hover,
.menu .menu-filters li.filter-active {
  color: var(--contrast-color);
  background: var(--accent-color);
  border-color: var(--accent-color);
}

.menu .menu-filters li:focus-visible {
  outline: 3px solid rgba(48, 213, 200, 0.38);
  outline-offset: 2px;
}

.menu .isotope-container {
  margin-top: 8px;
}

.menu .menu-item {
  position: relative;
  width: 48%;
  min-height: 170px;
  margin: 1%;
  padding: 20px;
  background: rgba(255, 250, 238, 0.055);
  border: 1px solid rgba(255, 250, 238, 0.1);
  border-radius: 8px;
  transition: transform 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}

.menu .menu-item:hover {
  transform: translateY(-3px);
  background: rgba(255, 250, 238, 0.075);
  border-color: rgba(244, 182, 61, 0.42);
}

.menu .menu-content {
  position: relative;
  display: block;
  margin: 0;
  overflow: visible;
}

.menu .menu-content a {
  display: inline-flex;
  align-items: center;
  gap: 25px;
  color: var(--heading-color);
  background: transparent;
  font-family: var(--heading-font);
  font-size: 21px;
  font-weight: 800;
}

.menu .menu-content a::before {
  content: "";
  flex: 0 0 11px;
  width: 11px;
  height: 11px;
  background: var(--accent-color);
  border-radius: 3px;
  box-shadow: 14px 0 0 var(--accent-2);
}

.menu .menu-content a:hover {
  color: var(--accent-color);
}

.menu .menu-tech {
  margin: 14px 0 0;
  color: rgba(255, 250, 238, 0.68);
  font-family: var(--default-font);
  font-size: 15px;
  font-style: normal;
}

/* Audit */
.get-free-audit {
  background:
    linear-gradient(180deg, #14120d 0%, #0b0a08 100%);
}

.get-free-audit .php-email-form,
.talk .php-email-form {
  height: 100%;
  padding: 30px;
  background: var(--surface-color);
  border: 1px solid rgba(255, 250, 238, 0.1);
  border-radius: 8px;
}

.get-free-audit .php-email-form input[type="text"],
.get-free-audit .php-email-form input[type="tel"],
.get-free-audit .php-email-form input[type="email"],
.get-free-audit .php-email-form textarea,
.talk .php-email-form input[type="text"],
.talk .php-email-form input[type="tel"],
.talk .php-email-form input[type="email"],
.talk .php-email-form textarea,
.footer .footer-newsletter .newsletter-form input[type="email"] {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--heading-color);
  background: rgba(255, 250, 238, 0.055);
  border: 1px solid rgba(255, 250, 238, 0.14);
  border-radius: 8px;
  box-shadow: none;
}

.get-free-audit .php-email-form textarea,
.talk .php-email-form textarea {
  min-height: 140px;
  resize: vertical;
}

.get-free-audit .php-email-form input:focus,
.get-free-audit .php-email-form textarea:focus,
.talk .php-email-form input:focus,
.talk .php-email-form textarea:focus,
.footer .footer-newsletter .newsletter-form input[type="email"]:focus {
  border-color: var(--accent-color);
  outline: none;
}

.get-free-audit .php-email-form input::placeholder,
.get-free-audit .php-email-form textarea::placeholder,
.talk .php-email-form input::placeholder,
.talk .php-email-form textarea::placeholder {
  color: rgba(255, 250, 238, 0.46);
}

.get-free-audit .php-email-form button[type="submit"],
.talk .php-email-form button[type="submit"],
.footer .footer-newsletter .newsletter-form input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 1px solid var(--accent-color);
  border-radius: 8px;
  font-weight: 900;
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.get-free-audit .php-email-form button[type="submit"]:hover,
.talk .php-email-form button[type="submit"]:hover,
.footer .footer-newsletter .newsletter-form input[type="submit"]:hover {
  background: color-mix(in srgb, var(--accent-color), white 14%);
  transform: translateY(-1px);
}

/* Crew */
.crew {
  --default-color: #fffaf0;
  --contrast-color: #fffaf0;
  background:
    linear-gradient(180deg, #0b0a08 0%, #12100c 100%);
}

.crew .member {
  position: relative;
  overflow: hidden;
  background: var(--surface-color);
  border: 1px solid rgba(255, 250, 238, 0.1);
  border-radius: 8px;
}

.crew .member img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.crew .member .member-info {
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(0deg, rgba(8, 8, 6, 0.95) 0%, rgba(8, 8, 6, 0.76) 34%, rgba(8, 8, 6, 0) 100%);
  transition: opacity 0.25s ease;
}

.crew .member .member-info-content {
  position: absolute;
  right: 20px;
  bottom: 72px;
  left: 20px;
}

.crew .member .member-info-content h4 {
  margin: 0 0 4px;
  color: var(--contrast-color);
  font-size: 21px;
  font-weight: 800;
}

.crew .member .member-info-content span {
  display: block;
  color: rgba(255, 250, 238, 0.72);
  font-size: 14px;
  font-weight: 700;
}

.crew .member .social {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  display: flex;
  gap: 10px;
}

.crew .member .social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  color: var(--heading-color);
  background: rgba(255, 250, 238, 0.09);
  border: 1px solid rgba(255, 250, 238, 0.12);
  border-radius: 8px;
}

.crew .member .social a:hover {
  color: var(--contrast-color);
  background: var(--accent-color);
}

.crew .member:hover .member-info {
  opacity: 1;
}

/* Contact */
.talk {
  background:
    linear-gradient(180deg, #12100c 0%, #090806 100%);
  border-bottom: 1px solid rgba(255, 250, 238, 0.08);
}

.talk .info-item {
  min-height: 106px;
  padding: 22px;
  background: rgba(255, 250, 238, 0.055);
  border: 1px solid rgba(255, 250, 238, 0.1);
  border-radius: 8px;
}

.talk .info-item + .info-item {
  margin-top: 16px;
}

.talk .info-item i {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  margin-right: 16px;
  color: var(--contrast-color);
  background: var(--accent-color);
  border-radius: 8px;
  font-size: 20px;
}

.talk .info-item h3 {
  margin: 0 0 4px;
  font-size: 19px;
  font-weight: 800;
}

.talk .info-item p {
  margin: 0;
  color: rgba(255, 250, 238, 0.7);
  font-size: 15px;
}

/* Footer */
.footer {
  position: relative;
  padding-bottom: 38px;
  color: var(--default-color);
  background: #080806;
  font-size: 14px;
}

.footer .footer-top {
  padding-top: 54px;
  border-top: 1px solid rgba(255, 250, 238, 0.08);
}

.footer .footer-about .logo {
  display: inline-flex;
  margin-bottom: 22px;
  line-height: 1;
}

.footer .footer-about p,
.footer .footer-contact p {
  margin-bottom: 6px;
  color: rgba(255, 250, 238, 0.68);
}

.footer .social-links {
  gap: 10px;
}

.footer .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: rgba(255, 250, 238, 0.74);
  background: rgba(255, 250, 238, 0.055);
  border: 1px solid rgba(255, 250, 238, 0.1);
  border-radius: 8px;
  font-size: 16px;
}

.footer .social-links a:hover {
  color: var(--contrast-color);
  background: var(--accent-color);
}

.footer h4 {
  margin-bottom: 16px;
  color: var(--heading-color);
  font-size: 16px;
  font-weight: 800;
}

.footer .footer-links {
  margin-bottom: 30px;
}

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

.footer .footer-links ul li {
  padding: 7px 0;
}

.footer .footer-links ul a {
  color: rgba(255, 250, 238, 0.62);
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-newsletter p {
  color: rgba(255, 250, 238, 0.68);
}

.footer .footer-newsletter .newsletter-form {
  display: flex;
  gap: 8px;
  margin-top: 22px;
}

.footer .footer-newsletter .newsletter-form input[type="email"] {
  flex: 1 1 auto;
  min-width: 0;
}

.footer .footer-newsletter .newsletter-form input[type="submit"] {
  flex: 0 0 auto;
}

.footer .copyright {
  padding-top: 24px;
  margin-top: 20px;
  border-top: 1px solid rgba(255, 250, 238, 0.08);
}

.footer .copyright p {
  margin: 0;
  color: rgba(255, 250, 238, 0.58);
}

/* Call btn */
.call-btn {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 99999;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: var(--contrast-color);
  background: var(--accent-color);
  border-radius: 50%;
  box-shadow: 0 4px 18px rgba(244, 182, 61, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: callPulse 2.5s ease-in-out infinite;
}

.call-btn i {
  font-size: 22px;
  line-height: 0;
}

.call-btn:hover {
  color: var(--contrast-color);
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 6px 24px rgba(244, 182, 61, 0.5);
  animation: none;
}

@keyframes callPulse {
  0%, 100% { box-shadow: 0 4px 18px rgba(244, 182, 61, 0.35); }
  50% { box-shadow: 0 4px 28px rgba(244, 182, 61, 0.6); }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

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

@media (max-width: 1199px) {
  section,
  .section {
    scroll-margin-top: 68px;
  }

  .hero {
    margin-top: 68px;
    min-height: calc(100svh - 68px);
    padding: 50px 0 50px;
  }

  .hero h1 {
    font-size: 46px;
  }

  .hero .cta-btn {
    min-height: 42px;
    padding: 9px 18px;
    font-size: 13px;
  }
}

@media (max-width: 991px) {
  .section-title p {
    font-size: 30px;
  }

  .arsenal .nav-tabs {
    flex-direction: row !important;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 8px;
  }

  .arsenal .nav-item {
    flex: 0 0 auto;
  }

  .arsenal .nav-link {
    min-width: 200px;
    font-size: 14px;
  }

  .arsenal .tab-content {
    padding: 26px;
  }

  .arsenal .details h3 {
    font-size: 24px;
  }

  .crew .member .member-info {
    opacity: 1;
  }

  .menu .menu-content a {
    font-size: 18px;
    gap: 16px;
  }

  .menu .menu-tech {
    font-size: 14px;
  }

  .get-free-audit .php-email-form button[type="submit"],
  .talk .php-email-form button[type="submit"] {
    min-height: 42px;
    padding: 10px 18px;
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  section,
  .section {
    padding: 36px 0;
  }

  .section-title {
    padding-bottom: 18px;
  }

  .section-title h2::after {
    width: 56px;
  }

  .section-title p {
    font-size: 24px;
  }

  .hero {
    margin-top: 64px;
    min-height: calc(100svh - 64px);
    padding: 40px 0 40px;
    text-align: left;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(8, 8, 6, 0.75) 0%, rgba(8, 8, 6, 0.55) 100%),
      linear-gradient(180deg, rgba(8, 8, 6, 0.08) 0%, rgba(8, 8, 6, 0.85) 100%);
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero p {
    font-size: 15px;
  }

  .hero .cta-btn {
    min-height: 40px;
    padding: 8px 16px;
    font-size: 13px;
  }

  .footer .footer-newsletter .newsletter-form {
    flex-direction: column;
  }

  .footer .footer-newsletter .newsletter-form input[type="submit"] {
    width: 100%;
  }

  .menu .menu-item {
    width: 98% !important;
    margin: 1% !important;
    min-height: auto;
    padding: 16px;
  }

  .menu .menu-content a {
    font-size: 16px;
    gap: 12px;
  }

  .menu .menu-tech {
    font-size: 13px;
  }

  .menu .menu-filters li {
    min-height: 34px;
    padding: 6px 10px;
    font-size: 12px;
  }

  .get-free-audit .php-email-form,
  .talk .php-email-form {
    padding: 18px;
  }

  .get-free-audit .php-email-form button[type="submit"],
  .talk .php-email-form button[type="submit"] {
    min-height: 40px;
    padding: 8px 16px;
    font-size: 13px;
  }

  .call-btn {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 48px !important;
    height: 48px !important;
    right: 20px !important;
    bottom: 20px !important;
  }

  .call-btn i {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 28px;
  }

  .hero p {
    font-size: 14px;
  }

  .section-title p {
    font-size: 22px;
  }

  .hero .hero-actions {
    flex-direction: column;
  }

  .hero .cta-btn {
    width: 100%;
    min-height: 38px;
    padding: 8px 14px;
    font-size: 13px;
  }

  .menu .menu-filters {
    justify-content: flex-start;
  }

  .menu .menu-filters li {
    width: 100%;
    justify-content: center;
  }

  .menu .menu-content a {
    font-size: 15px;
    gap: 10px;
  }

  .arsenal .details h3 {
    font-size: 20px;
  }

  .arsenal .details p {
    font-size: 14px;
  }

  .header .logo .sitename,
  .footer .footer-about .logo .sitename {
    font-size: 24px;
  }
}

@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0s !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  :root {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
