/*
Theme Name: HELIAN.work WordPress Theme
Theme URI: https://helian.work/
Author: Metehan Türkdonmez
Author URI: https://helian.work/
Description: Custom theme for HELIAN.work corporate site. Implements hero and welcome sections per design.
Version: 2.5.0
Text Domain: helian-corp
*/

html {
  box-sizing: border-box;
}
*,
*::before,
*::after {
  box-sizing: inherit;
}

main {
  display: flex;
  flex-direction: column;
  gap: 50px;
  width: 100%;
  overflow-x: hidden;
}

html,
body {
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
button {
  font: inherit;
}

body {
  max-width: 100%;
  overflow-x: hidden;
}

img,
video,
iframe {
  max-width: 100%;
}

:root {
  --bg: #ffffff;
  --text: #2b203b; /* deep purple-ish */
  --muted: #6b6477;
  --accent: #1e096c; /* purple */
  --accent-2: #ff6a00; /* orange */
  --accent-3: #01d171; /* green */
  --card: #fafafa;
  --radius: 16px;
}

/* notranslate: used with translate="no" to signal Google Translate to skip */
.notranslate {
  unicode-bidi: isolate;
}

/* Accessibility helpers */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

html {
  font-size: 16px;
}
body {
  background: var(--bg);
  color: var(--text);
  font-family: "Bricolage Grotesque", "Helvetica", sans-serif;
  line-height: 1.55;
}

section.home-hero-area {
  background: #1d0a6c;
  overflow: hidden;
  position: relative;
}

.home-hero-area .wrapper {
  position: relative;
  z-index: 2;
  padding: 0 24px;
}

section.home-hero-area .home-hero-content {
  --gapper: 6vh;
  --minus-gapper: -6vh;
  display: flex;
  flex-direction: column;
  gap: var(--gapper);
  color: #fff;
  padding: var(--gapper) 0;
}

@media (max-width: 1260px) {
  section.home-hero-area .home-hero-content {
    padding: 0 0 var(--gapper) 0;
  }
}

section.home-hero-area .home-hero-content .big-text-hero {
  font-size: 3em;
  margin: 0;
  color: #01d171;
  font-weight: 400;
  text-align: left;
  line-height: 1.5em;
  /* letter-spacing: -2px; */
}

section.home-hero-area .home-hero-content .big-text-hero strong {
  color: #fff;
  display: block;
}

@media (max-width: 550px) {
  section.home-hero-area .home-hero-content .big-text-hero strong {
    display: contents;
    font-weight: 400;
  }
}

.hero-big-text-area {
  max-width: 33%;
  margin-bottom: 20px;
}

.home-hero-first {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  justify-content: center;
}

@media (max-width: 2400px) {
  section.home-hero-area .home-hero-content .big-text-hero {
    font-size: 2.2em;
    line-height: 1.5em;
  }

  .hero-big-text-area {
    max-width: 44%;
    padding: 0 3%;
  }
}

@media (max-width: 1440px) {
  section.home-hero-area .home-hero-content .big-text-hero {
    font-size: 2.2em;
    line-height: 1.5em;
  }

  .hero-big-text-area {
    max-width: 50%;
    padding: 0 2%;
  }
}

@media (max-width: 1260px) {
  .home-hero-first {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }

  .hero-big-text-area {
    max-width: 90%;
    padding: 0 2%;
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
    text-align: center;
  }
}

.promotion-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  transform: perspective(850px) rotateX(0deg) rotatey(-15deg);
  transition: transform 0.3s ease-in-out;
}

.promotion-hero:hover {
  transform: perspective(850px) rotateX(0deg) rotatey(0deg);
  cursor: pointer;
}

@media (max-width: 1260px) {
  .promotion-hero {
    transform: perspective(850px) rotateX(0deg) rotatey(0deg);
  }
}

.promotion-hero-nav {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: -8%;
  margin-bottom: 8%;
  z-index: 999;
}

.promotion-hero-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  transition: all 0.3s ease-in-out;
  line-height: 1;
  border-radius: 15px;
}

.promotion-hero-nav a.active {
  color: #ff9102;
  cursor: pointer;
}

.promotion-hero-nav a:hover {
  color: #ffd297;
  cursor: pointer;
}

.promotion-hero-nav a.active:hover {
  color: #ff9102;
  cursor: n-resize;
}

.promotion-hero-main-image {
  display: none;
}

.promotion-hero-main-image.active {
  display: block;
}

.promotion-hero-main-image.promotion-hero-main-image-1 svg,
.promotion-hero-main-image.promotion-hero-main-image-2 svg {
  width: 100%;
  max-width: 768px;
  height: auto;
  aspect-ratio: 773 / 479;
}

.promotion-hero-main-image.promotion-hero-main-image-1 {
  width: fit-content;
  position: relative;
}

.promotion-hero-main-image.promotion-hero-main-image-1 img.promotion-hero-icon {
  transform: scale(0.9) !important;
  width: 122px;
}

.promotion-hero-main-image.promotion-hero-main-image-1
  img.promotion-hero-icon:hover {
  transform: scale(1) !important;
  transition: transform 0.3s ease-in-out !important;
  cursor: pointer !important;
}

.promotion-hero-main-image.promotion-hero-main-image-1.active .icon-1 {
  position: absolute;
  left: 5%;
  top: 25%;
  /* yuklenirken yukaridan asagiya kayarak fade ile gelen keyframe */
  animation: icon-fade-in 1s ease-in-out 1 both;
}

.promotion-hero-main-image.promotion-hero-main-image-1.active .icon-2 {
  position: absolute;
  left: 45%;
  bottom: 19.5%;
  /* yuklenirken yukaridan asagiya kayarak fade ile gelen keyframe */
  animation: icon-fade-in-right 1s 1s ease-in-out 1 both;
}

.promotion-hero-main-image.promotion-hero-main-image-1.active .icon-3 {
  position: absolute;
  right: 5%;
  top: 25%;
  /* yuklenirken yukaridan asagiya kayarak fade ile gelen keyframe */
  animation: icon-fade-in-right-top 1s 0.5s ease-in-out 1 both;
}

.promotion-hero-main-image.promotion-hero-main-image-2 {
  width: fit-content;
  position: relative;
}

.promotion-hero-main-image.promotion-hero-main-image-2 img.promotion-hero-icon {
  width: 122px;
  transform: scale(0.9) !important;
}

.promotion-hero-main-image.promotion-hero-main-image-2
  img.promotion-hero-icon:hover {
  transform: scale(1) !important;
  transition: transform 0.3s ease-in-out !important;
  cursor: pointer !important;
}

.promotion-hero-main-image.promotion-hero-main-image-2.active .icon-4 {
  position: absolute;
  left: 5%;
  top: 25%;
  /* yuklenirken yukaridan asagiya kayarak fade ile gelen keyframe */
  animation: icon-fade-in 1s ease-in-out 1 both;
}

.promotion-hero-main-image.promotion-hero-main-image-2.active .icon-5 {
  position: absolute;
  left: 40%;
  bottom: 24%;
  /* yuklenirken yukaridan asagiya kayarak fade ile gelen keyframe */
  animation: icon-fade-in-right 1s 1s ease-in-out 1 both;
}

.promotion-hero-main-image.promotion-hero-main-image-2.active .icon-6 {
  position: absolute;
  right: 5%;
  top: 37%;
  /* yuklenirken yukaridan asagiya kayarak fade ile gelen keyframe */
  animation: icon-fade-in-right-top 1s 0.5s ease-in-out 1 both;
}

@keyframes icon-fade-in {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes icon-fade-in-right {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes icon-fade-in-right-top {
  0% {
    opacity: 0;
    transform: translateY(-20px) translateX(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0) translateX(0);
  }
}

/* promotion-hero-time-progress-bar
progress-bar-fill */

.promotion-hero-time-progress-bar {
  position: relative;
  width: 100%;
  max-width: 300px;
  border-radius: 1.5px;
  height: 3px;
  background: #ffffff33;
  z-index: 1;
  margin-top: -15%;
  margin-bottom: 15%;
}

.promotion-hero-time-progress-bar .progress-bar-fill {
  width: 0;
  height: 100%;
  background: #ffffff89;
  animation: progress-bar-animation 10s linear 1 forwards;
}

@media (max-width: 780px) {
  img.promotion-hero-icon {
    width: 17vw !important;
  }

  .promotion-hero-nav {
    display: none;
  }

  .promotion-hero-time-progress-bar {
    max-width: 50vw;
    margin-top: -8%;
    margin-bottom: 8%;
  }
}

section.home-hero-area .home-hero-content h1 {
  font-size: 18px;
  text-align: center;
  font-weight: 400;
  font-family: "Helvetica", sans-serif;
  margin: calc(var(--minus-gapper) / 4) auto calc(var(--minus-gapper) / 1.5)
    auto;
}

section.home-hero-area .home-hero-content p.desc {
  font-size: 2em;
  margin: 0;
  color: #fff;
  max-width: 600px;
}

section.home-hero-area .home-hero-content p.desc a {
  color: #fff;
  text-decoration: none;
}

section.home-hero-area .home-hero-content p.sub-desc {
  font-size: 1em;
  margin: 0;
  color: #977eff;
}

section.home-hero-area .home-hero-content .home-hero-cta {
  margin-top: 20px;
}

section.home-hero-area .home-hero-content .home-hero-cta .button-primary {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #01d171;
  color: white;
  padding: 21px 20px;
  border-radius: 0px;
  text-decoration: none;
  justify-content: center;
  width: -webkit-fill-available;
  max-width: fit-content;
  cursor: pointer;
}

section.home-hero-area .home-hero-content .home-hero-cta .button-primary:hover {
  background: var(--accent-2);
}

section.home-hero-area .home-hero-content .home-hero-cta .button-primary span {
  text-align: right;
  font-weight: 500;
  font-size: 20px;
  line-height: 1;
  opacity: 1 !important;
}

section.home-hero-area .home-hero-content .home-hero-cta .button-primary svg {
  width: 40px;
  height: 40px;
  transition: transform 0.3s ease;
}

section.home-hero-area
  .home-hero-content
  .home-hero-cta
  .button-primary:hover
  svg {
  /* rotate */
  transform: rotate(360deg);
}

section.home-hero-area
  .home-hero-content
  .home-hero-cta
  .button-primary
  svg
  path:last-child {
  fill: #01d171;
}

section.home-hero-area
  .home-hero-content
  .home-hero-cta
  .button-primary:hover
  svg
  path:last-child {
  fill: var(--accent-2);
}

.hero-hor-scroll-area-wrapper {
  font-family: "helvetica", sans-serif;
}

.hero-hor-scroll-area {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  flex-wrap: nowrap;
  -webkit-overflow-scrolling: touch;
  width: auto;
  position: relative;
  padding: 20px 50px;
  justify-content: start;

  /* Firefox için kaydırma çubuğunu gizler */
  scrollbar-width: none;

  /* Internet Explorer ve Edge için kaydırma çubuğunu gizler */
  -ms-overflow-style: none;
}

/* Webkit tabanlı tarayıcılar (Chrome, Safari, yeni Edge) için kaydırma çubuğunu gizler */
.hero-hor-scroll-area::-webkit-scrollbar {
  display: none;
}

.hero-hor-scroll-item {
  background: #ddd;
  border-radius: 20px;
  padding: 50px 0 0 50px;
  display: flex;
  justify-content: space-between;
  gap: 50px;
  flex-shrink: 0;
  width: 100%;
  position: relative;
  overflow: hidden;
  width: max-content;
  transform: scale(0.9);
  cursor: pointer;
}

.hero-hor-scroll-item:hover {
  filter: blur(0);
  opacity: 1;
}

.hero-hor-scroll-item.active {
  box-shadow: 0 4px 18px -6px rgba(60, 9, 108, 0.12);
  /* border: 4px solid #fff; */
  transform: scale(1);
  filter: blur(0);
  opacity: 1;
}

.hor-scroll-image {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 20px;
}

.hor-scroll-image svg {
  width: 100%;
  aspect-ratio: 1 / 1;
}

.hor-scroll-image a {
  margin-bottom: 20px;
  text-decoration: none;
  color: #fff;
  opacity: 0;
}

.hero-hor-scroll-item.active .hor-scroll-image a {
  opacity: 1;
}

.hero-hor-scroll-item.item-1 {
  background: #2caf68;
  --item-color: #2caf68;
}

.hero-hor-scroll-item.item-2 {
  background: #fad665;
  --item-color: #fad665;
}

.hero-hor-scroll-item.item-3 {
  background: #6f92f2;
  --item-color: #6f92f2;
}

.hero-hor-scroll-item.item-4 {
  background: #ff6d00;
  --item-color: #ff6d00;
}

.hero-hor-scroll-item.item-5 {
  background: #8e44ad;
  --item-color: #8e44ad;
}

.hero-hor-scroll-item.item-6 {
  background: #5d3fd3;
  --item-color: #5d3fd3;
}

.hor-scroll-text {
  /* width: 66%; */
  padding: 0 0 0 0;
  background: #00000019;
  border-radius: 20px 0 0 0;
}

.hor-scroll-text-span {
  color: #fff;
  display: block;
  padding: 10px 20px;
  margin: 0;
  line-height: 1;
  font-weight: 400;
}

.hor-scroll-text .hor-scroll-desc-checklist {
  background: #fff;
  color: #686868;
  padding: 20px;
  border-radius: 20px 0 0 0;
  height: calc(100% - 35px);
}

.hor-scroll-desc-checklist-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.hor-scroll-desc-checklist-item-icon {
  width: 16px;
  height: 16px;
}

.hor-scroll-text .hor-scroll-desc-checklist {
  background: #fff;
  color: #686868;
  padding: 20px;
  border-radius: 20px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-hor-scroll-area-offset {
  display: none;
}

@media (max-width: 1440px) {
  .hero-hor-scroll-area {
  }

  .hero-hor-scroll-item {
    padding: 25px 0 0 25px;
    gap: 15px;
  }

  .hor-scroll-image {
    padding-right: 20px;
  }

  .hor-scroll-image svg {
    width: 80px;
    height: auto;
  }
}

@media (max-width: 550px) {
  section.home-hero-area .home-hero-content {
    --gapper: 1vh;
    --minus-gapper: -1vh;
  }

  .hero-hor-scroll-area {
    padding: 20px 20px;
  }

  .hero-hor-scroll-item {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 15px 0 0 25px;
    gap: 15px;
    /* scale 1 */
    transform: scale(1);
  }

  .hor-scroll-image {
    padding-right: 20px;
    flex-direction: row-reverse;
    justify-content: space-between;
    width: 100%;
    align-items: flex-start;
  }

  .hor-scroll-image a {
    margin: 0;
    background: #fff;
    line-height: 1;
    padding: 7px 10px;
    border: 2px solid #ffff;
    font-weight: 400;
    border-radius: 10px;
    color: var(--item-color);
  }

  .hor-scroll-text {
    height: 100%;
  }
}

.hero-feature-numbers {
  font-family: "helvetica", sans-serif;
}

.hero-feature-numbers-wrapper {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 40px;
}

.hero-feature-numbers .hero-feature-numbers-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}

.hero-feature-numbers
  .hero-feature-numbers-item
  .hero-feature-numbers-item-number {
  font-size: 38px;
  font-weight: 400;
  color: #fff;
}

.hero-feature-numbers
  .hero-feature-numbers-item
  .hero-feature-numbers-item-text {
  font-size: 14px;
  color: #fff;
  text-align: left;
  max-width: 150px;
}

@media (max-width: 1260px) {
  .hero-feature-numbers-wrapper {
    justify-content: space-evenly;
    align-items: center;
    gap: 3vw;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .hero-feature-numbers .hero-feature-numbers-item {
    width: 45%;
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    padding: 0 0;
    border: 1px solid #291481;
    border-radius: 20px;
    padding: 0 10px;
  }

  .hero-feature-numbers
    .hero-feature-numbers-item
    .hero-feature-numbers-item-text {
    max-width: 100%;
  }
}

@media (max-width: 550px) {
  .hero-feature-numbers .wrapper {
    padding: 0;
  }

  .hero-feature-numbers-wrapper {
    gap: 2vh 0vw;
    padding: 0 15px;
  }

  .hero-feature-numbers .hero-feature-numbers-item {
    width: 48%;
    display: flex;
    justify-content: flex-start;
    padding: 0 10px;
    gap: 5px;
    border: none;
  }

  .hero-feature-numbers
    .hero-feature-numbers-item
    .hero-feature-numbers-item-number {
    font-size: 20px;
  }

  .hero-feature-numbers
    .hero-feature-numbers-item
    .hero-feature-numbers-item-text {
    font-size: 12px;
    width: 100%;
    text-align: left;
  }
}

@media (max-width: 375px) {
  .hero-feature-numbers .hero-feature-numbers-item {
    width: 48%;
    display: flex;
    justify-content: flex-start;
    padding: 0 20px;
    gap: 5px;
    flex-direction: column;
    align-items: center;
  }

  .hero-feature-numbers-wrapper {
    gap: 2vh 0vw;
    align-items: flex-start;
  }

  .hero-feature-numbers
    .hero-feature-numbers-item
    .hero-feature-numbers-item-text {
    text-align: center;
  }
}

.home main {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.material-symbols-outlined {
  transition: opacity 0.3s ease-in-out; /* Yumuşak bir geçiş efekti için */
}

.hero h1 .material-symbols-outlined {
  display: inline-block;
  width: 44px;
  height: 44px;
}

.fonts-loaded .material-symbols-outlined {
  display: inline-block;
  opacity: 1;
}

.wrapper {
  max-width: 1440px;
  margin: 0 auto;
  padding: 24px 12px;
}

@media (max-width: 1440px) {
  .wrapper {
    padding: 24px 24px;
  }
}

.wrapper.header-wrapper {
  background: #1e096c;
  animation: headerGradShift 20s ease-in-out infinite;
  padding: 0px;
  margin: 0 auto;
  width: 100%;
  max-width: 100%;
}

@keyframes headerGradShift {
  0% {
    background-position: 0% 50%;
  }
  25% {
    background-position: 50% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  75% {
    background-position: 50% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.header {
  padding: 10px 10px !important;
  transition: padding 0.3s ease;
  background: #1e096c;
  box-shadow: 0 4px 16px -6px rgba(0, 0, 0, 0.08);
  max-width: 100% !important;
}

.sticky .header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 110;
  background: #1e096c;
  box-shadow: 0 4px 16px -6px rgba(0, 0, 0, 0.08);
  max-width: 100% !important;
  height: 68px;
}

.header-container {
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 0;
  height: 48px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

a.brand {
  text-decoration: none;
}

.brand .brand-logo-helian {
  font-family: "Unbounded", ui-sans-serif, system-ui;
  font-size: 28px;
  line-height: 1;
  font-weight: 300;
  color: #fff;
  padding: 0px;
  height: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand .brand-logo-helian svg:first-child {
  animation: logo-spin 1.2s cubic-bezier(0.15, 0.85, 0.35, 1.1) 10s 2 both;
}

@media (max-width: 550px) {
  .brand .brand-logo-helian svg:last-child {
    width: 170px;
  }
}

@keyframes logo-spin {
  0% {
    transform: rotate(0deg);
  }
  60% {
    transform: rotate(320deg);
  }
  80% {
    transform: rotate(355deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.brand .brand-logo-helian b {
  font-weight: 500;
}

.brand img {
  width: 280px;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
}
.nav .menu {
  list-style: none;
  display: flex;
  gap: 28px;
  padding: 0 20px;
  margin: 0;
  align-items: center;
}
.nav .menu li {
  margin: 0;
  position: relative;
}
.nav .menu a {
  color: #fff;
  font-size: 16px;
  text-decoration: none;
  font-weight: 400;
  font-family: "helvetica";
  letter-spacing: 0.3px;
}

.nav .menu li:hover a {
  color: #00d275;
}

.nav .menu li ul.submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 0;
  box-shadow: 0 4px 18px -6px rgba(60, 9, 108, 0.1);
  list-style: none;
  padding: 15px;
  margin: 0px 0 0 0;
  min-width: 200px;
  z-index: 10;
}

.nav .menu li:hover ul.submenu {
  display: block;
}

.nav .menu li ul.submenu li {
  margin: 0;
}

.nav .menu li ul.submenu li a {
  color: var(--text);
  font-size: 1.1em;
  font-weight: 400;
  display: block;
  padding: 8px 12px;
  border-radius: 0;
}

.nav .menu li ul.submenu li a:hover {
  background: var(--card);
  color: var(--accent-2);
}

/* Header Schedule Button */
.header-schedule {
  font-family: "Helvetica", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  background: var(--accent-3);
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 155px;
}

.header-schedule:hover {
  background: var(--accent-2);
}

.header-right-area {
  width: 282px;
  display: flex;
  justify-content: end;
}

.hero {
  /* padding: 36px 0 12px; */
}

.post-template-default .hero {
  padding: 36px 0 12px;
}

.contact-intro {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.calendly-wrapper {
  flex: 1 1 600px;
  min-width: 340px;
}
.contact-side {
  flex: 0 0 340px;
  max-width: 380px;
}
.contact-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 18px;
  padding: 28px 26px 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: 0 4px 18px -6px rgba(60, 9, 108, 0.06);
}
.contact-card h4 {
  margin: 0;
  font-family: "Unbounded";
  font-weight: 500;
  font-size: 22px;
  color: var(--accent);
}
.contact-card .lead {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  color: var(--text);
  opacity: 0.85;
}
.contact-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 13px;
}
.contact-points li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.35;
}
.contact-points .material-symbols-outlined {
  font-size: 18px;
  color: var(--accent-2);
  line-height: 1;
}
.wa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--accent-2);
  color: #fff;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 500;
  font-family: "Unbounded", ui-sans-serif;
  box-shadow: 0 4px 14px -4px rgba(255, 106, 0, 0.4);
  transition: 0.3s;
}
.wa-btn:hover {
  background: var(--accent);
}
.contact-card .note {
  font-size: 12px;
  color: var(--muted);
}
.contact-card .note a {
  color: var(--accent-2);
  text-decoration: none;
}
@media (max-width: 900px) {
  .contact-side {
    flex: 1 1 100%;
    max-width: none;
  }
}
.works-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(4, 1fr);
}
.work-item {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 18px 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.25s, border-color 0.25s;
  text-align: left;
}
.work-item:hover {
  box-shadow: 0 4px 18px -4px rgba(60, 9, 108, 0.12);
  border-color: #ddd;
}
.work-logo {
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 4px;
}

.inline-logo {
  font-family: "Unbounded", ui-sans-serif;
  display: inline-block;
  color: #ffffff;
}

.alinti {
  font-size: max(2.5vw, 36px);
  max-width: 1440px;
  margin: 0 0 70px 0;
  text-align: center;
  font-family: "Unna", serif;
  color: #8064f2;
}

#tanitim {
  border: 2px solid #ff6a00;
  border-radius: 20px;
  padding: 20px 40px;
  background: linear-gradient(180deg, #ff9c02, #ff6a00);
  color: #fff;
}

#tanitim h1 {
  text-align: center;
}

#tanitim h1 .inline-logo {
  width: 100%;
  margin: auto;
}

span.hakkimizda-hero-span-1 {
  font-family: "Unna", serif;
  font-style: italic;
  color: #b4a4fa;
}

span.hakkimizda-hero-span-2 {
  font-family: "Unna", serif;
  font-style: italic;
  color: #e0d9ff;
  /* font-weight: bolder; */
}

.work-logo img {
  width: 120px;
  filter: grayscale(1);
  opacity: 0.9;
  transition: filter 0.3s, opacity 0.3s;
  margin: 0;
  height: auto;
}
.work-item:hover .work-logo img {
  filter: grayscale(0);
  opacity: 1;
}
.works-grid .work-logo img {
  filter: none !important;
  opacity: 1 !important;
}
.works-grid .work-item:hover .work-logo img {
  filter: none;
  opacity: 1;
}
.work-title {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--accent-2);
  font-family: "Unbounded", ui-sans-serif;
}
.work-desc {
  margin: 0;
  font-size: 13px;
  line-height: 1.4;
  color: var(--muted);
}
.work-item.cta {
  border: 1px dashed var(--accent-2);
  background: linear-gradient(135deg, #fff8f0, #ffffff);
  align-items: flex-start;
  justify-content: flex-start;
}
.work-item.cta .work-title {
  color: var(--accent-2);
  font-size: 18px;
}
.work-item.cta .work-desc {
  font-size: 14px;
}
.work-item.cta .cta-btn {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--accent-2);
  color: #fff;
  border-radius: 10px;
  font-size: 14px;
  text-decoration: none;
  font-weight: 500;
}
.work-item.cta .cta-btn:hover {
  background: var(--accent);
}
@media (max-width: 1100px) {
  .works-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 800px) {
  .works-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 520px) {
  .works-grid {
    grid-template-columns: 1fr;
  }
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.hero-flex-area {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
}

.secondary-hero h1 {
  font-family: "Helvetica", sans-serif;
  color: var(--accent-2) !important;
  font-size: 2.3em !important;
  padding: 0 !important;
  margin: 0 !important;
  letter-spacing: -1px !important;
}

.hero-flex-area-text {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.hero-flex-area p {
  font-family: "Helvetica", sans-serif;
  color: #2b1f3b;
  font-size: 1.2em;
  padding: 0;
  margin: 0;
}

a.button-primary.tanitim-videosu-openner {
  font-family: "Helvetica", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  background: var(--accent-3);
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: fit-content;
  text-decoration: none;
  display: flex;
  gap: 15px;
  margin: 20px 0;
}

@media (max-width: 768px) {
  .secondary-hero h1 {
    font-size: 1.8em !important;
  }

  .hero-flex-area p {
    text-align: center;
  }

  a.button-primary.tanitim-videosu-openner {
    display: none !important;
  }

  .hero-feature-numbers-wrapper {
    margin-bottom: 20px;
  }
}

.hero-flex-area .hero-text-area {
  display: flex;
  gap: 20px;
  width: 60%;
  flex-direction: column;
  justify-content: center;
}

.hero-video-area {
  width: 100%;
  border-radius: 20px;
  border: 1px solid #ddd;
  overflow: hidden;
  display: flex;
  height: fit-content;
  max-width: 720px;
}

.hero-video-poster {
  width: 100%;
  object-fit: cover;
  height: auto;
}

.hero .badge img {
  width: 104px;
  height: 104px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: badge-spin 1.2s cubic-bezier(0.15, 0.85, 0.35, 1.1) 2 both;
}

.hero .badge svg {
  width: 104px;
  height: 104px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: badge-spin 1.2s cubic-bezier(0.15, 0.85, 0.35, 1.1) 2 both;
}

@keyframes badge-spin {
  0% {
    transform: rotate(0deg);
  }
  60% {
    transform: rotate(320deg);
  }
  80% {
    transform: rotate(355deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.hero h1 {
  font-weight: 400;
  font-size: clamp(28px, 5vw, 42px);
  margin: 0;
  color: var(--accent-2);
  letter-spacing: -2px;
}

body.page .hero h1 {
  font-size: clamp(28px, 7vw, 42px);
  margin: 8px 0 14px;
  min-height: fit-content;
}

body.home .hero h1 {
  margin: 0;
}

.hero h1 .material-symbols-outlined {
  font-size: 44px;
  line-height: 1;
}

.hero h1 strong {
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0px;
}

.hero h3 {
  font-family: "Unbounded", ui-sans-serif, system-ui;
  font-size: clamp(24px, 4vw, 38px);
  margin: 8px 0 14px;
  color: var(--accent);
  font-weight: 400;
}

.hero h3 .material-symbols-outlined {
  font-size: 44px;
  line-height: 1;
}

.hero p.desc {
  color: #320a6c;
  margin: 0;
  font-size: 22px;
  font-weight: 400;
  font-family: "helvetica";
  line-height: 1.5em;
}

.hero p.desc a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}

.hero p.sub-desc {
  color: var(--muted);
  margin: 0;
  font-size: 18px;
  font-weight: 100;
  line-height: 1.5;
}

.hero.page-hero h1 {
  color: #ff6a00;
  font-weight: 400;
  text-align: left;
}

.helian-accordion-grid {
  display: grid;
  gap: 24px;
  margin-bottom: 48px;
  grid-template-columns: 1fr;
}

/* Tablet ve masaüstü için (768px+) */
@media (min-width: 768px) {
  .helian-accordion-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.helian-accordion-row {
  display: contents;
}
.helian-accordion-card {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 18px;
  height: fit-content;
  overflow: hidden;
  transition: box-shadow 0.2s;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.02);
  /* position: relative; */
}
.helian-accordion-header {
  font-family: "Helvetica", sans-serif;
  font-weight: 400;
  font-size: 24px;
  padding: 20px 24px;
  cursor: pointer;
  background: #fff;
  border: none;
  outline: none;
  width: 100%;
  text-align: left;
  transition: background 0.15s;
  color: #ff9102;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.helian-accordion-header .material-icons {
  font-size: 28px;
  color: #ff9102;
  transition: color 0.15s;
}
.helian-accordion-header:hover {
  /* background: #f7f7f7; */
  color: #1d0a6c;
}

.helian-accordion-header:hover .material-icons {
  color: #1d0a6c;
}

.active .helian-accordion-header {
  color: #1d0a6c;
}

.active .helian-accordion-header .material-icons {
  color: #1d0a6c;
}

.active .helian-accordion-header:hover {
  background: #fff;
}

.helian-accordion-content {
  font-family: "Bricolage Grotesque";
  font-size: 18px;
  color: var(--muted);
  padding: 0 24px 20px 24px;
  display: none;
  background: #fff;
  font-weight: 200;
  width: 100%;
  border-radius: 20px;
}

.helian-accordion-card.active .helian-accordion-content {
  font-family: "Bricolage Grotesque";
  font-size: 18px;
  color: var(--muted);
  padding: 0 24px 20px 24px;
  display: block;
  background: #fff;
  font-weight: 200;
}

.helian-accordion-card.active {
  overflow: visible;
}

.hero.about-hero div.desc {
  color: var(--muted);
  margin: 0;
  font-size: 24px;
  font-weight: 100;
}

.hero.about-hero div.desc span {
  opacity: 0.8;
}

.cta-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 30px;
  flex-wrap: nowrap;
  width: min(95vw, 1414px);
  overflow: hidden;
}

.cta-row .button-primary {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #01d171;
  color: white;
  padding: 21px 20px;
  /* border-radius: 18px; */
  text-decoration: none;
  justify-content: center;
  width: -webkit-fill-available;
  max-width: fit-content;
  cursor: pointer;
}

.cta-row .button-primary:hover {
  background: var(--accent-2);
}

.cta-row .button-primary span {
  text-align: right;
  font-weight: 500;
  font-size: 20px;
  line-height: 1;
  opacity: 1 !important;
}

.cta-row .button-primary svg {
  width: 40px;
  height: 40px;
  transition: transform 0.3s ease;
}

.cta-row .button-primary:hover svg {
  /* rotate */
  transform: rotate(360deg);
}

.cta-row .button-primary svg path:last-child {
  fill: #01d171;
}

.cta-row .button-primary:hover svg path:last-child {
  fill: var(--accent-2);
}

/* Logos marquee */
.logo-strip {
  width: calc(100% - 88px);
  overflow: hidden;
  position: relative;
  --gap: 20px;
  padding-block: 4px;
  border: 1px solid #ddd;
  border-radius: 18px;
}

.logo-strip .logo-track {
  display: inline-flex;
  gap: var(--gap);
  align-items: center;
  white-space: nowrap;
  will-change: transform;
  animation: logo-scroll 40s linear infinite;
  width: max-content;
}
.logo-strip:hover .logo-track {
  animation-play-state: paused;
}
.logo-strip img {
  margin-right: var(--gap);
  opacity: 0.9;
  filter: grayscale(1);
  transition: opacity 0.2s ease, filter 0.2s ease;
  transform: scale(0.8);
  width: auto;
  height: 50px;
  margin-top: 5px;
}
.logo-strip img:last-child {
  margin-right: 0;
}
.logo-strip img:hover {
  opacity: 1;
  filter: grayscale(0);
}
@keyframes logo-scroll {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}

.founder-message {
  display: flex;
  flex-direction: row;
  gap: 50px;
  /* max-width: calc(1440px - 48px); */
}

.welcome {
  display: flex;
  flex-direction: column;
  gap: 25px;
  padding: 50px;
  background: var(--card);
  border-radius: 18px;
  width: 70%;
}

.welcome .welcome-title {
  font-family: "Unbounded", ui-sans-serif;
  font-size: 28px;
  color: var(--accent-2);
  margin: 0 0 8px;
  font-weight: 400;
}

.welcome p {
  color: #000000a8;
  font-size: 14px;
  font-weight: 100;
  line-height: 25px;
}

.welcome p b {
  font-weight: 700;
}

.welcome p a {
  font-weight: 700;
  color: var(--accent-2);
  text-decoration: underline;
}

.founder {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}
.founder img {
  width: 60px;
  height: 60px;
  border-radius: 100%;
  object-fit: cover;
}
.founder .meta {
  line-height: 1.2;
}
.founder .meta .name {
  font-weight: 400;
  font-size: 21px;
  color: #777777;
}
.founder .meta .title {
  font-weight: 400;
  color: #0606065e;
  font-size: 14px;
}

.founder.founder-hakkimizda-hero {
  display: flex;
  justify-content: center;
  margin: 0 0 50px 0;
}

.founder.founder-hakkimizda-hero .name {
  color: #fff;
}

.founder.founder-hakkimizda-hero .title {
  color: #fff;
}

span.hakkimizda-hero-span-1 {
  font-family: "Unna", serif;
  font-style: italic;
}

.abst {
  display: flex;
  justify-content: center;
  align-items: center;
  /* padding: 20px; */
  position: relative;
  overflow: hidden;
  width: fit-content;
  margin: 0 auto;
}

.abst img {
  max-width: 100%;
  height: 100%;
  border-radius: 18px;
}

/* Word cloud overlay */
.word-cloud {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  padding: 30px;
  pointer-events: none;
}
.wc-row {
  display: flex;
  gap: 28px;
  font-family: "Unbounded", ui-sans-serif;
  font-size: clamp(14px, 1.2vw, 20px);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.92);
  white-space: nowrap;
  will-change: transform;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
}
.wc-row .wc-word {
  background: rgba(60, 9, 108, 0.55);
  padding: 6px 14px 7px;
  border-radius: 40px;
  backdrop-filter: blur(4px) saturate(160%);
  -webkit-backdrop-filter: blur(4px) saturate(160%);
  letter-spacing: 0.5px;
}
.wc-row.dir-right {
  --dir: 1;
}
.wc-row.dir-left {
  --dir: -1;
}

section.blue-hero {
  width: 100%;
  background: #1d0a6c;
  margin: 0;
  padding: 15px;
  display: flex;
  flex-direction: column;
  color: #fff;
}

.blue-hero-main-content h1 {
  font-size: 2.3em;
  margin: 0;
  color: #fff !important;
}

.blue-hero-main-content p.hero-desc {
  font-size: 1.2em;
  margin: 10px 0 0 0;
  color: #fff;
  max-width: 600px;
  font-family: "Helvetica", sans-serif;
}

.hero-statistic-number {
  display: flex;
  gap: 20px;
  margin: 30px 0 35px 0;
}

.statistic-number-item {
  display: flex;
  flex-direction: column;
  background: #00000024;
  align-items: center;
  border-radius: 10px;
  padding: 15px;
}

.statistic-number-item .number {
  font-size: 56px;
  color: #ff9100;
}

.statistic-number-item .label {
  font-size: 14px;
  color: #fff;
}

.blue-hero-main-image {
  transform: perspective(850px) rotateX(0deg) rotatey(-15deg);
  transition: transform 0.3s ease-in-out;
}

.blue-hero-main-image:hover {
  transform: perspective(850px) rotateX(0deg) rotatey(0deg) scale(1);
}

.blue-hero-about-image.blue-hero-main-image {
  transform: perspective(850px) rotateX(0deg) rotatey(0deg);
}

.blue-hero-main-image-cro.blue-hero-main-image {
  transform: perspective(850px) rotateX(0deg) rotatey(-7deg);
  transition: transform 0.3s ease-in-out;
}

.blue-hero-main-image-cro.blue-hero-main-image:hover {
  transform: perspective(850px) rotateX(0deg) rotatey(0deg) scale(1);
}

.blue-hero-main-image-cro.blue-hero-main-image img:last-child {
  transform: translateY(-55%) translateX(-15%);
  box-shadow: 18px -18px 10px 10px rgba(60, 9, 108, 0.12);
  transition: transform 1s ease-in-out, box-shadow 0.3s ease-in-out;
  border-radius: 30px;
  animation: onePerHover 3s ease-in-out infinite;
}

@keyframes onePerHover {
  0%,
  100% {
    transform: translateY(-55%) translateX(-15%);
  }
  50% {
    transform: translateY(-60%) translateX(-15%);
  }
}

.blue-hero-main-image-cro.blue-hero-main-image:hover img:last-child {
  transform: translateY(-70%) translateX(-5%);
  box-shadow: 18px -18px 10px 10px rgba(60, 9, 108, 0.12);
  z-index: 5;
  /* animation: float 3s ease-in-out infinite; */
}

.blue-hero-main-image-cro.blue-hero-main-image:hover img:first-child {
  z-index: 10;
}

.blue-hero-main-image-cro.blue-hero-main-image {
  max-height: 450px;
}

@media (max-width: 960px) {
  .blue-hero-main-image {
    transform: perspective(850px) rotateX(0deg) rotatey(0deg);
  }

  .blue-hero-main-image-cro.blue-hero-main-image {
    transform: perspective(850px) rotateX(0deg) rotatey(0deg);
    transition: transform 0.3s ease-in-out;
  }

  .blue-hero-main-image-cro.blue-hero-main-image {
    padding: 30px;
    margin-right: -30px;
  }
  .blue-hero-main-image-cro.blue-hero-main-image img:first-child {
    /* scale 0.9 */
    transform: scale(0.9) translateY(0%) translateX(0%);
  }
  .blue-hero-main-image-cro.blue-hero-main-image img:last-child {
    transform: translateY(0%) translateX(0%);
    box-shadow: 18px -18px 10px 10px rgba(60, 9, 108, 0.12);
    transition: transform 1s ease-in-out, box-shadow 0.3s ease-in-out;
    border-radius: 30px;
    animation: onePerHoverMobile 3s ease-in-out infinite;
  }

  @keyframes onePerHoverMobile {
    0%,
    100% {
      transform: translateY(-55%) translateX(0%);
    }
    50% {
      transform: translateY(-60%) translateX(0%);
    }
  }

  .blue-hero-main-image-cro.blue-hero-main-image:hover img:last-child {
    transform: translateY(-70%) translateX(0%);
    box-shadow: 18px -18px 10px 10px rgba(60, 9, 108, 0.12);
    z-index: 5;
    /* animation: float 3s ease-in-out infinite; */
  }

  .blue-hero-main-content h1 {
    text-align: center !important;
    color: #fff !important;
  }
}

.blue-hero-main-image-cro-items {
  max-height: 57vw;
}

/* 
@keyframes float {
  0%, 100% {
    transform: translateY(-55%) translateX(0%);
  }
  50% {
    transform: translateY(-60%) translateX(0%);
  }
} */

.blue-hero-main {
  display: flex;
  justify-content: center;
  gap: 6vw;
}

.blue-hero-schedule {
  font-family: "Helvetica", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  background: var(--accent-3);
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: fit-content;
  border-radius: 0;
  text-decoration: none;
  margin: 20px 0;
  display: block;
}

.blue-hero-number-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3vw;
  margin: 6vh 0;
}

a.button-detail-preview {
  border: 2px solid #fff;
  width: fit-content;
  padding: 10px 15px;
  margin: 0 auto 3vh auto;
  text-decoration: none;
  color: #fff;
  font-family: "Helvetica", sans-serif;
}

@media (max-width: 1024px) {
  .blue-hero-main {
    flex-direction: column-reverse;
    gap: 30px;
    align-content: center;
    align-items: center;
  }

  .blue-hero-main-content {
    text-align: center;
  }

  .blue-hero-main-image {
    width: fit-content;
    margin-left: -6%;
    margin-bottom: 2%;
    padding: 0 7%;
  }

  .hero-statistic-number {
    justify-content: center;
  }

  .blue-hero-main-cta a {
    margin: 20px auto 0 auto;
  }
}

@media (max-width: 768px) {
  .statistic-number-item {
    width: 30%;
  }

  .statistic-number-item .number {
    font-size: 42px;
  }
  .statistic-number-item .label {
    font-size: 12px;
    text-align: center;
  }

  .blue-hero-number-bar {
    flex-direction: column;
  }

  .hero-statistic-number {
    gap: 10px;
  }
}

@media (max-width: 450px) {
  .blue-hero-main-content h1 {
    font-size: 2em;
  }

  .blue-hero-main-content p.hero-desc {
    font-size: 1em;
    max-width: 100%;
    padding: 0 15px;
  }

  .statistic-number-item .number {
    font-size: 36px;
  }
  .statistic-number-item .label {
    font-size: 12px;
  }
}

.footer {
  padding: 40px 0;
  color: var(--muted);
  font-size: 0.9rem;
}

/* New Footer */
.site-footer {
    background: #0f0d18;
    color: #d2cfe0;
    font-size: 14px;
    line-height: 1.5;
    position: relative;
    z-index: 999;
}
.site-footer a {
  color: #fff;
  text-decoration: none;
}
.site-footer a:hover {
  color: var(--accent-2);
}
.footer-top {
  padding: 70px 0 40px;
}
.footer-grid {
  display: grid;
  gap: 50px 60px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  align-items: start;
}
.footer-brand {
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  cursor: pointer;
}
.brand-mark {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Unbounded";
  font-size: 26px;
  font-weight: 300;
  color: #fff;
}
.brand-mark b {
  font-weight: 500;
}
.footer-brand .tagline {
  margin: 0;
  font-size: 13px;
  color: #b6afc5;
}
.footer-brand .address {
  font-size: 12px;
  color: #9e97ac;
  line-height: 1.4;
}
.footer-heading {
  margin: 6px 0 16px;
  font-size: 18px;
  letter-spacing: 0.5px;
  font-weight: 400;
  text-transform: uppercase;
  font-family: "Bricolage Grotesque";
  color: #fff;
}
.footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-list.two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 26px;
  row-gap: 10px;
}
.footer-list li {
  margin: 0;
}
.footer-schedule {
  background: var(--accent-2);
  border: 0;
  color: #fff;
  padding: 10px 14px;
  border-radius: 10px;
  cursor: pointer;
  font-family: "Unbounded";
  font-size: 13px;
  font-weight: 400;
  transition: 0.3s;
}
.footer-schedule:hover {
  background: var(--accent);
}
.mini-note {
  margin: 14px 0 0;
  font-size: 11px;
  color: #8d8799;
}
.footer-bottom {
  border-top: 1px solid #262335;
  padding: 18px 0;
}
.footer-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom-row .copy,
.footer-bottom-row .crafted {
  margin: 0;
  font-size: 12px;
  color: #8d8799;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
@media (max-width: 680px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1/-1;
  }
}
@media (max-width: 500px) {
  .footer-top {
    padding: 0;
  }

  .footer-grid {
    display: flex;
    flex-direction: row;
    gap: 30px;
    flex-wrap: wrap;
  }

  .footer-brand {
    width: 100%;
  }

  .footer-col,
  .footer-brand {
    margin-bottom: 20px;
  }

  .footer-col:nth-child(2) {
    width: 100%;
  }

  .footer-col:nth-child(3),
  .footer-col:nth-child(4) {
    width: 46%;
  }
}

/* Services Carousel */
.services {
}
.services-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.services-head #services-heading {
  margin: 0;
  font-size: 28px;
  color: var(--accent);
  font-family: "Helvetica", sans-serif;
  letter-spacing: -1px !important;
  font-weight: 400;
}

.services-controls {
  display: flex;
  gap: 8px;
}
.svc-btn {
  border: 1px solid #ddd;
  background: #fff;
  color: var(--accent);
  width: 36px;
  height: 36px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.25s;
}
.svc-btn:hover {
  background: var(--accent);
  color: #fff;
}
.services-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 6px 4px 10px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
}
.services-track.dragging {
  cursor: grabbing;
  user-select: none;
}
.services-track::-webkit-scrollbar {
  display: none;
}
.service-item {
  flex: 0 0 280px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 22px 22px 26px;
  scroll-snap-align: start;
  transition: box-shadow 0.25s, border-color 0.25s;
}

.service-item a {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}

.service-item:hover {
  box-shadow: 0 4px 18px -4px rgba(60, 9, 108, 0.12);
  border-color: #ddd;
}
.service-item .icon {
  font-size: 40px;
  color: var(--accent-2);
  font-variation-settings: "wght" 400;
}
.service-item h2 {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.25;
  color: var(--accent);
}
.service-item .sub {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  color: var(--text);
  opacity: 0.85;
}
.service-item .small {
  margin: 0;
  font-size: 12px;
  line-height: 1.4;
  color: var(--muted);
}

@media (max-width: 600px) {
  .service-item {
    flex: 0 0 78%;
  }
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: auto;
  }
}

/* WhatsApp CTA */
.whatsapp-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 80;
  opacity: 0;
  display: none;
  transform: translateY(20px);
  transition: all 0.4s ease;
}
.whatsapp-cta.show {
  display: block;
  opacity: 1;
  transform: translateY(0);
}
.whatsapp-cta a {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid #e3e3e3;
  padding: 10px 16px 10px 12px;
  border-radius: 40px;
  text-decoration: none;
  font-family: "Unbounded", ui-sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #2b203b;
  box-shadow: 0 4px 18px -4px rgba(0, 0, 0, 0.12);
}
.whatsapp-cta a:hover {
  border-color: #d0d0d0;
  box-shadow: 0 6px 22px -6px rgba(0, 0, 0, 0.18);
}
.whatsapp-cta .wa-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #fff;
}
.whatsapp-cta svg {
  display: block;
}

.blog-post-hero-area {
  margin: -36px 0 0 0;
  background: #ff9102;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3% 30px;
}

.blog-post-hero-area h1 {
  color: #fff;
  font-family: "Unbounded";
  font-size: clamp(28px, 5vw, 34px);
  margin: 1% 0;
  text-align: center;
  max-width: 1260px;
  font-weight: 300;
  letter-spacing: 0.1px;
}

.breadcrumbs-wrapper #breadcrumbs {
  background: #00000012;
  padding: 0 10px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  font-size: 13px;
  font-weight: 200;
  color: #00000070;
}
.breadcrumbs-wrapper #breadcrumbs a {
  text-decoration: none;
  color: #00000070;
}

.blog-post-metas {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  font-size: 14px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 24px;
  color: #8d4b1c;
}

.blog-post-author a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #8d4b1c;
  text-decoration: none;
}

.blog-post-author a img {
  border-radius: 100%;
  width: 40px;
  height: 40px;
}

.blog-post-wrapper .desc a {
  text-decoration: none;
  color: #ff6a00;
}

.blog-post-wrapper .desc p,
.blog-post-wrapper .desc li {
  font-size: 18px;
  margin: 0 0 15px 0;
}

.blog-post-wrapper .desc td {
  font-size: 16px;
}

.blog-post-wrapper .desc .wp-block-heading {
  font-weight: 600;
  color: #130646;
  font-family: "Bricolage Grotesque";
  letter-spacing: -1px;
  font-size: 36px;
  margin: 8px 0;
  text-align: left;
  min-height: auto;
}

.blog-post-wrapper .desc h2.wp-block-heading {
  font-size: 32px;
}
.blog-post-wrapper .desc h3.wp-block-heading {
  font-size: 28px;
}
.blog-post-wrapper .desc h4.wp-block-heading {
  font-size: 24px;
}
.blog-post-wrapper .desc h5.wp-block-heading {
  font-size: 20px;
}
.blog-post-wrapper .desc h6.wp-block-heading {
  font-size: 16px;
}

.blog-post-wrapper .desc {
  width: 100%;
  max-width: 720px;
  margin: 0 auto !important;
}

@media (max-width: 768px) {
  .blog-post-wrapper .desc p,
  .blog-post-wrapper .desc li {
    font-size: 16px;
    margin: 0 0 10px 0;
  }

  .blog-post-wrapper .desc td {
    font-size: 16px;
  }
  .blog-post-wrapper .desc h2.wp-block-heading {
    font-size: 24px;
  }
  .blog-post-wrapper .desc h3.wp-block-heading {
    font-size: 22px;
  }
  .blog-post-wrapper .desc h4.wp-block-heading {
    font-size: 20px;
  }
  .blog-post-wrapper .desc h5.wp-block-heading {
    font-size: 18px;
  }
  .blog-post-wrapper .desc h6.wp-block-heading {
    font-size: 16px;
  }
}

/* --- 960px ve DAHA GENİŞ ekranlar için (Desktop Görünümü) ---
  Bu medya sorgusu, ekran genişliği 961px veya daha fazla olduğunda çalışır.
*/
@media (min-width: 961px) {
  /* Bu sınıfa sahip elementler sadece mobil ve tablette (960px'e kadar) görünür, masaüstünde gizlenir. */
  .desktop-hidden {
    display: none !important;
  }
}

/* --- 960px ve DAHA DAR ekranlar için (Tablet ve Mobil Görünümü) ---
  Bu medya sorgusu, ekran genişliği 960px veya daha az olduğunda çalışır.
*/
@media (max-width: 960px) {
  /* Bu sınıfa sahip elementler sadece masaüstünde (961px'den itibaren) görünür, mobil ve tablette gizlenir. */
  .mobile-hidden {
    display: none !important;
  }
}

.website-speed-optimization-cta-wrapper {
  background: linear-gradient(220deg, #38096c, #1f0a6c);
  color: #fff;
  padding: 50px 25px 25px;
  border-radius: 20px;
}

.website-speed-optimization-cta-wrapper h2 {
  margin: 0 0 -10px 0;
  font-weight: 400;
  font-size: 21px;
  color: #ff6a00;
}

.website-speed-optimization-cta-wrapper h3 {
  margin: 5px 0 20px 0;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.website-speed-optimization-cta-wrapper p {
  margin: 0 0 35px 0;
  color: #ba9def;
  font-weight: 300;
  font-size: 19px;
}

.website-speed-optimization-cta-wrapper a {
  display: flex;
  align-items: center;
  gap: 15px;
  background: var(--accent-2);
  color: white;
  padding: 15px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  justify-content: center;
  width: fit-content;
}

.hero-secondary-area-wrapper {
  display: flex;
  flex-direction: row;
}

.hero-secondary-area-left {
  width: 600px;
  display: flex;
  gap: 20px;
  flex-direction: column;
}

.hero-secondary-area-right {
  width: calc(100% - 600px);
}

@media (max-width: 1260px) {
  .hero-secondary-area-wrapper {
    display: flex;
    flex-direction: column-reverse;
  }

  section.home-hero-area .home-hero-content .big-text-hero {
    font-size: 2.5em;
    letter-spacing: 0;
    text-align: center;
  }

  .hero-secondary-area-right {
    width: 100%;
  }

  .hero-secondary-area-left {
    width: 100%;
    flex-direction: column;
    text-align: center;
    margin: 0 auto;
    align-items: center;
    padding: 20px 0 0 0;
  }

  .home-hero-area .badge-animation-wrap {
    top: 15%;
    right: -12.5vh;
  }

  .home-hero-area .badge-animation-wrap svg {
    width: 25vh;
    height: 25vh;
  }
}

@media (max-width: 768px) {
  section.home-hero-area .home-hero-content .big-text-hero {
    font-size: 2em;
  }

  .home .wrapper.header-wrapper .header {
    padding: 0;
  }

  section.home-hero-area .home-hero-content p.desc {
    font-size: 1.3em;
    margin: 0;
    color: #fff;
    max-width: 600px;
  }

  .hero-flex-area p {
    font-size: 1em;
  }

  .home-hero-area .badge-animation-wrap {
    top: 10%;
    right: -7.5vh;
  }

  .home-hero-area .badge-animation-wrap svg {
    width: 15vh;
    height: 15vh;
  }
}

@media (max-width: 550px) {
  section.home-hero-area .home-hero-content .big-text-hero {
    font-size: 23px;
    text-align: center;
  }

  .hero-big-text-area p {
    display: none;
  }
}

@media (max-width: 350px) {
  section.home-hero-area .home-hero-content .big-text-hero {
    font-size: 1.5em;
    text-align: center;
  }
}

section.google-web-vitals-home-hero {
  margin-top: 0px;
}

.google-web-vitals-home-hero h2 {
  font-size: 2em;
  color: var(--accent-3);
  margin: 0 0 24px;
  font-family: "Helvetica";
  font-weight: 400;
  letter-spacing: -1px;
}

section.google-web-vitals-home-hero .video-container {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 20px;
  -webkit-overflow-scrolling: touch;
  width: auto;
  border-radius: 20px;
  position: relative;
}

section.google-web-vitals-home-hero .video-container .video-wrapper {
  overflow: hidden;
  height: auto;
  flex-shrink: 0;
  width: 100%;
  position: relative;
}

section.google-web-vitals-home-hero .video-container video {
  border-radius: 20px;
  overflow: hidden;
  height: auto;
  flex-shrink: 0;
  transition: border-radius 0.3s ease;
  width: 100%;
}

section.google-web-vitals-home-hero
  .video-container
  .last-play:hover
  .video-cta-buttons {
  opacity: 1;
}

section.google-web-vitals-home-hero
  .video-container
  .last-play:hover
  a.video-cta:hover {
  background: #ff6a00;
}

/* --- 1. MOBİL GÖRÜNÜM (500px'e kadar) --- */
/* Bu kısım için ekstra kod gerekmez, yukarıdaki temel stiller çalışır. */
section.google-web-vitals-home-hero .video-container .video-wrapper {
  /* Videonun genişliği ekranın %85'i kadar olsun. Bu, yandaki videonun ucu görünerek
       kaydırma hissi verir. */
  width: 85%;
}

/* --- 2. TABLET GÖRÜNÜM (500px'den 960px'e kadar) --- */
@media (min-width: 501px) {
  section.google-web-vitals-home-hero .video-container .video-wrapper {
    /* 2 video göstermek için her videonun genişliği %50'den biraz az olmalı.
           calc() ile boşluk payını da hesaptan düşüyoruz. */
    width: calc(50% - 10px);
  }
}

/* --- 3. DESKTOP GÖRÜNÜM (960px ve üzeri) --- */
@media (min-width: 960px) {
  section.google-web-vitals-home-hero .video-container {
    overflow-x: visible;
    gap: 1.5%;
    display: flex;
    justify-content: flex-start;
  }

  section.google-web-vitals-home-hero .video-container .video-wrapper {
    width: 32%;
    aspect-ratio: 1 / 1.1;
    background: #f7f7f5;
    border-radius: 20px;
  }
}

section.google-web-vitals {
  margin-top: -100px;
}

.section-vitals-wrapper {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

/* Mobile Navigation */
@media (max-width: 960px) {
  .wrapper {
    padding: 1em;
  }
  .home main {
    gap: 5px;
  }
  section.google-web-vitals {
    margin-top: 0px;
  }
  .nav {
    display: none;
  }

  .header-right-area {
    width: auto;
  }
  .sticky .header {
    padding: 0px 5px;
  }
  .hamburger {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 46px;
    height: 46px;
    background: transparent;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    position: relative;
    transition: background 0.3s, border-color 0.3s;
  }
  .hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.4s, opacity 0.3s;
    margin: 0 auto;
  }
  .hamburger:hover {
    /* background: #fafafa; */
  }
  .hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .mobile-menu-header {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    align-items: center;
  }

  .mobile-menu-header .brand .brand-logo-helian svg:last-child {
    width: auto;
  }

  .mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px) saturate(180%);
    -webkit-backdrop-filter: blur(14px) saturate(180%);
    z-index: 120;
    display: flex;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.45s ease;
    flex-direction: column;
  }
  .mobile-menu-overlay.show {
    opacity: 1;
    pointer-events: auto;
  }
  .mobile-menu-inner {
    margin: auto;
    text-align: center;
    animation: menu-pop 0.55s cubic-bezier(0.16, 0.84, 0.28, 1) both;
  }
  .mobile-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 34px;
  }

  .mobile-menu-list li {
    position: relative;
  }

  .mobile-menu-list li a {
    font-family: "Unbounded", ui-sans-serif;
    font-size: 24px;
    font-weight: 300;
    text-decoration: none;
    color: #1e096c;
    position: relative;
  }
  .mobile-menu-list li a:after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: #ff6a00;
    transition: 0.35s;
    transform: translateX(-50%);
  }
  .mobile-menu-list li a:hover:after {
    width: 50%;
  }

  .mobile-menu-list li ul.submenu {
    list-style: none;
    margin: 0 auto 0;
    padding: 0;
    display: none;
    flex-direction: column;
    gap: 20px;
    position: absolute;
    background: #1e096c;
    z-index: 999;
    width: 100%;
    border: 1px solid #1e096c;
    padding: 10px;
    border-radius: 20px;
  }

  .mobile-menu-list li ul.submenu.open {
    display: flex;
  }

  .mobile-menu-list li ul.submenu li a {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
  }
  .mobile-menu-list li ul.submenu li a:after {
    display: none;
  }

  /* Responsive adjustments at <=960px */
  .brand .brand-logo-helian {
    font-size: 28px;
    font-weight: 400;
  }
  .hero {
    padding: 0px 0 12px;
  }
  .post-template-default .hero {
    padding: 0 0 12px;
  }
  .hero h1 {
    text-align: center;
    font-size: clamp(26px, 4vw, 34px);
    letter-spacing: -1px;
  }
  /*   .hero h1 .material-symbols-outlined {
    font-size: clamp(26px, 7vw, 34px);
    line-height: 1;
  } */

  .hero h1 .material-symbols-outlined {
    display: none;
  }
  .hero p.desc {
    text-align: center;
    font-size: 18px;
  }

  .hero p.sub-desc {
    display: none;
  }

  .hero h1 span,
  .hero h1 strong,
  .hero h1 br {
    display: contents;
  }

  .cta-row {
    margin-top: 20px;
    flex-direction: column;
    align-items: stretch;
  }
  .cta-row .button-primary {
    width: 100%;
    max-width: 100%;
  }

  .cta-row .button-primary span br {
    display: none;
  }

  .cta-row .button-primary {
    padding: 13px 20px;
  }

  .logo-strip {
    width: calc(100vw - 2em);
  }

  .logo-strip img {
    height: 50px;
    margin-top: 5px;
  }
  .logo-strip .logo-track {
    width: max-content;
    animation: logo-scroll 40s linear infinite;
  }
  .badge {
    display: flex;
    justify-content: center;
  }
  .founder-message {
    flex-direction: column-reverse;
    gap: 36px;
  }
  .welcome {
    width: 100%;
    padding: 36px 30px;
  }
  .mobile-cta-buttons {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .mobile-cta {
    text-decoration: none;
    text-align: center;
    font-family: "Unbounded", ui-sans-serif;
    font-size: 20px;
    padding: 18px 22px;
    border-radius: 24px;
    font-weight: 400;
    transition: 0.35s;
  }
  .mobile-cta.meet {
    background: var(--accent-2);
    color: #fff;
  }
  .mobile-cta.meet:hover {
    background: var(--accent);
  }
  .mobile-cta.schedule {
    background: var(--accent-2);
    color: #fff;
  }
  .mobile-cta.schedule:hover {
    background: var(--accent);
  }

  .about-intro {
    font-size: 0.8em;
    border-radius: 20px;
  }

  .blog-post-hero-area {
    margin: 0px 0 0 0;
  }

  .breadcrumbs-wrapper #breadcrumbs {
    display: none;
  }

  .blog-post-metas {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: space-between;
    font-size: 14px;
    max-width: 1440px;
    margin: 20px auto;
    color: #8d4b1c;
    flex-direction: column;
    width: 100%;
    padding: 0;
  }
}

@media (max-width: 768px) {
  .blog-post-hero-area {
    position: relative;
    margin: 0px 0 60px 0;
  }

  .blog-post-metas {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: space-between;
    font-size: 14px;
    max-width: 1440px;
    margin: 20px auto;
    color: #8d4b1c;
    flex-direction: row-reverse;
    width: 100vw;
    position: absolute;
    bottom: -80px;
    padding: 10px;
    border-bottom: 1px solid #ddd;
    background: antiquewhite;
  }

  .blog-post-wrapper .desc .wp-block-heading {
    font-size: 36px;
  }
}

@media (max-width: 550px) {
  .header-schedule {
    margin-top: 20px;
    width: fit-content;
    transform: scale(1);
    border-radius: 30px;
    padding: 13px 26px;
    font-size: 22px;
    font-weight: 400;
    text-shadow: 1px 1px 0 #00000057;
  }
}

@keyframes menu-pop {
  0% {
    transform: scale(0.95) translateY(10px);
    opacity: 0;
  }
  100% {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

@media (min-width: 961px) {
  .hamburger,
  .mobile-menu-overlay {
    display: none !important;
  }
}

.wp-block-kevinbatdorf-code-block-pro {
  max-width: 90vw;
}

/* --- TEMEL STİLLER (Tüm ekran boyutları için geçerli) --- */
section.google-web-vitals .video-container {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 20px;
  -webkit-overflow-scrolling: touch;
  width: auto;
  border-radius: 20px;
  position: relative;
}

section.google-web-vitals .video-container .video-wrapper {
  overflow: hidden;
  height: auto;
  flex-shrink: 0;
  width: 100%;
  position: relative;
}

.video-cta-buttons {
  position: absolute;
  bottom: 10%;
  left: 50%;
  width: 80%;
  display: flex;
  justify-content: center;
  gap: 10px;
  opacity: 0;
  transform: translateX(-50%);
}

a.video-cta {
  background: #01d272;
  padding: 10px;
  text-align: center;
  text-decoration: none;
  color: #fff;
  border-radius: 10px;
  transition: opacity 2s ease;
}

.video-return-metric {
  background: #fff;
  color: #000;
  display: flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 10px;
}

.video-head-title-wrapper {
  width: 40%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 1%;
}

.video-head-title-wrapper svg {
  fill: var(--accent-2);
}

.video-head-title-wrapper h3 {
  margin: 10px 0 10px 0px;
  font-size: 29px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--accent-2);
  font-family: helvetica;
}

.video-head-title-wrapper p {
  margin: 0;
}

section.google-web-vitals .video-container video {
  border-radius: 20px;
  overflow: hidden;
  height: auto;
  flex-shrink: 0;
  transition: border-radius 0.3s ease;
  width: 100%;
}

section.google-web-vitals .video-container .last-play:hover .video-cta-buttons {
  opacity: 1;
}

section.google-web-vitals .video-container .last-play:hover a.video-cta:hover {
  background: #ff6a00;
}

/* --- 1. MOBİL GÖRÜNÜM (500px'e kadar) --- */
/* Bu kısım için ekstra kod gerekmez, yukarıdaki temel stiller çalışır. */
section.google-web-vitals .video-container .video-wrapper {
  /* Videonun genişliği ekranın %85'i kadar olsun. Bu, yandaki videonun ucu görünerek
       kaydırma hissi verir. */
  width: 85%;
}

/* --- 2. TABLET GÖRÜNÜM (500px'den 960px'e kadar) --- */
@media (min-width: 501px) {
  section.google-web-vitals .video-container .video-wrapper {
    /* 2 video göstermek için her videonun genişliği %50'den biraz az olmalı.
           calc() ile boşluk payını da hesaptan düşüyoruz. */
    width: calc(50% - 10px);
  }
}

/* --- 3. DESKTOP GÖRÜNÜM (960px ve üzeri) --- */
@media (min-width: 960px) {
  section.google-web-vitals .video-container {
    overflow-x: visible;
    justify-content: center;
    gap: 1.5%;
    display: flex;
    min-height: 450px;
  }

  section.google-web-vitals .video-container .video-wrapper {
    width: 32%;
    aspect-ratio: 1 / 1.1;
    background: #f7f7f5;
    border-radius: 20px;
  }
}

@media (max-width: 1200px) {
  .section-vitals-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .video-head-title-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-bottom: 0px;
    align-items: center;
    gap: 15px;
    text-align: center;
  }

  .video-head-title-wrapper h3 br {
    display: contents;
  }

  .video-head-title-wrapper svg {
    width: 70px;
    height: 50px;
  }

  .video-head-title-wrapper h3 {
    font-size: 28px;
    margin: 0 10px 0 20px;
    line-height: 1;
  }
}

@media (max-width: 400px) {
  .cta-row .button-primary span {
    font-size: 16px;
    font-weight: 600;
  }

  .video-head-title-wrapper h3 {
    font-size: 21px;
  }

  .hero p.desc {
    text-align: center;
    font-size: 16px;
  }
}

/* --- İSTEĞE BAĞLI: ÖZEL SCROLLBAR STİLLERİ --- */
/* Sadece 960px altı için (yani kaydırma aktifken) görünür olsun */
@media (max-width: 1200px) {
  /* Firefox için scrollbar */
  section.google-web-vitals .video-container {
    scrollbar-width: thin;
    scrollbar-color: #999 #f0f0f0;
  }

  /* Chrome, Safari, Edge için scrollbar */
  section.google-web-vitals .video-container::-webkit-scrollbar {
    height: 8px; /* Scrollbar kalınlığı */
  }

  section.google-web-vitals .video-container::-webkit-scrollbar-track {
    background: #ffffff; /* Scrollbar yolu arkaplanı */
    border-radius: 4px;
  }

  section.google-web-vitals .video-container::-webkit-scrollbar-thumb {
    background-color: #999; /* Kaydırma çubuğu rengi */
    border-radius: 4px; /* Yuvarlak kenarlar */
  }
  section.google-web-vitals .video-container::-webkit-scrollbar-thumb:hover {
    background-color: #777; /* Hover rengi */
  }
}

@media (max-width: 1260px) {
  .hero-flex-area {
    flex-direction: column !important;
    align-items: center;
  }

  .hero-text-area {
    width: 100% !important;
    max-width: 100% !important;
  }

  .hero-video-area {
    margin-bottom: 0;
  }

  .hero-text-area {
    order: 2;
    text-align: center;
  }

  .hero-video-area {
    order: 1;
    width: 100% !important;
    max-width: 400px !important;
  }
}

/* Performance Metrics Section */
.performance-metrics {
  color: #ffffff;
  padding: 70px 0 0px;
}

.performance-metrics .metric-label {
  color: #ffffff !important;
}

.metrics-container {
  text-align: center;
  background: #1e096c;
  padding: 40px 0 80px;
  border-radius: 20px;
  position: relative;
}

.badge-metrics {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(-70%);
  padding: 10px;
  width: 160px;
  height: 160px;
  background: #fff;
  border-radius: 100%;
}

.badge-metrics svg {
  width: 98%;
  height: 98%;
}

.metrics-container h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #ffffff;
  line-height: 1.2;
}

.metrics-container p {
  font-size: 1.2rem;
  color: #ba9def;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.metric-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 2.5rem 1.5rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.metric-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--accent-2);
  box-shadow: 0 10px 30px rgba(255, 106, 0, 0.2);
  cursor: pointer;
}

.metric-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--accent-2);
  margin-bottom: 0.5rem;
  line-height: 1;
  background: linear-gradient(135deg, var(--accent-2), #ff8533);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.metric-label {
  font-size: 1rem;
  color: #e0e0e0;
  font-weight: 500;
  line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 960px) {
  .performance-metrics {
    padding: 100px 0 0px;
  }

  .metrics-container {
    padding: 30px 0 20px;
  }

  .metrics-container h2 {
    font-size: 1.5rem;
  }

  .metrics-container p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    padding: 0 15px;
  }

  .metrics-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    padding: 0 20px;
  }

  .metric-item {
    padding: 2rem 1rem;
  }

  .metric-number {
    font-size: 2.8rem;
  }

  .badge-metrics {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(-70%);
    padding: 10px;
    width: 140px;
    height: 140px;
    background: #fff;
    border-radius: 100%;
  }
}

@media (max-width: 480px) {
  .metrics-container h2 {
    font-size: 1.2rem;
    padding: 25px 15px 0;
  }

  .metrics-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .metric-item {
    padding: 1.5rem 1rem;
  }

  .metric-number {
    font-size: 2.5rem;
  }
}

/* Site Analysis Modal */
.analysis-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #1e096cdb;
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(5px);
}

.analysis-modal .modal-title {
  display: flex;
  align-items: flex-end;
  gap: 15px;
  align-content: flex-end;
}

.analysis-modal .modal-title span {
  font-family: "Helvetica", sans-serif;
  line-height: 1;
  font-size: 24px;
  font-weight: 400;
  color: var(--accent-2);
}

.analysis-modal .modal-title svg {
  width: 30px;
  height: 30px;
}

.analysis-modal .modal-title svg path {
  stroke: var(--accent-2);
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.modal-content {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 3px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  z-index: 10001;
  animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 30px 20px;
  border-bottom: 1px solid #e9ecef;
}

.modal-header > div {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}

.modal-close {
  background: none;
  border: none;
  font-size: 28px;
  color: #6c757d;
  cursor: pointer;
  padding: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.modal-close:hover {
  background: #f8f9fa;
  color: var(--text);
}

.modal-body {
  padding: 15px 30px;
}

.form-description {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 400;
  color: #505050;
  font-size: 0.9rem;
  font-family: "Helvetica", sans-serif;
}

.form-group input {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
  background: #ffffff;
}

.form-group input:focus {
  outline: none;
  border-color: var(--accent-2);
  box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.1);
}

.form-group input[readonly] {
  background-color: #f8f9fa !important;
  color: #6c757d;
  cursor: not-allowed !important;
  border-color: #dee2e6;
}

.form-group input[readonly]:focus {
  box-shadow: none;
  border-color: #dee2e6;
}

.submit-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--accent-2), #ff8533);
  color: white;
  border: none;
  padding: 16px 24px;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  margin-bottom: 15px;
}

.submit-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 106, 0, 0.3);
}

.submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.btn-loading {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-loading::after {
  content: "";
  width: 16px;
  height: 16px;
  border: 2px solid transparent;
  border-top: 2px solid currentColor;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.success-container {
  text-align: center;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #28a745, #20c997);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: bold;
  margin: 0 auto 2rem;
  animation: successPulse 0.6s ease-out;
}

.success-container .success-icon {
  margin: 0 auto;
  color: #fff;
}

@keyframes successPulse {
  0% {
    transform: scale(0.3);
    opacity: 0;
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.success-container > div {
  margin: 0 0 1rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
}

.success-container > p {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 2rem;
}

.success-details {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 12px;
  text-align: left;
  margin-bottom: 1.5rem;
}

.success-details > div {
  margin: 0 0 1rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}

.success-details ul {
  margin: 0 0 1.5rem;
  padding-left: 0;
  list-style: none;
}

.success-details li {
  padding: 0.5rem 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.contact-info {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}

.contact-info strong {
  color: var(--text);
}

.contact-info a {
  color: var(--accent-2);
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .modal-content {
    max-width: 100%;
    width: 100%;
    border-radius: 0;
  }

  .modal-header {
    padding: 20px 20px 15px;
  }

  .modal-header > div {
    font-size: 1.3rem;
  }

  .modal-body {
    padding: 20px;
    height: 100%;
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
  }

  .form-description {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  .form-group {
    margin-bottom: 1.1rem;
  }

  .form-group input {
    padding: 10px 14px;
    font-size: 16px; /* Prevents zoom on iOS */
  }

  .submit-btn {
    padding: 14px 20px;
    font-size: 1rem;
  }
}

@media (max-width: 550px) {
  .analysis-modal .modal-title span {
    font-size: 20px;
  }
}

/* Latest Blog Posts Section */
.latest-blog-posts {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 80px 0;
}

.latest-blog-posts .wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.blog-section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.blog-section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.blog-section-header p {
  font-size: 1.2rem;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.blog-posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.blog-post-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.blog-post-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, var(--accent-2), #ff8533);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.blog-post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border-color: var(--accent-2);
}

.blog-post-card:hover::before {
  transform: scaleX(1);
}

.post-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  gap: 1rem;
}

.post-category {
  background: var(--accent);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.post-date {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
}

.post-title {
  margin: 0 0 1rem;
  line-height: 1.4;
}

.post-title a {
  color: var(--text);
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 600;
  transition: color 0.3s ease;
}

.post-title a:hover {
  color: var(--accent-2);
}

.post-excerpt {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.read-more-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent-2);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.read-more-link:hover {
  color: var(--accent);
  transform: translateX(4px);
}

.read-more-link svg {
  transition: transform 0.3s ease;
}

.read-more-link:hover svg {
  transform: translateX(4px);
}

.no-posts-message {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem;
  color: var(--muted);
  font-style: italic;
}

.blog-cta {
  text-align: center;
}

.blog-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, var(--accent), #5a1a8a);
  color: white;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.blog-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(60, 9, 108, 0.3);
  background: linear-gradient(135deg, #5a1a8a, var(--accent));
}

.blog-cta-button svg {
  transition: transform 0.3s ease;
}

.blog-cta-button:hover svg {
  transform: translateX(4px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .latest-blog-posts {
    padding: 60px 0;
  }

  .blog-section-header h2 {
    font-size: 2rem;
  }

  .blog-section-header p {
    font-size: 1.1rem;
  }

  .blog-section-header {
    margin-bottom: 3rem;
  }

  .blog-posts-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
  }

  .blog-post-card {
    padding: 1.5rem;
  }

  .post-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .post-title a {
    font-size: 1.1rem;
  }

  .blog-cta-button {
    padding: 14px 24px;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .blog-posts-grid {
    grid-template-columns: 1fr;
  }

  .blog-post-card {
    padding: 1.25rem;
  }

  .post-category {
    font-size: 0.7rem;
    padding: 3px 10px;
  }
}

/* Blog Archive Page */
.blog-archive {
  background: #ffffff;
}

.blog-hero {
  color: white;
  text-align: center;
  margin: 0;
  background: #281283;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3% 30px;
}

.blog-hero .wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.blog-hero .page-title {
  margin-bottom: 1rem;
  line-height: 1.2;
  font-family: "Unbounded", ui-sans-serif, system-ui;
  font-weight: 300;
  font-size: clamp(28px, 5vw, 42px);
}

.blog-hero .page-description {
  font-size: 1.3rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.blog-content {
  padding: 80px 0;
  background: #f8f9fa;
}

.blog-content .wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Enhanced Blog Post Cards for Archive */
.blog-archive .blog-posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 2.5rem;
  margin-bottom: 4rem;
}

.blog-archive .blog-post-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #e9ecef;
  transition: all 0.4s ease;
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.blog-archive .blog-post-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--accent-2);
}

.post-thumbnail {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}

.post-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-archive .blog-post-card:hover .post-thumbnail img {
  transform: scale(1.05);
}

.blog-archive .post-content {
  padding: 2rem;
}

.blog-archive .post-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  gap: 1rem;
}

.post-meta-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
}

.post-language {
  background: var(--accent-2);
  color: white;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 600;
}

.blog-archive .post-title {
  margin: 0 0 1rem;
  line-height: 1.4;
}

.blog-archive .post-title a {
  color: var(--text);
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 700;
  transition: color 0.3s ease;
  display: block;
}

.blog-archive .post-title a:hover {
  color: var(--accent-2);
}

.blog-archive .post-excerpt {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.post-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid #f0f0f0;
}

.reading-time {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 500;
}

.blog-archive .read-more-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent-2);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  padding: 8px 16px;
  border-radius: 25px;
  border: 2px solid transparent;
}

.blog-archive .read-more-link:hover {
  background: var(--accent-2);
  color: white;
  transform: translateX(4px);
}

/* Pagination Styles */
.blog-pagination {
  margin-top: 4rem;
  display: flex;
  justify-content: center;
}

.blog-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog-pagination .page-numbers li {
  margin: 0;
}

.blog-pagination .page-numbers a,
.blog-pagination .page-numbers span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 48px;
  padding: 0 16px;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  gap: 0.5rem;
}

.blog-pagination .page-numbers a:hover {
  border-color: var(--accent-2);
  color: var(--accent-2);
  transform: translateY(-2px);
}

.blog-pagination .page-numbers .current {
  background: var(--accent-2);
  border-color: var(--accent-2);
  color: white;
}

.blog-pagination .page-numbers .prev,
.blog-pagination .page-numbers .next {
  padding: 0 20px;
}

.blog-pagination .page-numbers .prev svg,
.blog-pagination .page-numbers .next svg {
  transition: transform 0.3s ease;
}

.blog-pagination .page-numbers .prev:hover svg {
  transform: translateX(-4px);
}

.blog-pagination .page-numbers .next:hover svg {
  transform: translateX(4px);
}

/* No Posts Found */
.no-posts-found {
  text-align: center;
  padding: 4rem 2rem;
  background: white;
  border-radius: 20px;
  border: 1px solid #e9ecef;
}

.no-posts-found h2 {
  color: var(--text);
  margin-bottom: 1rem;
  font-size: 2rem;
}

.no-posts-found p {
  color: var(--muted);
  margin-bottom: 2rem;
  font-size: 1.1rem;
  line-height: 1.6;
}

.back-home-btn {
  display: inline-flex;
  align-items: center;
  background: var(--accent-2);
  color: white;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.back-home-btn:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

/* Mobile Responsive for Archive */
@media (max-width: 768px) {
  .blog-hero {
    padding: 60px 0;
  }

  .blog-hero .page-title {
    font-size: 2.2rem;
  }

  .blog-hero .page-description {
    font-size: 1.1rem;
  }

  .blog-content {
    padding: 60px 0;
  }

  .blog-archive .blog-posts-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
  }

  .blog-archive .post-content {
    padding: 1.5rem;
  }

  .blog-archive .post-title a {
    font-size: 1.2rem;
  }

  .blog-archive .post-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .post-meta-right {
    flex-direction: row;
    align-items: center;
    align-self: stretch;
    justify-content: space-between;
  }

  .post-footer {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }

  .blog-archive .read-more-link {
    align-self: flex-start;
  }

  .blog-pagination .page-numbers {
    flex-wrap: wrap;
    gap: 0.25rem;
  }

  .blog-pagination .page-numbers a,
  .blog-pagination .page-numbers span {
    min-width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }

  .blog-pagination .page-numbers .prev,
  .blog-pagination .page-numbers .next {
    padding: 0 16px;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .blog-archive .blog-posts-grid {
    grid-template-columns: 1fr;
  }

  .blog-archive .post-content {
    padding: 1.25rem;
  }
}

/* FAQ Section */
.faq-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 80px 0;
}

.faq-section .wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.faq-header {
  text-align: center;
  margin-bottom: 3rem;
}

.faq-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.faq-header p {
  font-size: 1.2rem;
  color: var(--muted);
  line-height: 1.6;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e9ecef;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-item:hover {
  border-color: var(--accent-2);
  box-shadow: 0 4px 20px rgba(255, 106, 0, 0.1);
}

.faq-item.active {
  border-color: var(--accent-2);
}

.faq-question {
  padding: 1.5rem 2rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background: #f8f9fa;
}

.faq-question h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
  flex: 1;
}

.faq-icon {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--accent-2);
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 106, 0, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  background: var(--accent-2);
  color: white;
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer > div {
  padding: 15px 2rem 2rem;
}

.faq-answer p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* Mobile Responsive for FAQ */
@media (max-width: 768px) {
  .faq-section {
    padding: 60px 0;
  }

  .faq-header h2 {
    font-size: 2rem;
  }

  .faq-header p {
    font-size: 1.1rem;
  }

  .faq-question {
    padding: 1.25rem 1.5rem;
  }

  .faq-question h3 {
    font-size: 1rem;
  }

  .faq-answer > div {
    padding: 0 1.5rem 1.5rem;
  }

  .faq-icon {
    width: 25px;
    height: 25px;
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .faq-question {
    padding: 1rem 1.25rem;
  }

  .faq-answer > div {
    padding: 0 1.25rem 1.25rem;
  }
}

/* Meeting Plan Modal Specific Styles */
#meetingPlanModal .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

#meetingPlanModal input[type="date"],
#meetingPlanModal select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: white;
  border: 2px solid #e1e5e9;
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 15px;
  font-family: inherit;
  color: var(--text-primary);
  width: 100%;
  transition: all 0.3s ease;
  cursor: pointer;
}

#meetingPlanModal input[type="date"]:focus,
#meetingPlanModal select:focus {
  outline: none;
  border-color: var(--accent-2);
  box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.1);
}

#meetingPlanModal select {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 40px;
}

#meetingPlanModal input[type="date"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

#meetingPlanModal input[type="date"]::-webkit-calendar-picker-indicator:hover {
  opacity: 1;
}

#meetingPlanModal .meeting-subject-textarea {
  resize: vertical;
  min-height: 100px;
  font-family: inherit;
  background: white;
  border: 2px solid #e1e5e9;
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 15px;
  color: var(--text-primary);
  width: 100%;
  transition: all 0.3s ease;
  line-height: 1.5;
}

#meetingPlanModal .meeting-subject-textarea:focus {
  outline: none;
  border-color: var(--accent-2);
  box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.1);
}

#meetingPlanModal .meeting-subject-textarea::placeholder {
  color: #9ca3af;
  font-style: italic;
}

#meetingPlanModal textarea {
  resize: vertical;
  min-height: 80px;
  font-family: inherit;
}

/* Meeting form success message customization */
#meetingSuccessMessage .success-details ul li {
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

#meetingSuccessMessage .success-details ul li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-2);
  font-weight: bold;
}

@media (max-width: 768px) {
  .modal-content {
    margin: 0px;
    max-height: 100vh;
    overflow-y: auto;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }

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

  /* #meetingPlanModal .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  } */

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

/* About Video Section */
.about-video-container {
  position: relative;
  width: 100%;
  max-width: 760px;
  margin: 24px auto;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e1e5e9;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  background: var(--bg-light);
}

.about-video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Desktop video - show on larger screens */
.desktop-video {
  display: block;
}

/* Mobile video - hide by default */
.mobile-video {
  display: none;
}

/* Mobile breakpoint - show mobile video, hide desktop */
@media (max-width: 768px) {
  .desktop-video {
    display: none;
  }

  .mobile-video {
    display: block;
  }

  .about-video-container {
    margin: 16px auto;
    border-radius: 12px;
  }
}

/* Extra small screens */
@media (max-width: 480px) {
  .about-video-container {
    margin: 12px auto;
    border-radius: 8px;
  }
}

/* Page Speed Template Button Styles */
.pagespeed-page .button-primary {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #01d171;
  color: white;
  padding: 21px 20px;
  border-radius: 18px;
  text-decoration: none;
  justify-content: center;
  cursor: pointer;
  border: none;
  font-weight: 500;
  font-size: 18px;
  transition: all 0.3s ease;
  font-family: inherit;
}

.pagespeed-page .button-primary:hover {
  background: var(--accent-2);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(1, 209, 113, 0.3);
}

.pagespeed-page .button-secondary {
  display: flex;
  align-items: center;
  gap: 15px;
  background: transparent;
  color: white;
  padding: 21px 20px;
  border-radius: 18px;
  text-decoration: none;
  justify-content: center;
  cursor: pointer;
  border: 2px solid rgba(255, 255, 255, 0.3);
  font-weight: 500;
  font-size: 18px;
  transition: all 0.3s ease;
  font-family: inherit;
}

.pagespeed-page .button-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
}

.tab-cta .button-primary {
  background: var(--accent-2);
  color: white;
  padding: 16px 24px;
  /* border-radius: 14px; */
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}

.tab-cta .button-primary:hover {
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 106, 0, 0.3);
}

/* Hero Section */
.pagespeed-hero {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-3) 100%);
  color: white;
  padding: 80px 0;
  overflow: hidden;
  position: relative;
}

.pagespeed-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 2;
}

.hero-text {
  flex: 1;
}

.pagespeed-hero h1 {
  font-family: "Unbounded", ui-sans-serif;
  font-size: 3.5rem;
  font-weight: 500;
  margin: 0 0 20px;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.3rem;
  margin: 0 0 40px;
  opacity: 0.9;
  line-height: 1.4;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin: 40px 0;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: "Unbounded", ui-sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
  display: block;
  color: var(--accent-2);
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-top: 8px;
}

.hero-cta {
  display: flex;
  gap: 20px;
  align-items: center;
}

.hero-visual {
  flex: 0 0 300px;
  display: flex;
  justify-content: center;
}

.speed-indicator {
  position: relative;
}

.speedometer {
  width: 250px;
  height: 250px;
  position: relative;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.speed-arc {
  position: absolute;
  width: 200px;
  height: 200px;
  border: 6px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  border-top-color: var(--accent-3);
  border-right-color: var(--accent-3);
  transform: rotate(-45deg);
}

.speed-center {
  text-align: center;
  z-index: 3;
}

.speed-score {
  font-family: "Unbounded", ui-sans-serif;
  font-size: 3rem;
  font-weight: 600;
  display: block;
  color: #fff;
}

.speed-label {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Section Styling */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-family: "Unbounded", ui-sans-serif;
  font-size: 2.5rem;
  color: var(--accent);
  margin: 0 0 16px;
  font-weight: 500;
}

.section-header p {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

/* Importance Section */
.importance-section {
  padding: 100px 0;
  background: white;
}

.importance-conten-video {
  margin: 40px auto 60px;
  max-width: 500px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.importance-conten-video:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.importance-conten-video .hero-video-poster {
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
}

.importance-conten-video .hero-video-poster:hover::before {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
}

.importance-conten-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .importance-conten-video {
    margin: 30px auto 40px;
    border-radius: 16px;
  }

  .importance-conten-video .hero-video-poster::before {
    font-size: 3rem;
  }
}

.importance-tabs {
  margin: 0 auto;
}

.tab-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 60px;
  background: #f8f9fa;
  padding: 8px;
  border-radius: 5px;
  max-width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.tab-button {
  padding: 12px 24px;
  background: transparent;
  border: none;
  border-radius: 3px;
  font-size: 0.9rem;
  font-weight: 400;
  color: #666;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.tab-button.active {
  background: var(--accent);
  color: white;
  box-shadow: 0 4px 12px rgba(60, 9, 108, 0.3);
}

.tab-content {
  position: relative;
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

.tab-panel-content {
  display: flex;
  align-items: center;
  gap: 60px;
}

.tab-text {
  flex: 1;
}

.tab-text h2 {
  font-size: 2.1em;
  color: var(--accent);
  margin: 0 0 24px;
  font-family: "Helvetica", sans-serif;
  letter-spacing: -1px !important;
  font-weight: 400;
}

.tab-text h2 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.tab-text h2 a:hover {
  color: var(--accent-2);
  text-decoration: none;
}

.tab-text h3 {
  font-family: "Unbounded", ui-sans-serif;
  font-size: 1.8rem;
  color: var(--accent);
  margin: 0 0 24px;
  font-weight: 500;
}

.tab-text ul {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}

.tab-text li {
  padding: 12px 0;
  font-size: 1.1rem;
  color: #555;
  position: relative;
  padding-left: 32px;
}

.tab-text li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-2);
  font-weight: 600;
  font-size: 1.2rem;
}

.tab-visual {
  flex: 0 0 400px;
  display: flex;
  justify-content: center;
}

.tab-visual img {
  border: 1px solid #ddd;
  max-height: 250px;
  width: auto;
  border-radius: 20px;
  box-shadow: 0 3px 10px #f7f7f7;
}

.user-journey {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.journey-step {
  background: white;
  border-radius: 360px;
  padding: 24px 24px 48px 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  text-align: center;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  aspect-ratio: 1;
}

@media (max-width: 768px) {
  .tab-text h2 {
    font-size: 1.5em;
  }
  .tab-text {
    font-size: 0.9em;
  }
  .tab-nav {
    margin-bottom: 30px;
  }
}

.journey-step.fast {
  border-color: #10b981;
}

.journey-step.slow {
  border-color: #ef4444;
}

.step-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

.step-title {
  font-family: "Unbounded", ui-sans-serif;
  font-weight: 500;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.step-desc {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.step-result {
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
}

.step-result.happy {
  background: #d1fae5;
  color: #065f46;
}

.step-result.angry {
  background: #fee2e2;
  color: #991b1b;
}

.seo-ranking {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ranking-item {
  display: flex;
  align-items: center;
  gap: 20px;
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.rank-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Unbounded", ui-sans-serif;
  font-weight: 600;
  color: white;
  font-size: 1.1rem;
}

.rank-1 .rank-number {
  background: #10b981;
}

.rank-5 .rank-number {
  background: #f59e0b;
}

.rank-10 .rank-number {
  background: #ef4444;
}

.rank-site {
  flex: 1;
  font-weight: 500;
  font-size: 1.1rem;
}

.rank-score {
  color: #666;
  font-size: 0.9rem;
}

.conversion-chart {
  display: flex;
  align-items: end;
  gap: 20px;
  height: 200px;
  padding: 20px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.chart-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  justify-content: flex-end;
  height: 100%;
}

.chart-bar {
  width: 40px;
  background: linear-gradient(to top, var(--accent), var(--accent-2));
  border-radius: 4px 4px 0 0;
  transition: all 0.3s ease;
  min-height: 20px;
}

.chart-label {
  font-weight: 600;
  color: #666;
}

.chart-value {
  font-family: "Unbounded", ui-sans-serif;
  font-weight: 600;
  color: var(--accent);
}

.mobile-stats {
  display: flex;
  gap: 40px;
  align-items: center;
}

.tab-visual .mobile-device {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-content: center;
  align-items: center;
  padding: 15px;
  min-width: 200px;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border: 1px solid #f0f0f0;
}

.device-screen {
  width: 120px;
  height: 200px;
  background: #1f2937;
  border-radius: 20px;
  padding: 16px;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.loading-bar {
  width: 80px;
  height: 6px;
  background: #374151;
  border-radius: 3px;
  overflow: hidden;
  position: relative;
}

.loading-bar::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  border-radius: 3px;
  animation: loading 2s ease-in-out infinite;
}

.mobile-fast::after {
  background: #10b981;
  width: 90%;
  animation-duration: 1s;
}

.mobile-slow::after {
  background: #ef4444;
  width: 30%;
  animation-duration: 4s;
}

.speed-text {
  color: white;
  font-family: "Unbounded", ui-sans-serif;
  font-size: 0.9rem;
}

.device-label {
  font-weight: 500;
  color: #666;
}

@keyframes loading {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}

/* Techniques Section */
.techniques-section {
  padding: 100px 0;
  background: white;
}

.techniques-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

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

  .technique-features {
    flex-direction: column;
  }

  .technique-features li {
    min-width: 100%;
  }
}

.technique-card {
  background: white;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border: 1px solid #f0f0f0;
  transition: all 0.3s ease;
  text-align: center;
}

.technique-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(60, 9, 108, 0.15);
}

.technique-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.technique-card h3 {
  font-family: "Unbounded", ui-sans-serif;
  font-size: 1.4rem;
  color: var(--accent);
  margin: 0 0 16px;
  font-weight: 500;
}

.technique-card p {
  color: #666;
  margin: 0 0 24px;
  line-height: 1.6;
}

.technique-features {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.technique-features li {
  padding: 8px 12px;
  color: #555;
  position: relative;
  padding-left: 36px;
  flex: 1;
  min-width: fit-content;
}

.technique-features li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent-2);
  font-weight: 600;
}

/* Process Section */
.process-section {
  padding: 100px 0;
  background: #f8f9fa;
}

.process-steps {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.process-step {
  display: flex;
  align-items: center;
  gap: 40px;
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  position: relative;
}

/* .process-step:nth-child(even) {
  flex-direction: row-reverse;
} */

.step-number {
  font-family: "Unbounded", ui-sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--accent-2);
  /*   background: linear-gradient(135deg, rgba(255, 106, 0, 0.1), rgba(255, 106, 0, 0.2)); */
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--accent-2);
}

.step-content {
  flex: 1;
}

.step-content h3 {
  font-family: "Unbounded", ui-sans-serif;
  font-size: 1.6rem;
  color: var(--accent);
  margin: 0 0 16px;
  font-weight: 500;
}

.step-content p {
  color: #666;
  margin: 0 0 24px;
  line-height: 1.6;
  font-size: 1.1rem;
}

.step-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tool-tag {
  background: var(--accent-2);
  color: white;
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 0.8rem;
  font-weight: 500;
}

.step-icon {
  width: 40px;
  height: 40px;
  color: var(--accent-3);
  opacity: 1;
}

/* Tools Section */
.tools-section {
  padding: 100px 0;
  background: white;
}

.tools-content {
  max-width: 1200px;
  margin: 0 auto;
}

.tools-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
  margin-bottom: 60px;
}

.tool-item {
  display: flex;
  align-items: center;
  gap: 24px;
  background: #f8f9fa;
  padding: 24px;
  border-radius: 16px;
}

.tool-logo {
  width: 60px;
  height: 60px;
  background: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

.tool-logo img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.tool-info h3 {
  font-family: "Unbounded", ui-sans-serif;
  font-size: 1.2rem;
  color: var(--accent);
  margin: 0 0 8px;
  font-weight: 500;
}

.tool-info p {
  color: #666;
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

@media (max-width: 1260px) {
  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

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

.metric-card {
  background: white;

  padding: 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.metric-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Unbounded", ui-sans-serif;
  font-weight: 600;
  color: white;
  font-size: 1.2rem;
}

.metric-icon.lcp {
  background: linear-gradient(135deg, #10b981, #059669);
}

.metric-icon.fid {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.metric-icon.cls {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}

.metric-icon.fcp {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.metric-card h4 {
  font-size: 1.1rem;
  color: var(--accent);
  margin: 0 0 8px;
  font-weight: 500;
}

.metric-card p {
  color: #666;
  margin: 0 0 16px;
  font-size: 0.9rem;
}

.metric-target {
  background: #f0fdf4;
  color: #166534;
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.9rem;
}

/* Success Stories Section */
.success-stories {
  padding: 100px 0;
  background: #f8f9fa;
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.story-card {
  background: white;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.story-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.story-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 24px;
}

.story-logo {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 8px;
}

.story-logo-large {
  max-width: 150px;
  max-height: 60px;
  object-fit: contain;
  border-radius: 12px;
  margin-bottom: 12px;
}

.story-domain h3 {
  font-family: "Unbounded", ui-sans-serif;
  font-size: 1.3rem;
  color: var(--accent);
  margin: 0 0 4px;
  font-weight: 500;
}

.story-type {
  background: var(--accent-2);
  color: white;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 500;
}

.story-metrics {
  margin-bottom: 24px;
}

.before-after {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}

.metric-item {
  text-align: center;
  flex: 1;
}

.metric-label {
  display: block;
  font-size: 0.8rem;
  color: #666;
  margin-bottom: 4px;
}

.metric-value {
  font-family: "Unbounded", ui-sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
}

.metric-value.red {
  color: #ef4444;
}

.metric-value.green {
  color: #10b981;
}

.metric-arrow {
  font-size: 1.5rem;
  color: var(--accent-2);
  font-weight: 600;
}

.improvement {
  text-align: center;
  background: #d1fae5;
  color: #065f46;
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
}

.story-results {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

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

.result-icon {
  font-size: 1.2rem;
}

.result-text {
  color: #555;
  font-weight: 500;
}

.story-link {
  color: var(--accent-2);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.story-link:hover {
  color: var(--accent);
}

/* Final CTA Section */
.final-cta {
  padding: 100px 0;
  background: var(--accent);
  color: white;
}

.cta-content {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.cta-text {
  flex: 1;
}

.cta-text h2 {
  font-family: "Bricolage Grotesque";
  font-size: 2.5rem;
  margin: 0 0 20px;
  font-weight: 600;
}

.cta-text p {
  font-size: 1.1rem;
  margin: 0 0 32px;
  line-height: 1.6;
  opacity: 0.9;
}

.cta-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
}

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

.feature-icon {
  color: var(--accent-2);
  font-weight: 600;
}

.cta-actions {
  flex: 0 0 300px;
  text-align: center;
}

.button-primary.large,
.button-secondary.large {
  padding: 21px 32px;
  font-size: 18px;
  width: 100%;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 18px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  font-family: inherit;
}

.page .button-primary.large {
  background: #01d171;
  color: white;
  border: none;
}

.page .button-primary.large:hover {
  background: var(--accent-2);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(1, 209, 113, 0.3);
}

.page .button-secondary.large {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.page .button-secondary.large:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
}

.button-icon {
  font-size: 1.2rem;
}

.cta-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 1260px) {
  .pagespeed-hero {
    padding: 60px 0;
  }

  .pagespeed-hero h1 {
    font-size: 2.5rem;
  }

  section.pagespeed-hero .hero-text {
    text-align: center;
  }

  .hero-content {
    flex-direction: column;
    gap: 40px;
  }

  .hero-stats {
    justify-content: center;
    gap: 20px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .hero-cta {
    flex-direction: column;
    width: 100%;
    gap: 16px;
  }

  .hero-cta .button-primary,
  .hero-cta .button-secondary {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .hero-visual {
    flex: none;
  }

  .speedometer {
    width: 200px;
    height: 200px;
  }

  .speed-arc {
    width: 160px;
    height: 160px;
  }

  .speed-score {
    font-size: 2.5rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .step-tools {
    flex-wrap: wrap;
    justify-content: center;
  }

  .section-header p {
    font-size: 1rem;
  }

  .tab-nav {
    overflow-x: auto;
    overflow-y: hidden;
    flex-wrap: nowrap;
    justify-content: flex-start;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    scroll-behavior: smooth;
  }

  .tab-nav::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
  }

  .tab-button {
    font-size: 0.8rem;
    padding: 10px 16px;
  }

  .tab-panel-content {
    flex-direction: column;
    gap: 40px;
  }

  .tab-text {
    text-align: center;
  }

  .tab-visual {
    flex: none;
  }

  .techniques-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .process-step {
    flex-direction: column !important;
    text-align: center;
    gap: 24px;
    padding: 30px 20px;
  }

  .step-number {
    order: -1;
  }

  .step-icon {
    width: 60px;
    height: 60px;
  }

  .cta-content {
    flex-direction: column;
    gap: 40px;
    /* text-align: center; */
  }

  .cta-text h2 {
    font-size: 2rem;
  }

  .cta-actions {
    flex: none;
    width: 100%;
  }

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

  .tools-list {
    grid-template-columns: 1fr;
  }

  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .before-after {
    flex-direction: column;
    gap: 12px;
  }

  .metric-arrow {
    transform: rotate(90deg);
  }

  .mobile-stats {
    gap: 20px;
  }

  .device-screen {
    width: 100px;
    height: 160px;
    padding: 12px;
  }

  .conversion-chart {
    padding: 16px;
    height: 150px;
  }

  .chart-bar {
    width: 30px;
  }
}

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

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .tab-nav {
    padding: 6px;
    gap: 4px;
    overflow-x: auto;
    overflow-y: hidden;
    flex-wrap: nowrap;
    justify-content: flex-start;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
  }

  .tab-nav::-webkit-scrollbar {
    display: none;
  }

  .tab-button {
    font-size: 0.75rem;
    padding: 8px 12px;
  }

  .technique-card {
    padding: 24px 20px;
  }

  .process-step {
    padding: 24px 16px;
  }

  .story-card {
    padding: 24px 20px;
  }

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

  .cta-text h2 {
    font-size: 1.8rem;
  }

  .mobile-stats {
    flex-direction: column;
    gap: 24px;
  }
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.faq-section .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.faq-section .section-header h2 {
  font-size: 2.5rem;
  color: #1a202c;
  margin-bottom: 16px;
  font-weight: 700;
}

.faq-section .section-header p {
  font-size: 1.2rem;
  color: #718096;
  max-width: 600px;
  margin: 0 auto;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: 12px;
  margin-bottom: 16px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.faq-question {
  padding: 24px 28px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
}

.faq-question:hover {
  background: #f7fafc;
}

.faq-item.active .faq-question {
  background: var(--accent-2);
  color: white;
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.faq-question h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
  color: #2d3748;
  line-height: 1.4;
  flex: 1;
  padding-right: 20px;
}

.faq-item.active .faq-question h3 {
  color: white;
}

.faq-icon {
  font-size: 1.5rem;
  font-weight: 300;
  color: #667eea;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #edf2f7;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: #f7fafc;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  border-top: 1px solid rgba(102, 126, 234, 0.1);
}

.faq-answer p {
  padding: 24px 28px;
  margin: 0;
  color: #4a5568;
  line-height: 1.7;
  font-size: 0.95rem;
}

/* FAQ Responsive Design */
@media (max-width: 768px) {
  .faq-section {
    padding: 60px 0;
  }

  .faq-section .section-header {
    margin-bottom: 40px;
  }

  .faq-section .section-header h2 {
    font-size: 2rem;
  }

  .faq-question {
    padding: 20px;
  }

  .faq-question h3 {
    font-size: 1rem;
    padding-right: 15px;
  }

  .faq-answer p {
    padding: 20px;
    font-size: 0.9rem;
  }

  .faq-icon {
    width: 28px;
    height: 28px;
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .faq-section .section-header h2 {
    font-size: 1.8rem;
  }

  .faq-section .section-header p {
    font-size: 1rem;
  }

  .faq-question {
    padding: 18px;
  }

  .faq-answer p {
    padding: 18px;
  }
}

.category-info {
  margin-bottom: 40px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 12px;
  border-left: 4px solid var(--accent);
}

.category-meta {
  display: flex;
  align-items: center;
  gap: 20px;
}

.posts-count {
  font-weight: 500;
  color: #495057;
  font-size: 0.95rem;
}

.category-archive .blog-posts-grid {
  margin-top: 0;
}

/* Category-specific post cards */
.category-archive .blog-post-card {
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
}

.category-archive .blog-post-card:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 25px rgba(60, 9, 108, 0.1);
}

.category-archive .post-category {
  background: var(--accent);
  color: white;
  font-weight: 500;
}

span.modal-thank-text {
  font-weight: 700;
  margin: 20px 0 0 0;
  display: block;
  font-size: 24px;
  color: var(--accent);
}

span.thank-second-head {
  font-size: 20px;
  color: #888888;
  margin-bottom: 10px;
  display: block;
}

/* Responsive adjustments for category archive */
@media (max-width: 768px) {
  .category-info {
    margin-bottom: 30px;
    padding: 16px;
  }

  .category-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .posts-count {
    font-size: 0.9rem;
  }

  .category-archive .page-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .category-archive .page-title {
    font-size: 1.5rem;
  }

  .category-info {
    padding: 12px;
    margin-bottom: 24px;
  }
}

/* ============================================
   CRO PAGE STYLES
   ============================================ */

/* Section Icons */
.section-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
  font-size: 4rem;
  color: var(--accent-2);
}

/* Horizontal Scrolling Components */
.killers-grid,
.triggers-grid {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 20px 0;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.killers-grid::-webkit-scrollbar,
.triggers-grid::-webkit-scrollbar {
  display: none;
}

.killer-item,
.trigger-item {
  flex: 0 0 280px;
  background: white;
  border-radius: 16px;
  padding: 24px;
  scroll-snap-align: start;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  border: 1px solid #e1e5e9;
  transition: transform 0.3s ease;
}

.killer-item:hover,
.trigger-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* Desktop layout - show 3 items */
@media (min-width: 992px) {
  .killers-grid,
  .triggers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    overflow: visible;
  }

  .killer-item,
  .trigger-item {
    flex: none;
  }
}

/* Killers Carousel Styles */
.killers-carousel-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.killers-carousel-container:hover .carousel-btn {
  opacity: 1;
}

.killers-carousel-nav {
  position: absolute;
  top: 5%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  z-index: 10;
  pointer-events: none;
  padding: 10px;
}

.carousel-btn {
  background: var(--accent-2);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  pointer-events: all;
  color: white;
  opacity: 0;
}

.carousel-btn:hover {
  background: #e55a00;
  color: white;
  transform: scale(1.1);
}

.carousel-btn .material-symbols-outlined {
  font-size: 24px;
}

.killers-carousel {
  overflow: hidden;
  border-radius: 16px;
}

.killers-track {
  position: relative;
  width: 100%;
}

.killers-slide {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 20px 0;
}

.killers-slide.active {
  display: grid;
}

.killers-slide .killer-card {
  flex: none;
  background: white;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  border: 1px solid #e1e5e9;
  transition: transform 0.3s ease;
  text-align: center;
}

.killers-slide .killer-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.killer-icon {
  width: 80px;
  height: 80px;
  /* background: linear-gradient(135deg, #ff6a00, #ff8533); */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
  font-size: 2rem;
}

.killer-card h3 {
  font-size: 1.4rem;
  color: var(--accent);
  margin: 0 0 16px;
  font-weight: 600;
}

.killer-card p {
  color: #666;
  margin: 0 0 20px;
  line-height: 1.6;
  font-size: 0.95rem;
}

.killer-stat {
  background: linear-gradient(135deg, #ff4757, #ff3838);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-block;
}

.killers-indicators {
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: 4px;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #e1e5e9;
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background: var(--accent-2);
  transform: scale(1.3);
}

.indicator:hover {
  background: var(--accent);
}

/* Responsive Carousel */
@media (max-width: 991px) {
  .killers-slide {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .killers-carousel-nav {
    display: none;
  }
}

@media (max-width: 767px) {
  .killers-slide {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .killer-card {
    padding: 20px !important;
  }

  .killer-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
}

/* Mockup Content */
.mockup-content {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 16px;
  min-height: 200px;
  border: 1px solid #e1e5e9;
}

.mockup-content.before {
  border-color: #dc3545;
}

.mockup-content.after {
  border-color: #28a745;
}

/* Placeholder Images */
.placeholder-image {
  background: #e9ecef;
  border: 2px dashed #adb5bd;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6c757d;
  font-size: 1.2rem;
  min-height: 120px;
  margin-bottom: 12px;
}

.placeholder-image.hero-banner {
  min-height: 180px;
  font-size: 2rem;
}

.image-label {
  font-size: 2rem;
}

/* Benefit Items */
.benefit-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin: 12px 0;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #495057;
}

/* Carousel Thumbs */
.carousel-thumbs {
  display: flex;
  gap: 8px;
  margin-top: 8px;
  justify-content: center;
}

.thumb-item {
  width: 40px;
  height: 30px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background: #f8f8f8;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: #999;
  transition: all 0.3s ease;
}

.thumb-item.active {
  border-color: #007cba;
  background: #007cba;
  color: white;
}

/* Checkout Layout */
.checkout-layout {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.checkout-layout.optimized-layout {
  gap: 12px;
}

.form-section.compact .form-fields {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mockup-order-summary {
  background: #f9f9f9;
  border: 1px solid #e1e1e1;
  border-radius: 6px;
  padding: 12px;
  margin-bottom: 12px;
}

.order-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.item-image .placeholder-image.mini {
  width: 40px;
  height: 30px;
  font-size: 14px;
  margin-bottom: 0;
}

.item-details {
  flex: 1;
}

.item-name {
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 2px;
}

.item-price {
  font-size: 12px;
  color: #007cba;
  font-weight: 600;
}

.order-total {
  border-top: 1px solid #e1e1e1;
  padding-top: 8px;
  font-weight: 600;
  font-size: 14px;
  text-align: right;
}

.field.prefilled {
  background: #e8f4fd;
  border: 1px solid #007cba;
  color: #007cba;
  font-size: 12px;
  padding: 8px 12px;
  border-radius: 4px;
}

.field.card-field {
  border: 2px solid #007cba;
  background: white;
  padding: 8px 12px;
  border-radius: 4px;
}

.trust-indicators {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.trust-item {
  font-size: 11px;
  color: #28a745;
  background: #f8fff9;
  padding: 4px 8px;
  border-radius: 4px;
  border: 1px solid #d4edda;
}

/* Issues and Improvements Lists */
.issues-list,
.improvements-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
}

.issue,
.improvement {
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  border: 1px solid;
}

.issue {
  background: #fff5f5;
  color: #c53030;
  border-color: #fed7d7;
}

.improvement {
  background: #f0fff4;
  color: #38a169;
  border-color: #c6f6d5;
}

.section-icon .material-symbols-outlined {
  font-size: 40px;
  color: white;
}

/* CRO Calculator Section */
.cro-calculator-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9ff 0%, #f1f4ff 100%);
}

.calculator-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.calculator-inputs {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.input-group label {
  font-weight: 600;
  color: var(--text);
  font-size: 14px;
}

.input-group input {
  padding: 16px;
  border: 2px solid #e1e5e9;
  border-radius: 12px;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.input-group input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(30, 9, 108, 0.1);
}

.calculator-results {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
}

.current-revenue,
.projected-revenue,
.additional-revenue {
  display: flex;
  flex-direction: column;
  text-align: center;
  padding: 20px;
  border-radius: 12px;
  background: #f8f9ff;
}

.additional-revenue {
  background: linear-gradient(135deg, var(--accent-3), #00c966);
  color: white;
}

.calculator-results .label {
  font-size: 14px;
  margin-bottom: 8px;
  opacity: 0.8;
}

.calculator-results .amount {
  font-size: 28px;
  font-weight: 700;
}

.amount.highlight {
  font-size: 32px;
  color: white;
}

/* Conversion Killers Section */
.conversion-killers-section {
  padding: 80px 0;
  background: white;
}

.killers-grid {
  display: flex;
  gap: 24px;
  margin-top: 40px;
  overflow-x: auto;
  padding: 20px 10px;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* Internet Explorer 10+ */
}

.killers-grid::-webkit-scrollbar {
  display: none; /* Safari and Chrome */
}

@media (min-width: 992px) {
  .killers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow-x: visible;
    padding: 20px 0;
  }
}

.killer-card {
  background: white;
  border: 1px solid #e1e5e9;
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  min-width: 280px;
  flex-shrink: 0;
}

.killer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border-color: #ff4757;
}

.killer-icon {
  font-size: 48px;
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 64px;
}

.killer-icon .material-symbols-outlined {
  font-size: 48px;
  color: #ff4757;
}

.killer-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text);
}

.killer-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 16px;
}

.killer-stat {
  background: #ff4757;
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 14px;
  display: inline-block;
}

/* Before/After Showcase Section */
.before-after-showcase {
  padding: 80px 0;
  background: #f8f9ff;
}

.showcase-tabs .tab-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
  background: white;
  padding: 8px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  max-width: 400px;
  margin: 0 auto 40px;
}

.tab-button {
  padding: 12px 24px;
  border: none;
  background: transparent;
  color: var(--muted);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 14px;
}

.tab-button.active {
  background: var(--accent);
  color: white;
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

.comparison-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 30px;
}

.before-version,
.after-version {
  background: white;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.before-version h3 {
  color: #ff4757;
  margin-bottom: 16px;
}

.after-version h3 {
  color: var(--accent-3);
  margin-bottom: 16px;
}

.mockup-frame {
  background: #f8f9ff;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 16px;
  border: 2px solid #e1e5e9;
}

.mockup-frame.optimized {
  border-color: var(--accent-3);
  background: #f0fff4;
}

.mockup-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mockup-header {
  font-weight: 600;
  padding: 8px 12px;
  background: white;
  border-radius: 6px;
  font-size: 14px;
}

.mockup-header.strong {
  background: var(--accent);
  color: white;
}

.mockup-text {
  padding: 6px 12px;
  background: white;
  border-radius: 6px;
  font-size: 12px;
  opacity: 0.7;
}

.mockup-cta {
  padding: 10px 16px;
  border-radius: 6px;
  text-align: center;
  font-weight: 600;
  font-size: 12px;
}

.hidden-cta {
  background: #ddd;
  color: #999;
}

.visible-cta {
  background: var(--accent-2);
  color: white;
}

.urgent-cta {
  background: #ff4757;
  color: white;
}

.trust-badges,
.mockup-reviews {
  text-align: center;
  font-size: 12px;
  opacity: 0.8;
}

.mockup-product-title {
  font-weight: 600;
  font-size: 14px;
  padding: 6px 12px;
  background: white;
  border-radius: 6px;
  margin-bottom: 8px;
}

.mockup-price {
  padding: 6px 12px;
  background: white;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  color: var(--accent-3);
  margin-bottom: 8px;
}

.old-price {
  text-decoration: line-through;
  color: #999;
  font-size: 12px;
  margin-left: 8px;
}

.mockup-stock {
  padding: 6px 12px;
  background: #ff4757;
  color: white;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 8px;
  text-align: center;
}

.mockup-checkout-title {
  font-weight: 600;
  font-size: 16px;
  padding: 12px 0;
  text-align: center;
  margin-bottom: 16px;
  border-bottom: 1px solid #eee;
}

.mockup-order-summary {
  padding: 12px;
  background: #f8f9ff;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
  border-left: 4px solid var(--accent);
}

.progress-bar {
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 16px;
  padding: 8px 0;
}

.trust-indicators {
  font-size: 11px;
  color: var(--accent-3);
  text-align: center;
  margin-top: 8px;
  font-weight: 500;
}

.mockup-secondary-text {
  font-size: 11px;
  color: var(--muted);
  padding: 6px 12px;
  background: white;
  border-radius: 6px;
  opacity: 0.7;
  margin-top: 12px;
}

.issues-list,
.improvements-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 12px;
}

.issue {
  color: #ff4757;
}

.improvement {
  color: var(--accent-3);
}

.result-summary {
  text-align: center;
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.metric-number {
  font-size: 36px;
  font-weight: 700;
  color: var(--accent-3);
  display: block;
}

.metric-label {
  font-size: 14px;
  color: var(--muted);
}

/* Psychology Triggers Section */
.psychology-triggers-section {
  padding: 80px 0;
  background: white;
}

.triggers-grid {
  display: flex;
  gap: 24px;
  margin-top: 40px;
  overflow-x: auto;
  padding: 20px 10px;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.triggers-grid::-webkit-scrollbar {
  height: 8px;
}

.triggers-grid::-webkit-scrollbar-track {
  background: #f1f3f4;
  border-radius: 10px;
}

.triggers-grid::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 10px;
}

.triggers-grid::-webkit-scrollbar-thumb:hover {
  background: #140a5e;
}

@media (min-width: 1200px) {
  .triggers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    overflow-x: visible;
    padding: 20px 0;
  }
}

.trigger-card {
  background: white;
  border: 1px solid #e1e5e9;
  border-radius: 16px;
  padding: 24px;
  position: relative;
  transition: all 0.3s ease;
  min-width: 280px;
  flex-shrink: 0;
  text-align: center;
}

.trigger-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

.trigger-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--accent), #2d1b95);
  border-radius: 16px;
  margin: 0 auto 16px;
}

.trigger-icon .material-symbols-outlined {
  font-size: 32px;
  color: white;
}

.trigger-content h3 {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
}

.trigger-content p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 16px;
}

.trigger-examples {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.example {
  font-size: 12px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.example .material-symbols-outlined {
  font-size: 16px;
  color: var(--accent-3);
}

.trigger-impact {
  background: linear-gradient(135deg, var(--accent-3), #00c966);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
}

/* A/B Test Results Section */
.ab-test-results-section {
  padding: 80px 0;
  background: #f8f9ff;
}

.test-results-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 32px;
  margin-top: 40px;
}

.test-result-card {
  background: white;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.test-info h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.test-info p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 24px;
}

.test-visual {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
  justify-content: center;
}

.variant {
  text-align: center;
  padding: 20px;
  border-radius: 12px;
  background: #f8f9ff;
  position: relative;
  min-width: 120px;
}

.variant.winner {
  background: #f0fff4;
  border: 2px solid var(--accent-3);
}

.button-mockup,
.headline-mockup {
  padding: 12px 24px;
  border-radius: 8px;
  color: white;
  font-weight: 600;
  margin-bottom: 12px;
  font-size: 14px;
}

.button-mockup.green {
  background: #27ae60;
}

.button-mockup.orange {
  background: var(--accent-2);
}

.headline-mockup {
  background: var(--accent);
  color: white;
  padding: 16px;
  font-size: 16px;
}

.conversion-rate {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
}

.winner-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--accent-3);
  color: white;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 10px;
  font-weight: 600;
}

.vs-indicator {
  font-size: 18px;
  font-weight: 600;
  color: var(--muted);
}

.test-result {
  text-align: center;
  padding-top: 16px;
  border-top: 1px solid #e1e5e9;
}

.improvement-percentage {
  display: block;
  font-size: 20px;
  font-weight: 600;
  color: var(--accent-3);
  margin-bottom: 4px;
}

.confidence {
  font-size: 12px;
  color: var(--muted);
}

/* Funnel Analyzer Section */
.funnel-analyzer-section {
  padding: 80px 0;
  background: white;
}

.funnel-container {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.funnel-stage {
  display: grid;
  grid-template-columns: 60px 1fr 200px;
  gap: 20px;
  align-items: center;
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border: 1px solid #e1e5e9;
  position: relative;
}

.stage-number {
  width: 40px;
  height: 40px;
  background: var(--accent);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.stage-info h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.stage-metrics {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.visitors {
  font-size: 14px;
  color: var(--text);
}

.percentage {
  font-size: 12px;
  color: var(--muted);
}

.stage-visual {
  grid-column: 2 / 4;
  height: 8px;
  background: #f1f3f4;
  border-radius: 4px;
  overflow: hidden;
  margin-top: 8px;
}

.funnel-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: 4px;
  transition: width 0.5s ease;
}

.funnel-bar.success {
  background: linear-gradient(90deg, var(--accent-3), #00c966);
}

.drop-off-indicator {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  background: #ff4757;
  color: white;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 10px;
  font-weight: 600;
  white-space: nowrap;
}

.drop-off-indicator.critical {
  background: #ff3742;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

.funnel-insights {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.insight-card {
  background: #fff5f5;
  border: 1px solid #fed7d7;
  border-radius: 12px;
  padding: 20px;
}

.insight-card.critical {
  border-left: 4px solid #ff4757;
}

.insight-card h4 {
  color: #c53030;
  margin-bottom: 8px;
  font-size: 16px;
}

.insight-card p {
  color: #742a2a;
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

/* Detailed Report Card Styles */
.detailed-report-card {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.report-header {
  background: linear-gradient(135deg, #fff5f5 0%, #fed7d7 100%);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid #fed7d7;
}

.report-icon {
  font-size: 24px;
  color: #e53e3e;
}

.report-header h4 {
  flex: 1;
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #2d3748;
}

.report-badge {
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.report-badge.critical {
  background: #fed7d7;
  color: #c53030;
}

.report-content {
  padding: 24px;
}

.main-finding {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e2e8f0;
}

.finding-metric {
  text-align: center;
  min-width: 80px;
}

.metric-value {
  display: block;
  font-size: 32px;
  font-weight: 700;
  color: #e53e3e;
  line-height: 1;
}

.metric-label {
  display: block;
  font-size: 12px;
  color: #718096;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

.finding-description {
  flex: 1;
}

.finding-description p {
  margin: 0;
  color: #4a5568;
  line-height: 1.6;
}

.report-details {
  margin-bottom: 24px;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #f7fafc;
}

.detail-row:last-child {
  border-bottom: none;
}

.detail-label {
  font-weight: 500;
  color: #718096;
  font-size: 14px;
}

.detail-value {
  font-weight: 600;
  color: #2d3748;
  font-size: 14px;
}

.critical-text {
  color: #e53e3e !important;
}

.recommendations {
  background: #f7fafc;
  border-radius: 12px;
  padding: 20px;
}

.recommendations h5 {
  margin: 0 0 16px 0;
  font-size: 16px;
  font-weight: 600;
  color: #2d3748;
}

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

.recommendations li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  color: #4a5568;
  font-size: 14px;
  line-height: 1.5;
}

.recommendations li .material-symbols-outlined {
  font-size: 18px;
  color: var(--accent-3);
}

/* Device Performance Section */
.device-performance-section {
  padding: 80px 0;
  background: #f8f9ff;
}

.device-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 40px;
}

.device-card {
  background: white;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.device-header {
  text-align: center;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e1e5e9;
}

.device-icon {
  font-size: 48px;
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 64px;
}

.device-icon .material-symbols-outlined {
  font-size: 48px;
  color: var(--accent);
}

.device-header h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}

.traffic-share {
  background: var(--accent);
  color: white;
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 12px;
  font-weight: 600;
}

.device-stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.stat-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #f1f3f4;
}

.stat-label {
  font-size: 14px;
  color: var(--muted);
}

.stat-value {
  font-weight: 600;
  font-size: 16px;
}

.stat-value.high {
  color: var(--accent-3);
}

.stat-value.low {
  color: #ff4757;
}

.optimization-tips h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text);
}

.optimization-tips ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.optimization-tips li {
  padding: 8px 0;
  font-size: 14px;
  color: var(--muted);
  position: relative;
  padding-left: 20px;
}

.optimization-tips li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 600;
}

/* Responsive Design */
@media (max-width: 991px) {
  .calculator-container,
  .comparison-container,
  .device-comparison {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .killers-grid {
    overflow-x: auto;
    display: flex;
    gap: 20px;
    padding: 20px 10px;
  }

  .test-results-container {
    grid-template-columns: 1fr;
  }

  .funnel-stage {
    grid-template-columns: 50px 1fr;
    gap: 12px;
  }

  .stage-visual {
    grid-column: 1 / 3;
  }

  .drop-off-indicator {
    position: static;
    transform: none;
    margin-top: 8px;
    display: inline-block;
  }

  .tab-nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .tab-button {
    padding: 10px 16px;
    font-size: 12px;
  }
}

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

.crafted-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
  border: 1px solid #000;
  padding: 8px 12px;
  border-radius: 12px;
  transition: all 0.3s ease;
  /* background metalic shane grey, too detail gradient */
  background: #030303;
}

.crafted-link span {
  font-weight: 400;
  font-size: 15px;
  font-family: "Bricolage Grotesque";
  color: #5e5b6c;
  letter-spacing: 0.5px;
  line-height: 1;
}

.about-heliantus svg {
  width: 150px;
  height: auto;
  /* animation: rotate 5s ease-in-out 1; */
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.about-heliantus svg:hover {
  animation: rotate 5s ease-in-out 1;
}

/* Hero Site URL Bar (bottom of primary hero) */
.hero-site-url-bar-wrapper {
  width: 100%;
  margin: 20px auto;
  padding: 0 24px 40px px;
  box-sizing: border-box;
  /* max-width: 1440px; */
}

.url-hint {
  font-size: 14px;
  padding: 15px 0;
  color: #5f49ba;
}

.hero-site-url-bar {
  display: flex;
  gap: 12px;
  align-items: stretch;
  background: #ffffff10;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 14px 18px 14px 18px;
  border: 1px solid #ffffff33;
  border-radius: 18px;
  box-shadow: 0 8px 24px -8px rgba(0, 0, 0, 0.25),
    0 2px 6px -2px rgba(0, 0, 0, 0.35);
  position: relative;
}

.hero-site-url-bar:before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  padding: 1px; /* inner border gradient */
  background: linear-gradient(110deg, #ff9100 0%, #6a3bff 50%, #01d171 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.6;
}

.hero-site-url-bar input[type="url"],
.hero-site-url-bar input[type="text"] {
  flex: 1;
  background: #ffffff;
  border: 1px solid #d7d3e7;
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 16px;
  line-height: 1.3;
  font-family: inherit;
  outline: none;
  color: #1d0a6c;
  min-width: 0;
}

.hero-site-url-bar input:focus {
  border-color: #6a3bff;
  box-shadow: 0 0 0 3px rgba(106, 59, 255, 0.25);
}

.hero-site-url-bar button.submit-url {
  background: linear-gradient(135deg, #ff9100, #ff6a00);
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 12px;
  padding: 14px 26px;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  transition: background 0.25s ease, transform 0.18s ease;
  box-shadow: 0 4px 14px -4px rgba(255, 106, 0, 0.55);
}

.hero-site-url-bar button.submit-url:hover {
  background: linear-gradient(135deg, #ff9d1a, #ff7a1f);
  transform: translateY(-2px);
}

.hero-site-url-bar button.submit-url:active {
  transform: translateY(0);
}

.hero-site-url-bar .url-hint {
  font-size: 13px;
  color: #d9d6e6;
  margin-top: 8px;
  padding-left: 4px;
  line-height: 1.2;
}

.hero-site-url-bar-error {
  margin-top: 8px;
  font-size: 13px;
  color: #ffb4b4;
  display: none;
}

.hero-site-url-bar-error.active {
  display: block;
}

@media (max-width: 920px) {
  .hero-site-url-bar {
    flex-direction: column;
    padding: 16px;
  }
  .hero-site-url-bar button.submit-url {
    width: 100%;
    justify-content: center;
    padding: 14px 18px;
  }
  .hero-site-url-bar input[type="url"],
  .hero-site-url-bar input[type="text"] {
    width: 100%;
  }
  .hero-site-url-bar-wrapper {
    padding: 0 16px 40px 16px;
  }
}

@media (max-width: 550px) {
  .hero-site-url-bar {
    border-radius: 16px;
  }
  .hero-site-url-bar:before {
    border-radius: 16px;
  }
}

/* End Hero Site URL Bar */

/* Header login / panel buttons */
.nav .dashboard-nav-btn,
.nav .login-nav-btn {
  display: inline-block;
  background: var(--accent-3);
  color: #fff !important;
  padding: 10px 18px;
  border-radius: 18px;
  font-size: 14px;
  font-weight: 600;
  width: max-content;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 4px 14px -6px rgba(38, 24, 94, 0.45);
  transition: 0.18s filter, 0.18s transform;
}
.nav .dashboard-nav-btn:hover,
.nav .login-nav-btn:hover {
  filter: brightness(1.08);
}
.nav .dashboard-nav-btn:active,
.nav .login-nav-btn:active {
  transform: translateY(1px);
}
.menu-login-item {
  margin-left: 8px;
}
.mobile-dashboard-nav-btn,
.mobile-login-nav-btn {
  display: inline-block;
  background: #26185e;
  color: #fff !important;
  padding: 12px 18px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 14px -6px rgba(38, 24, 94, 0.45);
}
.mobile-login-nav-btn {
  background: linear-gradient(90deg, #ff7300, #ff5e3a);
  box-shadow: 0 4px 14px -5px rgba(255, 115, 0, 0.45);
}
.mobile-login-nav-btn:hover {
  filter: brightness(1.06);
}
