:root {
  --bg-main: #f8fafc;
  --bg-soft: #f1f5f9;
  --bg-glass: rgba(255, 255, 255, 0.65);
  --primary: #0066ff;
  --primary-soft: #ede9fe;
  --text-main: #0f172a;
  --text-muted: #64748b;
  --border-soft: #e5e7eb;
  --hover-bg: #8e4cff;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --shadow-soft: 0 20px 60px rgba(15, 23, 42, 0.08);
  --shadow-glass: 0 10px 30px rgba(15, 23, 42, 0.06);
  --container: 1200px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  /*outline: 1px solid blue;*/
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", system-ui, sans-serif;
  background: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
  max-width: 100%;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-weight: 600;
}

.landing-bg {
  position: fixed;
  inset: 0;
  background: linear-gradient(120deg,#f5f3ff,#ecfbfc,#f0fdf4);
  background-size: 200% 200%;
  animation: bgMove 10s ease infinite;
  z-index: -1;
  pointer-events: none;
}

@keyframes bgMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);   
}

section {
  padding: 5rem clamp(1.5rem, 5vw, 2rem);   
  position: relative;
  z-index: 1;
}

.nav {
  position: sticky;
  top: 0;
  backdrop-filter: blur(16px);
  background: var(--bg-glass);
  border-bottom: 1px solid var(--border-soft);
  z-index: 100;
  padding: 1rem 0;
}

.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;   
  cursor: pointer;
}

.hamburger span {
  width: 28px;   
  height: 3px;
  background: var(--primary);
  transition: all 0.3s ease, opacity 0.4s ease;
  transform-origin: center;
}

.hamburger span:nth-child(2) { width: 60%; }

.hamburger span:nth-child(3) { width: 40%; }

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.open span:nth-child(2) { opacity: 0; }

.hamburger.open span:nth-child(3) {
  width: 100%;
  transform: rotate(-45deg) translate(6px, -6px);
}

.logo a {
  font-weight: 700;
  font-size: clamp(1.6rem, 4.5vw, 1.9rem);   
  background: linear-gradient(135deg, var(--primary), #6838f8);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-links {
  position: relative;
  color: #64748b;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;   
  border-radius: 8px;
  transition: background 0.3s ease;
}

.nav-links:hover {
  color: #0f172a;
}

.nav-links::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--hover-bg);
  transition: width 0.3s ease, left 0.3s ease;
}

.nav-links:hover::after {
  width: 100%;
  left: 0;
}

.nav-links:hover {
  color: #0f172a;
}

.nav-links::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--hover-bg);
  transition: width 0.3s ease, left 0.3s ease;
}

.nav-links:hover::after {
  width: 100%;
  left: 0;
}

.nav-item {
  position: relative; 
}

.nav-item .nav-links::after {
  height: 0;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 180px;
  background: var(--bg-soft);
  padding: 20px 10px;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  display: none;
  flex-direction: column;
  z-index: 1000;
}

.dropdown a {
  text-decoration: none;
  color: #0f172a;
  border-radius: var(--radius-sm);
  padding: 6px 10px;
  display: block;
  transition: .25s ease;
}

.dropdown a:hover {
  background: #6838f8;
  color: #fff;
}

.nav-item:hover .dropdown {
  transition: all 4s ease;
  display: flex;
}

.nav-cta {
  position: relative;
  text-decoration: none;
  padding: 0.65rem 1.4rem;
  color: #fff;
  border: 1.5px solid var(--primary);
  border-radius: 999px;
  font-size: 0.85rem;
  box-shadow: var(--shadow-glass);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  overflow: hidden;
}

/*.nav-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg,transparent 30%,rgba(255, 255, 255, 0.4),transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.6s ease;
}

.nav-cta:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.nav-cta:hover::before {
  transform: translateX(120%);
}*/

.nav-cta.active,
.nav-cta:active {
  background: #6838f8;
  color: #fff;
  border-color: #fff;
  transform: translateY(0);
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.25),0 6px 16px rgba(0, 0, 0, 0.15);
}

.nav-cta.active::after {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(59, 130, 246, 0.25);
  pointer-events: none;
}

.hero {
  text-align: center;
  padding: 8rem 2rem 4rem;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: clamp(3.8rem, 5vw, 4rem);
  font-weight: 750;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero h1 span {
  background: linear-gradient( 135deg,var(--primary),#8e4cff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  max-width: 650px;
  margin: 1.5rem auto;
  color: var(--text-muted);
  font-size: 1.15rem;
  line-height: 1.7;
}

.hero-actions {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  text-decoration: none;
  position: relative;
  overflow: hidden;
  padding: 16px 26px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  background: transparent;
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.25),0 6px 16px rgba(0, 0, 0, 0.15);
  transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease, color 0.35s ease;
}

.btn span {
  text-decoration: none;
  position: relative;
  z-index: 2;
}

.btn.primary {
  background: var(--hover-bg);
  color: #fff;
}

.btn.primary:hover {
  transform: translateY(-2.3px);
}

.btn.ghost {
  color: var(--hover-bg);
  background: transparent;
}

.btn.ghost:hover {
  color: #fff;
  background: var(--hover-bg);
}

.mockups {
  position: relative;
  max-width: var(--container);
  margin: 8rem auto;
  min-height: 600px;
  padding: 0 2rem;
}

.mockup-card {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: 0 14px 40px 2px rgba(59, 130, 246, 0.25), 4px 10px 26px rgba(0, 0, 0, 0.135);
  border: 1px solid var(--border-soft);
  overflow: hidden;
}

.mockup-card.main {
  width: min(580px, 90%);
  margin: 0 auto;
  animation: float 6s ease-in-out infinite;
}

.mockup-header {
  background: linear-gradient( 135deg, #5353f5,#6838f8);
  padding: 2rem;
  color: white;
}

.mockup-header h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.mockup-header p {
  opacity: 0.9;
  font-size: 0.9rem;
}

.mockup-content {
  padding: 2rem;
}

/* excessive codes for clamps and good mobile responsiveness */

.hero {
  text-align: center;
  padding: clamp(6rem, 12vh, 8rem) clamp(1.25rem, 4vw, 2rem) 4rem;  
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 4.2rem);   
  font-weight: 750;
  line-height: 1.05;
  margin-bottom: 1.5rem;
}

.hero h1 span {
  background: linear-gradient(135deg, var(--primary), #8e4cff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  max-width: 650px;
  margin: 1.5rem auto;
  color: var(--text-muted);
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  line-height: 1.7;
}

.hero-actions {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  padding: clamp(14px, 3vw, 16px) clamp(22px, 4vw, 26px);
  font-size: clamp(0.9rem, 2.2vw, 0.95rem);
  min-width: 140px;  
}

.mockups {
  position: relative;
  max-width: var(--container);
  margin: clamp(5rem, 10vw, 8rem) auto;
  min-height: clamp(400px, 60vh, 600px);
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.mockup-card.main {
  width: min(90%, 580px);
  margin: 0 auto;
  animation: float 6s ease-in-out infinite;
}


.stat-row {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.stat-box {
  flex: 1;
  background: var(--bg-soft);
  padding: 1.5rem;
  border-radius: var(--radius-md);
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}

.stat-value {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
}

.progress-bar {
  background: var(--bg-soft);
  height: 8px;
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg ,#3333ff,var(--hover-bg));
  border-radius: 999px;
  animation: progress 3s ease-out;
}

@keyframes progress {
  from {
    width: 0;
  }
}

.chart-placeholder {
  background: linear-gradient(135deg,var(--primary-soft),#ebe7ff);
  height: 180px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  gap: 0.5rem;
}

.chart-bar {
  flex: 1;
  background: #3333ff;
  border-radius: 4px 4px 0 0;
  opacity: 0.8;
  animation: chartGrow 1.5s ease-out;
}

@keyframes chartGrow {
  from {
    transform: scaleY(0);
  }
  to {
    transform: scaleY(1);
  }
}

.mockup-card.small {
  border: 2px solid var(--bg-glass);
  box-shadow: 0 14px 40px 2px rgba(59, 130, 246, 0.25), 4px 10px 26px rgba(0, 0, 0, 0.135);
  position: absolute;
  width: 260px;
  animation: float 8s ease-in-out infinite;
}

.mockup-card.small .mockup-content {
  padding: 1.5rem;
}

.small-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.icon-circle {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg,#3333ff,#6838f8);
  border-radius: 50%;
  border: 2px solid var(--bg-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.2rem;
  box-shadow: 0 5px 10px rgba(124, 58, 237, 0.28);
}

.small-title {
  font-weight: 600;
  font-size: 1.1rem;
}

.metric-item {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-soft);
}

.metric-item:last-child {
  border-bottom: none;
}

.metric-label {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.metric-value {
  font-weight: 600;
  color: var(--primary);
}

.mockup-card.small.left {
  top: 180px;
  left: calc(50% - 450px);
}

.mockup-card.small.right {
  top: 100px;
  right: calc(50% - 450px);
  animation-delay: 2s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-25px);
  }
}

.ads-strip {
  overflow: hidden;
  width: 100%;
  background: #fff;
  padding: 2rem 1.95rem;
}

.ads-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: scrollAds 20s linear infinite;
}

.ad {
  min-width: 180px;
  padding: 1.5rem 1.5rem;
  background: #f8fafc;
  border-radius: 14px;
  border: 2px solid var(--bg-glass);
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.25),0 6px 16px rgba(0, 0, 0, 0.15);
  font-weight: 600;
  text-align: center;
  max-width: 300px;
}

.ad img {
  width: 100%;
  height: 70px;
  object-fit: contain;
}

@keyframes scrollAds {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}


.features {
  background: white;
  border-radius: var(--radius-lg);
  padding: 4rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-soft);
}

.features h2 {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.features > p {
  text-align: center;
  max-width: 650px;
  margin: 1rem auto 4rem;
  color: var(--text-muted);
  font-size: 1.1rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(300px, 1fr));
  gap: 2.5rem;
}

.feature-item {
  position: relative;
  background: var(--bg-soft);
  padding: 2.5rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.08);
  min-height: 220px;
  width: 100%;
  transition: transform 0.35s var(--ease),box-shadow 0.35s var(--ease),background 0.35s var(--ease);
}

.feature-item:hover {
  transform: translateY(-5px) scale(1.03);
}

.feature-item .feature-icon:hover {
  transform: rotateX(180deg);
}

.feature-item.left {
  color: #fff;
  background: linear-gradient(145deg,#fb7185,#e11d48);
  box-shadow: 0 20px 50px rgba(236, 72, 153, 0.28);
}

.feature-item.left::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.18);
  pointer-events: none;
}

.feature-item.middle {
  color: #fff;
  background: linear-gradient(145deg, #6366f1, #312e81);
  box-shadow: 0 20px 50px rgba(79, 70, 229, 0.28);
}

.feature-item.middle::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.16);
  pointer-events: none;
}

.feature-item.right {
  color: #fff;
  background: linear-gradient(145deg, #5eead4, #0f766e);
  box-shadow: 0 20px 50px rgba(20, 184, 166, 0.28);
}

.feature-item.right::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.16);
  pointer-events: none;
}

.feature-item::before {
  content: "";
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle, rgba(255,255,255,0.18),transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.feature-item:hover::before {
  opacity: 1;
}

.feature-icon {
  color: #f1f5f9;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  background: #fff;
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  transition: transform 0.6s var(--ease),box-shadow 0.35s var(--ease),background 0.35s var(--ease);
  transform-style: preserve-3d;
}

.feature-item:hover .feature-icon {
  transform: rotate(6deg) scale(1.08);
}

.feature-icon i {
  font-size: 40px;
}

.feature-icon.left i {
  color: #fb7185;
}

.feature-icon.middle i {
  color: #6366f1;
}

.feature-icon.right i {
  color: #5eead4;
}

.feature-item h3 {
  margin-bottom: 0.6rem;
  font-size: 1.25rem;
  font-weight: 600;
}

.feature-item p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
}

.feature-split {
  padding: 6rem 0;
}


.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.split-content h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.split-content p {
  color: var(--text-soft);
  max-width: 480px;
  margin-bottom: 1.5rem;
}

.feature-points {
  list-style: none;
  padding: 0;
}

.feature-points li {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  margin-bottom: 0.9rem;
  font-weight: 500;
}

.feature-points .fa-solid {
  font-size: 22px;
  color: #f1f5f9;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(6px);
  box-shadow: 0 10px 25px var(--shadow-soft);
  transform-style: preserve-3d;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.feature-points .fa-solid.fa-money-bill-trend-up {
  color: #04a00f;
}

.feature-points .fa-solid.fa-clock-rotate-left {
  color: #e11d48;
}

.feature-points .fa-solid.fa-chart-simple {
  color: #ffd700;
}

.split-visual {
  position: relative;
}

.visual-card {
  background: var(--bg-main);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-glass);
  padding: 1.5rem;
}

.visual-card.main {
  width: 100%;
  height: 260px;
}

.visual-card.small {
  position: absolute;
  width: 160px;
}

.visual-card.small span {
  color: #0000ff;
  font-weight: 500;
}

.visual-card.small.top {
  top: -20px;
  right: -20px;
}

.visual-card.small.bottom {
  bottom: -20px;
  left: -20px;
}

.cursor-area {
  perspective: 900px;
}

.cursor-card {
  transition:transform 0.25s ease-out,box-shadow 0.35s ease;
  will-change: transform;
}

.cursor-area:hover .cursor-card {
  box-shadow: 0 25px 60px rgba(0,0,0,0.18);
}

.cursor-area {
  perspective: 900px;
}

.cursor-card {
  --rx: 0deg; --ry: 0deg;
  transform:rotateX(var(--rx)) rotateY(var(--ry));
  transition: transform 0.25s ease-out;
}

.float-card {
  animation: float 5.5s ease-in-out infinite;
}

.float-card.top {
  animation-delay: 0s;
}

.float-card.bottom {
  animation-delay: 1.8s;
}

@keyframes float {
  0%   { 
    transform: translateY(0px); 
  }
  50%  { 
    transform: translateY(-10px); 
  }
  100% { 
    transform: translateY(0px); 
  }
}

#pricing {
  padding: 6rem 0;
}

.pricing-header {
  text-align: center;
  margin-bottom: 5.5rem;
}

.pricing-header h2 {
  font-size: 2.3rem;
  margin-bottom: 15px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 4rem;
}

.pricing-card {
  position: relative;
  border: 1.5px solid var(--bg-glass);
  border-radius: 22px;
  padding: 1.75rem;
  height: max-content;
  color: #fff;
  background: #1f2337;
  box-shadow: 0 25px 60px rgba(0,0,0,0.35);
  display: flex;
  flex-direction: column;
  transition: transform 0.45s ease, box-shadow 0.5s ease;
}

.pricing-card:hover {
  transform: scale(1.06);
}

.plan-starter {
  background: linear-gradient(145deg,#fb7185,#e11d48);
}

.plan-pro {
  background: linear-gradient(145deg, #6366f1, #5d59d6);
}

.plan-beaver {
  background: linear-gradient(145deg, #42e695, #3bb2b8);
}

.pricing-card.featured {
  transform: scale(1.06);
  z-index: 2;
}

.pricing-card.featured:hover {
  transform: scale(1.06) translateY(-10px);
}

.badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  color: #0066ff;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.pricing-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.price {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.price span {
  font-size: 1rem;
  font-weight: 500;
  opacity: 0.85;
}

.price-sub {
  font-size: 0.95rem;
  opacity: 0.85;
  margin-bottom: 2rem;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin-bottom: 2.5rem;
}

.pricing-features li {
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  font-weight: 500;
  opacity: 0.95;
}

.price-btn {
  width: 100%;
  align-self: flex-start;
  text-decoration: none;
  text-align: center;
  padding: 15px 28px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.price-btn.primary {
  background: #fff;
  color: #0f172a;
}

.price-btn.primary:hover {
  background: #eef2ff;
}

.price-btn.ghost {
  background: #fff;
  color: #0f172a;
  backdrop-filter: blur(6px);
}

.price-btn.ghost:hover {
  background: #f1f5f9;
  transform: translateY(-4px);
}

.cta-section {
  padding: 40px;
}

.cta-section-header {
  text-align: center;
  margin-bottom: 10px;
  line-height: 2.5;
}

.cta-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.cta-visual {
  position: relative;
  width: 100%;
  height: 360px;
  perspective: 1000px;
}

.cta-card {
  background: var(--bg-main);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-glass);
  padding: 1.5rem;
  position: absolute;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.cta-card.main {
  width: 100%;
  max-width: 560px;
  height: 360px;
  position: relative;
  z-index: 0;
  background: linear-gradient(145deg, #ffffff, #f8fafc);
  box-shadow: 0 30px 80px rgba(15,23,42,0.18);
}

.cta-card.main img {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-md);
  object-fit: cover;
}

/*
.cta-floats {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta-card.small {
  position: absolute;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  border: 3px solid rgba(99,102,241,0.35);
  box-shadow: 0 10px 25px rgba(15,23,42,0.18);
  font-size: 0.85rem;
  font-weight: 600;
  color: #4f46e5;
  animation: floatY 6s ease-in-out infinite;
}

.cta-card.small:nth-child(1) {
  top: 0%;
  left: 4%;
}

.cta-card.small:nth-child(2) {
  top: 0%;
  left: 11%;
  animation-delay: 0.8s;
}

.cta-card.small:nth-child(3) {
  top: 0%;
  left: 18%;
  transform: translateX(-50%);
  animation-delay: 1.6s;
}

.cta-card.small {
  position: absolute;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid rgba(99,102,241,0.35);
  box-shadow: 0 10px 25px rgba(15,23,42,0.18);
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: #4f46e5;
}

.float-inner {
  animation: floatY 6s ease-in-out infinite;
}

.cta-card.small:nth-child(2) .float-inner {
  animation-delay: 0.8s;
}

.cta-card.small:nth-child(3) .float-inner {
  animation-delay: 1.6s;
}

@keyframes floatY {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
*/

.cta-content p {
  font-size: 2.05rem;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: var(--text-muted);
}

.price-btn.cta {
  background: #6838f8;
  color: #fff;
}

.price-btn.cta:hover {
  background: #5353f5;
}

#about {
  padding: 5rem 0;
}

#about h1 {
  font-weight: 700;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: #cdcfd7;
  font-size: 3rem;
  text-align: center;

  margin-bottom: 2rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.about-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.about-intro {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-main);
  margin-bottom: 2rem;
}

.about-points {
  list-style: none;
  padding: 0;
  margin-bottom: 2.5rem;
}

.about-points li {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  margin-bottom: 0.9rem;
  font-size: 0.95rem;
  color: var(--text-main);
}

.about-points span {
  font-size: 1.1rem;
}

.about-points .fa-solid {
  font-size: 22px;
  color: #f1f5f9;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(6px);
  box-shadow: 0 10px 25px var(--shadow-soft);
  transform-style: preserve-3d;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.about-points .fa-solid.fa-user-tie {
  color: #e11d48;
}

.about-points .fa-solid.fa-brain {
  color: #ffd700;
}

.about-points .fa-solid.fa-lock {
  color: #0f766e;
}

.about-points .fa-solid.fa-infinity {
  color: #0000ff;
}

.about-trust {
  background: #fcfcfc;
  border: 1px solid var(--primary);
  border-radius: var(--radius-lg);
  padding: 10px 20px;
  color: var(--text-muted);
  font-size: 0.9rem;
  max-width: fit-content;
  width: 100%;
  box-shadow: 0 4px 10px rgba(59, 130, 246, 0.25);
  display: inline-block;
}

.about-trust .fa-solid.fa-wand-magic-sparkles {
  box-shadow: var(--shadow-soft);
  position: relative;
  animation: bounce 0.6s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-2px);
  }
}


.dot {
  background: var(--primary);
  border-radius: 50%;
  width: 8px;
  height: 8px;
  display: inline-block;
  margin: 0 4px;
  vertical-align: middle;
}

.dot.pulse {
  position: relative;
}

.dot.pulse::after {
  content: "";
  background: currentColor;
  border-radius: 50%;
  inset: 0;
  position: absolute;
  animation: pulse 1.6s ease infinite;
  opacity: 0.6;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(2.4); opacity: 0; }
}

.about-visual {
  position: relative;
  height: 360px;
}

.about-card {
  background: var(--bg-main);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-glass);
  padding: 1.5rem;
  position: absolute;
}

.about-card.main {
  width: 100%;
  max-width: 320px;
  height: 220px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.about-card.main h4 {
  margin-bottom: 1rem;
}

.mini-chart {
  display: flex;
  gap: 6px;
  margin-top: 1rem;
}

.mini-chart span {
  width: 20px;
  height: 130px;
  background: #93c5fd;
  border-radius: 4px;
}

.mini-chart span:nth-child(2) { height: 22px; }
.mini-chart span:nth-child(3) { height: 36px; }
.mini-chart span:nth-child(4) { height: 100px; }



.about-card.small {
  width: 120px;
  height: 90px;
  text-align: center;
  display: grid;
  place-items: center;
  gap: 0.3rem;
  animation: float 5.5s ease-in-out infinite;
}

.about-card.small span {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
}

.about-card.small p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.about-card.small:nth-child(2) {
  top: 15%;
  left: 10%;
  animation-delay: 2s;
}

.about-card.small:nth-child(3) {
  bottom: 18%;
  right: 10%;
}

#contact {
  padding: 6rem 0;
}

.contact-card {
  background: #fff;
  padding: 5px 10px;
  text-align: center;
  border: 1px solid var(--primary);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: max-content;
  color: var(--text-muted);
  font-weight: 500;
  font-size: 12px;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 10px rgba(59, 130, 246, 0.25);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.contact-content h2 {
  margin-bottom: 1rem;
}

.contact-intro {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-main);
  margin-bottom: 2rem;
}

.contact-info {
  list-style: none;
  padding: 0;
}

.contact-info li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
  font-size: 0.95rem;
  color: var(--text-main);
}

.contact-info i{
  color: #0000ff;
}

.contact-info span {
  font-size: 1.1rem;
}

.contact-form {
  background: var(--bg-main);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  box-shadow: var(--shadow-glass);
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.4rem;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--text-muted);
}

.form-group input,
.form-group textarea {
  border-radius: 12px;
  border: 2px solid var(--border-soft);
  padding: 0.75rem 0.9rem;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(99,102,241,0.15);
}

.submit-btn {
  font-family: inherit;
  font-weight: 600;
  color: #fff;
  background: #6366f1;
  border: none;
  border-radius: var(--radius-md);
  position: relative;
  padding: 18px 24px;
  width: 100%;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background: var(--hover-bg);
}

.btn-loader {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  display: none;
}

.submit-btn.loading .btn-text {
  display: none;
}

.submit-btn.loading .btn-loader {
  display: inline-block;
}

.submit-btn.success {
  background: #22c55e;
  color: #fff;
}

.submit-btn.success .btn-loader {
  display: none;
}

.submit-btn.success .btn-text {
  display: inline-block;
  content: "Sent";
}

.form-success {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #22c55e;
  display: none;
}

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

#footer {
  background: linear-gradient(180deg, #0f172a, #020617);
  color: #cbd5f5;
  padding: 6rem 0 2.5rem;
  position: relative;
  overflow: hidden;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 4rem;
  margin-bottom: 5rem;
}

.footer-brand h3 {
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
  color: #fff;
}

.footer-brand p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #94a3b8;
}

.footer-links h4 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #e5e7eb;
}

.footer-links a {
  display: block;
  margin-bottom: 0.6rem;
  font-size: 0.85rem;
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-links a:hover {
  color: #fff;
}

.footer-wordmark {
  font-size: clamp(3.5rem, 14vw, 10rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
  color: rgba(255,255,255,0.04);
  user-select: none;
  pointer-events: none;
  line-height: 1;
}

#backToTop {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: none;
  background: var(--hover-bg);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s ease,transform 0.3s ease,background 0.25s ease;
  box-shadow: 0 10px 30px rgba(99,102,241,0.35);
  z-index: 999;
}

#backToTop.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#backToTop:hover {
  background: var(--primary);
  transform: translateY(-2px);
}

/* shithole */

@media (max-width: 1200px) {
  :root {
    --container: 1000px;
  }

  .mockup-card.small.left,
  .mockup-card.small.right {
    display: none;
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 992px) {
  section {
    padding: 4rem 1.5rem;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 6vw, 3.4rem);
  }

  .split-grid,
  .about-grid,
  .contact-grid,
  .cta-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

  .features {
    padding: 3rem 2rem;
  }

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

@media (max-width: 768px) {
  body {
    overflow-x: hidden;
    max-width: 100%;
  }

  .nav-ul {
    position: fixed;
    top: 72px;
    left: 0;
    width: 100%;
    background: var(--bg-main);
    flex-direction: column;
    gap: 1.2rem;
    padding: 2rem;
    border-top: 1px solid var(--border-soft);
    transform: translateY(-120%);
    transition: transform 0.35s ease;
    z-index: 1000;
  }

  .nav-ul.open {
    transform: translateY(0);
  }

  .hamburger {
    display: flex;
  }

  .nav-item:hover .dropdown {
    position: static;
    box-shadow: none;
  }

  .hero {
    padding-top: 6rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .mockups {
    margin: 5rem auto;
    min-height: auto;
  }

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

  .footer-grid {
    text-align: center;
    grid-template-columns: 1fr;
  }

  #backToTop {
    right: 18px;
    bottom: 55px;
  }
}


@media (max-width: 1100px) {   
  .mockup-card.small.left,
  .mockup-card.small.right {
    display: none;
  }
}

.feature-item {
  min-height: 260px;   
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

@media (max-width: 992px) {
  .logo {
    text-align: center;
  }
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-card {
    text-align: center;
    transform: none;          
    margin: 0 auto;
    width: 100%;
    max-width: 360px;
  }
}

@media (max-width: 640px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}


@media (max-width: 768px) {
  .hero {
    padding: 6rem 1.25rem 3rem;   
  }

  .hero-actions {
    flex-direction: column;
    gap: 1rem;
  }

  .ads-track .ad img {
    width: 100%;
    max-width: min-content;
  }

  .ads-track {
    max-width: min-content;
  }

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

  .split-grid,
  .about-grid,
  .contact-grid,
  .cta-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 480px) {
  :root {
    --radius-lg: 18px;
    --radius-md: 14px;
    --radius-sm: 10px;
  }

  h2 { font-size: clamp(2rem, 6vw, 2.5rem); }  
  h3 { font-size: clamp(1.3rem, 5vw, 1.5rem); }

  .btn {
    padding: 14px 20px;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:opacity 0.8s ease,transform 0.8s cubic-bezier(0.4,0,0.2,1);
  transition-delay: calc(var(--i) * 0.12s);
  will-change: transform, opacity;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

.reveal.delay-1 { transition-delay: 0.12s; }
.reveal.delay-2 { transition-delay: 0.22s; }
.reveal.delay-3 { transition-delay: 0.32s; }
.reveal.delay-4 { transition-delay: 0.42s; }

.hover-lift {
  transition:transform 0.35s var(--ease),box-shadow 0.35s var(--ease),background 0.35s var(--ease);
}

.hover-lift:hover {
  transform: translateY(-5px) scale(1.03);
}

::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  border-radius: 999px;
  border: 3px solid rgba(255,255,255,0.06);
}

* {
  scrollbar-width: thin;
  scrollbar-color: var(--hover-bg) transparent;
}