@font-face {
  font-display: swap;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:'Bricolage Grotesque',sans-serif;
  background:#000;
  color:#fff;
  overflow-x:hidden;
  user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

#siteContent{
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease;
}

img{
  pointer-events: none;
  -webkit-user-drag: none;
  will-change:transform;
}

section{
  padding:0px 20px;
}

h2{
  margin-bottom:12px;
}

p{
  margin-bottom:16px;
}

/*PAGE LOADER*/
#pageLoader {
  position: fixed;
  inset: 0;
  background: #0b0f1a;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#pageLoader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-content {
  text-align: center;
  color: #fff;
  font-family: Arial, sans-serif;
}

.loader-logo {
  font-size: 20px;
  margin-bottom: 20px;
  letter-spacing: 1px;
  opacity: 0.8;
}

/* Progress bar */
.loader-bar {
  width: 180px;
  height: 3px;
  background: rgba(255,255,255,0.1);
  overflow: hidden;
  border-radius: 10px;
}

.loader-progress {
  width: 40%;
  height: 100%;
  background: #0B77BC;
  animation: loadingMove 1.2s infinite linear;
}

@keyframes loadingMove {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(300%); }
}
	
/* Logo text */
.logo-text{
  font-size:18px;
  color:#fff;
  letter-spacing:0.5px;
  opacity:0;
  transform:translateY(20px);
  animation:logoFade 0.8s ease forwards;
}

/* Accent bar */
.logo-bar{
  width:0%;
  height:3px;
  background:#0B77BC;
  margin-top:10px;
  border-radius:2px;
  animation:barGrow 1s ease forwards;
  animation-delay:0.6s;
}

/* Animations */
@keyframes logoFade{
  to{
    opacity:1;
    transform:translateY(0);
  }
}

@keyframes barGrow{
  to{
    width:100%;
  }
}

.cursor-glow{
  position:fixed;
  width:300px;
  height:300px;
  background:radial-gradient(circle, rgba(11,119,188,0.25), transparent 70%);
  pointer-events:none;
  transform:translate(-50%,-50%);
  z-index:1;
  filter:blur(60px);
}

/* NAV */
.sk-nav{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.sk-logo{
  width:120px;
  height:20px;
}

.sk-links{
  display:flex;
  gap:20px;
}

.sk-links span{
  width:60px;
  height:12px;
}

.sk-btn{
  width:120px;
  height:36px;
  border-radius:8px;
}

/* HERO */
.sk-hero{
  display:flex;
  justify-content:space-between;
  gap:40px;
}

.sk-left{
  flex:1;
  display:flex;
  flex-direction:column;
  gap:15px;
}

.sk-title{
  height:40px;
  width:70%;
}

.sk-line{
  height:14px;
  width:90%;
}

.sk-line.short{
  width:60%;
}

.sk-cta{
  width:160px;
  height:40px;
}

.sk-right{
  flex:1;
  height:260px;
  border-radius:16px;
}

/* FEATURE SECTION */
.feature-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}

.feature-intro h2 {
  font-size: 48px;
  margin-bottom: 12px;
}

.feature-intro p {
  font-size: 18px;
  color: #aaa;
  line-height: 1.6;
}

.feature-intro h2 span {
  color: #0B77BC;
}

.feature-grid {
  position: relative;
  overflow: hidden;
  width:90%;
  margin:2px auto 80px;
  padding:60px 40px;
}

/* TRACK (auto scrolling row) */
.feature-track {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: none;
  padding: 0 60px; /* space for arrows */
  scrollbar-width: none;
}

.feature-track::-webkit-scrollbar {
  display: none;
}

/* CARD */
.feature-card {
  flex: 0 0 400px;
  scroll-snap-align: start;
  background: rgba(255,255,255,0.03);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.4s ease, opacity 0.4s ease;
  transform: scale(0.92);
  opacity: 0.6;
}

.feature-card.active {
  transform: scale(1);
  opacity: 1;
}

.feature-card:hover {
  transform: translateY(-8px);
  opacity: 1;
}

/* IMAGE */
.card-image {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.card-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.7), transparent);
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}

/* TITLE ON IMAGE */
.card-image h3 {
  position: absolute;
  top: 0px;
  left: 12px;
  right: 12px;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  padding: 8px 12px;
}

/* TEXT */
.feature-card p {
  padding: 16px;
  font-size: 18px;
  color: #DEDEE2;
  font-weight: 200;
  line-height: 1.6;
}

/* NAVIGATION (SIDE BUTTONS) */
.feature-nav {
  pointer-events: none; /* allows clicks only on buttons */
}

.feature-btn {
  position: absolute;
  top: 60%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid #0b77bc;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  pointer-events: all; /* re-enable click */
  transition: 0.3s ease;
}

.feature-btn:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-50%) scale(1.1);
}

/* LEFT / RIGHT POSITION */
.feature-btn.prev {
  left: 10px;
}

.feature-btn.next {
  right: 10px;
}

/* ICON */
.feature-btn svg {
  width: 20px;
  height: 20px;
  stroke: #fff; /* or white depending on bg */
}


/* BIG NUMBER ON TOP */
.feature-number {
  display: block;
  font-size: 64px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 10px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.15);
  opacity: 0.5;
  transition: 0.4s ease;
}

/* TITLE */
.showcase-item h3 {
  font-size: 28px;
  margin-bottom: 10px;
}

/* ACTIVE STATE (this is key) */
.showcase-item.active .feature-number {
  opacity: 1;
  -webkit-text-stroke: 1px rgba(79,156,255,0.6);
  transform: translateY(-2px);
}


/* CARDS */
.sk-cards{
  display:flex;
  gap:20px;
}

.sk-card{
  flex:1;
  height:140px;
  border-radius:14px;
}
	
section{
  scroll-margin-top:120px;
}

.nav-right a.active{
  color:#0B77BC;
  font-weight: 600;
}
/* SCROLL BAR */
.scroll-bar{
  position:fixed;
  top:0;
  left:0;
  height:3px;
  background:#0B77BC;
  width:0%;
  z-index:9999;
}

/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* track (background) */
::-webkit-scrollbar-track {
  background: #0b0f14;
}

/* handle (the draggable part) */
::-webkit-scrollbar-thumb {
  background: #0B77BC;
  border-radius: 10px;
  border: 2px solid #0b0f14;
}

/* hover effect */
::-webkit-scrollbar-thumb:hover {
  background: #0990e0;
}

/* NAV */
.nav{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:20px 5%;
  position:fixed;
  width:100%;
  box-sizing:border-box;
  z-index:1000;
  transition:all 0.3s ease;
}

.nav.scrolled{
  background:rgba(0,0,0,0.7);
  backdrop-filter:blur(10px);
  box-shadow:0 4px 20px rgba(0,0,0,0.2);
  width: 100%;
}

.nav-left{
  display:flex;
  align-items:center;
  gap:10px;
  font-size: 22px;
  text-transform: uppercase;
  font-weight: 600;
}
	
.nav-left span{
  color: #0B77BC;
}
	
.nav-right{
  display:flex;
  gap:20px;
  align-items:center;
  font-size: 16px;
  font-weight: 600;
}
	
.nav-right a{

  position: relative;
  color: #fff;
  text-decoration: none;
	}
	
.nav-right a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-4px;
  width:0%;
  height:2px;
  background:#0B77BC;
  transition:0.3s ease;
}

.nav-right a:hover::after{
  width:100%;
}
	
.nav-btn{
  background:#0B77BC;
  border:none;
  padding:10px 16px;
  border-radius:6px;
  color:#fff;
  cursor:pointer;
  font-size: 16px;
  font-weight: 600;
}

.nav-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 25px rgba(11,119,188,0.5);
}

.nav-btn:active{
  transform:scale(0.96);
}

/* HAMBURGER */
.hamburger{
  display:none;
  flex-direction:column;
  gap:6px;
  cursor:pointer;
  z-index:1100;
}

.hamburger span{
  width:26px;
  height:2px;
  background:#fff;
  transition:all 0.4s ease;
  transform-origin:center;
}

/* CLEAN X */
.hamburger.active span:nth-child(1){
  transform:rotate(45deg) translate(4px,4px);
}

.hamburger.active span:nth-child(2){
  transform:rotate(-45deg) translate(4px,-4px);
}

.menu-close{
  position:absolute;
  top:20px;
  right:20px;
  font-size:24px;
  cursor:pointer;
}
	
/* MOBILE MENU */
.mobile-menu{
  position:fixed;
  top:0;
  right:-100%;
  width:70%;
  height:100vh;
  display:flex;
  flex-direction:column;
  gap:30px;
  padding:100px 30px;
  background:rgba(0,0,0,0.75);
  backdrop-filter:blur(20px);
  transition:0.5s cubic-bezier(.77,0,.18,1);
  z-index:1001;
}

.mobile-menu.active{
  right:0;
}

.mobile-menu a{
  font-size:20px;
  text-decoration:none;
  color:#fff;
}

/* HERO */
.hero-section{
  position: relative;
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  background: 
  linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.5)), /* dim overlay */
  url('../images/bg-hero.webp') center/cover no-repeat;
}

.hero h1{
  font-family:'Bricolage Grotesque', sans-serif;
  font-size: clamp(32px, 5vw, 64px);
  line-height:1;
  letter-spacing:-1px;
  text-shadow: 0 10px 40px rgba(11,119,188,0.25);
}
	
.hero-content{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
  width: 100%;
  max-width: 800px;
  gap:32px;
}

.hero-content h1{
  font-size:52px;
  line-height:1;
  letter-spacing:-1px;
  text-shadow: 0 10px 40px rgba(11,119,188,0.25);
  margin-bottom: 0;
}

.hero-content p{
  color:#ccc;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.6;
}

/* HERO TEXT CAROUSEL*/
.hero-text-carousel{
  position: relative;
  min-height: clamp(220px, 35vh, 320px);
  width: 800px;
}

.hero-slide{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
  z-index: 1;
}

.hero-slide.active{
  opacity: 1;
  transform: translateY(0);
  z-index: 2;
}

.cta{
  display:flex;
  justify-content:center;
  gap:16px;
}

.btn{
  color: #ffffff;
  background:#0B77BC;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:6px;
  padding:12px 20px;
  font-weight:600;
  text-decoration:none;
  cursor:pointer;
  transition:0.3s ease;
  font-size: 18px;
  border: 1px solid #0B77BC;
}

.btn:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 25px rgba(11,119,188,0.5);
}

.btn:active{
  transform:scale(0.96);
}

.btn-outline{
  border:1px solid #fff;
  background:none;
  color:#fff;
  font-weight: 600;
  font-size: 16px;
}

.btn-outline:hover{
  background:#0B77BC;
  border-color:#0B77BC;
  transform:translateY(-2px);
}

.hero-accent{
  background:linear-gradient(90deg,#0B77BC,#4cc3ff,#0B77BC);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
  color:transparent;
  font-family: 'Syne Tactile', sans-serif;
  font-weight:700;
  letter-spacing:-0.5px;
  background-size:200% auto;
  animation:shine 4s linear infinite;
}

@keyframes shine{
  to{ background-position:200% center; }
}

/* =========================
   HOW SECTION
========================= */
.how-section{
  width:85%;
  margin:-120px auto 80px;
  padding:60px 40px;
  border-radius:20px;
  background:linear-gradient(
    135deg,
    rgba(255,255,255,0.08),
    rgba(255,255,255,0.02)
  );
  backdrop-filter:blur(20px);
  border:1px solid rgba(255,255,255,0.08);
  box-shadow:
    0 40px 80px rgba(0,0,0,0.6),
    inset 0 1px 0 rgba(255,255,255,0.05);
}

.how-header{
  text-align:center;
  margin-bottom:50px;
  max-width: 800px;
  margin: 0 auto;
}

.how-header h2{
  font-size:42px;
  font-weight:700;
  margin-bottom:10px;
}

.how-header p{
  color:#aaa;
  font-size:18px;
  line-height: 1.6;
  padding-bottom: 32px;
}

.hero-proof p {
  font-size: 14px;
  color: #ffffff;
  margin-left: 0px;
}

/* GRID */
.how-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap:24px;
  align-items: stretch;
}

/* CARD BASE */
.card.tutorial{
  position:relative;
  border-radius:16px;
  overflow:hidden;
  cursor:pointer;
  background:#0c0f13;
  transition:all 0.4s cubic-bezier(.77,0,.18,1);
  border:1px solid rgba(255,255,255,0.05);
}

/* IMAGE */
.card.tutorial img{
  width:100%;
  display:block;
  transition:transform 0.6s ease;
}

/* DARK GRADIENT OVERLAY */
.card-overlay{
  position:absolute;
  inset:0;

  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  padding:20px;

  background:linear-gradient(
    to top,
    rgba(0,0,0,0.95),
    rgba(0,0,0,0.5),
    rgba(0,0,0,0.1),
    transparent
  );

  opacity:0;
  transition:0.4s ease;
}

/* PLAY BUTTON */
.play-btn{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%, -50%) scale(0.7);
  width:64px;
  height:64px;
  border-radius:50%;
  background:linear-gradient(135deg,#0B77BC,#0990e0);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:22px;
  color:#fff;
  box-shadow:0 10px 30px rgba(11,119,188,0.5);
  transition:0.3s ease;
}

/* TITLE */
.card-overlay h3{
  margin:0;
  font-size:16px;
  font-weight:500;
  color: #fff;
}

/* HOVER EFFECTS */
.card.tutorial:hover{
  transform:translateY(-10px) scale(1.01);

  box-shadow:
    0 20px 60px rgba(0,0,0,0.6),
    0 0 40px rgba(11,119,188,0.15);
}

.card.tutorial:hover img{
  transform:scale(1.08);
}

.card.tutorial:hover .card-overlay{
  opacity:1;
}

.card.tutorial:hover .play-btn{
  transform:translate(-50%, -50%) scale(1);
}

/* SUBTLE GLOW BORDER ON HOVER */
.card.tutorial::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:16px;

  border:1px solid rgba(11,119,188,0.0);
  transition:0.4s;
}

.card.tutorial:hover::after{
  border:1px solid rgba(11,119,188,0.4);
}
	
/* VIDEO PLAYER */
	
.video-modal{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.85);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:2000;
}

.video-modal.active{
  display:flex;
}

.video-content{
  width:90%;
  max-width:800px;
  position:relative;
}

.video-content iframe{
  width:100%;
  height:450px;
  border-radius:10px;
}

.close-video{
  position:absolute;
  top:-40px;
  right:0;
  font-size:30px;
  cursor:pointer;
}

/* TESTIMONIAL */
.testimonial-carousel {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0px;
}

.testimonial-row {
  display: flex;
  gap: 10px;
  width: max-content;
}

.top-row {
  display: flex;
  gap: 10px;
  width: max-content;
  animation: slide-left 70s linear infinite;
}

.bottom-row {
  display: flex;
  gap: 10px;
  width: max-content;
  animation: slide-right 70s linear infinite;
}

@keyframes slide-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); } /* moves left by half the content */
}

@keyframes slide-right {
  0% { transform: translateX(-50%); } /* start offset so itâ€™s seamless */
  100% { transform: translateX(0); }  /* moves right to start */
}

.testimonial-row:hover {
  animation-play-state: paused;
}
	
.testimonials{
  padding:0px 5%;
  text-align:center;
}

.testimonials-header{
   max-width: 800px;
   margin: 0 auto;
}

.testimonials h2{
  font-size: clamp(28px, 5vw, 48px);
  padding: 0 clamp(16px, 4vw, 32px);
  font-weight: bold;
  margin-block-start: 0;
  margin-block-end: 0;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  color: #ffffff;
  margin-bottom: 10px;
	}

.testimonials-header p{
  font-size: 18px;
  font-weight: 300;
  line-height: 1.6;
  color: #D9D9D9;
  margin-block-start: 0;
  margin-block-end: 0;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  margin-bottom: 50px;
}

.testimonials-header h2 span {
  color: #0B77BC;
}
	
.testimonial-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:10px;
  margin-top:40px;
}

.testimonial{
  background:#18181A;
  padding:20px;
  border-radius:12px;
}

/* TESTIMONIAL CARDS */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 10px;
  margin-top: 0px;
}

.testimonial-card {
  background: #18181A;
  padding: 30px 20px;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 10px;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.45);
}

/* USER INFO */
.user-info {
  display: flex;
  align-items: left;
  gap: 12px;
	text-align: left;
}

.user-info img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #0B77BC;
}

.user-info h4 {
  margin: 0;
  font-size: 16px;
  color: #fff;
}

.user-info span {
  font-size: 14px;
  color: #aaa;
}

/* Carousel wrapper */
.testimonial-carousel {
  position: relative;
  overflow: hidden;
  margin-top: 40px;
}

/* Track holds all cards */
.testimonial-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
}

/* Cards */
.testimonial-card {
  background: #18181A;
  padding: 30px 20px;
  border-radius: 16px;
  min-width: 280px;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
	
.testimonial-card p{
  color: #DEDEE2;
  font-size: 14px;
}
	
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.45);
}

/* User info */
.user-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.user-info img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #0B77BC;
  object-fit: cover;
}

.user-info h4 {
  margin: 0;
  font-size: 16px;
  color: #fff;
}

.user-info span {
  font-size: 14px;
  color: #aaa;
}

/* Carousel arrows */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(11,119,188,0.8);
  color: #fff;
  border: none;
  padding: 8px 14px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  z-index: 10;
}

.carousel-arrow.prev { left: 10px; }
.carousel-arrow.next { right: 10px; }

.carousel-arrow:hover { background: #0B77BC; }

/* Dots */
.carousel-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}

.carousel-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: #555;
  cursor: pointer;
}

.carousel-dots button.active {
  background: #0B77BC;
}



/* VIDEO */
.video{
  width:90%;
  margin:60px auto;
}

.video img{
  width:100%;
  border-radius:16px;
}

/* PRICING */
.pricing{
  padding:60px 5%;
  text-align:center;
}

.pricing h2{
  font-size: clamp(28px, 5vw, 48px);
  padding: 0 clamp(16px, 4vw, 32px);
  font-weight: bold;
  margin-block-start: 0;
  margin-block-end: 0;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  color: #0B77BC;
	}

.pricing p{
  font-size: 18px;
  font-weight: 300;
  color: #D9D9D9;
  margin-block-start: 0;
  margin-block-end: 0;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  margin-bottom: 64px;
}

.pricing-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:24px;
  margin-top: 40px;
}

.plan{
  padding:28px 20px; background:rgba(255,255,255,0.03);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:16px;
  text-align: left;
  backdrop-filter: blur(10px);
  transition:transform 0.3s ease, box-shadow 0.3s ease;
  transform-style:preserve-3d;
}

.plan:hover{
 transform:translateY(-6px);
  border-color:#0B77BC;
  box-shadow:0 10px 30px rgba(11,119,188,0.15);
}

.plan:hover .price{
  color:#0B77BC;
}
	
.plan-price{
	color: #0B77BC;
	font-size: 18px;
	font-weight: bold;
}
	
.price{
	font-size: 32px;
	color: #ffffff;
	font-weight: bold;
}

.price span{
	font-size: 16px;
	color: #ffffff;
	font-weight: 300;
}
	
.plan-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  margin: 32px 0;
  border-radius: 5px;
  border:1px solid #ffffff;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: 0.3s ease;
  width: 90%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.plan-btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(11,119,188,0.4);
  background: #0B77BC;
  border:1px solid #0B77BC;
}
	
.plan-btn-primary{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 12px;
  margin: 32px 0px;
  border-radius: 5px;
  background: #0B77BC;
  border:1px solid #0B77BC;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: 0.3s ease;
  width: 90%;
}

.plan-btn-primary:hover{
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(11,119,188,0.4);
  background: #ffffff;
  border:1px solid #ffffff;
  color: #0B77BC;
}
	
.plan-status{
	color: #0B77BC;
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 16px;
}

.list-wrapper{
	display: flex;
	flex-direction: column;
	width: 100%;
	height: auto;
	padding: 5px 0px;
}

.wrap{
  display:flex;
  align-items:start;
  gap:8px;
  widows: 100%;
}

.list-icon{
	margin-right: 5px;
  	flex-shrink:0;
	margin-top:3px;
	width: 16px;
}
	
.plan-listings-h1{
	color: #ffffff;
	font-size: 14px;
	font-weight: 600;
	padding-bottom: 6px;
}
	
.plan-listings-accent{
	color: #ffffff;
	font-size: 14px;
	font-weight: 300;
}
	
.plan-listings{
	flex: 1;
	color: #ffffff;
	font-size: 14px;
	font-weight: 300;
	line-height:1.4;
	word-break:break-word;
	min-width:0;
  	overflow-wrap:break-word;
}

.plan-listings span{
    text-decoration: line-through;
	}
	
/* RECOMMENDED PLAN */
.recommended-plan{
	padding: 0px -20px;
  position:relative;
  border:1px solid rgba(11,119,188,0.4);
  transform:scale(1.05);
  box-shadow:
    0 20px 60px rgba(0,0,0,0.6),
    0 0 40px rgba(11,119,188,0.25);
}

/* BADGE */
.recommended-plan::before{
  content:"MOST POPULAR";
  position:absolute;
  top:-12px;
  left:50%;
  transform:translateX(-50%);
  background:linear-gradient(135deg,#0B77BC,#4cc3ff);
  color:#fff;
  font-size:11px;
  font-weight:600;
  padding:6px 14px;
  border-radius:20px;
  letter-spacing:0.5px;
  box-shadow:0 8px 20px rgba(11,119,188,0.4);
}

/* subtle glow pulse (elite feel) */
@keyframes badgeGlow{
  0%,100%{box-shadow:0 0 10px rgba(11,119,188,0.3);}
  50%{box-shadow:0 0 20px rgba(11,119,188,0.6);}
}

.recommended-plan::before{
  animation:badgeGlow 2.5s ease-in-out infinite;
}
	
/*DOWNLOAD APP*/
.download-section{
  padding:40px 20px;
  text-align:center;
  background: linear-gradient(90deg, #0B77BC, #4cc3ff);
}

.download-container{
  max-width:1100px;
  margin:auto;
}

.download-section h2{
  font-size:2.5rem;
  color:#18181A;
  margin-bottom:10px;
}

.download-section p{
  color:#18181A;
  margin-bottom:50px;
  font-size: 18px;
}

.download-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:20px;
}

.download-card{
  background:#18181A;
  backdrop-filter:blur(10px);
  border:1px solid rgba(255,255,255,0.08);
  padding:30px 20px;
  border-radius:16px;
  text-decoration:none;
  color:#fff;
  transition:all 0.3s ease;
  position:relative;
  overflow:hidden;
}

.download-card:hover{
  transform:translateY(-8px) scale(1.02);
  border-color:#0B77BC;
  box-shadow:0 20px 40px rgba(11,119,188,0.25);
}

.download-card .icon{
  font-size:2rem;
  margin-bottom:10px;
}

.download-card h3{
  margin-bottom:5px;
  color: #ffffff;
}

.download-card span{
  font-size:0.9rem;
  color:#bbb;
}
	
.download-card::before{
  content:"";
  position:absolute;
  top:0;
  left:-100%;
  width:100%;
  height:100%;
  background:linear-gradient(120deg,transparent,rgba(255,255,255,0.1),transparent);
  transition:0.6s;
}

.download-card:hover::before{
  left:100%;
}
	
.download-card.recommended{
  border:2px solid #fff;
  box-shadow:0 0 30px rgba(255,255,255,0.25);
  transform:scale(1.05);
}

.download-card.recommended::after{
  content:"in Use";
  position:absolute;
  top:12px;
  right:12px;
  font-size:11px;
  background:#0B77BC;
  color:#ffffff;
  padding:4px 8px;
  border-radius:20px;
  font-weight:600;
}
	
/*TOAST ALERT*/
.toast{
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #057003;
  color: #fff;
  padding: 12px 20px;
  border-radius: 30px;
  font-size: 14px;
  z-index: 9999;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
	
/* MESSAGE MODAL */
.message-modal{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.85);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:2000;
}

.message-modal.active{
  display:flex;
}

.message-box{
  width:90%;
  max-width:400px;
  background:#111;
  padding:25px;
  border-radius:12px;
  display:flex;
  flex-direction:column;
  gap:12px;
  position:relative;
}

.message-box h3{
  margin:0 0 10px;
}

.message-box input,
.message-box textarea{
  width:95%;
  padding:10px;
  margin: 5px 0px;
  border-radius:6px;
  border:none;
  background:#1c1c1c;
  color:#fff;
}
	
.message-box select{
  width:100%;
  padding:10px;
  margin: 5px 0px;
  border-radius:6px;
  border:none;
  background:#1c1c1c;
  color:#fff;
}

.message-box textarea{
  min-height:100px;
  resize:none;
}

.close-message{
  position:absolute;
  top:10px;
  right:15px;
  cursor:pointer;
  font-size:18px;
}
	
/* =========================
   CONTACT SYSTEM
========================= */

.contact-section{
  padding: 90px 20px;
  background: radial-gradient(circle at top, #121521, #0b0d12);
}

.contact-wrapper{
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  max-width: 93%;
  margin: auto;
  border-radius: 22px;
  overflow: visible;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(10px);
}

/* =========================
   LEFT PANEL
========================= */

.contact-form-area{
  padding: 42px;
  overflow: visible;
  position: relative;
}

.contact-header{
  margin-bottom: 28px;
}

.contact-header h2{
  font-size: 32px;
  letter-spacing: -0.5px;
}

.contact-header p{
  color: #a8a8a8;
  font-size: 15px;
  margin-top: 6px;
  line-height: 1.6;
}

/* SECTION BLOCKS */
.form-block{
  margin-bottom: 26px;
}

.form-block h4{
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #0B77BC;
  margin-bottom: 12px;
}

/* ROWS */
.form-row{
  display: flex;
  gap: 16px;
  align-items: stretch;
}

.form-row > *{
  flex: 1 1 0;
  min-width: 0;
}

.select-trigger{
  box-sizing: border-box;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.custom-select{
  position: relative;
  z-index: 1;
}

.custom-select.open{
  z-index: 9999;
}

.contact-form,
.form-block,
.form-row{
  overflow: visible !important;
}

/* =========================
   INPUT SYSTEM (UNIFIED)
========================= */

.contact-form input,
.select-trigger{
  width: 100%;
  padding: 13px 14px;
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: #fff;
  font-size: 16px;
  transition: 0.25s ease;
}

/* hover = subtle lift */
.contact-form input:hover,
.contact-form textarea:hover,
.select-trigger:hover{
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.14);
}

/* focus = clean glow */
.contact-form input:focus,
.contact-form textarea:focus,
.custom-select.open .select-trigger{
  border-color: #0B77BC;
  outline: none;
}

.custom-select.error .select-trigger{
  border-color: #ff4d4d;
  box-shadow: 0 0 0 3px rgba(255,77,77,0.15);
}

/* textarea */
.contact-form textarea{
  resize: none;
  min-height: 140px;
  width: 100%;
  padding: 13px 0px;
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: #fff;
  font-size: 16px;
  transition: 0.25s ease;
}

/* =========================
   CUSTOM SELECT (FIXED FEEL)
========================= */

.custom-select{
  position: relative;
  width: 100%;
}

/* trigger now visually identical to inputs */
.select-trigger{
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* arrow */
.select-trigger::after{
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid #aaa;
  border-bottom: 2px solid #aaa;
  transform: rotate(45deg);
  transition: 0.25s;
}

/* open state */
.custom-select.open .select-trigger{
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.custom-select.open .select-trigger::after{
  transform: rotate(-135deg);
  border-color: #0B77BC;
}

/* dropdown */
.select-options{
  position: absolute;
  top: calc(100% - 2px);
  left: 0;
  right: 0;
  background: #11131a;
  border: 1px solid #0B77BC;
  border-top: none;
  border-radius: 0 0 10px 10px;
  overflow: hidden;
  z-index: 9999;
  display: none;
}

.custom-select.open .select-options{
  display: block;
}

/* option */
.option{
  padding: 12px 14px;
  cursor: pointer;
  font-size: 14px;
  color: #ddd;
  transition: 0.2s;
}

.option:hover{
  background: #0B77BC;
  color: #fff;
}

/* =========================
   RIGHT MAP PANEL
========================= */

.contact-visual{
  position: relative;
  overflow: hidden;
  background: #0a0c12;
  border-radius: 0px 22px 22px 0px;
}

/* map */
.contact-visual iframe{
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(1) contrast(1.1) brightness(0.65);
  transform: scale(1.1);
  animation: mapFloat 14s ease-in-out infinite alternate;
}

/* overlay */
.contact-visual::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
  z-index: 1;
}

/* text */
.overlay-text{
  position: absolute;
  bottom: 28px;
  left: 28px;
  z-index: 2;
  color: #fff;
}

/* animation */
@keyframes mapFloat{
  0% { transform: scale(1.08) translate(0,0); }
  100% { transform: scale(1.12) translate(-8px,-6px); }
}

/* CORE SECTION */
.core-section{
  display: flex;
  background: #e9e9e9;
  padding: 100px 20px;
}

.core-container{
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

/* TITLE */
.core-title{
  font-size: 36px;
  color: #2b6f9e;
  margin-bottom: 20px;
}

.core-paragraph{
  font-size: 18px;
  color: #333333;
  padding-bottom: 40px;
  line-height: 1.6;
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
}

/* FEATURES ROW */
.core-features{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
  text-align: left;
}

.feature-last{
  grid-column: 0 / -1;
  color: #333333;
  min-width: 100%;
  width: 720px;
  font-size: 18px;
  line-height: 1.6;
}

.feature h4,
.feature h3{
  font-size: 16px;
  margin-bottom: 8px;
  font-weight: 600;
  color: #000000;
}

.feature p{
  font-size: 18px;
  color: #333;
  line-height: 1.5;
}

/* MAIN GRID */
.core-main{
  display: flex;
  align-items: center;
}

/* IMAGE */
.core-image img{
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  transition: transform 0.4s ease;
}

.core-image img:hover{
  transform: translateY(-6px);
}

/* TEXT */
.core-content h3{
  font-size: 28px;
  margin-bottom: 16px;
}

.core-content p{
  font-size: 18px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 24px;
}

/*SOCIAL MEDIA SECTION*/
.social-section{
  padding: 80px 20px;
  background: #f5f7fa;
}

.social-container{
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.social-title{
  font-size: 34px;
  color: #0B77BC;
  margin-bottom: 10px;
}

.social-subtitle{
  color: #333333;
  margin-bottom: 30px;
	font-size: 18px;
}

.social-icons{
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-bottom: 35px;
  flex-wrap: wrap;
}

.social-icon{
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: white;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: 0.25s ease;
}

.social-icon svg{
  width: 22px;
  height: 22px;
  fill: #333;
}

.social-icon svg:hover{
  fill:#0B77BC;
}
.social-icon:hover{
  transform: translateY(-5px);
}

.icon.twitter:hover svg{ fill: #1DA1F2; }
.icon.instagram:hover svg{ fill: #E1306C; }
.icon.linkedin:hover svg{ fill: #0077B5; }
.icon.github:hover svg{ fill: #111; }

.contact-btn{
  display: inline-block;
  padding: 14px 28px;
  background: #0B77BC;
  color: #ffffff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.25s ease;
}

.contact-btn:hover{
  background: #163a5a;
  transform: scale(1.05);
}

/*ABOUT SECTION*/
.about-section{
  padding: 100px 20px;
  background: #ffffff;
}

.about-container{
  max-width: 1000px;
  margin: auto;
}

.about-title{
  font-size: 36px;
  color: #0B77BC;
  margin-bottom: 25px;
  text-align: center;
}

.about-content{
  text-align: center;
}

.about-text{
  font-size: 18px;
  line-height: 1.7;
  color: #333333;
  margin-bottom: 18px;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}

.about-highlight{
  font-size: 19px;
  font-weight: 600;
  color: #0B77BC;
  margin-top: 30px;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.about-btn{
  display: inline-block;
  padding: 14px 28px;
  background: #0B77BC;
  color: #fff;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.25s ease;
}

.about-btn:hover{
  background: #0B77BC;
  transform: translateY(-3px);
}

/* FOOTER */
footer{
  text-align:center;
  padding:30px;
  color:#888;
}
	
/*CHAT BUBBLE*/
.chat-wrapper{
  position:fixed;
  bottom:25px;
  right:25px;
  z-index:999;
  display:flex;
  flex-direction:column;
  align-items:flex-end;
}

/* main bubble */
.chat-toggle{
  width:60px;
  height:60px;
  background:#0B77BC;
  color:#fff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:24px;
  cursor:pointer;
  box-shadow:0 10px 25px rgba(11,119,188,0.4);
  transition:all 0.3s ease;
}

.chat-toggle:hover{
  transform:scale(1.1);
}

/* hidden options */
.chat-options{
  display:flex;
  flex-direction:column;
  gap:12px;
  margin-bottom:10px;
  opacity:0;
  transform:translateY(20px);
  pointer-events:none;
  transition:all 0.3s ease;
}

/* active state */
.chat-wrapper.active .chat-options{
  opacity:1;
  transform:translateY(0);
  pointer-events:auto;
}

/* buttons */
.chat-btn{
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border-radius:30px;
  text-decoration:none;
  color:#fff;
  font-size:14px;
  backdrop-filter:blur(10px);
  border:1px solid rgba(255,255,255,0.1);
  background:rgba(0,0,0,0.6);
  transition:all 0.3s ease;
}

.chat-btn:hover{
  transform:translateX(-5px);
}

/* specific styles */
.chat-btn.whatsapp{
  background:#25D366;
}

.chat-btn.sms{
  background:#333;
}

/* Cookie Banner */
.cookie-banner{
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(40px);
  width: min(90%, 500px);
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: 0.6s ease;
}

.cookie-banner.show{
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: all;
}

.cookie-content{
  backdrop-filter: blur(20px);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 16px;
  padding: 16px 18px;

  display: flex;
  flex-direction: column;
  gap: 12px;

  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.cookie-content p{
  font-size: 14px;
  color: #fff;
  line-height: 1.5;
}

.cookie-actions{
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

/* Buttons */
.cookie-btn{
  padding: 8px 16px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-size: 13px;
  transition: 0.3s ease;
}

/* Primary */
.cookie-btn.primary{
  background: #0B77BC;
  color: #fff;
}

.cookie-btn.primary:hover{
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(11,119,188,0.4);
}

/* Ghost */
.cookie-btn.ghost{
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
}

.cookie-btn.ghost:hover{
  background: rgba(255,255,255,0.08);
}
/* ANIMATIONS */
.reveal{
  opacity:0;
  transform:translateY(40px);
  transition:all 0.6s ease;
}

.reveal.active{
  opacity:1;
  transform:translateY(0);
}

/* FOR MOBILE DEVICES */
@media(max-width:768px){
  .testimonial-track { overflow-x: auto; scroll-snap-type: x mandatory; }
  .testimonial-card { scroll-snap-align: start; }
  .carousel-arrow, .carousel-dots { display: none; }

/* HERO SECTION */
.hero-section{
    padding: 100px 20px 60px;
    min-height: auto;
    align-items: flex-start;
  }

  .hero-content{
    gap: 20px;
    max-width: 100%;
  }

  .hero-content h1{
    font-size: 34px;
    line-height: 1.2;
    letter-spacing: -0.5px;
  }

  .hero-content p{
    font-size: 15px;
    line-height: 1.5;
    max-width: 90%;
  }

 .cta{
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 12px;
  }

  .btn,
  .btn-outline{
    width: 100%;
    max-width: 320px;
    text-align: center;
  }

  .hero-proof{
    position: static; /* prevents weird overlap */
    margin-top: 20px;
    padding-bottom: 0;
    justify-content: center;
  }

  .proof-avatars img{
    width: 28px;
    height: 28px;
  }

  .hero-proof p{
    font-size: 13px;
  }

	
/* INTRO */
  .feature-intro {
    max-width: 90%;
    margin: 0 auto 30px;
  }

  .feature-intro h2 {
    font-size: 28px;
    line-height: 1.3;
  }

  .feature-intro p {
    font-size: 14px;
    line-height: 1.5;
  }

  /* GRID CONTAINER */
  .feature-grid {
    width: 100%;
    margin: 0px auto 60px;
    padding: 20px 10px;
  }

  /* TRACK */
  .feature-track {
    gap: 12px;
    padding: 0 16px;
  }

  /* CARD */
  .feature-card {
    flex: 0 0 240px; /* smaller cards */
    transform: scale(0.95);
    opacity: 0.8;
  }

  .feature-card.active {
    transform: scale(1);
    opacity: 1;
  }

  /* IMAGE */
  .card-image {
    height: 200px; /* reduce height */
  }

  .card-image h3 {
    font-size: 14px;
    padding: 6px 10px;
  }

  /* TEXT */
  .feature-card p {
    font-size: 14px;
    padding: 12px;
    line-height: 1.5;
  }

  /* NAV BUTTONS (FIXED UX) */
  .feature-btn {
    width: 40px;
    height: 40px;
    top: auto;
    bottom: 0px; /* move below cards */
    transform: none;
  }

  .feature-btn.prev {
    left: 30%;
  }

  .feature-btn.next {
    right: 30%;
  }

  .feature-btn:hover {
    transform: scale(1.05);
  }
	
.how-section {
    width: 92%;
    margin: 40px auto 60px; /* remove negative margin */
    padding: 30px 20px;
    border-radius: 16px;

    backdrop-filter: blur(12px); /* reduce intensity */
  }

  /* HEADER */
  .how-header {
    margin-bottom: 30px;
  }

  .how-header h2 {
    font-size: 26px;
    line-height: 1.3;
  }

  .how-header p {
    font-size: 14px;
    line-height: 1.5;
    max-width: 280px;
    margin: 0 auto;
  }
	
.hero-proof {
    position: static; /* remove absolute */
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding-bottom: 0;
    margin-top: 20px;
    text-align: center;
  }

  .proof-avatars {
    justify-content: center;
  }

  .proof-avatars img {
    width: 30px;
    height: 30px;
    margin-left: -6px; /* reduce overlap */
    border: 2px solid #111;
  }

  .hero-proof p {
    font-size: 13px;
    line-height: 1.4;
    max-width: 260px;
  }
	
  .pricing p{
	font-size: 14px;
	}
	
 .testimonials-header p{
	font-size: 14px;
	}
	
 .social-title{
	font-size: 26px;
	}
 .social-subtitle{
	font-size: 14px;
	line-height: 1.6;
	}
/* DOWNLOAD SECTION */
  .download-section {
  padding: 80px 20px;
  }

  .download-container {
    max-width: 100%;
  }

  /* TEXT */
  .download-section h2 {
    font-size: 24px;
    line-height: 1.3;
  }

  .download-section p {
    font-size: 14px;
    margin-bottom: 30px;
    line-height: 1.6;
  }

  /* GRID */
  .download-grid {
    grid-template-columns: 1fr; /* stack cards */
    gap: 16px;
  }

  /* CARD */
  .download-card {
    padding: 20px 16px;
    border-radius: 14px;
  }

  /* REMOVE HOVER EFFECTS (mobile safe) */
  .download-card:hover {
    transform: none;
    box-shadow: none;
    border-color: rgba(255,255,255,0.08);
  }

  .download-card::before {
    display: none; /* remove shine animation */
  }

  /* ICON */
  .download-card .icon {
    font-size: 1.6rem;
  }

  /* TEXT INSIDE CARD */
  .download-card h3 {
    font-size: 16px;
  }

  .download-card span {
    font-size: 12px;
  }

  /* RECOMMENDED CARD FIX */
  .download-card.recommended {
    transform: none; /* prevent layout breaking */
    border: 2px solid #0B77BC;
    box-shadow: 0 10px 20px rgba(11,119,188,0.2);
  }

  .download-card.recommended::after {
    font-size: 10px;
    padding: 3px 6px;
    top: 10px;
    right: 10px;
  }
	
.contact-wrapper{
    grid-template-columns: 1fr;
    max-width: 100%;
    border-radius: 16px;
  }

  .contact-form-area{
    padding: 24px;
  }

  .contact-header h2{
    font-size: 24px;
  }
	
  .contact-header p{
    font-size: 14px;
	line-height: 1.6;
  }
	
  /* stack form rows */
  .form-row{
    flex-direction: column;
    gap: 12px;
  }

  /* fix select + input sizing */
  .form-row input,
  .form-block textarea{
    width: 93%;
  }

  /* map section becomes compact */
  .contact-visual{
    min-height: 260px;
  }

  .contact-visual iframe{
    height: 260px;
  }

  .overlay-text{
    bottom: 16px;
    left: 16px;
  }
	
/*CORE SECTION*/
.core-features{
    grid-template-columns: 1fr;
    text-align: center;
  }

  .core-main{
    grid-template-columns: 1fr;
    text-align: center;
  }

  .core-content{
    text-align: center;
  }

  .core-title{
    font-size: 24px;
  }
	
.core-paragraph{
  font-size: 14px;
  width: 100%;
}

  .core-content h3{
  font-size: 14px;
  }
	
  .feature p{
  font-size: 14px;
	}
	
.feature-last{
  grid-column: 1;
  color: #333333;
  width: 100%;
  font-size: 14px;
  line-height: 1.6;
}
	
/*ABOUT SECTION*/
.about-title{
    font-size: 28px;
  }

  .about-text{
    font-size: 16px;
  }

  .about-highlight{
    font-size: 17px;
  }
	
}

@media (max-width: 480px){

  .contact-section{
    padding: 60px 14px;
  }

  .contact-form-area{
    padding: 18px;
  }

  .contact-header h2{
    font-size: 22px;
  }

  .form-block h4{
    font-size: 11px;
  }

  .contact-form input,
  .select-trigger{
    font-size: 14px;
  } 
	
  .btn{
    width: 100%;
  }
}
	
/* MOBILE CAROUSEL */
@media(max-width:768px){
  .testimonial-grid {
    display: flex;
    overflow-x: auto;
    gap: 16px;
    padding-bottom: 10px;
  }
  .testimonial-card {
    min-width: 280px;
    flex-shrink: 0;
  }
  .testimonial-grid::-webkit-scrollbar {
    height: 6px;
  }
  .testimonial-grid::-webkit-scrollbar-thumb {
    background: #0B77BC;
    border-radius: 3px;
  }
}

@media(max-width:1350px){
  .hero-content h1{font-size:32px;}
/*  .cta{flex-direction:column;}*/
  .nav-right{display:none;}
  .hamburger{display:flex;}
	
 .hero-slide h1{
    font-size: 48px;
    line-height: 1.3;
  }

  .hero-slide p{
    font-size: 18px;
    line-height: 1.5;
  }
}
	
/*MOBILE FLEX*/
@media (max-width: 768px){

  body{
    font-size:14px;
  }

  section{
    padding:60px 20px;
  }
	
  .hero-text-carousel{
	  width: 70%;
    padding: 0 40px;
  }
	
  .hero-slide h1{
    font-size: 28px;
    line-height: 1.3;
  }

  .hero-slide p{
    font-size: 16px;
    line-height: 1.5;
  }

}

@media (max-width: 768px){

  .hero{
    height:auto;
    padding-top:120px;
    padding-bottom:80px;
    text-align:center;
  }

  .hero h1{
    font-size:28px;
    line-height:1.3;
  }

  .hero p{
    font-size:14px;
  }

}


@media (max-width: 600px){
  .how-grid{
    grid-template-columns: 1fr;
  }
	
	.contact-form textarea{
		width: 100%;
	}
}
