/*
Theme Name: Hosn
Theme URI: https://hosn.dev
Author: Hosn
Author URI: https://hosn.dev
Description: A modern dark theme for HOSN Software Development — featuring gold accents, clean typography, and a professional layout for tech companies.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: hosn
Tags: dark, one-column, custom-menu, featured-images
*/

/* === RESET === */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Outfit', sans-serif;
  background: #0a0a0a;
  color: #fff;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

/* === NAV === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* background: #151515; */
  backdrop-filter: blur(12px);
      max-width: 1920px;
    margin: 0 auto;
}

.nav-logo {
  font-size: 24px;
  font-weight: 700;
  color: #f3ce34;
  letter-spacing: 2px;
}

.nav-links {
  display: flex;
  gap: 48px;
  align-items: center;
  background: rgba(97, 97, 97, 0.15);
  padding: 12px 40px;
  border-radius: 25px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 300;
  color: #fff;
  transition: color 0.3s;
}

.nav-links a.active,
.nav-links a:hover {
  color: #f3ce34;
}

.nav-links a.active {
  font-weight: 500;
}

/* WordPress nav menu integration */
.nav-links ul {
  display: flex;
  gap: 48px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links ul li a {
  font-size: 14px;
  font-weight: 300;
  color: #fff;
  transition: color 0.3s;
}

.nav-links ul li.current-menu-item a,
.nav-links ul li a:hover {
  color: #f3ce34;
}

.nav-links ul li.current-menu-item a {
  font-weight: 500;
}

.nav-btns {
  display: flex;
  gap: 12px;
  align-items: center;
}
/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: white; /* Adjust color to match your design */
  transition: all 0.3s ease;
  border-radius: 2px;
}

/* Mobile Menu Toggle - Active State */
.mobile-menu-toggle[aria-expanded="true"] .hamburger span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Show toggle on mobile */
@media (max-width: 1024px) {
  .mobile-menu-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #1a1a1a; /* Match your nav background */
    flex-direction: column;
    padding: 20px;
    border-top: 1px solid #333;
    z-index: 1000;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a,
  .nav-links ul li a {
    display: block;
    padding: 15px 0;
    border-bottom: 1px solid #333;
    width:100%;
  }
.nav-links {
    display: flex;
    gap: 18px;
}
  .nav-btns {
    display: flex;
    gap: 10px;
    flex-direction: column;
  }

  .nav-btns button {
    width: 100%;
  }
}
.btn-login {
  border: 1px solid #fff;
  border-radius: 25px;
  padding: 10px 28px;
  font-size: 14px;
  font-weight: 500;
  background: none;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-login:hover {
  background: #fff;
  color: #151515;
}

.btn-started {
  background: #f3ce34;
  border-radius: 25px;
  padding: 10px 28px;
  font-size: 14px;
  font-weight: 500;
  color: #151515;
  border: none;
  cursor: pointer;
  transition: transform 0.3s;
}

.btn-started:hover {
  transform: scale(1.05);
}

/* === FRONT PAGE APPLE-STYLE LOAD REVEAL === */
:root {
  --fp-apple-ease: cubic-bezier(0.16, 1, 0.3, 1);
  --fp-soft-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

.front-page-motion-ready .fp-load-reveal:not(.fp-reveal-in):not(.fp-reveal-done) {
  opacity: 0;
  transform: translate3d(var(--fp-start-x, 0), var(--fp-start-y, 42px), 0) scale(var(--fp-start-scale, 0.985));
  filter: blur(10px);
}

.front-page-motion-ready .fp-load-reveal.fp-reveal-in {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
  transition:
    opacity 1000ms var(--fp-soft-ease),
    transform 1100ms var(--fp-apple-ease),
    filter 1000ms var(--fp-soft-ease);
  transition-delay: var(--fp-delay, 0ms);
  will-change: opacity, transform, filter;
}

.front-page-motion-ready .fp-load-reveal.fp-reveal-done {
  opacity: 1;
  filter: none;
  will-change: auto;
}

.front-page-motion-ready .hero-left {
  --fp-start-x: -34px;
  --fp-start-y: 34px;
}

.front-page-motion-ready .hero-right {
  --fp-start-x: 34px;
  --fp-start-y: 34px;
}

.front-page-motion-ready .top-left-image,
.front-page-motion-ready .top-right-image,
.front-page-motion-ready .top-center-image {
  --fp-start-y: -22px;
  --fp-start-scale: 0.96;
}

.front-page-motion-ready .service-card,
.front-page-motion-ready .roadmap-row,
.front-page-motion-ready .faq-item {
  --fp-start-y: 52px;
  --fp-start-scale: 0.96;
}

@media (prefers-reduced-motion: reduce) {
  .front-page-motion-ready .fp-load-reveal {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
}
  
/* === HERO === */
.hero {
  /* min-height: 100vh; */
  display: flex;
  align-items: center;
  padding: 150px 80px 80px;
  position: relative;
  overflow: hidden;
}

/* .hero::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 900px; height: 900px; background: radial-gradient(circle, rgba(243,206,52,0.06) 0%, transparent 70%); pointer-events: none; } */
.hero-left {
  flex: 1;
  max-width: 100%;
  z-index: 2;
}

.inline-heading {
  position: relative;
  display: flex;
  align-items: flex-end;
  gap: 0;
}
.inline-heading h1 {
  margin-bottom: 0;
}
/* .inline-image {
  width: 90px;
  height: 90px;
  object-fit: contain;
  display: inline-block;
  vertical-align: middle;
  margin-left: -10px;
  margin-bottom: 8px;
  animation: spinBall 6s linear infinite;
} */
/* .inline-image {
    bottom: 10px;
    position: absolute;
    left: 50%;
} */
 .hero-wrapper {
    display: flex;
    /* flex-direction: row; */
    align-content: center;
    justify-content: center;
    max-width: 1920px;
    margin: 0 auto;
    gap: 80px;
}
.hero-left h1 {
  font-size: 82px;
  line-height: 1.1;
  font-weight: 400;
  margin-bottom: 24px;
}

.hero-left h1 strong {
  font-weight: 700;
}

.hero-left h1 .gold {
  color: #f3ce34;
  font-weight: 700;
}

.hero-left p {
  font-size: 18px;
  color: #f5f5f5;
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 500px;
  font-weight: 300;
}

.hero-cta {
  display: flex;
  gap: 6px;
  align-items: center;
  margin-bottom: 24px;
}

.hero-cta .primary {
  background: #fff;
  color: #151515;
  border: none;
  font-weight: 500;
  padding: 17px 36px 18px 35px;
  border-radius: 25px;
  font-size: 14px;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  transition: transform 0.3s;
}

.hero-cta .primary:hover {
  transform: scale(1.05);
}

.hero-cta .secondary {
  border: 2px solid #f4d03f;
  background: none;
  color: #f4d03f;
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 18px;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  transition: all 0.3s;
}

.hero-cta .secondary:hover {
  background: rgba(244, 208, 63, 0.1);
}

.hero-perks {
  display: flex;
  gap: 24px;
}

.hero-perks span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #f5f5f5;
}

.hero-perks span::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f4d03f;
  opacity: 0.72;
}

.hero-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
}

.btn-arrow {
  border-radius: 100%;
  padding: 7px;
  border: 1px solid #F3CE34;
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
}

.top-left-image {
  position: absolute;
  left: 0px;
  top: 90px;
}

.top-right-image {
  position: absolute;
  top: -110px;
  right: 0px;
}

.top-center-image {
  position: absolute;
  right: 290px;
  bottom: 0;
}

/* === CONTACT FORM === */
.hero-right .contact-form {
  background: #202020;
  border: 2px solid rgba(243, 206, 52, 0.3);
  border-radius: 16px;
  padding: 30px 32px;
  width: 100%;
  max-width: 480px;
}

.hero-right .contact-form h3 {
  font-size: 30px;
  margin-bottom: 20px;
  font-weight: 400;
}

.hero-right .contact-form h3 span {
  color: #f3ce34;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  background: #1a1a1a;
  border: 2px solid rgba(244, 208, 63, 0.2);
  border-radius: 8px;
  padding: 14px 16px;
  color: #fff;
  font-size: 16px;
  font-family: 'Outfit', sans-serif;
  margin-bottom: 16px;
  outline: none;
  transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(244, 208, 63, 0.6);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(245, 245, 245, 0.4);
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form .submit-btn {
  width: 100%;
  background: linear-gradient(to bottom, #f4d03f, #e8c547);
  color: #151515;
  border: none;
  padding: 16px;
  border-radius: 8px;
  font-size: 18px;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  transition: transform 0.3s;
}

.contact-form .submit-btn:hover {
  transform: scale(1.02);
}

.contact-form .disclaimer {
  font-size: 13px;
  color: rgba(245, 245, 245, 0.6);
  text-align: center;
  margin-top: 12px;
  line-height: 1.5;
}

.contact-form .disclaimer a {
  color: #f3ce34;
}

/* === CONCENTRIC CIRCLES BG === */
.circles-bg {
  position: absolute;
  right: -200px;
  top: 50%;
  transform: translateY(-50%);
  width: 1000px;
  height: 1000px;
  pointer-events: none;
  opacity: 0.15;
}

.circles-bg .circle {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* === SECTION STYLES === */
section {
  padding: 100px 80px;
  position: relative;
  overflow: hidden;
}

.section-badge {
  display: inline-block;
  background: rgba(97, 97, 97, 0.38);
  border-radius: 25px;
  padding: 6px 16px;
  font-size: 10px;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  margin-bottom: 16px;
}

.section-title {
  font-size: 72px;
  line-height: 1.15;
  text-align: center;
  margin-bottom: 16px;
}

.section-title .gold {
  color: #f3ce34;
}

.section-subtitle {
  font-size: 20px;
  color: #f5f5f5;
  text-align: center;
  margin-bottom: 60px;
}

/* === ORBIT SECTION === */
.orbit-section {
  background: #0a0a0a;
  padding: 0;
  overflow: hidden;
  width: 100%;
}

.orbit-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 110px 0 80px;
}

.orbit-container {
  position: relative;
  width: 100%;
  max-width: 1180px;
  height: 760px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

@keyframes orbit {
  0% {
    transform: rotate(calc(var(--angle) * 1deg)) translateY(calc(var(--radius) * 1px)) rotate(calc((var(--angle) * -1deg) - 0deg));
  }

  100% {
    transform: rotate(calc(var(--angle) * 1deg + 360deg)) translateY(calc(var(--radius) * 1px)) rotate(calc((var(--angle) * -1deg) - 360deg));
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(1.05);
    opacity: 0.9;
  }
}

.orbit-item {
  backdrop-filter: blur(10px);
  padding: 5px;
  transition: all 0.3s ease-in-out;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  transform-origin: center;
  background: linear-gradient(180deg, rgba(74, 74, 74, 0.0315) 0%, rgba(255, 255, 255, 0.21) 100%);
  color: #fff;
  box-shadow: 0px 4px 4px 0px #00000040;
  cursor: pointer;
  z-index: 20;
}

.orbit-item:hover {
  transform: scale(1.15);
}

.orbit-item svg {
  width: 100%;
  height: 100%;
}

.orbit-path {
  pointer-events: none;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  z-index: 10;
}

.center-core {
  z-index: 30;
  filter: drop-shadow(0 0 8px rgba(255, 255, 0, 0.5));
  animation: pulse 2s infinite alternate;
}

@media (max-width: 1024px) {
  .orbit-wrapper { padding: 80px 0 70px; }
  .orbit-container { height: 70vh; }
}
@media (max-width: 768px) {
  .orbit-wrapper { padding: 40px 24px; }
  .orbit-container {
    height: 500px;
    min-height: 0;
    max-width: 100%;
  }
  .center-core img {
    width: 70px !important;
    height: auto !important;
  }
}
@media (max-width: 480px) {
  .orbit-wrapper { padding: 30px 16px; }
  .orbit-container {
    height: 360px;
    min-height: 0;
    max-width: 100%;
  }
  .center-core img {
    width: 40px !important;
    height: auto !important;
  }
}

/* === BUILD SECTION === */
.build-section {
  /* background: #151515; */
  /* min-height: 100vh; */
      padding-top: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
      margin-top: 40px;
}

.build-section .badge-wrap {
  background: rgba(244, 208, 63, 0.1);
  border: 1px solid rgba(244, 208, 63, 0.2);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 14px;
  color: #f4d03f;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 24px;
}

.build-title {
  font-size: 72px;
  line-height: 1.15;
  max-width: 600px;
  margin-bottom: 24px;
}

.build-title .gold {
  color: #f4d03f;
}

.build-desc {
  font-size: 20px;
  color: #f5f5f5;
  line-height: 1.5;
  max-width: 580px;
  margin-bottom: 40px;
}

.build-content {
  display: flex;
  align-items: center;
  gap: 80px;
  max-width: 1800px;
  margin: 0 auto;
  width: 100%;
}



.build-right {
  flex: 1;
  position: relative;
  min-height: 520px;
}

.build-mockup-laptop {
  position: absolute;
  left: 0;
  top: 80px;
  width: 100%;
  z-index: 1;
}
button.primary.build-btn {
    border-radius: 8px;
    background: linear-gradient(180deg, #F4D03F 0%, #E8C547 100%);
}
.build-mockup-laptop img {
    width: 100%;
    /* height: auto; */
    display: block;
    width: 100%;
    height: 100%;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: fill;
    object-position: center;
}

.build-mockup-phone {
    position: absolute;
    /* right: 0; */
    top: 0px;
    width: 594.21px;
    height: 594.21px;
    /* width: 180px; */
    z-index: 0;
    border-radius: 22369600px;
    opacity: 0.1;
    background: rgba(244, 208, 63, 0.40);
    filter: blur(150px);
}

.build-mockup-phone img {
  width: 100%;
  height: auto;
  display: block;
}

.feature-tag {
 position: absolute;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  z-index: 4;
  border-radius: 12px;
  border: 0.667px solid rgba(244, 208, 63, 0.30);
  background: rgba(21, 21, 21, 0.6);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.10), 0 8px 10px -6px rgba(0, 0, 0, 0.10);
  background: transparent;
  box-shadow: none;
}

/* .feature-tag { position: absolute; background: rgba(0,0,0,0.5); border: 1px solid rgba(244,208,63,0.3); border-radius: 12px; padding: 12px 16px; display: flex; align-items: center; gap: 8px; font-size: 14px; box-shadow: 0 20px 25px rgba(0,0,0,0.1); backdrop-filter: blur(8px); z-index: 4; transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1); } */
.feature-tag .icon-box {
  width: 32px;
  height: 32px;
  background: rgba(244, 208, 63, 0.2);
  color: #FFF;
  font-family: Outfit;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  /* 142.857% */
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-tag .icon-box .material-symbols-outlined {
  font-size: 16px;
  color: #f4d03f;
}

.ft1 {
  top: 30px;
  left: 0;
}

.ft2 {
    top: 50px;
    right: 80px;
}

.ft3 {
    top: 220px;
    left: 0px;
}

.ft4 {
    bottom: 90px;
    right: 100px;
}

.ft5 {
  bottom: 130px;
  left: 0;
}

/* Feature tags floating animation */
@keyframes floatUpDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.ft1 { animation: floatUpDown 3s ease-in-out infinite; animation-delay: 0s; }
.ft2 { animation: floatUpDown 3.5s ease-in-out infinite; animation-delay: 0.5s; }
.ft3 { animation: floatUpDown 2.8s ease-in-out infinite; animation-delay: 1s; }
.ft4 { animation: floatUpDown 3.2s ease-in-out infinite; animation-delay: 0.3s; }
.ft5 { animation: floatUpDown 3s ease-in-out infinite; animation-delay: 0.7s; }

/* === SERVICES === */
.services-section {
    /* text-align: center; */
    padding-top: 0px;
    overflow: visible;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}
.service-top img{
width: 150px;
}
.service-top {
    position: absolute;
    right: 0px;
    top: -130px;
}
.service-topleft {
    position: absolute;
    left: 0px;
    top: -130px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: #202020;
  border: 1px solid #f3ce34;
  border-radius: 32px;
  padding: 33px;
  min-height: 300px;
  position: relative;
  transition: transform 0.3s;
}

.service-card {
  cursor: pointer;
  transition: all 0.4s ease;
}
.service-card:hover,
.service-card.highlight {
  background: #f3ce34;
  transform: translateY(-4px);
}

.service-card:hover h4,
.service-card:hover p,
.service-card.highlight h4,
.service-card.highlight p {
  color: #202020;
}

.service-card .icon-circle {
  width: 56px;
  height: 56px;
  background: #f3ce34;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.service-card:hover .icon-circle,
.service-card.highlight .icon-circle {
  background: #202020;
}

.service-card .icon-circle .material-symbols-outlined {
  font-size: 24px;
  color: #202020;
}

.service-card:hover .icon-circle .material-symbols-outlined,
.service-card.highlight .icon-circle .material-symbols-outlined {
  color: #f3ce34;
}

.service-card h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #fff;
}

.service-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-card .arrow-link {
  width: 32px;
  height: 32px;
  border: 1px solid #f3ce34;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card:hover .arrow-link,
.service-card.highlight .arrow-link {
  background: #202020;
  border-color: #202020;
}

.service-card .arrow-link .material-symbols-outlined {
  font-size: 16px;
  color: #f3ce34;
}

.hero-left {
    margin-top: 50px;
}
/* === 3D DIAMOND === */

/* Single diamond: sits in flow inside the wrap; JS flips .is-floating on scroll. */
.diamond-static-wrap {
  background: #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
  overflow: visible;
  min-height: 380px; /* reserves space so the page doesn't jump when the diamond goes fixed */
  position: relative;
  z-index: 1;
}
.diamond-3d-static {
  width: 300px;
  height: 300px;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.diamond-3d-static img { width: 100%; height: 100%; object-fit: contain; }
.diamond-3d-static.is-hidden { opacity: 0; }

/* Scroll-linked floating state: top-left anchored, JS writes a translate3d() transform every frame. */
.diamond-3d-static.is-floating {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;  /* behind sections (z-index: 2) so it appears underneath their content */
  transform-origin: center center;
  transition: none; /* scroll progress drives the motion; no CSS easing */
  will-change: transform, opacity;
}

.service-topleft.faq-center {
    bottom: 120px;
    right: 80px;
    left: unset;
    top: unset;
}

/* Newsletter ball spin animation */
@keyframes rotateBall {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
@keyframes floatBall {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-10px) rotate(5deg); }
  50% { transform: translateY(-5px) rotate(0deg); }
  75% { transform: translateY(-12px) rotate(-5deg); }
}
.newsletter-ball.is-spinning img {
  animation: floatBall 4s ease-in-out infinite;
}

@media (max-width: 1024px) {
  .diamond-3d-static { width: 220px; height: 220px; }
  .diamond-static-wrap { min-height: 300px; }
}
@media (max-width: 768px) {
  .hero {

  overflow: hidden;
}
  .hero-left {
        padding-top: 0px;
    }
.hero-wrapper {
    display: flex;
    flex-direction: column;
    align-content: start;
    justify-content: start;
    gap:40px;
}

}
@media (max-width: 640px) {
  .diamond-3d-static { width: 180px; height: 180px; }
  /* JS already disables .is-floating under 640px, so the diamond stays in flow here. */
  .diamond-static-wrap { min-height: 260px; }
}

/* === ROADMAP === */
.roadmap-section {
  position: relative;
  overflow: visible;
      padding-top: 130px;
  z-index: 2;
}
.service-top.roadmap-top,.service-topleft.roadmap-lefttop {
    top: -10px;
} 
.roadmap {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.roadmap::before {
  content: '';
  position: absolute;
  left: 74px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: #f3ce34;
}

.roadmap-item {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  padding: 28px 0;
  position: relative;
}

.roadmap-item:not(:last-child) {
  margin-bottom: 20px;
}

.roadmap-dot {
  position: relative;
  z-index: 2;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 52px;
}

.roadmap-dot::before {
  content: '';
  position: absolute;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #ffefad;
  opacity: 0.35;
}

.roadmap-dot::after {
  content: '';
  position: absolute;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #f3ce34;
}

.roadmap-icon {
  width: 90px;
  height: 90px;
  background: rgba(243, 206, 52, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.roadmap-icon .material-symbols-outlined {
  font-size: 40px;
  color: #f3ce34;
}

.roadmap-text h4 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 8px;
}

.roadmap-text h4.gold {
  color: #f3ce34;
}

.roadmap-text p {
  font-size: 20px;
  color: #fff;
  line-height: 1.5;
}

.roadmap-row {
  display: flex;
  align-items: center;
  background: rgba(43, 43, 43, 0.2);
  padding: 20px 0;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.4s ease;
  border: 1px solid transparent;
}

/* Roadmap highlight on hover/active */
.roadmap-row:hover,
.roadmap-row.active {
  background: rgba(243, 206, 52, 0.08);
  border: 1px solid rgba(243, 206, 52, 0.3);
  border-radius: 12px;
}
.roadmap-row:hover .roadmap-text h4,
.roadmap-row.active .roadmap-text h4 {
  color: #f3ce34;
}
.roadmap-row:hover .roadmap-icon,
.roadmap-row.active .roadmap-icon {
  background: rgba(243, 206, 52, 0.35);
}
.roadmap-row:hover .roadmap-dot::before,
.roadmap-row.active .roadmap-dot::before {
  opacity: 0.6;
}

/* === FAQ === */
.faq-section {
    width: 100%;
    padding-top: 130px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: visible;
    position: relative;
    z-index: 2;
}

.faq-item.active .faq-toggle .material-symbols-outlined {
    transform: rotate(180deg);
    color: #f3ce34;
}
.faq-title-area {
  text-align: center;
  margin-bottom: 48px;
  position: relative;
  z-index: 3;
}

.faq-title-area h2 {
  font-size: 48px;
  margin-bottom: 12px;
}

.faq-title-area h2 span {
  color: #f3ce34;
}

.faq-title-area p {
  font-size: 18px;
  color: rgba(245, 245, 245, 0.7);
}

.faq-list {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}

.faq-item {
  border-radius: 10px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: all 0.3s;
  cursor: pointer;
  position: relative;
  z-index: 3;
}

.faq-section .service-top,
.faq-section .service-topleft {
  pointer-events: none;
}

.faq-item.active {
  background: #202020;
  border: 0.5px solid #f3ce34;
  box-shadow: 0 6px 16px rgba(255, 243, 60, 0.1);
}

.faq-item:not(.active) {
  background: rgba(32, 32, 32, 0.15);
  box-shadow: 0 5px 16px rgba(8, 15, 52, 0.06);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 32px;
  pointer-events: none;
}

.faq-question h4 {
  font-size: 22px;
  font-weight: 400;
}

.faq-toggle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s;
}

.faq-item.active .faq-toggle {
  background: #f3ce34;
}

.faq-item:not(.active) .faq-toggle {
  background: #101010;
}

.faq-toggle .material-symbols-outlined {
  font-size: 24px;
  transition: transform 0.3s;
}

.faq-item.active .faq-toggle .material-symbols-outlined {
  color: #151515;
  transform: rotate(180deg);
}

.faq-item:not(.active) .faq-toggle .material-symbols-outlined {
  color: #f3ce34;
}

.faq-answer {
  padding: 0 32px 24px;
  font-size: 18px;
  font-weight: 300;
  color: #fff;
  line-height: 1.7;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

/* === NEWSLETTER === */
.newsletter-section {
    background: #0a0a0a;
    padding: 0 80px 0;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: #010101 url('/wp-content/uploads/2026/04/Homepage-1.png') center / cover no-repeat;
    padding-bottom: 90px;
        padding-top: 40px;
}


@keyframes spinBall {
  0% { transform: rotateY(0deg); }
  100% { transform: rotateY(360deg); }
}
.newsletter-ball {
  width: 280px;
  height: 280px;
  margin: 0 auto;
  position: relative;
  top: -60px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.newsletter-ball video {
  display: block;
  object-fit: cover !important;
  object-position: center center;
}
.newsletter-ball model-viewer {
  width: 100%;
  height: 100%;
  --poster-color: transparent;
}
.newsletter-ball img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: spinBall 6s linear infinite;
}

.newsletter-inner {
  max-width: 600px;
  text-align: left;
  position: relative;
  z-index: 2;
  padding: 0 0 80px;
}

.newsletter-inner .section-badge {
  margin-bottom: 12px;
}

.newsletter-inner h2 {
  font-size: 42px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 28px;
  color: #fff;
}

.newsletter-form {
  display: flex;
  gap: 8px;
  max-width: 500px;
}

.newsletter-form input {
  flex: 1;
  background: #fff;
  border: none;
  border-radius: 25px;
  padding: 14px 24px;
  font-size: 14px;
  color: #000;
  font-family: 'Outfit', sans-serif;
}

.newsletter-form input::placeholder {
  color: rgba(0, 0, 0, 0.3);
}

.newsletter-form button {
  background: #f3ce34;
  border: none;
  border-radius: 25px;
  padding: 14px 40px;
  font-size: 14px;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  color: #151515;
  cursor: pointer;
  transition: transform 0.3s;
  white-space: nowrap;
}

.newsletter-form button:hover {
  transform: scale(1.05);
}

/* Wave grid at bottom */
.newsletter-wave {
  position: absolute;
  bottom: 120px;
  left: 0;
  right: 0;
  height: 320px;
  z-index: 1;
  pointer-events: none;
}
.newsletter-wave svg {
  width: 100%;
  height: 100%;
  display: block;
}

@media (max-width: 768px) {
  .newsletter-section { padding: 0 24px 0; }
  .newsletter-ball { width: 200px; height: 200px; }
  .newsletter-inner h2 { font-size: 32px; }
  .newsletter-form { flex-direction: column; }
}

/* === FOOTER === */
/* footer {
  background: #010101;
  background: url("/wp-content/uploads/2026/04/Homepage.png");
  padding: 80px 80px 32px;
} */
footer {
    background: #010101 url(/wp-content/uploads/2026/04/Homepage-2.png) 50% / cover no-repeat;
    padding: 0px 80px 0;
    position: relative;
     /*z-index: 10001; */

}
.footer-video-bg {
  position: absolute;
    top: 50%;
    left: 50%;
    /*width: 60%; */
    /*height: 60%;*/
    transform: translate(-50%, -50%);
    
    z-index: 1;
    overflow: hidden;
    border-radius: 20px;
}

.footer-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* The Overlay Styling */
.footer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Black with 60% opacity - adjust the 0.6 to your liking */
        background: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

/* IMPORTANT: Move your content above the overlay */
.footer-top, 
.footer-newsletter, 
.footer-bottom {
    position: relative;
    z-index: 10; /* Ensures buttons and links are clickable */
}

.footer-top {
  display: flex;
  gap: 80px;
  margin-bottom: 48px;
}

.footer-brand {
  max-width: 350px;
}

.footer-brand .logo {
  font-size: 28px;
  font-weight: 700;
  color: #f3ce34;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 16px;
  color: #f5f5f5;
  line-height: 1.4;
  margin-bottom: 20px;
}

.social-icons {
  display: flex;
  gap: 16px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  background: #1a1a1a;
  border: 1px solid rgba(244, 208, 63, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.social-icons a:hover {
  background: rgba(244, 208, 63, 0.2);
}

.social-icons a svg {
  width: 20px;
  height: 20px;
}

.footer-cols {
  display: flex;
  gap: 64px;
  flex: 1;
  justify-content: space-between;
}

.footer-cols .footer-col {
  flex: 1;
}

.footer-col h5 {
  font-size: 18px;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  font-size: 16px;
  color: #f5f5f5;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: #f3ce34;
}

.footer-col ul li span {
  font-size: 16px;
  color: #f5f5f5;
  display: block;
  line-height: 1.4;
}

.footer-col-contact ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-col-contact ul li .contact-icon {
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #1a1a1a;
  border: 1px solid rgba(244, 208, 63, 0.2);
  border-radius: 8px;
}

.footer-col-contact ul li .contact-icon svg {
  width: 18px;
  height: 18px;
}

.footer-col-contact ul li > a,
.footer-col-contact ul li > span:not(.contact-icon) {
  flex: 1;
  font-size: 15px;
  color: #f5f5f5;
  line-height: 1.4;
  padding-top: 6px;
}

.footer-newsletter {
  border-top: 1px solid rgba(244, 208, 63, 0.2);
  padding-top: 32px;
  margin-bottom: 48px;
}

.footer-newsletter h5 {
  font-size: 16px;
  margin-bottom: 4px;
}

.footer-newsletter p {
  font-size: 14px;
  color: #f5f5f5;
  margin-bottom: 12px;
}

.footer-newsletter-form {
  display: flex;
  gap: 8px;
  max-width: 450px;
}

.footer-newsletter-form input {
  flex: 1;
  background: #1a1a1a;
  border: 1px solid rgba(244, 208, 63, 0.2);
  border-radius: 8px;
  padding: 10px 16px;
  color: #fff;
  font-size: 16px;
  font-family: 'Outfit', sans-serif;
  outline: none;
}

.footer-newsletter-form input::placeholder {
  color: rgba(245, 245, 245, 0.5);
}

.footer-newsletter-form button {
  background: linear-gradient(to bottom, #f4d03f, #e8c547);
  border: none;
  border-radius: 8px;
  padding: 10px 24px;
  font-size: 16px;
  color: #151515;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
}

.footer-bottom {
  border-top: 1px solid rgba(244, 208, 63, 0.2);
  padding-top: 32px;
  padding-bottom: 48px;
  margin-bottom: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 14px;
  color: #f5f5f5;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 14px;
  color: #f5f5f5;
  transition: color 0.3s;
}

.footer-bottom-links a:hover {
  color: #f3ce34;
}

/* === BLOG SECTION === */
.blog-section {
  background: #151515;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.blog-card {
  background: #202020;
  border: 1px solid rgba(243, 206, 52, 0.15);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s;
}

.blog-card:hover {
  transform: translateY(-4px);
  border-color: #f3ce34;
}

.blog-card-thumb {
  display: block;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.blog-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.blog-card:hover .blog-card-thumb img {
  transform: scale(1.05);
}

.blog-card-thumb--empty {
  background: rgba(244, 208, 63, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-card-thumb--empty .material-symbols-outlined {
  font-size: 48px;
  color: rgba(244, 208, 63, 0.3);
}

.blog-card-body {
  padding: 24px;
}

.blog-card-date {
  font-size: 12px;
  color: rgba(245, 245, 245, 0.5);
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.blog-card-title {
  font-size: 20px;
  font-weight: 600;
  margin: 8px 0 12px;
  line-height: 1.3;
}

.blog-card-title a {
  color: #fff;
  transition: color 0.3s;
}

.blog-card-title a:hover {
  color: #f3ce34;
}

.blog-card-excerpt {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 16px;
}

.blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 500;
  color: #f3ce34;
  transition: gap 0.3s;
}

.blog-card-link:hover {
  gap: 8px;
}

.blog-card-link .material-symbols-outlined {
  font-size: 16px;
}
img.inline-image {
    position: absolute;
    left: 480px;
    bottom: 380px;
}
.disclaimer {
    font-size: 13px;
    color: rgba(245, 245, 245, 0.6);
    text-align: center;
    margin-top: 12px;
    line-height: 1.5;
}
 .disclaimer a {
    color: #f3ce34;
}

/* === RESPONSIVE === */
@media (min-width: 1920px) {
  .gd-hero-wrapper {
    height: 70vh !important;}
    .gd-wrapper {
    max-width: 1920px;
    padding-left: 80px;
    padding-right: 80px;
    margin: 0 auto;
    position: relative;

    
}
.gd-hero-video {
    top: 54px;
}
.top-center-image {
    right: unset;
}
.hero-wrapper {
    gap: 580px;
}
.roadmap,.faq-list {
    max-width: 1500px;}
}
/* ============================================
   RESPONSIVE — All Breakpoints
   ============================================ */

/* --- Laptop / Small Desktop (max 1200px) --- */
@media (max-width: 1200px) {
  .hero-left h1 { font-size: 62px; }
  /* .inline-image { width: 70px; height: 70px; } */
  .build-title { font-size: 56px; }
  .build-content { gap: 40px; }
  .roadmap { max-width: 90%; }
  footer { padding: 100px 60px 0; }
  img.inline-image {
   display: none;
}
}

/* --- Tablet (max 1024px) --- */
@media (max-width: 1024px) {
  /* Nav */
  .nav { padding: 16px 24px; }
  .nav-links { display: none;        align-items: start;
        padding-left: 50px; }

  /* General */
  section { padding: 60px 24px; }
  .section-title { font-size: 42px; }
  .section-subtitle { font-size: 16px; margin-bottom: 40px; }

  /* Hero */
  
  .hero { flex-direction: row; padding: 130px 24px 40px; gap: 30px; }
  .hero-left h1 { font-size: 44px; }
  /* .inline-image { width: 55px; height: 55px; margin-bottom: 4px; } */
  .hero-left p { font-size: 16px; }
  .hero-right { width: 50%; }
  .top-right-image { display: none; }

  /* Build */
  .build-section { min-height: auto; padding: 60px 24px; }
  .build-content { flex-direction: column; gap: 40px; }
  .build-title { font-size: 40px; max-width: 100%; }
  .build-desc { font-size: 16px; max-width: 100%; }
  .build-right { min-height: 400px; }
  .build-mockup-laptop { position: relative; top: 0; width: 100%; }
  .feature-tag { font-size: 12px; padding: 8px 12px; }
  .ft1 { top: 10px; left: 0; }
  .ft2 { top: 60px; right: 0; }
  .ft3 { top: 200px; left: 0; }
  .ft4 { bottom: 40px; right: 20px; }
  .ft5 { bottom: 100px; left: 0; }

  /* Services */
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .service-card { padding: 24px; min-height: 240px; }

  /* Roadmap */
  .roadmap-section { padding-top: 80px; }
  .roadmap { max-width: 100%; }
  .roadmap-item { gap: 20px; }
  .roadmap-dot { margin-left: 20px; width: 36px; height: 36px; }
  .roadmap-dot::before { width: 36px; height: 36px; }
  .roadmap-dot::after { width: 20px; height: 20px; }
  .roadmap::before { left: 38px; }
  .roadmap-icon { width: 60px; height: 60px; }
  .roadmap-icon .material-symbols-outlined { font-size: 28px; }
  .roadmap-text h4 { font-size: 20px; }
  .roadmap-text p { font-size: 16px; }

  /* FAQ */
  .faq-section { padding-top: 80px; }
  .faq-title-area h2 { font-size: 36px; }
  .faq-question { padding: 18px 20px; }
  .faq-question h4 { font-size: 18px; }
  .faq-answer { padding: 0 20px 18px; font-size: 15px; }
  .faq-list { max-width: 100%; }

  /* Newsletter */
  .newsletter-ball { width: 200px; height: 200px; }
  .newsletter-inner h2 { font-size: 34px; }
.newsletter-inner{
  padding: 0 0 110px;
}
  /* Blog */
  .blog-grid { grid-template-columns: repeat(2, 1fr); }

  /* Footer */
  .footer-top { flex-direction: column; gap: 40px; }
  .footer-cols { flex-wrap: wrap; gap: 32px; }
  footer { padding: 60px 24px 0; }
  .footer-video-bg {
    width: 100%;
}
}

/* --- Small Tablet / Large Phone (max 768px) --- */
@media (max-width: 768px) {
  /* Hero */

        .hero {
        flex-direction: column;
        align-items: start;
        }
            .hero-right {
        width: 100%;
    }
  .hero { padding: 130px 20px 30px; }

  .hero-cta .primary, .hero-cta .secondary { padding: 14px 24px; font-size: 14px; }
  .top-center-image { display: none; }

  /* Build */
  .build-right { min-height: 350px; }
  .feature-tag .icon-box { width: 24px; height: 24px; }
  .feature-tag .icon-box .material-symbols-outlined { font-size: 12px; }

  /* Roadmap */
  .roadmap-item { flex-wrap: wrap; gap: 12px; padding: 16px 0; }
  .roadmap-dot { margin-left: 10px; width: 28px; height: 28px; }
  .roadmap-dot::before { width: 28px; height: 28px; }
  .roadmap-dot::after { width: 16px; height: 16px; }
  .roadmap::before { left: 24px; }
  .roadmap-icon { width: 50px; height: 50px; }
  .roadmap-icon .material-symbols-outlined { font-size: 24px; }
  .roadmap-text h4 { font-size: 18px; }
  .roadmap-text p { font-size: 14px; }

  /* FAQ */
  .faq-toggle { width: 40px; height: 40px; }
  .faq-toggle .material-symbols-outlined { font-size: 20px; }

  /* Newsletter */
  .newsletter-section { padding: 0 20px; }
  .newsletter-ball { width: 180px; height: 180px; }
  .newsletter-inner h2 { font-size: 28px; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form button { width: 100%; }
  .newsletter-wave {height: 270px;bottom: 30px; }
    .newsletter-inner {
        padding: 0 0 10px;
    }
    .newsletter-wave {
        height: 300px;
    }
  /* Contact form */
  .hero-right .contact-form { padding: 20px; max-width: 100%; }
  .hero-right .contact-form h3 { font-size: 24px; }
  .contact-form input, .contact-form textarea { padding: 12px 14px; font-size: 14px; }
}

/* --- Mobile (max 640px) --- */
@media (max-width: 640px) {
  /* General */
  section { padding: 40px 16px; }
  .section-title { font-size: 30px; }
  .section-subtitle { font-size: 14px; }

  /* Nav */
  .nav { padding: 12px 16px; }
  .nav-logo { font-size: 20px; }
  .nav-btns { gap: 8px; }
  .btn-login, .btn-started { padding: 8px 16px; font-size: 12px; }

  /* Hero */
  .hero { padding: 70px 16px 24px; }
  .hero-left { padding-top: 0 !important; }

  /* .inline-image { width: 40px; height: 40px; margin-bottom: 2px; } */
  .hero-left p { font-size: 14px; margin-bottom: 20px; }
  .hero-cta { flex-direction: column; align-items: flex-start; gap: 10px; flex-direction: row;}
  .hero-cta .primary, .hero-cta .secondary { width: 100%; text-align: center; }
  .hero-perks { flex-direction: column; gap: 8px; }
  .hero-perks span { font-size: 12px; }

  /* Build */
  .build-section { padding: 40px 16px; }
  .build-title { font-size: 30px; }
  .build-desc { font-size: 14px; }
  .build-right { min-height: 300px; }
  .feature-tag { font-size: 11px; padding: 6px 10px; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; padding: 20px; border-radius: 20px; }
  .service-card h4 { font-size: 18px; }

  /* Roadmap */
  .roadmap-section { padding-top: 40px; }
  .roadmap::before { display: none; }
  .roadmap-dot { display: none; }
  .roadmap-item { gap: 12px; padding: 12px 16px; }
  .roadmap-icon { width: 44px; height: 44px; flex-shrink: 0; }
  .roadmap-icon .material-symbols-outlined { font-size: 20px; }
  .roadmap-text h4 { font-size: 16px; }
  .roadmap-text p { font-size: 13px; }
  .roadmap-row { border-radius: 10px; padding: 12px 8px; }

  /* FAQ */
  .faq-section { padding-top: 40px; }
  .faq-title-area h2 { font-size: 28px; }
  .faq-title-area p { font-size: 14px; }
  .faq-question { padding: 14px 16px; }
  .faq-question h4 { font-size: 16px; }
  .faq-answer { padding: 0 16px 14px; font-size: 14px; }
  .faq-toggle { width: 36px; height: 36px; }

  /* Newsletter */
  .newsletter-ball { width: 150px; height: 150px; }
 
  .newsletter-inner h2 { font-size: 24px; }
.newsletter-wave {
        bottom: 70px;
}

  /* Blog */
  .blog-grid { grid-template-columns: 1fr; }

  /* Footer */
  footer { padding: 40px 16px 0; }
  .footer-top { gap: 30px; }
  .footer-cols { gap: 24px; }
  .footer-col { min-width: 45%; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer-bottom-links { flex-wrap: wrap; justify-content: center; }
  .footer-newsletter-form { flex-direction: column; }

  /* Diamond */
  .diamond-3d-static { width: 160px; height: 160px; }
  .diamond-static-wrap { min-height: 240px; }
}

/* --- Extra Small (max 400px) --- */
@media (max-width: 400px) {

  .section-title { font-size: 26px; }
  .build-title { font-size: 26px; }
  .faq-title-area h2 { font-size: 24px; }
  .newsletter-inner h2 { font-size: 20px; }
  .newsletter-ball { width: 120px; height: 120px; }
  .nav-btns .btn-login { display: none; }
  .newsletter-wave {
        height: 340px;
    }
}
