/* ============================================================
   SANKAVI SOLUTIONS – PREMIUM STYLESHEET
   Version: Production (Phase 21)
   ============================================================ */

/* ============================================================
   1. IMPORTS & VARIABLES
   ============================================================ */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap");

:root {
  --primary: #07152b;
  --secondary: #0f2d58;
  --accent: #00d4ff;
  --white: #ffffff;
  --text: #dce8ff;
  --glass: rgba(255, 255, 255, 0.06);
  --glass-hover: rgba(255, 255, 255, 0.1);
  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(0, 212, 255, 0.25);
  --shadow: 0 20px 50px rgba(0, 212, 255, 0.1);
  --shadow-hover: 0 25px 60px
    rgba(0, 212, 255, 0.18);
  --radius: 24px;
  --radius-sm: 16px;
  --transition: 0.35s
    cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ============================================================
   2. RESET & BASE
   ============================================================ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: "Poppins", sans-serif;
  background: linear-gradient(
    135deg,
    #06101f,
    #0d2241,
    #143c72
  );
  color: var(--text);
  overflow-x: hidden;
  animation: pageFadeIn 0.8s ease forwards;
}

/* ============================================================
   3. SCROLLBAR
   ============================================================ */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--primary);
}
::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 20px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--white);
}

/* ============================================================
   4. ANIMATED BACKGROUNDS
   ============================================================ */
.bg1,
.bg2,
.bg3 {
  position: fixed;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.35;
  z-index: -1;
  will-change: transform;
  pointer-events: none;
}
.bg1 {
  width: 450px;
  height: 450px;
  background: #00d4ff;
  top: -150px;
  left: -120px;
  animation: floatBg1 14s ease-in-out infinite
    alternate;
}
.bg2 {
  width: 350px;
  height: 350px;
  background: #4d5cff;
  right: -100px;
  top: 180px;
  animation: floatBg2 12s ease-in-out infinite
    alternate;
}
.bg3 {
  width: 300px;
  height: 300px;
  background: #00ff99;
  bottom: -100px;
  left: 40%;
  animation: floatBg3 16s ease-in-out infinite
    alternate;
}

@keyframes floatBg1 {
  to {
    transform: translateY(80px) translateX(60px);
  }
}
@keyframes floatBg2 {
  to {
    transform: translateX(-80px) translateY(40px);
  }
}
@keyframes floatBg3 {
  to {
    transform: translateY(-80px) translateX(-40px);
  }
}

/* ============================================================
   5. PRELOADER
   ============================================================ */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--primary);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  transition:
    opacity 0.7s ease,
    visibility 0.7s ease;
}
#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}
.loader {
  width: 80px;
  height: 80px;
  border: 8px solid rgba(255, 255, 255, 0.12);
  border-top: 8px solid var(--accent);
  border-radius: 50%;
  animation: spinLoader 0.9s linear infinite;
  margin-bottom: 25px;
}
#preloader h2 {
  color: #fff;
  font-weight: 600;
  letter-spacing: 2px;
}
@keyframes spinLoader {
  to {
    transform: rotate(360deg);
  }
}

/* ============================================================
   6. CONTAINER
   ============================================================ */
.container {
  width: 90%;
  max-width: 1300px;
  margin: 0 auto;
}

/* ============================================================
   7. HEADER / NAVBAR
   ============================================================ */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 18px 0;
  background: rgba(5, 15, 30, 0.72);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  transition:
    background 0.4s ease,
    box-shadow 0.4s ease;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo h2 {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
}
.logo span {
  color: var(--accent);
}

nav {
  display: flex;
  gap: 35px;
  align-items: center;
}
nav a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: color 0.3s ease;
  position: relative;
}
nav a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}
nav a:hover::after,
nav a.active::after {
  width: 100%;
}
nav a:hover,
nav a.active {
  color: var(--accent);
}

.nav-btn {
  padding: 10px 28px;
  background: var(--accent);
  border-radius: 40px;
  color: #001a33;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  white-space: nowrap;
}
.nav-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

/* ============================================================
   8. MOBILE MENU
   ============================================================ */
.menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: transparent;
  border: none;
}
.menu-btn span {
  display: block;
  width: 28px;
  height: 3px;
  background: #fff;
  border-radius: 3px;
  transition: 0.3s ease;
}
.menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}
.menu-btn.active span:nth-child(2) {
  opacity: 0;
}
.menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

@media (max-width: 992px) {
  .menu-btn {
    display: flex;
  }
  nav {
    position: fixed;
    top: 76px;
    left: -100%;
    width: 100%;
    max-height: calc(100vh - 76px);
    background: rgba(8, 25, 47, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 30px;
    gap: 20px;
    overflow-y: auto;
    transition: left 0.4s ease;
    border-top: 1px solid var(--border);
  }
  nav.active {
    left: 0;
  }
  nav a {
    font-size: 18px;
    padding: 8px 0;
  }
}

/* ============================================================
   9. BUTTONS
   ============================================================ */
.primary-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: var(--accent);
  color: #001a33;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 212, 255, 0.35);
}
.primary-btn:active {
  transform: scale(0.97);
}

.secondary-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: 50px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: 0.3s ease;
  background: transparent;
  cursor: pointer;
}
.secondary-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #fff;
  transform: translateY(-3px);
}

/* ============================================================
   10. GLASS CARDS
   ============================================================ */
.glass-card {
  background: var(--glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
  will-change: transform, opacity;
}
.glass-card:hover {
  background: var(--glass-hover);
  border-color: var(--border-hover);
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

/* ============================================================
   11. SECTION TITLE
   ============================================================ */
.section-title {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 60px;
}
.section-title h4 {
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-title h2 {
  font-size: 44px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.15;
}
.section-title p {
  font-size: 18px;
  line-height: 1.7;
  opacity: 0.8;
}

/* ============================================================
   12. HERO (Premium)
   ============================================================ */
.hero-premium {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 120px 8% 50px;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(
    -45deg,
    #06101f,
    #0d2241,
    #143c72,
    #0a1f3a
  );
  background-size: 400% 400%;
  animation: gradientShift 14s ease-in-out
    infinite;
}
@keyframes gradientShift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.02) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.02) 1px,
      transparent 1px
    );
  background-size: 60px 60px;
  mask-image: radial-gradient(
    ellipse at center,
    black 30%,
    transparent 70%
  );
  -webkit-mask-image: radial-gradient(
    ellipse at center,
    black 30%,
    transparent 70%
  );
  animation: gridPulse 8s ease-in-out infinite
    alternate;
}
@keyframes gridPulse {
  0% {
    opacity: 0.3;
    transform: scale(1);
  }
  100% {
    opacity: 0.8;
    transform: scale(1.05);
  }
}

.floating-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.12;
  z-index: -1;
  pointer-events: none;
  animation: floatShape 12s ease-in-out infinite
    alternate;
}
.shape-1 {
  width: 300px;
  height: 300px;
  background: #00d4ff;
  top: -80px;
  right: -80px;
}
.shape-2 {
  width: 400px;
  height: 400px;
  background: #7c3aed;
  bottom: -200px;
  left: -200px;
  animation-delay: -4s;
}
.shape-3 {
  width: 250px;
  height: 250px;
  background: #f59e0b;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: -8s;
}
@keyframes floatShape {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(40px, -40px) scale(1.15);
  }
}

.hero-content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  width: 100%;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text h1 {
  font-size: 60px;
  line-height: 1.08;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.hero-text h1 span {
  display: block;
  background: linear-gradient(
    135deg,
    #00d4ff,
    #0b74ff
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-text p {
  font-size: 18px;
  line-height: 1.8;
  max-width: 580px;
  margin-bottom: 24px;
  opacity: 0.85;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 212, 255, 0.1);
  color: var(--accent);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 22px;
  border: 1px solid rgba(0, 212, 255, 0.15);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.trust-badges {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.trust-badges span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}
.trust-badges i {
  color: var(--accent);
}

.trusted-tech {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.trusted-tech span {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.trusted-tech div {
  display: flex;
  gap: 16px;
  font-size: 28px;
  color: rgba(255, 255, 255, 0.25);
}
.trusted-tech div i {
  transition: 0.3s;
}
.trusted-tech div i:hover {
  color: var(--accent);
  transform: translateY(-3px);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.floating-icons {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.floating-icons i {
  position: absolute;
  font-size: 34px;
  color: rgba(255, 255, 255, 0.05);
  animation: floatIcon 6s ease-in-out infinite
    alternate;
}
.floating-icons i:nth-child(1) {
  top: 8%;
  left: 5%;
  animation-delay: 0s;
}
.floating-icons i:nth-child(2) {
  top: 18%;
  right: 8%;
  animation-delay: 1s;
}
.floating-icons i:nth-child(3) {
  bottom: 25%;
  left: 2%;
  animation-delay: 2s;
}
.floating-icons i:nth-child(4) {
  bottom: 8%;
  right: 4%;
  animation-delay: 3s;
}
.floating-icons i:nth-child(5) {
  top: 55%;
  left: 15%;
  animation-delay: 4s;
}
.floating-icons i:nth-child(6) {
  top: 5%;
  right: 30%;
  animation-delay: 5s;
}
@keyframes floatIcon {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  100% {
    transform: translate(15px, -15px) rotate(8deg);
  }
}

/* Laptop Mockup */
.laptop-mockup {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 18px 18px 0 18px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
  max-width: 480px;
  margin: 0 auto;
}
.laptop-mockup:hover {
  transform: translateY(-6px);
  box-shadow: 0 40px 80px rgba(0, 212, 255, 0.1);
}
.laptop-screen {
  background: #0a1a2f;
  border-radius: 12px 12px 0 0;
  padding: 14px;
  aspect-ratio: 16 / 10;
  border: 1px solid rgba(255, 255, 255, 0.04);
}
.screen-content {
  flex: 1;
  background: #0d2241;
  border-radius: 8px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  height: 100%;
}
.screen-header {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
}
.screen-header .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}
.dot.red {
  background: #ff5f56;
}
.dot.yellow {
  background: #ffbd2e;
}
.dot.green {
  background: #27c93f;
}
.screen-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.code-line {
  height: 8px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  width: 100%;
}
.code-line.short {
  width: 60%;
}
.code-line:nth-child(3) {
  width: 80%;
}

.laptop-base {
  width: 55%;
  height: 12px;
  background: rgba(255, 255, 255, 0.04);
  margin: 0 auto;
  border-radius: 0 0 12px 12px;
  border-bottom: 1px solid
    rgba(255, 255, 255, 0.04);
}

.hero-card.second {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 380px;
  margin: 0 auto;
}
.hero-card.second i {
  font-size: 34px;
  color: var(--accent);
  flex-shrink: 0;
}
.hero-card.second h3 {
  font-size: 18px;
  color: #fff;
  margin-bottom: 2px;
}
.hero-card.second p {
  font-size: 14px;
  opacity: 0.75;
  margin: 0;
}

.scroll-indicator {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: rgba(255, 255, 255, 0.3);
  font-size: 12px;
  letter-spacing: 1px;
  animation: bounceDown 2s ease-in-out infinite;
  z-index: 2;
}
.scroll-indicator i {
  font-size: 18px;
}
@keyframes bounceDown {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

/* ============================================================
   13. SVG DIVIDERS
   ============================================================ */
.section-divider {
  position: relative;
  width: 100%;
  height: 70px;
  overflow: hidden;
  margin: -50px 0 -20px;
  pointer-events: none;
}
.section-divider svg {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
  fill: rgba(255, 255, 255, 0.02);
}

/* ============================================================
   14. STATS
   ============================================================ */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 60px 8% 80px;
}
.stat {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 32px 20px;
  text-align: center;
  transition: all var(--transition);
}
.stat:hover {
  transform: translateY(-8px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-hover);
}
.stat h2 {
  font-size: 44px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 6px;
}
.stat p {
  font-size: 16px;
  opacity: 0.8;
}

/* ============================================================
   15. ABOUT
   ============================================================ */
.about {
  padding: 80px 8%;
}
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.about-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: all var(--transition);
}
.about-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-hover);
}
.about-card i {
  font-size: 48px;
  color: var(--accent);
  margin-bottom: 16px;
}
.about-card h3 {
  font-size: 24px;
  color: #fff;
  margin-bottom: 10px;
}
.about-card p {
  line-height: 1.7;
  opacity: 0.85;
}

/* About Page Specific */
.about-hero {
  padding: 140px 8% 60px;
}
.about-hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-hero-text .section-tag {
  color: var(--accent);
  font-size: 13px;
  letter-spacing: 3px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: inline-block;
}
.about-hero-text h1 {
  font-size: 48px;
  line-height: 1.12;
  color: #fff;
  margin-bottom: 18px;
}
.about-hero-text h1 span {
  color: var(--accent);
}
.about-hero-text p {
  font-size: 18px;
  line-height: 1.8;
  opacity: 0.85;
  margin-bottom: 28px;
}
.about-hero-stats {
  display: flex;
  gap: 40px;
}
.about-hero-stats div {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.about-hero-stats span {
  font-size: 34px;
  font-weight: 800;
  color: var(--accent);
}
.about-hero-stats div:last-child span {
  color: #fff;
}
.about-hero-stats div:last-child {
  color: rgba(255, 255, 255, 0.6);
}

.about-hero-image {
  padding: 36px 30px;
  text-align: center;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.about-hero-image i {
  font-size: 56px;
  color: var(--accent);
  margin-bottom: 16px;
}
.about-hero-image h3 {
  color: #fff;
  font-size: 26px;
  margin-bottom: 8px;
}

.about-values {
  padding: 60px 8%;
}
.about-card.premium-card {
  position: relative;
  overflow: hidden;
}
.card-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 0%,
    rgba(0, 212, 255, 0.08),
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.about-card.premium-card:hover .card-glow {
  opacity: 1;
}
.about-card.premium-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-block;
  text-align: left;
}
.about-card.premium-card ul li {
  padding: 3px 0;
}

.founder-message {
  padding: 60px 8%;
}
.founder-content {
  display: flex;
  gap: 40px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px;
}
.founder-avatar {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(0, 212, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(0, 212, 255, 0.15);
  overflow: hidden;
}
.founder-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.founder-text h3 {
  color: #fff;
  font-size: 28px;
  margin-bottom: 12px;
}
.founder-text p {
  font-size: 18px;
  line-height: 1.8;
  opacity: 0.9;
}
.founder-name {
  display: block;
  margin-top: 12px;
  font-weight: 600;
  color: var(--accent);
}
.founder-placeholder {
  margin-top: 16px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  text-align: center;
  font-size: 13px;
  opacity: 0.4;
  border: 1px dashed rgba(255, 255, 255, 0.08);
}

.company-growth {
  padding: 60px 8%;
}
.growth-grid {
  display: grid;
  grid-template-columns: repeat(
    auto-fit,
    minmax(180px, 1fr)
  );
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.growth-item {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 22px 18px;
  text-align: center;
  transition: 0.3s;
}
.growth-item:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
}
.growth-item span {
  display: block;
  font-size: 26px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 6px;
}

.timeline-section {
  padding: 60px 8%;
}
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding-left: 36px;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(0, 212, 255, 0.2);
}
.timeline-item {
  position: relative;
  margin-bottom: 36px;
}
.timeline-dot {
  position: absolute;
  left: -30px;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--primary);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.25);
}
.timeline-content {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 18px 24px;
  transition: 0.3s;
}
.timeline-content:hover {
  border-color: var(--border-hover);
  transform: translateX(4px);
}
.timeline-content .year {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 1px;
}
.timeline-content h4 {
  color: #fff;
  font-size: 20px;
  margin: 4px 0 6px;
}
.timeline-content p {
  opacity: 0.8;
  line-height: 1.6;
  margin: 0;
}

.tech-philosophy {
  padding: 60px 8%;
}
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(
    auto-fit,
    minmax(210px, 1fr)
  );
  gap: 28px;
}
.philosophy-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 28px 20px;
  text-align: center;
  transition: 0.3s;
}
.philosophy-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-hover);
}
.philosophy-card i {
  font-size: 36px;
  color: var(--accent);
  margin-bottom: 12px;
}
.philosophy-card h4 {
  color: #fff;
  font-size: 20px;
  margin-bottom: 6px;
}
.philosophy-card p {
  opacity: 0.8;
  line-height: 1.6;
  margin: 0;
}

.why-started {
  padding: 60px 8%;
}
.why-started-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.why-started-text .section-tag {
  color: var(--accent);
  font-size: 13px;
  letter-spacing: 3px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: inline-block;
}
.why-started-text h2 {
  font-size: 38px;
  color: #fff;
  margin-bottom: 18px;
}
.why-started-text p {
  line-height: 1.8;
  opacity: 0.85;
  margin-bottom: 14px;
}
.why-started-image {
  padding: 36px 30px;
  text-align: center;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.why-started-image i {
  font-size: 56px;
  color: var(--accent);
  margin-bottom: 16px;
}
.why-started-image h3 {
  color: #fff;
  font-size: 26px;
  margin-bottom: 8px;
}

.business-goals {
  padding: 60px 8%;
}
.goals-grid {
  display: grid;
  grid-template-columns: repeat(
    auto-fit,
    minmax(210px, 1fr)
  );
  gap: 28px;
}
.goal-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 28px 20px;
  text-align: center;
  transition: 0.3s;
}
.goal-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-hover);
}
.goal-card i {
  font-size: 36px;
  color: var(--accent);
  margin-bottom: 12px;
}
.goal-card h4 {
  color: #fff;
  font-size: 20px;
  margin-bottom: 6px;
}
.goal-card p {
  opacity: 0.8;
  line-height: 1.6;
  margin: 0;
}

/* ============================================================
   16. SERVICES
   ============================================================ */
.services {
  padding: 80px 8%;
}
.premium-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 10px;
}

.premium-service-card {
  position: relative;
  background: var(--glass);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 26px;
  text-align: center;
  transition: all var(--transition);
  overflow: hidden;
}
.premium-service-card:hover {
  transform: translateY(-10px) scale(1.01);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-hover);
  background: var(--glass-hover);
}

.card-border-glow {
  position: absolute;
  inset: -2px;
  border-radius: var(--radius);
  background: conic-gradient(
    from 0deg,
    transparent,
    rgba(0, 212, 255, 0.2),
    transparent,
    rgba(0, 212, 255, 0.2),
    transparent
  );
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s ease;
  animation: spinBorder 6s linear infinite;
}
.premium-service-card:hover .card-border-glow {
  opacity: 1;
}
@keyframes spinBorder {
  to {
    transform: rotate(360deg);
  }
}

.premium-service-card .card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(0, 212, 255, 0.08);
  margin: 0 auto 18px;
  font-size: 34px;
  color: var(--accent);
  transition: 0.4s;
}
.premium-service-card:hover .card-icon {
  background: rgba(0, 212, 255, 0.18);
  transform: scale(1.08) rotate(3deg);
}
.premium-service-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.premium-service-card p {
  font-size: 15px;
  line-height: 1.7;
  opacity: 0.8;
  margin-bottom: 16px;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
  border-bottom: 2px solid transparent;
}
.service-link:hover {
  gap: 12px;
  border-bottom-color: var(--accent);
}

/* ============================================================
   17. PRODUCT (DateClub)
   ============================================================ */
.product-premium {
  padding: 55px 8% 45px;
}
.product-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
  align-items: center;
  margin-top: 30px;
}

.phone-mockup {
  position: relative;
  background: var(--glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 12px 8px 8px;
  max-width: 235px;
  margin: 0 auto;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
  transition: 0.4s;
}
.phone-mockup:hover {
  transform: translateY(-6px);
  box-shadow: 0 40px 80px rgba(0, 212, 255, 0.1);
}
.phone-screen {
  background: #0a1a2f;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 9 / 19;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.04);
}
.phone-status-bar {
  display: flex;
  justify-content: space-between;
  padding: 6px 16px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  background: rgba(0, 0, 0, 0.15);
}
.phone-status-bar div i {
  margin-left: 4px;
  font-size: 11px;
}
.phone-content {
  flex: 1;
  padding: 8px 14px 14px;
  display: flex;
  flex-direction: column;
}
.phone-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.phone-header i {
  font-size: 24px;
  color: var(--accent);
}
.phone-header h4 {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}
.phone-chat {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  overflow: hidden;
}
.chat-bubble {
  padding: 6px 12px;
  border-radius: 14px;
  max-width: 80%;
  font-size: 12px;
  line-height: 1.4;
}
.chat-bubble.friend {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}
.chat-bubble.me {
  background: var(--accent);
  color: #001a33;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}
.phone-bottom {
  display: flex;
  justify-content: space-around;
  padding: 10px 0 2px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 6px;
}
.phone-bottom i {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.4);
  transition: 0.3s;
}
.phone-bottom i:hover {
  color: var(--accent);
}
.phone-shadow {
  width: 100px;
  height: 5px;
  background: rgba(255, 255, 255, 0.08);
  margin: 8px auto 0;
  border-radius: 10px;
}

.product-badge {
  display: inline-block;
  margin-top: 16px;
  padding: 6px 18px;
  background: rgba(0, 212, 255, 0.1);
  color: var(--accent);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid rgba(0, 212, 255, 0.15);
  text-align: center;
}

.product-details h3 {
  font-size: 30px;
  color: #fff;
  margin-bottom: 14px;
}
.product-details p {
  font-size: 16px;
  line-height: 1.65;
  opacity: 0.85;
  margin-bottom: 28px;
}
.product-details p strong {
  color: var(--accent);
}

.product-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}
.feature-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px;
  text-align: center;
  transition: 0.3s;
}
.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
  background: var(--glass-hover);
}
.feature-card i {
  font-size: 26px;
  color: var(--accent);
  margin-bottom: 6px;
  display: block;
}
.feature-card h4 {
  color: #fff;
  font-size: 14px;
  margin-bottom: 2px;
}
.feature-card p {
  font-size: 12px;
  opacity: 0.7;
  margin: 0;
}

.product-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

/* Product Page Specific */
.product-showcase.detailed {
  margin-top: 10px;
}
.premium-section {
  padding: 60px 0;
}
.premium-grid {
  display: grid;
  grid-template-columns: repeat(
    auto-fit,
    minmax(190px, 1fr)
  );
  gap: 24px;
  margin-top: 24px;
}
.premium-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 24px 18px;
  text-align: center;
  transition: 0.3s;
}
.premium-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-hover);
}
.premium-card i {
  font-size: 36px;
  color: var(--accent);
  margin-bottom: 10px;
}
.premium-card h4 {
  color: #fff;
  margin-bottom: 4px;
}
.premium-card p {
  opacity: 0.7;
  font-size: 14px;
  margin: 0;
}

.product-roadmap.detailed {
  padding: 60px 0;
}
.roadmap-steps.detailed {
  max-width: 800px;
}

.coming-soon {
  padding: 60px 0;
}
.coming-grid {
  display: grid;
  grid-template-columns: repeat(
    auto-fit,
    minmax(200px, 1fr)
  );
  gap: 28px;
  margin-top: 24px;
}
.coming-item {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 28px 18px;
  text-align: center;
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}
.coming-item:hover {
  transform: translateY(-6px);
  border-color: var(--border-hover);
}
.coming-item i {
  font-size: 36px;
  color: var(--accent);
  margin-bottom: 10px;
}
.coming-item h4 {
  color: #fff;
  margin-bottom: 4px;
}
.coming-item p {
  opacity: 0.7;
  margin: 0 0 10px;
}
.coming-badge {
  display: inline-block;
  padding: 4px 16px;
  background: rgba(0, 212, 255, 0.1);
  color: var(--accent);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid rgba(0, 212, 255, 0.12);
  animation: pulseBadge 2s ease-in-out infinite;
}
@keyframes pulseBadge {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
}

/* ============================================================
   18. WHY CHOOSE US (Premium)
   ============================================================ */
.why-us-premium {
  padding: 80px 8% 60px;
}
.why-grid-premium {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 30px;
}
.why-card-premium {
  position: relative;
  background: var(--glass);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 28px 18px 24px;
  text-align: center;
  transition: all var(--transition);
  overflow: hidden;
}
.why-card-premium:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-hover);
  background: var(--glass-hover);
}
.why-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(0, 212, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: var(--accent);
  margin: 0 auto 14px;
  transition: 0.3s;
}
.why-card-premium:hover .why-icon {
  background: rgba(0, 212, 255, 0.18);
  transform: rotate(3deg) scale(1.06);
}
.why-card-premium h4 {
  font-size: 19px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.why-card-premium p {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.8;
  margin: 0;
  max-width: 200px;
  margin-left: auto;
  margin-right: auto;
}
.card-shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255, 255, 255, 0.04) 50%,
    transparent 60%
  );
  background-size: 300% 100%;
  background-position: 100% 0;
  pointer-events: none;
  opacity: 0;
}
.why-card-premium:hover .card-shimmer {
  opacity: 1;
  animation: shimmer 1s ease-in-out forwards;
}
@keyframes shimmer {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: -100% 0;
  }
}

/* ============================================================
   19. FEATURED PROJECTS
   ============================================================ */
.featured-projects {
  padding: 80px 8% 60px;
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 30px;
}
.project-card {
  background: var(--glass);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.project-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--border-hover);
  background: var(--glass-hover);
}
.project-image {
  position: relative;
  height: 160px;
  background: linear-gradient(
    135deg,
    rgba(0, 212, 255, 0.08),
    rgba(11, 116, 255, 0.04)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.project-image img {
  width: 56px;
  height: 56px;
  opacity: 0.8;
}
.project-status {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.project-status.live {
  background: rgba(0, 212, 255, 0.15);
  color: #00d4ff;
  border-color: rgba(0, 212, 255, 0.2);
}
.project-status.beta {
  background: rgba(251, 191, 36, 0.15);
  color: #fbbf24;
  border-color: rgba(251, 191, 36, 0.2);
}
.project-status.dev {
  background: rgba(251, 146, 60, 0.15);
  color: #fb923c;
  border-color: rgba(251, 146, 60, 0.2);
}
.project-content {
  padding: 22px 20px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.project-content h3 {
  font-size: 20px;
  color: #fff;
  margin-bottom: 6px;
  font-weight: 700;
}
.project-content p {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.8;
  margin-bottom: 14px;
  flex: 1;
}
.project-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}
.project-tech span {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50px;
  padding: 3px 12px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  transition: 0.3s;
}
.project-tech span:hover {
  background: rgba(0, 212, 255, 0.1);
  border-color: var(--accent);
  color: #fff;
}
.project-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}
.project-btn:hover {
  gap: 12px;
  color: #fff;
}

/* ============================================================
   20. TECHNOLOGY STACK
   ============================================================ */
.tech-stack.premium {
  padding: 80px 8% 60px;
}
.tech-grid.premium {
  display: grid;
  grid-template-columns: repeat(
    auto-fill,
    minmax(170px, 1fr)
  );
  gap: 22px;
  margin-top: 30px;
}
.tech-card {
  background: var(--glass);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 24px 16px 20px;
  text-align: center;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.tech-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 0%,
    rgba(0, 212, 255, 0.06),
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.tech-card:hover::before {
  opacity: 1;
}
.tech-card:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-hover);
  background: var(--glass-hover);
}
.tech-card .tech-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(0, 212, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--accent);
  margin-bottom: 12px;
  transition: 0.3s;
}
.tech-card:hover .tech-icon {
  background: rgba(0, 212, 255, 0.18);
  transform: rotate(3deg) scale(1.05);
}
.tech-card h4 {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.tech-card p {
  font-size: 13px;
  line-height: 1.4;
  opacity: 0.6;
  margin: 0;
  max-width: 140px;
}

/* ============================================================
   21. DEVELOPMENT PROCESS (Timeline)
   ============================================================ */
.process-timeline {
  padding: 80px 8% 60px;
}
.timeline {
  position: relative;
  max-width: 900px;
  margin: 40px auto 0;
  padding: 0 20px;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(
    to bottom,
    rgba(0, 212, 255, 0.2),
    rgba(0, 212, 255, 0.04)
  );
  transform: translateX(-50%);
}
.timeline-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 40px;
  position: relative;
  width: 100%;
}
.timeline-item:nth-child(odd) {
  flex-direction: row;
  padding-right: calc(50% + 36px);
  text-align: right;
}
.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
  padding-left: calc(50% + 36px);
  text-align: left;
}
.timeline-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0, 212, 255, 0.1);
  border: 2px solid rgba(0, 212, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--accent);
  z-index: 2;
  backdrop-filter: blur(8px);
  transition: 0.3s;
}
.timeline-item:hover .timeline-dot {
  background: rgba(0, 212, 255, 0.2);
  border-color: var(--accent);
  transform: translateX(-50%) scale(1.12);
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.2);
}
.timeline-card {
  background: var(--glass);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 22px 26px;
  width: 100%;
  transition: all var(--transition);
}
.timeline-item:nth-child(odd) .timeline-card {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
.timeline-item:nth-child(even) .timeline-card {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}
.timeline-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
  background: var(--glass-hover);
  box-shadow: var(--shadow-hover);
}
.timeline-card .step-number {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  background: rgba(0, 212, 255, 0.08);
  padding: 2px 14px;
  border-radius: 50px;
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}
.timeline-card h4 {
  font-size: 20px;
  color: #fff;
  margin-bottom: 4px;
  font-weight: 700;
}
.timeline-card p {
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.8;
  margin: 0;
}

/* ============================================================
   22. CLIENT LOGOS
   ============================================================ */
.client-logos {
  padding: 80px 8% 60px;
}
.logos-grid {
  display: grid;
  grid-template-columns: repeat(
    auto-fit,
    minmax(130px, 1fr)
  );
  gap: 26px;
  margin-top: 30px;
  align-items: center;
  justify-items: center;
}
.logo-item {
  background: var(--glass);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 22px 16px;
  text-align: center;
  transition: all var(--transition);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.logo-item:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
  background: var(--glass-hover);
  box-shadow: var(--shadow-hover);
}
.logo-item i {
  font-size: 36px;
  color: rgba(255, 255, 255, 0.4);
  transition: 0.3s;
}
.logo-item:hover i {
  color: var(--accent);
  transform: scale(1.06);
}
.logo-item span {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  transition: 0.3s;
}
.logo-item:hover span {
  color: #fff;
}

/* ============================================================
   23. TEAM
   ============================================================ */
.team-section {
  padding: 80px 8% 60px;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 30px;
}
.team-card {
  background: var(--glass);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px 24px;
  text-align: center;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.team-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-hover);
  background: var(--glass-hover);
}
.team-avatar {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: rgba(0, 212, 255, 0.08);
  border: 2px solid rgba(0, 212, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  overflow: hidden;
}
.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 2px;
}
.team-card .team-position {
  font-size: 13px;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 10px;
  display: block;
}
.team-card p {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.8;
  margin: 0 0 14px;
  flex: 1;
}
.team-social {
  display: flex;
  gap: 10px;
}
.team-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 15px;
  transition: 0.3s;
  text-decoration: none;
}
.team-social a:hover {
  background: rgba(0, 212, 255, 0.1);
  color: var(--accent);
  border-color: var(--accent);
  transform: translateY(-3px);
}

/* ============================================================
   24. TESTIMONIALS
   ============================================================ */
.testimonials-premium {
  padding: 80px 8% 60px;
}
.testimonial-slider-container {
  max-width: 800px;
  margin: 30px auto 0;
  position: relative;
  overflow: hidden;
}
.testimonial-slider {
  display: flex;
  transition: transform 0.6s
    cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.testimonial-slide {
  flex: 0 0 100%;
  padding: 0 20px;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.5s ease,
    visibility 0.5s ease;
}
.testimonial-slide.active {
  opacity: 1;
  visibility: visible;
}
.testimonial-card {
  background: var(--glass);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: 0.4s;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-hover);
}
.testimonial-header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
}
.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(0, 212, 255, 0.1);
  border: 2px solid rgba(0, 212, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--accent);
  flex-shrink: 0;
}
.testimonial-info h4 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 1px;
}
.testimonial-info span {
  font-size: 13px;
  opacity: 0.7;
  display: block;
}
.testimonial-rating {
  display: flex;
  gap: 3px;
  margin-top: 4px;
  color: #fbbf24;
  font-size: 14px;
}
.testimonial-card p {
  font-size: 17px;
  line-height: 1.7;
  opacity: 0.9;
  margin: 0;
  font-style: italic;
}
.testimonial-controls {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}
.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.15);
  background: transparent;
  cursor: pointer;
  transition: 0.3s;
  padding: 0;
}
.testimonial-dot.active {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.3);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.25);
}
.testimonial-dot:hover {
  border-color: var(--accent);
  background: rgba(0, 212, 255, 0.15);
}

/* ============================================================
   25. FAQ
   ============================================================ */
.faq-section {
  padding: 80px 8% 60px;
}
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  background: var(--glass);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq-item:hover {
  border-color: rgba(0, 212, 255, 0.15);
}
.faq-question {
  padding: 18px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  font-weight: 500;
  font-size: 17px;
  transition: 0.3s;
  user-select: none;
}
.faq-question:hover {
  background: rgba(255, 255, 255, 0.03);
}
.faq-question i {
  transition: transform 0.4s ease;
  color: var(--accent);
  font-size: 16px;
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item.active .faq-question i {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s
    cubic-bezier(0.25, 0.46, 0.45, 0.94);
  padding: 0 24px;
}
.faq-item.active .faq-answer {
  max-height: 300px;
}
.faq-answer p {
  padding: 0 0 18px 0;
  opacity: 0.85;
  line-height: 1.7;
  margin: 0;
}

/* ============================================================
   26. NEWSLETTER
   ============================================================ */
.newsletter {
  padding: 80px 8% 60px;
  text-align: center;
}
.newsletter form {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  max-width: 520px;
  margin: 28px auto 0;
}
.newsletter input {
  flex: 1;
  min-width: 200px;
  padding: 16px 24px;
  border-radius: 50px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font-size: 16px;
  outline: none;
  transition: 0.3s;
}
.newsletter input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(0, 212, 255, 0.06);
}
.newsletter input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.newsletter button {
  padding: 16px 40px;
  border-radius: 50px;
  background: var(--accent);
  color: #001a33;
  border: none;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}
.newsletter button:hover {
  transform: scale(1.04);
  box-shadow: 0 12px 30px rgba(0, 212, 255, 0.3);
}

/* ============================================================
   27. CTA
   ============================================================ */
.cta {
  padding: 80px 8%;
  text-align: center;
  background: linear-gradient(
    135deg,
    #0b2142,
    #10386f
  );
  border-radius: var(--radius);
  margin: 0 8% 60px;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(0, 212, 255, 0.04);
  border-radius: 50%;
  top: -200px;
  right: -150px;
}
.cta h2 {
  font-size: 44px;
  color: #fff;
  margin-bottom: 20px;
  position: relative;
}
.cta p {
  max-width: 700px;
  margin: 0 auto 30px;
  font-size: 18px;
  line-height: 1.7;
  opacity: 0.85;
  position: relative;
}

/* ============================================================
   28. FOOTER (Premium)
   ============================================================ */
.premium-footer {
  margin-top: 20px;
  background: linear-gradient(
    135deg,
    #04101f,
    #0a1f3a
  );
  border-top: 1px solid var(--border);
  padding: 60px 8% 0;
  position: relative;
  overflow: hidden;
}
.premium-footer::before {
  content: "";
  position: absolute;
  top: -150px;
  right: -150px;
  width: 300px;
  height: 300px;
  background: rgba(0, 212, 255, 0.03);
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1.2fr;
  gap: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid
    rgba(255, 255, 255, 0.05);
}
.footer-brand h2 {
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 2px;
}
.footer-brand h2 span {
  color: var(--accent);
}
.footer-brand .tagline {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 6px;
}
.footer-brand .description {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
  max-width: 280px;
  margin-bottom: 16px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 15px;
  transition: 0.3s;
  text-decoration: none;
}
.footer-social a:hover {
  background: rgba(0, 212, 255, 0.1);
  color: var(--accent);
  border-color: var(--accent);
  transform: translateY(-3px);
}

.footer-column h3 {
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 16px;
  position: relative;
}
.footer-column h3::after {
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  background: var(--accent);
  margin-top: 6px;
  border-radius: 2px;
}
.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-column ul li {
  margin-bottom: 8px;
}
.footer-column ul li a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
  display: inline-block;
}
.footer-column ul li a:hover {
  color: var(--accent);
  transform: translateX(4px);
}
.footer-back-top {
  margin-top: 14px;
}
.back-top-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.3);
  text-decoration: none;
  font-size: 13px;
  transition: 0.3s;
}
.back-top-link:hover {
  color: var(--accent);
  transform: translateY(-2px);
}
.newsletter-col p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  margin-bottom: 10px;
}
.footer-newsletter {
  display: flex;
  gap: 6px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 3px 3px 3px 16px;
  transition: 0.3s;
}
.footer-newsletter:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.04);
}
.footer-newsletter input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-size: 14px;
  padding: 10px 0;
  min-width: 80px;
}
.footer-newsletter input::placeholder {
  color: rgba(255, 255, 255, 0.25);
}
.footer-newsletter button {
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: var(--accent);
  color: #001a33;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-newsletter button:hover {
  transform: scale(1.06);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.25);
}
.newsletter-note {
  font-size: 12px !important;
  opacity: 0.3;
  margin-top: 6px;
}
.footer-bottom {
  padding: 20px 0 30px;
}
.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
}
.footer-legal {
  display: flex;
  gap: 18px;
}
.footer-legal a {
  color: rgba(255, 255, 255, 0.3);
  text-decoration: none;
  transition: 0.3s;
}
.footer-legal a:hover {
  color: var(--accent);
}

/* ============================================================
   29. CONTACT PAGE
   ============================================================ */
.contact-page {
  padding: 140px 8% 80px;
}
.contact-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 36px;
  margin-top: 30px;
}
.contact-card,
.info-card,
.map-placeholder {
  background: var(--glass);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: 0.3s;
}
.contact-card h3,
.info-card h3 {
  color: #fff;
  font-size: 26px;
  margin-bottom: 22px;
}
.form-group {
  margin-bottom: 18px;
  position: relative;
}
.form-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 5px;
  font-size: 13px;
}
.form-group label i {
  color: var(--accent);
  width: 16px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: #fff;
  font-size: 15px;
  font-family: inherit;
  transition: 0.3s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 4px rgba(0, 212, 255, 0.04);
}
.form-group textarea {
  resize: vertical;
  min-height: 100px;
}
.error-message {
  display: none;
  color: #ff6b6b;
  font-size: 12px;
  margin-top: 3px;
}
.form-group.error .error-message {
  display: block;
}
.form-group.error input,
.form-group.error textarea {
  border-color: #ff6b6b;
}
.contact-card .primary-btn {
  width: 100%;
  justify-content: center;
  font-size: 17px;
  padding: 16px;
}
.success-message {
  display: none;
  text-align: center;
  padding: 28px 18px;
  background: rgba(0, 212, 255, 0.08);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(0, 212, 255, 0.12);
  margin-top: 18px;
  animation: successPop 0.6s
    cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.success-message.show {
  display: block;
}
.success-message i {
  font-size: 44px;
  color: var(--accent);
  margin-bottom: 10px;
}
.success-message h4 {
  color: #fff;
  font-size: 22px;
  margin-bottom: 4px;
}
.success-message p {
  opacity: 0.8;
  font-size: 15px;
}
@keyframes successPop {
  0% {
    opacity: 0;
    transform: scale(0.85);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.info-item i {
  font-size: 20px;
  color: var(--accent);
  width: 22px;
  margin-top: 2px;
}
.info-item h4 {
  color: #fff;
  font-size: 15px;
  margin-bottom: 1px;
}
.info-item p,
.info-item a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 14px;
  line-height: 1.5;
  transition: 0.3s;
}
.info-item a:hover {
  color: var(--accent);
}
.info-social {
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.info-social h4 {
  color: #fff;
  margin-bottom: 10px;
  font-size: 15px;
}
.social-links {
  display: flex;
  gap: 12px;
}
.social-links a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 16px;
  transition: 0.3s;
  text-decoration: none;
}
.social-links a:hover {
  background: rgba(0, 212, 255, 0.1);
  color: var(--accent);
  border-color: var(--accent);
  transform: translateY(-3px);
}
.info-faq-link {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}
.info-faq-link i {
  color: var(--accent);
  font-size: 18px;
}
.info-faq-link a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}
.info-faq-link a:hover {
  color: var(--accent);
}
.map-placeholder {
  margin-top: 18px;
  text-align: center;
  padding: 28px;
}
.map-placeholder i {
  font-size: 44px;
  color: var(--accent);
  opacity: 0.3;
  margin-bottom: 8px;
}
.map-placeholder p {
  color: #fff;
  font-size: 17px;
  font-weight: 600;
}
.map-placeholder span {
  font-size: 13px;
  opacity: 0.4;
}

/* ============================================================
   30. LEGAL PAGES (Privacy, Terms)
   ============================================================ */
.page-section {
  padding: 140px 8% 80px;
}
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  background: var(--glass);
  padding: 40px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.legal-content p {
  line-height: 1.7;
  opacity: 0.85;
  margin-bottom: 14px;
}
.legal-content h3 {
  color: #fff;
  font-size: 22px;
  margin: 28px 0 10px;
}

/* ============================================================
   31. 404 PAGE
   ============================================================ */
.error-section {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 8%;
}
.error-section h1 {
  font-size: 120px;
  font-weight: 900;
  color: var(--accent);
  margin: 0;
  line-height: 1;
}
.error-section h2 {
  font-size: 34px;
  color: #fff;
  margin: 16px 0 12px;
}
.error-section p {
  max-width: 450px;
  margin-bottom: 30px;
  opacity: 0.8;
  font-size: 17px;
}

/* ============================================================
   32. FLOATING ELEMENTS
   ============================================================ */
/* Cursor */
.cursor {
  position: fixed;
  width: 24px;
  height: 24px;
  background: var(--accent);
  border-radius: 50%;
  pointer-events: none;
  filter: blur(10px);
  z-index: 9999;
  opacity: 0.4;
  will-change: transform;
}

/* Scroll Progress Bar */
#progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--accent);
  width: 0%;
  z-index: 99999;
  transition: width 0.08s ease;
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

/* Scroll to Top */
#topBtn {
  position: fixed;
  right: 28px;
  bottom: 28px;
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  background: var(--accent);
  color: #001a33;
  font-size: 18px;
  cursor: pointer;
  display: none;
  z-index: 999;
  box-shadow: 0 10px 25px rgba(0, 212, 255, 0.3);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
#topBtn:hover {
  transform: translateY(-4px) scale(1.06);
  box-shadow: 0 16px 40px rgba(0, 212, 255, 0.4);
}

/* WhatsApp Button */
.whatsapp-btn {
  position: fixed;
  right: 24px;
  bottom: 90px;
  width: 56px;
  height: 56px;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 28px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  z-index: 999;
  transition: 0.3s;
  animation: whatsappFloat 2.5s ease-in-out
    infinite;
}
.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
}
@keyframes whatsappFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

/* ============================================================
   33. RIPPLE EFFECT (JS)
   ============================================================ */
.ripple-effect {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: scale(0);
  animation: rippleAnim 0.6s ease-out forwards;
  pointer-events: none;
}
@keyframes rippleAnim {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* ============================================================
   34. SCROLL REVEAL (data-reveal)
   ============================================================ */
.reveal {
  opacity: 0;
  transition: all 0.8s
    cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal.visible {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}
.reveal[data-reveal="fade"] {
  transform: none;
}
.reveal[data-reveal="slide-up"] {
  transform: translateY(50px);
}
.reveal[data-reveal="slide-down"] {
  transform: translateY(-50px);
}
.reveal[data-reveal="slide-left"] {
  transform: translateX(50px);
}
.reveal[data-reveal="slide-right"] {
  transform: translateX(-50px);
}
.reveal[data-reveal="zoom"] {
  transform: scale(0.85);
}
.reveal.visible[data-reveal="slide-up"],
.reveal.visible[data-reveal="slide-down"],
.reveal.visible[data-reveal="slide-left"],
.reveal.visible[data-reveal="slide-right"] {
  transform: translate(0, 0);
}
.reveal.visible[data-reveal="zoom"] {
  transform: scale(1);
}

/* ============================================================
   35. PAGE TRANSITION
   ============================================================ */
@keyframes pageFadeIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================================
   36. RESPONSIVE DESIGN
   ============================================================ */

/* Large Desktops */
@media (max-width: 1200px) {
  .hero-text h1 {
    font-size: 56px;
  }
}

/* Desktops */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .hero-text p {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-actions {
    justify-content: center;
  }
  .trust-badges {
    justify-content: center;
  }
  .trusted-tech {
    justify-content: center;
  }
  .hero-text h1 {
    font-size: 48px;
  }
  .laptop-mockup {
    max-width: 400px;
  }
  .hero-card.second {
    max-width: 400px;
  }

  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
  .premium-service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .product-showcase {
    grid-template-columns: 1fr;
  }
  .why-grid-premium {
    grid-template-columns: repeat(2, 1fr);
  }
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
  .footer-column.newsletter-col {
    grid-column: span 2;
  }
  .about-hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .about-hero-stats {
    justify-content: center;
  }
  .why-started-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
  .timeline-item:nth-child(odd) {
    padding-right: calc(50% + 30px);
  }
  .timeline-item:nth-child(even) {
    padding-left: calc(50% + 30px);
  }
}

/* Tablets */
@media (max-width: 768px) {
  .section-title h2 {
    font-size: 34px;
  }
  .section-title p {
    font-size: 16px;
  }

  .hero-premium {
    padding-top: 120px;
    min-height: auto;
  }
  .hero-text h1 {
    font-size: 38px;
  }
  .hero-text p {
    font-size: 17px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  .hero-actions a {
    width: 100%;
    justify-content: center;
  }
  .trust-badges {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }
  .floating-icons {
    display: none;
  }
  .laptop-mockup {
    max-width: 320px;
  }
  .hero-card.second {
    flex-direction: column;
    text-align: center;
  }

  .stats {
    grid-template-columns: 1fr 1fr;
    padding: 40px 8% 60px;
  }
  .stat h2 {
    font-size: 36px;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }
  .premium-service-grid {
    grid-template-columns: 1fr;
  }
  .product-feature-grid {
    grid-template-columns: 1fr 1fr;
  }
  .why-grid-premium {
    grid-template-columns: 1fr 1fr;
  }
  .projects-grid {
    grid-template-columns: 1fr;
  }
  .tech-grid.premium {
    grid-template-columns: repeat(3, 1fr);
  }
  .team-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-main {
    grid-template-columns: 1fr;
  }
  .footer-column.newsletter-col {
    grid-column: span 1;
  }

  .contact-page {
    padding-top: 120px;
  }
  .contact-card,
  .info-card,
  .map-placeholder {
    padding: 24px 18px;
  }
  .about-hero-text h1 {
    font-size: 34px;
  }
  .about-hero-stats {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .founder-content {
    flex-direction: column;
    text-align: center;
    padding: 28px 20px;
  }

  .timeline::before {
    left: 18px;
  }
  .timeline-item {
    padding-left: 52px !important;
    padding-right: 0 !important;
    text-align: left !important;
    flex-direction: row !important;
  }
  .timeline-dot {
    left: 18px;
    width: 36px;
    height: 36px;
    font-size: 15px;
  }
  .timeline-card {
    border-radius: var(--radius-sm) !important;
    padding: 16px 18px;
  }
  .timeline-card h4 {
    font-size: 18px;
  }
  .timeline-card p {
    font-size: 14px;
  }

  .cta {
    margin: 0 4% 40px;
    padding: 50px 6%;
  }
  .cta h2 {
    font-size: 32px;
  }

  .error-section h1 {
    font-size: 80px;
  }

  .testimonial-header {
    flex-direction: column;
    text-align: center;
  }
  .testimonial-card p {
    text-align: center;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .section-title h2 {
    font-size: 28px;
  }
  .hero-text h1 {
    font-size: 30px;
  }
  .hero-text p {
    font-size: 15px;
  }
  .hero-badge {
    font-size: 12px;
    padding: 4px 14px;
  }
  .primary-btn,
  .secondary-btn {
    padding: 14px 24px;
    font-size: 15px;
  }
  .laptop-mockup {
    max-width: 260px;
    padding: 12px 12px 0;
  }
  .phone-mockup {
    max-width: 200px;
    padding: 10px 6px 6px;
    border-radius: 28px;
  }
  .phone-screen {
    border-radius: 18px;
  }
  .phone-status-bar {
    font-size: 10px;
    padding: 4px 10px;
  }
  .phone-content {
    padding: 4px 8px 8px;
  }
  .phone-header i {
    font-size: 18px;
  }
  .phone-header h4 {
    font-size: 13px;
  }
  .chat-bubble {
    font-size: 10px;
    padding: 4px 8px;
  }
  .phone-bottom i {
    font-size: 14px;
  }
  .phone-shadow {
    width: 60px;
    height: 4px;
  }

  .stats {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 30px 4% 40px;
  }
  .stat {
    padding: 18px 12px;
  }
  .stat h2 {
    font-size: 30px;
  }
  .stat p {
    font-size: 13px;
  }

  .premium-service-card {
    padding: 22px 16px;
  }
  .premium-service-card .card-icon {
    width: 56px;
    height: 56px;
    font-size: 22px;
  }
  .premium-service-card h3 {
    font-size: 19px;
  }

  .product-feature-grid {
    grid-template-columns: 1fr;
  }
  .product-details h3 {
    font-size: 26px;
  }
  .why-grid-premium {
    grid-template-columns: 1fr;
  }
  .tech-grid.premium {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .tech-card {
    padding: 16px 12px;
  }
  .tech-card .tech-icon {
    width: 44px;
    height: 44px;
    font-size: 22px;
  }
  .tech-card h4 {
    font-size: 14px;
  }
  .tech-card p {
    font-size: 11px;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }
  .team-avatar {
    width: 64px;
    height: 64px;
  }

  .logos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .logo-item {
    padding: 16px 12px;
  }
  .logo-item i {
    font-size: 28px;
  }

  .faq-question {
    font-size: 15px;
    padding: 14px 16px;
  }
  .faq-answer {
    padding: 0 16px;
  }
  .faq-answer p {
    font-size: 14px;
  }

  .newsletter form {
    flex-direction: column;
    align-items: stretch;
  }
  .newsletter input {
    min-width: auto;
  }

  .footer-newsletter {
    padding: 2px 2px 2px 12px;
  }
  .footer-newsletter button {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }

  .contact-card .primary-btn {
    font-size: 15px;
    padding: 14px;
  }
  .info-item {
    gap: 10px;
  }

  .error-section h1 {
    font-size: 64px;
  }
  .error-section h2 {
    font-size: 26px;
  }

  #topBtn {
    width: 44px;
    height: 44px;
    font-size: 16px;
    right: 16px;
    bottom: 16px;
  }
  .whatsapp-btn {
    width: 48px;
    height: 48px;
    font-size: 24px;
    right: 16px;
    bottom: 72px;
  }

  .premium-footer {
    padding: 40px 4% 0;
  }
  .footer-brand h2 {
    font-size: 22px;
  }
  .footer-brand .description {
    max-width: 100%;
  }
}

/* ============================================================
   37. UTILITY CLASSES
   ============================================================ */
.mt-10 {
  margin-top: 10px;
}
.mt-20 {
  margin-top: 20px;
}
.mt-30 {
  margin-top: 30px;
}
.mt-40 {
  margin-top: 40px;
}
.mb-20 {
  margin-bottom: 20px;
}
.mb-30 {
  margin-bottom: 30px;
}
.text-center {
  text-align: center;
}
.text-accent {
  color: var(--accent);
}
.glass-card {
  background: var(--glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.tilt-card {
  transition: transform 0.15s ease;
  will-change: transform;
  transform-style: preserve-3d;
  perspective: 800px;
}
.glow-container {
  position: relative;
  overflow: hidden;
}
.glow-container::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at var(--mouse-x, 50%)
      var(--mouse-y, 50%),
    rgba(0, 212, 255, 0.06) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
  z-index: 1;
}
.glow-container:hover::before {
  opacity: 1;
}
/* ============================================================
   PRICING & PAYMENT (Added for Services)
   ============================================================ */

.service-pricing {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 12px 0 16px;
  flex-wrap: wrap;
}
.service-pricing .price {
  font-size: 24px;
  font-weight: 800;
  color: var(--accent);
  background: rgba(0, 212, 255, 0.08);
  padding: 4px 16px;
  border-radius: 8px;
  border: 1px solid rgba(0, 212, 255, 0.1);
}
.service-pricing .delivery {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.04);
  padding: 4px 14px;
  border-radius: 50px;
}

.service-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 6px;
}
.service-actions .service-link {
  font-size: 14px;
}
.pay-btn {
  padding: 8px 18px;
  background: var(--accent);
  color: #001a33;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: 0.3s;
}
.pay-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
}

@media (max-width: 768px) {
  .service-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .service-actions .pay-btn {
    width: 100%;
  }
}
/* ============================================================
   PRICING & PAYMENT (Updated)
   ============================================================ */

.service-pricing {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 12px 0 16px;
  flex-wrap: wrap;
}
.service-pricing .price {
  font-size: 24px;
  font-weight: 800;
  color: var(--accent);
  background: rgba(0, 212, 255, 0.08);
  padding: 4px 16px;
  border-radius: 8px;
  border: 1px solid rgba(0, 212, 255, 0.1);
  line-height: 1.4;
}
.service-pricing .price .price-suffix {
  font-size: 14px;
  font-weight: 500;
  opacity: 0.6;
}
.service-pricing .delivery {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.04);
  padding: 4px 14px;
  border-radius: 50px;
}

.service-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 6px;
}
.service-actions .service-link {
  font-size: 14px;
}
.pay-btn {
  padding: 8px 18px;
  background: var(--accent);
  color: #001a33;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: 0.3s;
}
.pay-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
}

@media (max-width: 768px) {
  .service-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .service-actions .pay-btn {
    width: 100%;
  }
}
