:root {
  --ink: #10213c;
  --muted: #66758a;
  --line: #e7eef6;
  --blue: #0e78d6;
  --cyan: #21c4d9;
  --amber: #ffb629;
  --orange: #ff7b2c;
  --green: #22b573;
  --light: #f6fbff;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(18, 41, 76, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--ink);
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  overflow-x: hidden;
  background: var(--white);
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  background: var(--white);
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.preloader.loaded {
  opacity: 0;
  visibility: hidden;
}

.loader-mark {
  display: flex;
  gap: 8px;
}

.loader-mark span {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--orange);
  animation: loaderBounce 0.8s ease-in-out infinite alternate;
}

.loader-mark span:nth-child(2) {
  background: var(--blue);
  animation-delay: 0.14s;
}

.loader-mark span:nth-child(3) {
  background: var(--cyan);
  animation-delay: 0.28s;
}

.offer-strip {
  position: relative;
  z-index: 1031;
  padding: 10px 0;
  color: var(--white);
  background: linear-gradient(90deg, #ff6f2a, #ffb629 55%, #18b7d3);
  font-weight: 700;
}

.offer-pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.75);
  animation: pulse 1.4s infinite;
}

.offer-link {
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.65);
}

.agency-navbar {
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(231, 238, 246, 0.9);
  backdrop-filter: blur(16px);
  transition: box-shadow 0.3s ease, padding 0.3s ease;
}

.agency-navbar.scrolled {
  box-shadow: 0 14px 35px rgba(16, 33, 60, 0.08);
}

.navbar-brand,
.footer-brand {
  color: var(--ink);
  font-weight: 900;
  letter-spacing: 0;
}

.brand-icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 12px;
  color: var(--white);
  font-weight: 900;
  background: linear-gradient(135deg, var(--orange), var(--blue));
  box-shadow: 0 10px 24px rgba(255, 123, 44, 0.28);
}

.nav-link {
  color: var(--ink);
  font-weight: 700;
  position: relative;
}

.nav-link::after {
  position: absolute;
  left: 0.5rem;
  right: 0.5rem;
  bottom: 4px;
  height: 2px;
  content: "";
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.btn-quote,
.btn-primary-gradient {
  position: relative;
  z-index: 1;
  overflow: hidden;
  color: var(--white);
  border: 0;
  font-weight: 800;
  border-radius: 999px;
  padding: 12px 22px;
  background: linear-gradient(135deg, var(--orange), var(--amber));
  box-shadow: 0 14px 30px rgba(255, 123, 44, 0.24);
  animation: glowPulse 2.2s ease-in-out infinite;
}

.btn-quote::before,
.btn-primary-gradient::before {
  position: absolute;
  top: -60%;
  left: -35%;
  z-index: -1;
  width: 44%;
  height: 220%;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.58), transparent);
  transform: rotate(22deg);
  animation: glowSweep 3.1s ease-in-out infinite;
}

.btn-primary-gradient:hover,
.btn-quote:hover {
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-dark {
  border-radius: 999px;
  padding: 11px 22px;
  font-weight: 800;
}

.hero-section {
  position: relative;
  min-height: 760px;
  padding: 120px 0 180px;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 18%, rgba(33, 196, 217, 0.2), transparent 31%),
    radial-gradient(circle at 12% 72%, rgba(255, 182, 41, 0.18), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #f4fbff 48%, #eaf6ff 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.78;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.9), rgba(232, 246, 255, 0.58)),
    radial-gradient(circle at 30% 20%, rgba(14, 120, 214, 0.08), transparent 24%);
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-particles span {
  position: absolute;
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(14, 120, 214, 0.22);
  box-shadow: 0 0 0 8px rgba(14, 120, 214, 0.05);
  animation: particleFloat 7s ease-in-out infinite;
}

.hero-particles span:nth-child(1) {
  left: 7%;
  top: 18%;
}

.hero-particles span:nth-child(2) {
  left: 18%;
  top: 72%;
  width: 8px;
  height: 8px;
  background: rgba(255, 123, 44, 0.28);
  animation-delay: 1.2s;
}

.hero-particles span:nth-child(3) {
  left: 45%;
  top: 13%;
  width: 10px;
  height: 10px;
  background: rgba(33, 196, 217, 0.3);
  animation-delay: 0.6s;
}

.hero-particles span:nth-child(4) {
  right: 7%;
  top: 26%;
  width: 16px;
  height: 16px;
  background: rgba(255, 182, 41, 0.36);
  animation-delay: 1.8s;
}

.hero-particles span:nth-child(5) {
  right: 16%;
  bottom: 24%;
  width: 9px;
  height: 9px;
  animation-delay: 2.4s;
}

.hero-particles span:nth-child(6) {
  left: 36%;
  bottom: 17%;
  width: 14px;
  height: 14px;
  background: rgba(34, 181, 115, 0.24);
  animation-delay: 3s;
}

.hero-particles span:nth-child(7) {
  right: 42%;
  top: 58%;
  width: 7px;
  height: 7px;
  background: rgba(255, 123, 44, 0.22);
  animation-delay: 3.6s;
}

.hero-particles span:nth-child(8) {
  right: 3%;
  bottom: 42%;
  width: 11px;
  height: 11px;
  animation-delay: 4.2s;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 3px;
  border-radius: 99px;
  content: "";
  background: currentColor;
}

.hero-copy h1 {
  margin: 18px 0;
  font-size: clamp(2.8rem, 6vw, 5.9rem);
  line-height: 0.96;
  font-weight: 950;
}

.hero-copy h1 span,
.section-heading h2 span {
  color: var(--blue);
}

.hero-copy p,
.section-heading p,
.about-section p,
.community-card p,
.site-footer p {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 32px 0;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.hero-stats div {
  min-width: 132px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 35px rgba(18, 41, 76, 0.08);
}

.hero-stats strong {
  display: block;
  color: var(--blue);
  font-size: 1.6rem;
  line-height: 1;
}

.hero-stats span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.88rem;
}

.hero-visual {
  position: relative;
  padding: 16px;
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.main-preview {
  width: 100%;
  border-radius: 28px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.6);
}

.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  color: var(--ink);
  font-weight: 900;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(18, 41, 76, 0.15);
  animation: floatY 4s ease-in-out infinite;
}

.float-card i {
  color: var(--orange);
}

.card-speed {
  left: -24px;
  top: 12%;
}

.card-seo {
  right: -26px;
  top: 44%;
  animation-delay: 0.7s;
}

.card-mobile {
  left: 10%;
  bottom: -20px;
  animation-delay: 1.2s;
}

.wave-wrap {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 140px;
  overflow: hidden;
}

.wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200%;
  height: 100%;
}

.wave-one {
  opacity: 0.92;
  animation: waveSlide 9s linear infinite;
}

.wave-one path {
  fill: #d6edfb;
}

.wave-two {
  opacity: 0.74;
  animation: waveSlide 13s linear infinite reverse;
}

.wave-two path {
  fill: #b8def4;
}

.section-pad {
  padding: 100px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 52px;
}

.section-heading h2,
.feature-band h2,
.about-section h2,
.community-card h2,
.site-footer h2 {
  margin: 12px 0 16px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.06;
  font-weight: 950;
}

.service-card {
  height: 100%;
  position: relative;
  z-index: 1;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 12px 36px rgba(18, 41, 76, 0.06);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-card::before {
  position: absolute;
  inset: auto -20% -50% -20%;
  z-index: -1;
  height: 150px;
  content: "";
  background: linear-gradient(90deg, rgba(255, 123, 44, 0.1), rgba(33, 196, 217, 0.12));
  transform: rotate(-6deg);
  transition: transform 0.3s ease;
}

.service-card:hover {
  border-color: rgba(14, 120, 214, 0.22);
  box-shadow: var(--shadow);
  transform: translateY(-8px);
}

.service-card:hover::before {
  transform: translateY(-18px) rotate(-3deg);
}

.service-icon {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  margin-bottom: 24px;
  color: var(--white);
  font-size: 1.6rem;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
}

.service-card h3,
.work-card h3 {
  padding-left: 8px;
  font-size: 1.25rem;
  font-weight: 900;
}

.service-card p {
  color: var(--muted);
  line-height: 1.7;
}

.service-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-weight: 900;
}

.feature-band {
  padding: 90px 0;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(16, 33, 60, 0.96), rgba(14, 120, 214, 0.9)),
    url("https://placehold.co/1600x700/163a5f/ffffff?text=Digital+Growth+Background") center/cover;
}

.feature-band .eyebrow,
.feature-band p,
.feature-band h2 {
  color: var(--white);
}

.feature-band p {
  opacity: 0.82;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.feature-pill {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  color: var(--white);
  font-weight: 900;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.feature-pill i {
  color: var(--amber);
  margin-right: 8px;
}

.about-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff, #f7fbff);
}

.about-section .container {
  position: relative;
  z-index: 1;
}

.about-bubbles {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.about-bubbles span {
  position: absolute;
  display: block;
  border-radius: 50%;
  background: rgba(14, 120, 214, 0.12);
  border: 1px solid rgba(14, 120, 214, 0.16);
  box-shadow: inset 0 0 22px rgba(255, 255, 255, 0.75), 0 18px 45px rgba(14, 120, 214, 0.1);
  animation: bubbleDrift 9s ease-in-out infinite;
}

.about-bubbles span:nth-child(1) {
  width: 78px;
  height: 78px;
  left: 6%;
  top: 12%;
}

.about-bubbles span:nth-child(2) {
  width: 34px;
  height: 34px;
  left: 44%;
  top: 14%;
  background: rgba(255, 182, 41, 0.18);
  animation-delay: 1.2s;
}

.about-bubbles span:nth-child(3) {
  width: 118px;
  height: 118px;
  right: 8%;
  top: 22%;
  background: rgba(33, 196, 217, 0.12);
  animation-delay: 2.1s;
}

.about-bubbles span:nth-child(4) {
  width: 46px;
  height: 46px;
  left: 15%;
  bottom: 16%;
  background: rgba(34, 181, 115, 0.13);
  animation-delay: 3s;
}

.about-bubbles span:nth-child(5) {
  width: 68px;
  height: 68px;
  right: 28%;
  bottom: 10%;
  animation-delay: 3.8s;
}

.about-bubbles span:nth-child(6) {
  width: 24px;
  height: 24px;
  right: 5%;
  bottom: 34%;
  background: rgba(255, 123, 44, 0.14);
  animation-delay: 4.4s;
}

.image-stack {
  position: relative;
  padding-right: 60px;
  padding-bottom: 60px;
}

.image-stack > img:first-child {
  box-shadow: var(--shadow);
}

.mini-image {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 46%;
  border: 10px solid var(--white);
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(18, 41, 76, 0.18);
  animation: floatY 4.5s ease-in-out infinite;
}

.check-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 850;
}

.check-list i {
  color: var(--green);
}

.bird-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 18%, rgba(255, 182, 41, 0.16), transparent 28%),
    linear-gradient(180deg, #f8fcff, #ffffff);
}

.device-slider {
  position: relative;
  min-height: 590px;
  padding: 34px 30px 78px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(232, 246, 255, 0.72));
  box-shadow: var(--shadow);
}

.device-slider .carousel-inner {
  overflow: visible;
}

.hand-device-illustration {
  position: relative;
  display: grid;
  min-height: 460px;
  place-items: center;
  isolation: isolate;
}

.hand-device-illustration::before,
.hand-device-illustration::after {
  position: absolute;
  content: "";
  border-radius: 50%;
  background: rgba(14, 120, 214, 0.08);
  animation: pulseRing 3.6s ease-in-out infinite;
}

.hand-device-illustration::before {
  width: 360px;
  height: 360px;
}

.hand-device-illustration::after {
  width: 250px;
  height: 250px;
  background: rgba(255, 182, 41, 0.12);
  animation-delay: 1.2s;
}

.device-frame {
  position: relative;
  z-index: 2;
  width: min(260px, 70vw);
  padding: 14px;
  border-radius: 36px;
  background: #10213c;
  box-shadow: 0 28px 70px rgba(16, 33, 60, 0.22);
  transform: rotate(-5deg);
  animation: deviceFloat 4.5s ease-in-out infinite;
}

.device-frame::before {
  position: absolute;
  top: 10px;
  left: 50%;
  width: 78px;
  height: 8px;
  content: "";
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.25);
  transform: translateX(-50%);
}

.device-frame img {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border-radius: 26px;
}

.hand-shape {
  position: absolute;
  z-index: 3;
  right: 21%;
  bottom: 30px;
  width: 210px;
  height: 118px;
  border-radius: 80px 46px 52px 90px;
  background: linear-gradient(135deg, #ffd7b0, #f5a970);
  box-shadow: 0 18px 34px rgba(151, 88, 42, 0.18);
  transform: rotate(-13deg);
}

.hand-shape::before {
  position: absolute;
  top: -30px;
  left: 118px;
  width: 58px;
  height: 122px;
  content: "";
  border-radius: 36px;
  background: linear-gradient(135deg, #ffd7b0, #f7b17b);
  transform: rotate(-18deg);
}

.hand-shape::after {
  position: absolute;
  right: 18px;
  bottom: 20px;
  width: 76px;
  height: 22px;
  content: "";
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.24);
}

.device-slider .carousel-indicators {
  bottom: 22px;
  margin-bottom: 0;
}

.device-slider .carousel-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--blue);
}

.device-slider .carousel-control-prev,
.device-slider .carousel-control-next {
  width: 48px;
  height: 48px;
  top: auto;
  bottom: 16px;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue);
  opacity: 1;
}

.device-slider .carousel-control-prev {
  left: 30px;
}

.device-slider .carousel-control-next {
  right: 30px;
}

.device-slider .carousel-control-prev span,
.device-slider .carousel-control-next span {
  font-size: 2rem;
}

.portfolio-section {
  background: #fbfdff;
}

.portfolio-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.portfolio-tabs button {
  padding: 11px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font-weight: 850;
  background: var(--white);
  transition: 0.25s ease;
}

.portfolio-tabs button.active,
.portfolio-tabs button:hover {
  color: var(--white);
  border-color: transparent;
  background: var(--blue);
}

.work-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden; /* Clips image to rounded corners */
  box-shadow: 0 12px 35px rgba(18, 41, 76, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.work-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(18, 41, 76, 0.12);
}

.work-card img {
  display: block;
  width: 100%;
  height: 320px; /* Adjust as needed */
  object-fit: cover;
  object-position: center;
  backface-visibility: hidden;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

.work-card div {
  padding: 20px 8px 6px;
}

.work-card span {
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 900;
  padding-right: 8px;
  padding-left: 8px;
  text-transform: uppercase;
}

.portfolio-item.is-hidden {
  display: none;
}

.community-section {
  padding: 100px 0 110px;
}

.community-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 56px;
  border-radius: 30px;
  color: var(--ink);
  background:
    linear-gradient(120deg, rgba(255, 182, 41, 0.96), rgba(255, 123, 44, 0.92)),
    url("https://placehold.co/1600x700/ffb629/1a1a1a?text=Let's Connect") center/cover;
  box-shadow: var(--shadow);
}

.community-card .eyebrow,
.community-card h2,
.community-card p {
  color: var(--ink);
}

.community-card p {
  max-width: 680px;
}

.community-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.site-footer {
  position: relative;
  padding: 135px 0 30px;
  color: rgba(255, 255, 255, 0.82);
  background: #0f213c;
  overflow: hidden;
}

.footer-wave {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 140px;
  overflow: hidden;
  background: transparent;
}

.footer-wave-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 100%;
}

.footer-wave-one {
  opacity: 0.96;
  animation: waveSlide 10s linear infinite;
}

.footer-wave-one path {
  fill: #ffffff;
}

.footer-wave-two {
  opacity: 0.72;
  animation: waveSlide 15s linear infinite reverse;
}

.footer-wave-two path {
  fill: #d6edfb;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  color: var(--white);
}

.site-footer h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.site-footer h3 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: 1rem;
  font-weight: 900;
}

.site-footer a {
  display: block;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.2s ease;
}

.site-footer a:hover {
  color: var(--amber);
}

.socials {
  display: flex;
  gap: 12px;
}

.socials a,
.contact-float,
.scroll-top {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.copyright {
  margin-top: 54px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.92rem;
}

.contact-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1025;
  width: 58px;
  height: 58px;
  font-size: 1.7rem;
  background: linear-gradient(135deg, var(--orange), var(--amber));
  box-shadow: 0 16px 34px rgba(255, 123, 44, 0.28);
  animation: floatY 3.5s ease-in-out infinite;
}

.scroll-top {
  position: fixed;
  right: 22px;
  bottom: 92px;
  z-index: 1024;
  width: 52px;
  height: 52px;
  border: 0;
  color: var(--white);
  font-size: 1.8rem;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 16px 34px rgba(14, 120, 214, 0.25);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
}

.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.quote-modal {
  position: fixed;
  inset: 0;
  z-index: 1800;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(10, 22, 41, 0.62);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.quote-modal.is-visible {
  opacity: 1;
  visibility: visible;
}

.quote-dialog {
  position: relative;
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) minmax(300px, 1.1fr);
  width: min(980px, 100%);
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  border-radius: 30px;
  background: var(--white);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.26);
  transform: translateY(26px) scale(0.98);
  transition: transform 0.25s ease;
}

.quote-modal.is-visible .quote-dialog {
  transform: translateY(0) scale(1);
}

.quote-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 24px rgba(18, 41, 76, 0.1);
}

.quote-art {
  padding: 34px;
  color: var(--white);
  background: linear-gradient(160deg, #0f3158, #0e78d6);
}

.quote-art img {
  width: 100%;
  margin: 28px 0;
  border-radius: 22px;
}

.quote-art ul {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
  font-weight: 850;
}

.quote-art i {
  color: var(--amber);
  margin-right: 8px;
}

.quote-form {
  padding: 48px;
}

.quote-form label {
  margin-bottom: 8px;
  color: var(--ink);
  font-weight: 850;
}

.quote-form .form-control,
.quote-form .form-select {
  min-height: 52px;
  border-color: var(--line);
  border-radius: 14px;
}

.quote-form .form-control:focus,
.quote-form .form-select:focus {
  border-color: rgba(14, 120, 214, 0.42);
  box-shadow: 0 0 0 0.2rem rgba(14, 120, 214, 0.12);
}

.form-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.bt-radius{
  border-radius: 999px !important;
}

@keyframes loaderBounce {
  to {
    transform: translateY(-12px);
  }
}

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

@keyframes glowPulse {
  0%,
  100% {
    box-shadow: 0 14px 30px rgba(255, 123, 44, 0.24), 0 0 0 rgba(255, 182, 41, 0);
  }
  50% {
    box-shadow: 0 18px 42px rgba(255, 123, 44, 0.38), 0 0 28px rgba(255, 182, 41, 0.42);
  }
}

@keyframes glowSweep {
  0% {
    transform: translateX(-130%) rotate(22deg);
  }
  42%,
  100% {
    transform: translateX(430%) rotate(22deg);
  }
}

@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

@keyframes bubbleDrift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(14px, -26px, 0) scale(1.08);
  }
}

@keyframes waveSlide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes pulseRing {
  0%,
  100% {
    transform: scale(0.94);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.06);
    opacity: 1;
  }
}

@keyframes deviceFloat {
  0%,
  100% {
    transform: translateY(0) rotate(-5deg);
  }
  50% {
    transform: translateY(-14px) rotate(-3deg);
  }
}

@keyframes particleFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(10px, -18px, 0) scale(1.16);
  }
}

@media (max-width: 991.98px) {
  .hero-section {
    min-height: auto;
    padding: 86px 0 150px;
  }

  .hero-copy h1 {
    font-size: clamp(2.5rem, 12vw, 4.7rem);
  }

  .float-card {
    position: static;
    display: inline-flex;
    margin: 12px 8px 0 0;
    animation: none;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .community-card,
  .quote-dialog {
    grid-template-columns: 1fr;
  }

  .device-slider {
    min-height: 540px;
  }

  .hand-shape {
    right: 12%;
  }

  .community-card {
    align-items: flex-start;
    padding: 36px;
    flex-direction: column;
  }

}

@media (max-width: 575.98px) {
  .offer-strip {
    text-align: center;
  }

  .section-pad {
    padding: 76px 0;
  }

  .hero-actions,
  .community-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .btn,
  .community-actions .btn {
    width: 100%;
  }

  .image-stack {
    padding-right: 22px;
    padding-bottom: 44px;
  }

  .mini-image {
    width: 58%;
    border-width: 6px;
  }

  .device-slider {
    min-height: 500px;
    padding: 24px 14px 78px;
    border-radius: 24px;
  }

  .hand-device-illustration {
    min-height: 390px;
  }

  .device-frame {
    width: min(220px, 72vw);
  }

  .hand-shape {
    right: 5%;
    bottom: 22px;
    width: 170px;
    height: 96px;
  }

  .hand-shape::before {
    left: 96px;
    width: 48px;
    height: 98px;
  }

  .quote-form,
  .quote-art {
    padding: 28px;
  }

  .contact-float,
  .scroll-top {
    right: 14px;
  }

  .contact-float {
    bottom: 14px;
  }

  .scroll-top {
    bottom: 78px;
  }
}


