/* ============================================
   DIGITAL ROAR V2 — Bold Editorial Sections
   ============================================ */

/* === Circular Text (About → Capabilities transition) === */
.v2-circular-text {
  border-radius: 50%;
  position: relative;
  transform-origin: 50% 50%;
}
.v2-circular-text span {
  position: absolute;
  display: inline-block;
  left: 0; right: 0; top: 0; bottom: 0;
  font-size: 18px;
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
  color: #00e5c8;
  text-align: center;
  transform-origin: 50% 50%;
  text-shadow: 0 0 30px rgba(0,229,200,0.3);
}

/* === Parallax Cards Overlay === */
.parallax-cards-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #050505;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.parallax-cards-overlay.active {
  opacity: 1;
  visibility: visible;
  cursor: auto;
}
.parallax-cards-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.parallax-cards-items {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
  pointer-events: none;
}
.parallax-card {
  position: absolute;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
  background-size: cover;
  background-position: center;
  cursor: pointer;
  user-select: none;
  transform-style: preserve-3d;
  will-change: transform;
  transition: opacity 0.3s ease;
  border: 1px solid rgba(255,255,255,0.08);
  pointer-events: auto;
}
.parallax-card:hover {
  border-color: rgba(0,229,200,0.3);
}
.parallax-card-iframe-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 12px;
}
.parallax-card-iframe-wrap iframe {
  width: 1440px;
  height: 900px;
  border: none;
  transform: scale(0.32);
  transform-origin: top left;
  pointer-events: none;
}
.parallax-card-fallback {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  transition: opacity 0.5s ease;
  z-index: 1;
}
.parallax-card-label {
  position: absolute;
  bottom: 12px;
  left: 16px;
  z-index: 2;
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
  transition: opacity 0.3s ease;
}
.parallax-card-label.hidden {
  opacity: 0;
}
.parallax-card-img-link {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}
.parallax-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  border-radius: 12px;
}
.parallax-card-focused {
  box-shadow: 0 0 0 3px rgba(0,229,200,0.5), 0 30px 60px rgba(0,0,0,0.6);
  border-radius: 12px;
}
.parallax-card-focused .parallax-card-iframe-wrap iframe {
  pointer-events: auto;
  width: 100%;
  height: 100%;
  transform: scale(1);
  transform-origin: top left;
}
.parallax-cards-close {
  position: absolute;
  top: 30px;
  right: 40px;
  z-index: 10001;
  background: none;
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 18px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  transition: border-color 0.3s, background 0.3s;
}
.parallax-cards-close:hover {
  border-color: #00e5c8;
  background: rgba(0,229,200,0.1);
}
.parallax-cards-title {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10001;
  color: rgba(255,255,255,0.4);
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .parallax-card { border-radius: 8px; }
}

/* === V2 Container === */
.v2-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
}

/* === V2 Section Eyebrow === */
.v2-section-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  color: var(--accent, #00e5c8);
  text-transform: uppercase;
}

.v2-eyebrow-line {
  width: 40px;
  height: 1px;
  background: var(--accent, #00e5c8);
}

/* === V2 Mega Title === */
.v2-mega-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 1.05;
  color: #fff;
  margin: 0 0 60px;
}

.v2-mega-title em {
  font-style: italic;
  font-family: 'Instrument Serif', serif;
  color: var(--accent, #00e5c8);
  font-weight: 400;
}


/* === Horizontal Marquee Dividers === */
.v2-marquee {
  overflow: hidden;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  background: rgba(0, 229, 200, 0.015);
}

.v2-marquee-track {
  display: flex;
  white-space: nowrap;
  will-change: transform;
}

.v2-marquee-track span {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 6px;
  color: rgba(255,255,255,0.08);
  text-transform: uppercase;
  flex-shrink: 0;
}

/* === Ambient Canvas === */
.v2-ambient-canvas {
  mix-blend-mode: screen;
}


/* ===================================================
   CAPABILITIES — Full-width stacked cards
   =================================================== */
/* Hide about CTA on v2 pages */
.about-cta { display: none !important; }

.v2-capabilities {
  padding: 100px 0 60px;
  background: #050505;
}

.v2-cap-stack {
  display: flex;
  flex-direction: column;
  background: #050505;
  border-radius: 20px;
}

.v2-cap-card {
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  background: #0c0c0c;
  margin-bottom: 20px;
  transition: box-shadow 0.4s ease;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.v2-cap-card:hover {
  background: rgba(0, 229, 200, 0.03);
  box-shadow: 0 8px 40px rgba(0, 229, 200, 0.06);
}

.v2-cap-card-inner {
  display: flex;
  align-items: flex-start;
  gap: 80px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px;
}

.v2-cap-left {
  flex: 0 0 380px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.v2-cap-num {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: var(--accent, #00e5c8);
  letter-spacing: 2px;
}

.v2-cap-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.2;
  color: #fff;
  margin: 0;
  transition: color 0.3s ease;
}

.v2-cap-card:hover .v2-cap-title {
  color: var(--accent, #00e5c8);
}

.v2-cap-right {
  flex: 1;
  padding-top: 8px;
}

.v2-cap-right p {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  margin: 0 0 24px;
  max-width: 500px;
}

.v2-cap-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.v2-cap-tags span {
  padding: 6px 14px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.v2-cap-card:hover .v2-cap-tags span {
  border-color: rgba(0, 229, 200, 0.25);
  color: rgba(0, 229, 200, 0.7);
}


/* ===================================================
   PROJECTS — Card Swap Stack
   =================================================== */
.page-flip-wrapper {
  position: relative;
  overflow: visible;
}
.page-curl-canvas {
  will-change: contents;
  image-rendering: high-quality;
}
.v2-projects {
  padding: 140px 0 120px;
  background: #080808;
  position: relative;
  z-index: 10;
  overflow: hidden;
}

.v2-projects-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
  gap: 80px;
}

.v2-projects-text {
  flex: 0 0 32%;
  min-width: 280px;
}

.v2-projects-text .v2-mega-title {
  font-size: clamp(1.6rem, 2.5vw, 2.8rem);
  line-height: 1.15;
}

.v2-projects-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
  padding: 14px 32px;
  border-radius: 100px;
  background: #fff;
  color: #000;
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  animation: ctaPulse 2s ease-in-out infinite;
}

.v2-projects-cta:hover {
  background: var(--accent, #00e5c8);
  color: #000;
  transform: scale(1.08);
  box-shadow: 0 0 30px rgba(0,229,200,0.4);
  animation: none;
}

@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0.3); }
  50% { box-shadow: 0 0 20px 4px rgba(255,255,255,0.15); }
}

.v2-cardswap-container {
  position: relative;
  width: 600px;
  height: 550px;
  perspective: 900px;
  overflow: visible;
  flex-shrink: 0;
}

.v2-swap-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 480px;
  height: 400px;
  border-radius: 16px;
  border: 2px solid rgba(0, 229, 200, 0.3);
  background: #0a0a0a;
  overflow: hidden;
  transform-style: preserve-3d;
  will-change: transform;
  backface-visibility: hidden;
  cursor: pointer;
  transition: border-color 0.3s ease;
}

.v2-swap-card:hover {
  border-color: rgba(0, 229, 200, 0.7);
}

.v2-swap-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #0a0a0a;
  padding: 20px;
}

.v2-swap-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #fff;
  letter-spacing: 0.5px;
}

.v2-swap-label span {
  color: var(--accent, #00e5c8);
  font-weight: 600;
  margin-right: 8px;
}


/* ===================================================
   SVG STROKE TRANSITION
   =================================================== */
.svg-transition {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  pointer-events: none;
  opacity: 0;
}

.svg-row {
  width: 100%;
  line-height: 0;
  margin: -2px 0;
}

.svg-row svg {
  width: 100%;
  height: auto;
  display: block;
}

.svg-row path {
  fill: none;
  stroke: #0a0a0a;
  stroke-width: 160;
  stroke-linecap: round;
}

/* ===================================================
   STATS — Bold number band
   =================================================== */
.v2-stats {
  padding: 80px 0;
  background: #080808;
  border-top: 1px solid rgba(0, 229, 200, 0.1);
  border-bottom: 1px solid rgba(0, 229, 200, 0.1);
  position: relative;
  z-index: 5;
}

.v2-stats-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.v2-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.v2-stat-number {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: #fff;
  line-height: 1;
}

.v2-stat-suffix {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  color: var(--accent, #00e5c8);
  display: inline;
}

.v2-stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.v2-stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.1);
}


/* ===================================================
   TESTIMONIALS — Minimal cards
   =================================================== */
.v2-testimonials {
  position: relative;
  z-index: 5;
  background: #0a0a0a;
  padding: 140px 0;
  background: #050505;
}

.v2-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  perspective: 1000px;
}

.v2-testimonial-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: all 0.4s ease;
}

.v2-testimonial-card:hover {
  border-color: rgba(0, 229, 200, 0.2);
  background: rgba(0, 229, 200, 0.03);
  transform: translateY(-4px);
}

.v2-testimonial-featured {
  border-color: rgba(0, 229, 200, 0.15);
  background: rgba(0, 229, 200, 0.04);
}

.v2-testimonial-stars {
  font-size: 14px;
  letter-spacing: 4px;
  color: var(--accent, #00e5c8);
}

.v2-testimonial-quote {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.7);
  margin: 0;
  flex: 1;
}

.v2-testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.v2-testimonial-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: #fff;
}

.v2-testimonial-role {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.5px;
}


/* ===================================================
   CONTACT — Bold CTA
   =================================================== */
.v2-contact {
  padding: 160px 0;
  background: #080808;
  text-align: center;
}

.v2-contact-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.v2-contact .v2-section-eyebrow {
  justify-content: center;
}

.v2-contact-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.1;
  color: #fff;
  margin: 0 0 24px;
}

.v2-contact-title em {
  font-style: italic;
  font-family: 'Instrument Serif', serif;
  font-weight: 400;
  color: var(--accent, #00e5c8);
}

.v2-contact-sub {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.45);
  margin: 0 0 48px;
  max-width: 480px;
}

.v2-contact-cta {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 20px 48px;
  border: 1px solid var(--accent, #00e5c8);
  border-radius: 100px;
  color: var(--accent, #00e5c8);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.v2-contact-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent, #00e5c8);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 0;
}

.v2-contact-cta:hover::before {
  transform: scaleX(1);
}

.v2-contact-cta span {
  position: relative;
  z-index: 1;
}

.v2-contact-cta:hover {
  color: #080808;
}

.v2-cta-arrow {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.v2-contact-cta:hover .v2-cta-arrow {
  transform: translateX(6px);
}


/* ===================================================
   CASE STUDY
   =================================================== */
.v2-case-study {
  padding: 80px 0;
  background: #030808;
  border-top: 1px solid rgba(255,255,255,0.04);
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
  min-height: 80vh;
  overflow: hidden;
}

.v2-case-study .v2-container {
  position: relative;
  z-index: 3;
}

.v2-trend-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.v2-trend-back {
  z-index: 1;
}

.v2-trend-front {
  z-index: 5;
}

.v2-case-inner {
  max-width: 900px;
}

.v2-case-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  line-height: 1.2;
  color: #fff;
  margin: 0;
}

.v2-case-title em {
  font-style: italic;
  font-family: 'Instrument Serif', serif;
  font-weight: 400;
  color: var(--accent, #00e5c8);
}


/* ===================================================
   BLOG
   =================================================== */
.v2-blog {
  position: relative;
  z-index: 5;
  background: #0a0a0a;
  padding: 140px 0;
  background: #050505;
}

.v2-blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.v2-blog-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 36px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.4s ease;
}

.v2-blog-card:hover {
  border-color: rgba(0, 229, 200, 0.2);
  background: rgba(0, 229, 200, 0.03);
  transform: translateY(-4px);
}

.v2-blog-tag {
  display: inline-block;
  padding: 4px 12px;
  border: 1px solid rgba(0, 229, 200, 0.25);
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--accent, #00e5c8);
  width: fit-content;
}

.v2-blog-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  line-height: 1.3;
  color: #fff;
  margin: 0;
  transition: color 0.3s ease;
}

.v2-blog-card:hover .v2-blog-title {
  color: var(--accent, #00e5c8);
}

.v2-blog-excerpt {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.45);
  margin: 0;
  flex: 1;
}

.v2-blog-meta {
  display: flex;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.5px;
}


/* ===================================================
   FAQ
   =================================================== */
.v2-faq {
  position: relative;
  z-index: 5;
  background: #0a0a0a;
  padding: 140px 0;
  background: #080808;
}

.v2-faq-list {
  max-width: 800px;
  display: flex;
  flex-direction: column;
}

.v2-faq-item {
  border-top: 1px solid rgba(255,255,255,0.08);
}

.v2-faq-item:last-child {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.v2-faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: #fff;
  text-align: left;
  transition: color 0.3s ease;
}

.v2-faq-question:hover {
  color: var(--accent, #00e5c8);
}

.v2-faq-icon {
  font-size: 1.5rem;
  color: var(--accent, #00e5c8);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 20px;
}

.v2-faq-item.active .v2-faq-icon {
  transform: rotate(45deg);
}

.v2-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.v2-faq-item.active .v2-faq-answer {
  max-height: 300px;
  padding-bottom: 24px;
}

.v2-faq-answer p {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  margin: 0;
  max-width: 650px;
}


/* ===================================================
   CONTACT — Split layout with form
   =================================================== */
.v2-contact {
  padding: 140px 0;
  background: #050505;
  text-align: left;
}

.v2-contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.v2-contact-info {
  position: sticky;
  top: 120px;
}

.v2-contact-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.15;
  color: #fff;
  margin: 0 0 20px;
}

.v2-contact-title em {
  font-style: italic;
  font-family: 'Instrument Serif', serif;
  font-weight: 400;
  color: var(--accent, #00e5c8);
}

.v2-contact-sub {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.45);
  margin: 0 0 36px;
  max-width: 400px;
}

.v2-contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.v2-contact-detail {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.v2-detail-label {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--accent, #00e5c8);
}

.v2-detail-value {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

a.v2-detail-value:hover {
  color: var(--accent, #00e5c8);
}

/* Form */
.v2-contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.v2-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.v2-form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.v2-form-group label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.v2-form-group input,
.v2-form-group select,
.v2-form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 14px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: #fff;
  transition: border-color 0.3s ease;
  outline: none;
}

.v2-form-group input::placeholder,
.v2-form-group textarea::placeholder {
  color: rgba(255,255,255,0.25);
}

.v2-form-group input:focus,
.v2-form-group select:focus,
.v2-form-group textarea:focus {
  border-color: var(--accent, #00e5c8);
}

.v2-form-group select {
  appearance: none;
  cursor: pointer;
}

.v2-form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.v2-contact-form .v2-contact-cta {
  align-self: flex-start;
  cursor: pointer;
  background: none;
}


/* ===================================================
   FOOTER — FitForge style
   =================================================== */
.v2-footer {
  padding: 80px 60px 0;
  background: #0a0a0a;
  border-top: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
}

.v2-footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 60px;
}

.v2-footer-brand-col {
  flex: 0 0 30%;
}

.v2-footer-logo {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: #fff;
  letter-spacing: 4px;
}

.v2-footer-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  margin: 20px 0 0;
  line-height: 1.6;
}

.v2-footer-links-grid {
  display: flex;
  gap: 0;
}

.v2-footer-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 0 48px;
  border-left: 1px solid rgba(255,255,255,0.08);
}

.v2-footer-col:last-child {
  padding-right: 0;
}

.v2-footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: #fff;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.v2-footer-col a {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.3s ease;
}

.v2-footer-col a:hover {
  color: var(--accent, #00e5c8);
}

.v2-footer-since {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.25);
  padding-bottom: 40px;
}

.v2-footer-bigtext {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(6rem, 14vw, 14rem);
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.06);
  text-align: center;
  line-height: 0.85;
  letter-spacing: -0.02em;
  padding-bottom: 20px;
  user-select: none;
  overflow: hidden;
}


/* === RESPONSIVE === */
@media (max-width: 900px) {
  .v2-container {
    padding: 0 20px;
  }

  .v2-mega-title {
    font-size: clamp(2rem, 8vw, 3.5rem);
  }

  /* Hero title fits one line */
  .hero-word {
    font-size: clamp(32px, 9vw, 60px) !important;
    letter-spacing: -0.02em !important;
  }

  .hero {
    min-height: 80vh;
  }

  /* Remove gap between hero and about */
  .about {
    margin-top: -40px;
  }

  /* About section text */
  .about p {
    font-size: clamp(0.85rem, 3.5vw, 1.1rem);
    line-height: 1.6;
  }

  /* Brighten accent words */
  .word-accent {
    text-shadow: 0 0 20px rgba(0, 229, 200, 0.4);
  }

  /* Capabilities */
  .v2-capabilities {
    padding: 60px 0 40px;
  }

  .v2-cap-card-inner {
    flex-direction: column;
    gap: 20px;
    padding: 32px 20px;
  }

  .v2-cap-left {
    flex: none;
  }

  .v2-cap-title {
    font-size: 1.5rem;
  }

  .v2-cap-right p {
    font-size: 0.9rem;
  }

  .v2-cap-tags {
    gap: 6px;
  }

  .v2-cap-tags span {
    padding: 5px 10px;
    font-size: 10px;
  }

  /* Projects */
  .v2-projects-layout {
    flex-direction: column;
    gap: 32px;
  }

  .v2-projects-text {
    flex: none;
    max-width: 100%;
  }

  .v2-project-item {
    padding: 28px 20px;
  }

  .v2-project-preview {
    display: none;
  }

  .v2-project-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .v2-project-type {
    margin-left: 0;
  }

  /* Case Study */
  .v2-case-title {
    font-size: clamp(1.5rem, 6vw, 2.5rem);
  }

  /* Stats */
  .v2-stats-track {
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    padding: 40px 20px;
  }

  .v2-stat-divider {
    display: none;
  }

  .v2-stat-number {
    font-size: 2.5rem;
  }

  /* Testimonials */
  .v2-testimonial-grid {
    grid-template-columns: 1fr;
  }

  /* Blog */
  .v2-blog-grid {
    grid-template-columns: 1fr;
  }

  /* FAQ */
  .v2-faq .v2-container {
    padding: 0 20px;
  }

  .v2-faq-question {
    font-size: 1rem;
    padding: 20px 0;
  }

  /* Contact */
  .v2-contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .v2-contact-title {
    font-size: clamp(1.8rem, 7vw, 3rem);
  }

  .v2-form-row {
    grid-template-columns: 1fr;
  }

  .v2-contact-form input,
  .v2-contact-form select,
  .v2-contact-form textarea {
    font-size: 16px; /* Prevents iOS zoom on focus */
  }

  /* Footer */
  .v2-footer { padding: 48px 20px 0; }
  .v2-footer-top { flex-direction: column; gap: 40px; }
  .v2-footer-brand-col { flex: none; }
  .v2-footer-links-grid { flex-direction: column; gap: 32px; }
  .v2-footer-col { border-left: none; padding: 0; border-top: 1px solid rgba(255,255,255,0.08); padding-top: 20px; }
  .v2-footer-bigtext { font-size: 3rem; }
}

/* Small phones */
@media (max-width: 480px) {
  .v2-mega-title {
    font-size: clamp(1.6rem, 9vw, 2.5rem);
  }

  .v2-cap-card-inner {
    padding: 24px 16px;
  }

  .v2-cap-title {
    font-size: 1.3rem;
  }

  .v2-footer-bigtext { font-size: 2rem; }
}
