/* 
  Design System for Modern SaaS Website
  Inspired by Formix Template
*/

@font-face {
    font-family: 'Vogun Medium';
    font-style: normal;
    font-weight: normal;
    src: local('Vogun Medium'), url('Vogun-Medium.woff') format('woff');
}

:root {
  /* Colors */
  --bg-primary: #E5E5E5;
  --bg-secondary: #F2F2F2;
  --text-primary: #000000;
  --text-secondary: #4F4F4F;
  --accent: #FF0000;
  --accent-muted: rgba(255, 0, 0, 0.1);
  --border: #E5E5E5;
  --border-dashed: rgba(0, 0, 0, 0.1);
  
  /* Typography */
  --font-display: 'Vogun Medium', sans-serif;
  --font-heading: 'Vogun Medium', sans-serif;
  --font-body: 'SF Pro Display', 'Inter', sans-serif;
  
  /* Spacing */
  --section-padding: 160px 0;
  --container-max-width: 1400px;
  
  /* Animation */
  --transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

/* -- GRID LINES ---------------------------------------- */
.grid-lines {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: var(--container-max-width);
  height: 100%;
  pointer-events: none;
  z-index: 10000;
  border-left: 1px dashed rgba(120, 120, 120, 0.15);
  border-right: 1px dashed rgba(120, 120, 120, 0.15);
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.5;
  overflow-x: hidden;
}

h1 {
  font-family: var(--font-display);
  line-height: 1.1;
  text-transform: none;
}

h2, h4, h5 {
  font-family: var(--font-heading);
}

h3 {
  font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
}

h2, h3, h4, h5 {
  line-height: 1.1;
  text-transform: none;
}

p {
  font-family: var(--font-display);
}

h2, h3, h4, h5 {
  font-weight: 700;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 40px;
}

/* Typography Utilities */
.text-accent { color: var(--accent); }
.text-uppercase { text-transform: uppercase; letter-spacing: 0.1em; font-size: 14px; font-weight: 600; }
.text-center { text-align: center; }

/* Section Styles */
section {
  padding: var(--section-padding);
  position: relative;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.section-tag::before {
  content: "";
  width: 6px;
  height: 6px;
  background-color: var(--accent);
  border-radius: 50%;
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: 100px;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  font-size: 16px;
}

.btn-primary {
  background-color: var(--text-primary);
  color: var(--bg-primary);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.btn-outline {
  background-color: transparent;
  border: 1px solid var(--border);
  color: var(--text-primary);
}

.btn-outline:hover {
  background-color: var(--text-primary);
  color: var(--bg-primary);
}

/* Card Styles */
.card {
  background: var(--bg-secondary);
  border-radius: 32px;
  padding: 40px;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.card:hover {
  border-color: #ef4444;
  transform: translateY(-5px);
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
  background-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 24px;
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
}

.nav-links a:hover {
  color: var(--text-primary);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 14px;
}

/* Hero Section */
.hero {
  padding-top: 45px;
  padding-bottom: 60px;
  text-align: left;
  overflow: visible;
  border-bottom: 1px dashed var(--border-dashed);
}

.hero-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  max-width: 100vw;
  padding: 0 0 0 max(40px, calc((100vw - var(--container-max-width)) / 2 + 40px));
  margin: 0;
  overflow: hidden;
}

.hero-content {
  opacity: 0;
  transform: translateY(30px);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 48px) !important;
  max-width: 100%;
  margin: 0 0 24px;
  letter-spacing: -0.03em;
  font-weight: 800;
  line-height: 1.1;
  color: #121212;
}

.hero h1 span.text-muted {
  color: #A1A1A1;
}

.hero-sub {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-secondary);
  max-width: 480px;
  margin: 0 0 40px;
}

.hero-btns {
  display: flex;
  gap: 12px;
  justify-content: flex-start;
  margin-bottom: 0;
}

.btn-dot {
  width: 32px;
  height: 32px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 12px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-dot::after {
  content: "";
  width: 14px;
  height: 14px;
  background-image: 
    radial-gradient(circle, white 1.5px, transparent 1.5px),
    radial-gradient(circle, white 1.5px, transparent 1.5px);
  background-size: 6px 6px;
  background-position: 0 0, 3px 3px;
  opacity: 0.9;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary-v2:hover .btn-dot, .btn-outline-v2:hover .btn-dot {
  transform: rotate(90deg) scale(1.1);
}

.btn-primary-v2:hover .btn-dot::after, .btn-outline-v2:hover .btn-dot::after {
  transform: scale(1.2);
}

.btn-primary-v2 {
  background: #121212;
  color: #fff;
  padding: 12px 20px 12px 24px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  transition: transform .2s;
}

.btn-primary-v2:hover {
  transform: scale(1.02);
}

.btn-primary-v2:hover .btn-dot, .btn-outline-v2:hover .btn-dot {
  transform: translateX(4px);
}

.btn-outline-v2 {
  background: transparent;
  border: 1.5px solid rgba(0,0,0,0.3);
  color: #121212;
  padding: 12px 20px 12px 24px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s, border-color 0.3s;
}

.btn-primary-v2:hover, .btn-outline-v2:hover {
  transform: scale(1.04) translateY(-2px);
  background: rgba(0,0,0,0.05);
}
.btn-primary-v2:hover {
  background: #000;
}

.hero-gallery:hover .hero-col-inner {
  animation-play-state: paused;
}

/* Hero Images Grid / Marquee */
.hero-gallery {
  display: flex;
  gap: 16px;
  height: 85vh;
  min-height: 600px;
  overflow: hidden;
  position: relative;
  width: 100%;
  margin-right: 0;
  /* Mask top and bottom for smooth fade */
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 4%, black 96%, transparent);
  mask-image: linear-gradient(to bottom, transparent, black 4%, black 96%, transparent);
  opacity: 0;
  transform: translateY(30px);
  will-change: opacity, transform;
}

.hero-gallery::before, .hero-gallery::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 20%;
  min-height: 100px;
  z-index: 10;
  pointer-events: none;
}

.hero-gallery::before {
  top: 0;
  background: linear-gradient(to bottom, rgba(229, 229, 229, 0.6), transparent);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  -webkit-mask-image: linear-gradient(to bottom, black, transparent);
  mask-image: linear-gradient(to bottom, black, transparent);
}

.hero-gallery::after {
  bottom: 0;
  background: linear-gradient(to top, rgba(229, 229, 229, 0.6), transparent);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  -webkit-mask-image: linear-gradient(to top, black, transparent);
  mask-image: linear-gradient(to top, black, transparent);
}

.hero-gallery-overlay-side {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100px;
  background: linear-gradient(to right, rgba(229, 229, 229, 0.6), transparent);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  -webkit-mask-image: linear-gradient(to right, black, transparent);
  mask-image: linear-gradient(to right, black, transparent);
  z-index: 11;
  pointer-events: none;
}

.hero-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
}

.hero-col-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-bottom: 16px;
}

/* Infinite Marquee Animations */
@keyframes scroll-up {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

@keyframes scroll-down {
  0% { transform: translateY(-50%); }
  100% { transform: translateY(0); }
}

.hero-col-left .hero-col-inner {
  animation: scroll-up 20s linear infinite;
}

.hero-col-right .hero-col-inner {
  animation: scroll-down 25s linear infinite;
}

.h-grid-item {
  border-radius: 20px;
  overflow: hidden;
  background: transparent;
  box-shadow: none;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  aspect-ratio: 4/5;
  flex-shrink: 0;
  width: 100%;
  border: none;
  padding: 0;
}

.h-grid-item:hover {
  transform: scale(1.02);
}

.hero-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Background Blobs */
.hero-blobs {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.1;
}

.blob-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #3068ff 0%, transparent 70%);
  top: -100px;
  right: -100px;
}

.blob-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #9d30ff 0%, transparent 70%);
  bottom: 0;
  left: 10%;
}

.badge-v2 {
  display: inline-flex;
  align-items: center;
  background: #121212;
  color: #fff;
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
  text-transform: uppercase;
}


/* Mockup */
.hero-mockup {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  background: transparent;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: none;
  border: none;
  transform: translateY(20px);
  opacity: 0;
}

.mockup-header {
  height: 40px;
  background: #1A1A1A;
  display: flex;
  align-items: center;
  padding: 0 20px;
  gap: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.dots {
  display: flex;
  gap: 6px;
}

.dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
}

.url-bar {
  background: rgba(255,255,255,0.05);
  border-radius: 100px;
  flex: 1;
  height: 24px;
  font-size: 10px;
  color: rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 20px;
}

.mockup-content {
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
  position: relative;
}

.mockup-content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Services Section */
.services h2 {
  font-size: 64px;
  max-width: 600px;
  margin-bottom: 64px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card h3 {
  font-size: 24px;
  margin: 24px 0 16px;
}

.service-card p {
  color: var(--text-secondary);
}

.service-icon {
  font-size: 32px;
  color: var(--accent);
}

/* Pricing Section */
.pricing h2 {
  font-size: 64px;
  margin-bottom: 80px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.pricing-card.featured {
  background: var(--text-primary);
  color: var(--bg-primary);
  border-color: var(--text-primary);
  transform: scale(1.05);
  z-index: 2;
}

.pricing-card.featured .pricing-features li {
  border-color: rgba(255,255,255,0.1);
}

.pricing-card.featured p {
  color: rgba(255,255,255,0.6);
}

/* Pricing Section */
.pricing h2 {
  font-size: 64px;
  margin-bottom: 48px;
}

.pricing-toggle-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 60px;
  font-weight: 600;
  font-size: 14px;
}

/* Toggle Switch */
.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 28px;
}

.switch input { opacity: 0; width: 0; height: 0; }

.slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background-color: #E5E5E5;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .4s;
}

input:checked + .slider { background-color: var(--accent); }
input:checked + .slider:before { transform: translateX(22px); }

.slider.round { border-radius: 34px; }
.slider.round:before { border-radius: 50%; }

.pricing-grid-v2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-card-v2 {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 32px;
  padding: 48px;
  text-align: left;
  display: flex;
  flex-direction: column;
  will-change: opacity, transform;
}

.pricing-card-v2.featured-v2 {
  background: #121212;
  color: #fff;
  border-color: #121212;
}

.featured-tag-v2 {
  background: var(--accent);
  color: #fff;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 800;
  display: inline-block;
  margin-bottom: 20px;
}

.price-v2 {
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 8px;
}

.price-v2 span {
  font-size: 16px;
  color: var(--text-secondary);
  font-weight: 500;
}

.featured-v2 .price-v2 span { color: rgba(255,255,255,0.5); }

.pricing-features-v2 {
  margin: 40px 0;
  flex: 1;
}

.pricing-features-v2 li {
  padding: 12px 0;
  border-top: 1px dashed rgba(0,0,0,0.08);
  font-size: 15px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 12px;
}

.featured-v2 .pricing-features-v2 li { border-top-color: rgba(255,255,255,0.1); }

.pricing-features-v2 li::before {
  content: "✦";
  color: var(--accent);
}

.w-100 { width: 100%; }

/* Responsive section moved to bottom of file */
  
/* -- FOOTER MODERN V4 (DESIGN MATCH) ------------------- */
.footer {
  background: #FF4D4D; /* Precise Hero Red */
  color: #000000;
  padding: 120px 0 0 0;
  position: relative;
  overflow: hidden;
  border: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 100px;
  margin-bottom: 120px;
}

.footer-logo {
  font-family: 'SF Pro Display', sans-serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 40px;
  text-transform: uppercase;
}

.footer-description {
  font-family: 'SF Pro Display', sans-serif;
  font-size: 18px;
  line-height: 1.4;
  max-width: 360px;
  opacity: 0.8;
  font-weight: 500;
}

.footer-column h4 {
  font-family: 'SF Pro Display', sans-serif;
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 40px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-nav a {
  text-decoration: none;
  color: #000000;
  font-size: 15px;
  font-weight: 600;
  opacity: 0.6;
  transition: opacity 0.3s ease;
  letter-spacing: 0.02em;
}

.footer-nav a:hover {
  opacity: 1;
}

.footer-big-text {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(48px, 8vw, 140px);
  color: #FFFFFF;
  text-align: center;
  line-height: 0.9;
  letter-spacing: -0.02em;
  margin-bottom: 40px;
  padding: 0 20px;
  white-space: nowrap;
  font-weight: 400;
}

.footer-bottom-bar {
  background: #000000;
  color: #FFFFFF;
  padding: 35px 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'SF Pro Display', sans-serif;
  font-size: 14px;
  font-weight: 500;
}

.footer-copyright {
  opacity: 0.9;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-legal a {
  color: #FFFFFF;
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.footer-legal a:hover {
  opacity: 1;
}

.footer-legal .separator {
  opacity: 0.2;
}

.opacity-30 { opacity: 0.3; }

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }
  .footer-info {
    grid-column: span 2;
  }
  .footer-big-text {
    font-size: 10vw;
    margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .footer-info {
    grid-column: span 1;
  }
  .footer-bottom-inner {
    flex-direction: column;
    gap: 25px;
    text-align: center;
  }
  .footer-big-text {
    font-size: 12vw;
    white-space: normal;
    line-height: 1;
  }
}

/* Responsive Footer handling is now in the main responsive section */

/* -- CURSOR ------------------------------------------- */
* { cursor: none; }
.cursor-dot {
  position: fixed;
  width: 8px;
  height: 8px;
  background-color: var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease-out;
}

.cursor-ring {
  position: fixed;
  width: 40px;
  height: 40px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, border-color 0.3s;
}

.cursor-img {
  position: fixed;
  width: 240px;
  height: 160px;
  border-radius: 12px;
  overflow: hidden;
  pointer-events: none;
  z-index: 9998;
  opacity: 0;
  display: none;
  transform: translate(-50%, -100%) scale(0.8);
  transition: opacity 0.4s, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}

.cursor-img.show {
  display: block;
  opacity: 1;
  transform: translate(-50%, -110%) scale(1);
}

.cursor-img img, .cursor-img video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.on-link .cursor-ring {
  width: 60px;
  height: 60px;
  background-color: rgba(255, 59, 48, 0.1);
  border-color: transparent;
}

/* Hide custom cursor on mobile / touch devices */
@media (max-width: 1024px) {
  * {
    cursor: auto !important;
  }
  .cursor-dot,
  .cursor-ring,
  .cursor-img {
    display: none !important;
  }
}

@media (hover: none) {
  * {
    cursor: auto !important;
  }
  .cursor-dot,
  .cursor-ring,
  .cursor-img {
    display: none !important;
  }
}

/* -- MENU OVERLAY -------------------------------------- */
.menu-overlay {
  position: fixed; inset: 0;
  background: var(--text-primary);
  z-index: 500;
  display: flex; flex-direction: column;
  padding: 24px 40px 56px;
  transform: translateY(-100%);
  transition: transform .7s cubic-bezier(.76,0,.24,1);
}
.menu-overlay.open { transform: translateY(0); }
.menu-top {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 48px; flex-shrink: 0;
}
.menu-logo-txt { font-family: var(--font-heading); font-size: 22px; font-weight: 800; color: #fff; letter-spacing: -.02em; }
.menu-close {
  background: rgba(255,255,255,.1); color: #fff; border: none;
  width: 48px; height: 48px; border-radius: 50%;
  font-size: 20px; display: flex; align-items: center; justify-content: center;
  cursor: none; transition: background .2s;
}
.menu-close:hover { background: rgba(255,255,255,.2); }
.menu-links { flex: 1; display: flex; flex-direction: column; justify-content: center; }
.menu-link {
  font-family: var(--font-heading);
  font-size: clamp(36px, 6vw, 80px); font-weight: 800;
  color: #fff; text-decoration: none;
  letter-spacing: -.04em; line-height: 1.1;
  display: flex; align-items: baseline; gap: 14px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding: 12px 0;
  opacity: 0; transform: translateY(40px);
  transition: color .2s;
}
.menu-overlay.open .menu-link:nth-child(1) { animation: mIn .6s .15s cubic-bezier(.22,1,.36,1) forwards; }
.menu-overlay.open .menu-link:nth-child(2) { animation: mIn .6s .22s cubic-bezier(.22,1,.36,1) forwards; }
.menu-overlay.open .menu-link:nth-child(3) { animation: mIn .6s .29s cubic-bezier(.22,1,.36,1) forwards; }
.menu-overlay.open .menu-link:nth-child(4) { animation: mIn .6s .36s cubic-bezier(.22,1,.36,1) forwards; }
@keyframes mIn { to { opacity: 1; transform: translateY(0); } }
.menu-link:hover { color: var(--accent); }
.menu-link-num { font-size: 13px; font-weight: 600; color: rgba(255,255,255,.25); letter-spacing: .04em; }
.menu-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px; border-top: 1px solid rgba(255,255,255,.1);
  flex-shrink: 0;
}
.menu-socials { display: flex; gap: 24px; }
.menu-socials a { color: rgba(255,255,255,.4); font-size: 14px; font-weight: 600; text-decoration: none; transition: color .2s; }
.menu-socials a:hover { color: #fff; }
.btn-primary-v2, .btn-outline-v2 {
  padding: 12px 24px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: color 0.4s cubic-bezier(0.22, 1, 0.36, 1), transform 0.3s;
}

.btn-primary-v2 {
  background: #121212;
  color: #fff;
  border: 1px solid #121212;
}

.btn-outline-v2 {
  background: transparent;
  color: #121212;
  border: 1.5px solid rgba(0,0,0,0.3);
}


.hero-btns {
  display: flex;
  gap: 16px;
  margin-top: 40px;
}

.menu-btn {
  background: #121212;
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  cursor: none;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.menu-btn:hover {
  transform: scale(1.05);
}

.menu-icon {
  position: relative;
  width: 14px;
  height: 14px;
}

.menu-icon span {
  position: absolute;
  background: #fff;
  transition: transform 0.3s;
}

.menu-icon span:nth-child(1) {
  width: 14px;
  height: 2px;
  top: 6px;
  left: 0;
}

.menu-icon span:nth-child(2) {
  width: 2px;
  height: 14px;
  top: 0;
  left: 6px;
}

.menu-btn.active .menu-icon span:nth-child(1) { transform: rotate(45deg); }
.menu-btn.active .menu-icon span:nth-child(2) { transform: rotate(45deg); }

/* -- NAV SCROLLED -------------------------------------- */
.nav.scrolled {
  background: rgba(255, 255, 255, 0.8) !important;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
}

/* -- CARD TILT ----------------------------------------- */
.card { transform-style: preserve-3d; will-change: transform; }

/* -- FOOTER BRAND WORDMARK ----------------------------- */
.footer-wordmark {
  font-family: var(--font-heading);
  font-size: clamp(60px, 8vw, 120px);
  font-weight: 900; letter-spacing: -.04em;
  line-height: .9; color: var(--text-primary);
  text-align: center; padding: 32px 0;
  overflow: hidden;
  text-transform: uppercase;
}

/* ── OUR WORK SECTION ────────────────────────────────── */
.work-section { padding: var(--section-padding); }
.work-section h2 { font-size: 56px; font-weight: 800; letter-spacing: -.04em; margin-bottom: 12px; }
.work-intro { font-size: 17px; color: var(--text-secondary); margin-bottom: 48px; }
.work-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.work-item--wide { grid-column: span 2; }
.work-img-wrap { position: relative; border-radius: 20px; overflow: hidden; height: 320px; background: transparent; }
.work-img-wrap img, .work-img-wrap video { width:100%; height:100%; object-fit:cover; display:block; transition: transform .6s cubic-bezier(.22,1,.36,1), opacity .4s; }
.work-item--wide .work-img-wrap { height: 360px; }
.work-img-wrap:hover img, .work-img-wrap:hover video { transform: scale(1.06); opacity: .8; }
.work-overlay { position:absolute; bottom:0; left:0; right:0; padding:24px 28px; background:linear-gradient(to top,rgba(0,0,0,.75) 0%,transparent 100%); transform:translateY(8px); opacity:0; transition:transform .4s cubic-bezier(.22,1,.36,1),opacity .3s; }
.work-img-wrap:hover .work-overlay { transform:translateY(0); opacity:1; }
.work-tag { display:inline-block; background:var(--accent); color:#fff; font-size:10px; font-weight:800; letter-spacing:.08em; text-transform:uppercase; padding:4px 10px; border-radius:100px; margin-bottom:8px; }
.work-overlay h3 { font-size: 24px; font-weight: 700; color: #fff; margin-top: 4px; }

/* ── FAQ SECTION ─────────────────────────────────────── */
.reviews { padding-bottom: 60px; }
.faq-section { padding-top: 60px; padding-bottom: 160px; }
.faq-section h2 { font-size: 56px; font-weight: 800; letter-spacing: -.04em; margin-bottom: 40px; }
.faq-grid { display:flex; flex-direction:column; border-top:1px solid var(--border); }
.faq-item { border-bottom:1px solid var(--border); }
.faq-q { width:100%; display:flex; justify-content:space-between; align-items:center; padding:24px 0; gap:16px; background:transparent; border:none; font-family:var(--font-body); font-size:18px; font-weight:600; color:var(--text-primary); text-align:left; cursor:none; transition:color .2s; }
.faq-q:hover { color:var(--accent); }
.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--text-secondary);
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-item.open .faq-icon {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: rotate(45deg);
}
.faq-a { font-size:16px; color:var(--text-secondary); line-height:1.7; overflow:hidden; max-height:0; padding-bottom:0; transition:max-height .45s cubic-bezier(.22,1,.36,1),padding-bottom .3s; }
.faq-item.open .faq-a { padding-bottom:24px; }

/* Responsive Work & FAQ handling is now in the main responsive section */

/* Reviews Section */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 60px;
}

.review-card {
  background: #F5F5F5;
  padding: 40px;
  border-radius: 32px;
  border: 1px solid rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-card p {
  font-family: 'SF Pro Display', sans-serif;
  font-size: 18px;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 30px;
  color: var(--text-primary);
}

.review-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.review-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.review-author strong {
  display: block;
  font-size: 16px;
}

.review-author span {
  font-size: 14px;
  color: var(--text-secondary);
}

/* CTA Section */
.cta-card {
  background: #121212;
  color: #fff;
  padding: 80px 40px;
  border-radius: 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.cta-card h2 {
  font-size: clamp(40px, 6vw, 80px);
  max-width: 800px;
  margin: 0;
  line-height: 1;
  letter-spacing: -0.04em;
}

.cta-card p {
  font-size: 20px;
  opacity: 0.7;
  max-width: 600px;
}

.cta-btns {
  display: flex;
  gap: 15px;
}
/* Pricing V3 (Integrated Process) */
.pricing-features-v3 li::before {
  content: "+";
  color: var(--accent);
  font-weight: 800;
}

/* Pricing V4 (New Design) */
.pricing-grid-v4 {
  display: grid;
  grid-template-columns: 0.8fr 1fr 1fr 1fr;
  gap: 20px;
  margin-top: 60px;
  align-items: stretch;
}

.process-step-v3 {
  background: #fff;
  padding: 30px;
  border-radius: 24px;
  margin-bottom: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.dot-indicator-v3 {
  display: flex;
  gap: 6px;
  margin-bottom: 15px;
}

.dot-indicator-v3 span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #eee;
  border: 1px solid #ddd;
}

.dot-indicator-v3 span.active {
  background: #ff3b30;
  border-color: #ff3b30;
}

.process-step-v3 h4 {
  font-family: 'SF Pro Display', sans-serif;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 10px;
}

.process-step-v3 p {
  font-family: 'SF Pro Display', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.4;
}

.pricing-card-v4 {
  background: #fff;
  color: #121212;
  padding: 40px;
  border-radius: 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  border: 1px solid transparent;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), 
              background-color 0.4s cubic-bezier(0.22, 1, 0.36, 1), 
              border-color 0.4s cubic-bezier(0.22, 1, 0.36, 1), 
              color 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.pricing-card-v4.dark {
  background: #121212;
  color: #fff;
}

.pricing-card-v4.bordered {
  border: 1px solid #121212;
}

/* Light cards: White to Black Hover */
.pricing-card-v4:not(.dark):hover {
  background: #121212 !important;
  color: #ffffff !important;
  border-color: #ef4444 !important;
}

.pricing-card-v4:not(.dark):hover .card-desc {
  color: rgba(255, 255, 255, 0.7) !important;
}

.pricing-card-v4:not(.dark):hover .features-list-v4 {
  border-top-color: rgba(255, 255, 255, 0.1) !important;
}

.pricing-card-v4:not(.dark):hover .btn-v4-black {
  background: #ffffff !important;
  color: #121212 !important;
}

.pricing-card-v4:not(.dark):hover .btn-v4-outline {
  border-color: #ffffff !important;
  color: #ffffff !important;
}

/* Dark card: Black to White Hover */
.pricing-card-v4.dark:hover {
  background: #ffffff !important;
  color: #121212 !important;
  border-color: #ef4444 !important;
}

.pricing-card-v4.dark:hover .card-desc {
  color: var(--text-secondary) !important;
}

.pricing-card-v4.dark:hover .features-list-v4 {
  border-top-color: rgba(0, 0, 0, 0.05) !important;
}

.pricing-card-v4.dark:hover .btn-v4-white {
  background: #121212 !important;
  color: #ffffff !important;
}

.popular-badge {
  background: #ff3b30;
  color: #fff;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  margin-bottom: 30px;
}

.pricing-card-v4 h3 {
  font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 40px;
  line-height: 1.1;
}

.price-v4 {
  margin-bottom: 20px;
}

.price-v4 span:first-child {
  font-family: 'SF Pro Display', sans-serif;
  display: block;
  font-size: 12px;
  font-weight: 700;
  opacity: 0.5;
  letter-spacing: 0.15em;
  margin-bottom: 10px;
}

.price-v4 {
  font-family: 'SF Pro Display', sans-serif;
  font-size: 64px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}

.price-v4 span:last-child {
  font-size: 20px;
  font-weight: 500;
  opacity: 0.6;
}

.card-desc {
  font-family: 'SF Pro Display', sans-serif;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 40px;
  min-height: 4.5em;
  transition: color 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.dark .card-desc {
  color: rgba(255,255,255,0.7);
  transition: color 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.features-list-v4 {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
  border-top: 1px solid rgba(0,0,0,0.05);
  padding-top: 40px;
  transition: border-color 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.dark .features-list-v4 {
  border-top-color: rgba(255,255,255,0.1);
  transition: border-color 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.features-list-v4 li {
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.features-list-v4 li::before {
  content: "+";
  color: #ff3b30;
  font-weight: 800;
}

.btn-v4-white {
  background: #fff;
  color: #000;
  padding: 18px;
  border-radius: 100px;
  text-align: center;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.4s cubic-bezier(0.22, 1, 0.36, 1), 
              color 0.4s cubic-bezier(0.22, 1, 0.36, 1), 
              border-color 0.4s cubic-bezier(0.22, 1, 0.36, 1), 
              opacity 0.2s ease;
}

.btn-v4-black {
  background: #121212;
  color: #fff;
  padding: 18px;
  border-radius: 100px;
  text-align: center;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.4s cubic-bezier(0.22, 1, 0.36, 1), 
              color 0.4s cubic-bezier(0.22, 1, 0.36, 1), 
              border-color 0.4s cubic-bezier(0.22, 1, 0.36, 1), 
              opacity 0.2s ease;
}

.btn-v4-outline {
  background: transparent;
  border: 1px solid #121212;
  color: #121212;
  padding: 18px;
  border-radius: 100px;
  text-align: center;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.4s cubic-bezier(0.22, 1, 0.36, 1), 
              color 0.4s cubic-bezier(0.22, 1, 0.36, 1), 
              border-color 0.4s cubic-bezier(0.22, 1, 0.36, 1), 
              opacity 0.2s ease;
}

.btn-v4-white:hover, .btn-v4-black:hover, .btn-v4-outline:hover {
  opacity: 0.9;
}

@media (max-width: 1200px) {
  .pricing-grid-v4 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .pricing-grid-v4 {
    grid-template-columns: 1fr;
  }
}
/* Process Section */
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.step {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.step span {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 800;
  color: #E0E0E0;
  line-height: 1;
}

.step h3 {
  font-size: 24px;
  margin: 0;
}

.step p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.5;
}
/* Section Common */
.section {
  padding: 50px 0;
  border-bottom: 1px dashed var(--border-dashed);
}

.section-tag {
  display: inline-flex;
  align-items: center;
  background: #121212;
  color: #fff;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 30px;
}

.section-tag::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  margin-right: 8px;
}

.section-header {
  margin-bottom: 40px;
}

.header-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.header-split h2 {
  font-size: clamp(48px, 5vw, 72px);
  margin: 0;
  letter-spacing: -0.04em;
  line-height: 0.9;
}

.header-split p,
.work-intro {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 700px;
  margin-bottom: 10px;
}

/* Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.benefit-card {
  background: var(--bg-secondary);
  padding: 40px;
  border-radius: 32px;
  border: 1px solid rgba(0,0,0,0.05);
  position: relative;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              background-color 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              color 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.benefit-card:hover {
  transform: translateY(-5px);
  background: #121212 !important;
  border-color: #ef4444 !important;
  color: #ffffff !important;
}

.benefit-card:hover .dot-indicator span:not(.active) {
  background: rgba(255, 255, 255, 0.2);
}

.benefit-icon {
  font-size: 24px;
  margin-bottom: 30px;
  color: var(--text-primary);
}

.benefit-card h3 {
  font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 15px;
  transition: color 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.benefit-card p {
  font-family: 'SF Pro Display', sans-serif;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.5;
  transition: color 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.benefit-card:hover p {
  color: rgba(255, 255, 255, 0.7) !important;
}

.benefits p {
  font-family: 'SF Pro Display', sans-serif;
}

.dot-indicator {
  position: absolute;
  top: 40px;
  right: 40px;
  display: flex;
  gap: 4px;
}

.dot-indicator span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #E0E0E0;
}

.dot-indicator span.active {
  background: var(--accent);
}

/* Services V3 */
.services-grid-v3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-card-v3 {
  background: var(--bg-secondary);
  padding: 40px;
  border-radius: 32px;
  border: 1px solid rgba(0,0,0,0.05);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              background-color 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              color 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-card-v3:hover {
  transform: translateY(-5px);
  background: #121212 !important;
  border-color: #ef4444 !important;
  color: #ffffff !important;
}

.service-icon-v3 {
  width: 48px;
  height: 36px;
  background: #121212;
  border-radius: 6px;
  margin-bottom: 40px;
  position: relative;
}

.service-icon-emoji {
  font-size: 32px;
  margin-bottom: 30px;
  display: block;
}

.service-icon-v3::after {
  content: "";
  position: absolute;
  top: -6px;
  left: 0;
  width: 20px;
  height: 6px;
  background: #121212;
  border-radius: 4px 4px 0 0;
}

.service-card-v3 h3 {
  font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 15px;
  transition: color 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-card-v3 p {
  font-family: 'SF Pro Display', sans-serif;
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 30px;
  line-height: 1.4;
  transition: color 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-card-v3:hover p {
  color: rgba(255, 255, 255, 0.7) !important;
}

.services p {
  font-family: 'SF Pro Display', sans-serif;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service-tag-item {
  display: flex;
  align-items: center;
  background: #E8E8E8;
  padding: 6px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: background-color 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              color 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-card-v3:hover .service-tag-item {
  background: rgba(255, 255, 255, 0.1) !important;
  color: #ffffff !important;
}

.service-tag-item::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  margin-right: 8px;
}

.service-image-v3 {
  border-radius: 32px;
  overflow: hidden;
  height: 300px;
}

.service-image-v3 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Logo Cloud Marquee */
.logo-cloud {
  padding: 40px 0;
  border-bottom: 1px dashed var(--border-dashed);
  background: var(--bg-primary);
  display: flex;
  overflow: hidden;
  width: 100%;
}

.logo-cloud-track {
  display: flex;
  align-items: center;
  gap: 120px;
  padding-right: 120px;
  opacity: 0.5;
  filter: grayscale(1);
  animation: marquee-h 35s linear infinite;
  white-space: nowrap;
}

@keyframes marquee-h {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

.logo-item {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  color: var(--text-primary);
  opacity: 0.8;
  letter-spacing: -0.02em;
}

.logo-cloud-track:hover {
  animation-play-state: paused;
}

/* ── RESPONSIVE DESIGN ──────────────────────────────── */

/* Laptop / Large Tablet (up to 1200px) */
@media (max-width: 1200px) {
  .container { padding: 0 32px; }
  .header-split h2 { font-size: 56px; }
  .benefits-grid, .services-grid-v3, .reviews-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .pricing-grid-v3 { grid-template-columns: 1fr !important; max-width: 600px; margin-inline: auto; }
}

/* Tablet (up to 992px) */
@media (max-width: 992px) {
  .hero-v4 {
    min-height: 0 !important;
    padding-top: 100px !important;
  }
  .hero-v4-left {
    padding-top: 40px !important;
    padding-bottom: 20px !important;
    padding-right: 0 !important;
    align-items: center !important;
    text-align: center !important;
  }
  .hero-v4-left > div {
    margin-inline: auto !important;
    align-items: center !important;
  }
  .hero-v4-desc {
    margin-inline: auto !important;
    text-align: center !important;
    margin-bottom: 30px !important;
  }
  .hero-v4-cta-wrap {
    justify-content: center !important;
  }
  .hero-v4-right {
    height: 45vh !important;
    padding-top: 10px !important;
    padding-bottom: 30px !important;
  }
  .hero-container { 
    grid-template-columns: 1fr !important; 
    text-align: center; 
    padding: 0 32px;
  }
  .hero-content { margin-bottom: 60px; max-width: 600px; margin-inline: auto; }
  .hero-btns { justify-content: center; }
  .hero-sub { margin-inline: auto; }
  .hero-gallery { height: 50vh !important; }
  
  .header-split { grid-template-columns: 1fr !important; text-align: center; gap: 20px; }
  .header-split p { margin-inline: auto; }
  
  .work-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .work-item--wide { grid-column: span 2 !important; }
}

/* Mobile (up to 768px) */
@media (max-width: 768px) {
  .process-col { display: none !important; }
  .hero { padding-top: 120px !important; } /* More space for fixed navbar */
  .hero h1 { font-size: 32px !important; }
  .hero-btns { flex-direction: column !important; gap: 12px !important; width: 100%; max-width: 400px; margin-inline: auto; }
  .hero-btns a { width: 100%; justify-content: center; padding: 14px 20px !important; }
  
  .benefits-grid, .services-grid-v3, .reviews-grid, .work-grid { grid-template-columns: 1fr !important; }
  .work-item--wide { grid-column: span 1 !important; }
  .work-img-wrap, .work-item--wide .work-img-wrap { height: 260px !important; }
  
  .section { padding: 40px 0; }
  .header-split h2 { font-size: 34px !important; }
  
  .cta-card { padding: 60px 24px; }
  .cta-btns { flex-direction: column; width: 100%; }
  .cta-btns .btn-primary-v2, .cta-btns .btn-outline-v2 { width: 100%; justify-content: center; }

  .footer-grid { grid-template-columns: 1fr !important; gap: 48px; }
  .footer-big-text { font-size: 56px !important; }
  .footer-bottom-inner { flex-direction: column; gap: 20px; text-align: center; }
}

/* Small Mobile (up to 480px) */
@media (max-width: 480px) {
  .hero h1 { font-size: 26px !important; }
  .hero-btns { width: 100%; }
  .btn-dot { width: 28px !important; height: 28px !important; } /* Smaller dot on tiny screens */
  
  .logo-item { font-size: 16px; }
  .logo-cloud-track { gap: 60px; }
}
