/* =============================================
   AMIVEINS — Design System & Complete Styles
   Apple-Inspired Premium Light Theme
   ============================================= */

/* ---- Google Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&family=Inter:wght@300;400;500;600;700&display=swap');

/* =============================================
   CSS Custom Properties (Design Tokens)
   ============================================= */
:root {
  /* Colors — Light Theme */
  --bg-primary:       #FFFFFF;
  --bg-secondary:     #F5F5F7;
  --bg-card:          #FFFFFF;
  --glass-bg:         rgba(255, 255, 255, 0.65);
  --glass-border:     rgba(255, 255, 255, 0.8);
  --shadow-soft:      0 12px 32px rgba(0,0,0,0.03), 0 2px 6px rgba(0,0,0,0.02);
  --shadow-hover:     0 24px 48px rgba(0,0,0,0.06), 0 4px 12px rgba(0,0,0,0.03);
  --radius-lg:        24px;

  --border:           #D2D2D7;
  --border-light:     #E8E8ED;
  --text-primary:     #1D1D1F;
  --text-secondary:   #86868B;
  --accent-grey:      #86868B;
  --accent-grey-glow: rgba(134,134,139,0.15);
  --glow:             rgba(0,0,0,0.04);
  --cta-bg:           #1D1D1F;
  --cta-text:         #FFFFFF;
  --success:          #248A3D;
  --whatsapp:         #25D366;

  /* Typography */
  --font-display:     'Playfair Display', Georgia, serif;
  --font-body:        'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-ui:          'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Inter', sans-serif;

  /* Spacing */
  --unit:             8px;
  --section-pad:      120px;
  --section-pad-mob:  80px;
  --container:        1200px;
  --gutter:           80px;
  --gutter-mob:       24px;
  --card-gap:         24px;
  --nav-height:       48px;
  --nav-height-mob:   48px;
}

/* =============================================
   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;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

ul, ol {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  border: none;
  outline: none;
  background: none;
}

button {
  cursor: pointer;
}

::selection {
  background: var(--accent-grey);
  color: #FFFFFF;
}

/* =============================================
   Typography
   ============================================= */
.h1, h1 {
  font-family: var(--font-display);
  font-size: 96px;
  font-weight: 700;
  line-height: 1.05;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.h2, h2 {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.h3, h3 {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-primary);
}

.h4, h4 {
  font-family: var(--font-body);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--text-primary);
}

.body-large {
  font-size: 21px;
  line-height: 1.6;
}

.body-regular {
  font-size: 17px;
  line-height: 1.6;
}

.label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.caption {
  font-size: 11px;
  font-weight: 400;
  color: var(--text-secondary);
}

/* =============================================
   Layout
   ============================================= */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section {
  padding: var(--section-pad) 0;
}

.section--alt {
  background-color: var(--bg-secondary);
}

.text-center {
  text-align: center;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--card-gap);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--card-gap);
}

.grid-2x2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

/* =============================================
   Eyebrow Label (Section Label)
   ============================================= */
.eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-grey);
  margin-bottom: 20px;
  display: block;
}

/* =============================================
   Buttons
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: 980px;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 500;
  transition: all 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
}

.btn--primary {
  background: var(--cta-bg);
  color: var(--cta-text);
}

.btn--primary:hover {
  background: #000000;
  transform: scale(1.02);
}

.btn--ghost {
  background: transparent;
  border: 1px solid rgba(0,0,0,0.25);
  color: var(--text-primary);
}

.btn--ghost:hover {
  border-color: var(--text-primary);
  background: rgba(0,0,0,0.05);
}

.btn--full {
  width: 100%;
}

.btn-group {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

/* =============================================
   Loading Screen
   ============================================= */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  pointer-events: none;
}

.loading-screen__text {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--text-primary);
  opacity: 0;
}

.loading-screen.hidden {
  display: none;
}

/* =============================================
   Navbar
   ============================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: 10001;
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: saturate(180%) blur(40px);
  -webkit-backdrop-filter: saturate(180%) blur(40px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 -1px 1px rgba(255, 255, 255, 0.03);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(0, 0, 0, 0.8);
  border-bottom-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5), inset 0 -1px 1px rgba(255, 255, 255, 0.03);
}

.navbar__inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar__logo {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.navbar__links a {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: -0.01em;
  transition: color 0.2s ease;
  position: relative;
}

.navbar__links a:hover,
.navbar__links a.active {
  color: #FFFFFF;
}

.navbar__cta {
  flex-shrink: 0;
}

.navbar .btn {
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 600;
}

.navbar .btn--primary {
  background: #FFFFFF;
  color: #000000;
}

.navbar .btn--primary:hover {
  background: rgba(255, 255, 255, 0.8);
  color: #000000;
}

/* Hamburger */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 10001;
  padding: 8px;
}

.navbar__hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: #FFFFFF;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.navbar__hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.navbar__hamburger.active span:nth-child(2) {
  opacity: 0;
}

.navbar__hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Nav Overlay */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.98);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  padding-right: 40px;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.mobile-nav.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav a {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s ease;
}

.mobile-nav a:hover {
  color: #FFFFFF;
}

/* =============================================
   Hero Section
   ============================================= */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: calc(var(--nav-height) + 40px) var(--gutter-mob) 80px;
  background: var(--bg-primary);
}

.hero__bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 800px;
  height: 800px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139,111,20,0.04) 0%, rgba(200,180,130,0.03) 40%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.hero__eyebrow {
  letter-spacing: 0.2em;
  margin-bottom: 32px;
}

.hero h1 {
  margin-bottom: 32px;
}

.hero h1 .word {
  display: inline-block;
  overflow: hidden;
  padding-bottom: 0.2em;
  margin-bottom: -0.2em;
  vertical-align: bottom;
}

.hero h1 .word-inner {
  display: inline-block;
}

.hero__sub {
  font-size: 21px;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 48px;
  line-height: 1.6;
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 1;
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { opacity: 0.3; transform: scaleY(0.5); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
}

.hero__scroll-text {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-secondary);
}

/* Page Hero (non-home pages) */
.page-hero {
  padding: 180px 0 80px;
  text-align: center;
  background: var(--bg-primary);
}

.page-hero h1 {
  font-size: 72px;
  max-width: 900px;
  margin: 0 auto 24px;
}

.page-hero .hero__sub {
  margin-bottom: 0;
}

/* =============================================
   Stats Section
   ============================================= */
.stats {
  background: var(--bg-secondary);
  padding: 80px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats__grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.stats__item {
  flex: 1;
  text-align: center;
  padding: 0 40px;
}

.stats__item + .stats__item {
  border-left: 1px solid var(--border);
}

.stats__number {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.1;
  margin-bottom: 8px;
}

.stats__label {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* =============================================
   About / Who We Are Section
   ============================================= */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gutter);
  align-items: start;
}

.about-split__left h2 {
  font-size: 56px;
}

.about-split__right {
  padding-top: 8px;
}

.about-split__right p {
  color: var(--text-secondary);
}

.about-split__right p:first-child {
  color: var(--text-primary);
  font-size: 21px;
  line-height: 1.6;
}

.about-split__right p + p {
  margin-top: 24px;
}

.founders-line {
  font-style: italic;
  font-size: 15px;
  color: var(--accent-grey);
  margin-top: 40px;
}

/* =============================================
   Service Cards
   ============================================= */
.service-card {
  padding: 64px 56px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);

  background: var(--glass-bg);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.service-card:hover {
  border-color: transparent;

  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.service-card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 28px;
  color: var(--accent-grey);
}

.service-card__icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--accent-grey);
  fill: none;
  stroke-width: 1.5;
}

.service-card h3 {
  font-size: 32px;
  margin-bottom: 16px;
}

.service-card p {
  color: var(--text-secondary);
  font-size: 17px;
  line-height: 1.6;
}

.service-card__tag {
  display: inline-block;
  margin-top: 24px;
  padding: 6px 16px;
  border-radius: 980px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--accent-grey);
  border: 1px solid var(--accent-grey);
}

/* =============================================
   Process / Timeline
   ============================================= */
.process {
  position: relative;
}

.process__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  position: relative;
}

.process__steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 16.67%;
  right: 16.67%;
  height: 1px;
  background: var(--accent-grey);
  opacity: 0.3;
}

.process__step {
  text-align: center;
}

.process__number {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 700;
  color: var(--accent-grey);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 24px;
}

.process__step h3 {
  font-size: 28px;
  margin-bottom: 16px;
}

.process__step p {
  color: var(--text-secondary);
  font-size: 17px;
  line-height: 1.6;
  max-width: 300px;
  margin: 0 auto;
}

/* =============================================
   Feature Cards (Why Choose Us)
   ============================================= */
.feature-card {
  padding: 56px 48px;
  text-align: center;
  transition: all 0.4s ease;
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);

  background: var(--glass-bg);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.feature-card:hover {
  border-color: transparent;

  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.feature-card__icon {
  font-size: 48px;
  margin-bottom: 24px;
  display: block;
}

.feature-card h3 {
  font-size: 28px;
  margin-bottom: 16px;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 17px;
  line-height: 1.6;
}

/* =============================================
   CTA Banner
   ============================================= */
.cta-banner {
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  padding: var(--section-pad) 0;
  text-align: center;
}

.cta-banner h2 {
  font-size: 72px;
  max-width: 800px;
  margin: 0 auto 24px;
}

.cta-banner .hero__sub {
  margin-bottom: 48px;
}

.cta-banner__note {
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 24px;
}

/* =============================================
   Services Detail Page
   ============================================= */
.service-detail {
  padding: var(--section-pad) 0;
}

.service-detail:nth-child(even) {
  background: var(--bg-secondary);
}

.service-detail__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gutter);
  align-items: center;
}

.service-detail__grid.reverse {
  direction: rtl;
}

.service-detail__grid.reverse > * {
  direction: ltr;
}

.service-detail__content h2 {
  font-size: 56px;
  margin-bottom: 24px;
}

.service-detail__content p {
  color: var(--text-secondary);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.service-detail__content p:first-of-type {
  color: var(--text-primary);
  font-size: 21px;
}

.service-detail__list {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-detail__list li {
  font-size: 17px;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 12px;
}

.service-detail__list li::before {
  content: '✦';
  color: var(--accent-grey);
  font-size: 14px;
  flex-shrink: 0;
}

.service-detail__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-detail__mockup {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.service-detail__mockup::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 32px;
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border);
}

.service-detail__mockup-dots {
  position: absolute;
  top: 10px;
  left: 12px;
  display: flex;
  gap: 6px;
}

.service-detail__mockup-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
}

.service-detail__mockup-icon {
  color: var(--accent-grey);
  opacity: 0.4;
}

.service-detail__mockup-icon svg {
  width: 80px;
  height: 80px;
  stroke: var(--accent-grey);
  fill: none;
  stroke-width: 1;
}

/* =============================================
   About Page — Story
   ============================================= */
.story {
  max-width: 720px;
  margin: 0 auto;
}

.story p {
  font-size: 21px;
  line-height: 1.7;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.pull-quote {
  padding: 56px 0;
  margin: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.pull-quote__mark {
  font-family: var(--font-display);
  font-size: 80px;
  color: var(--accent-grey);
  line-height: 0.5;
  display: block;
  margin-bottom: 24px;
}

.pull-quote p {
  font-family: var(--font-display);
  font-size: 32px;
  font-style: italic;
  color: var(--accent-grey);
  line-height: 1.3;
  max-width: 600px;
  margin: 0 auto;
}

/* =============================================
   Founder Cards
   ============================================= */
.founder-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 900px;
  margin: 0 auto;
}

.founder-card {
  padding: 40px;
  padding: 40px;
  text-align: center;
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);

  background: var(--glass-bg);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.founder-card__photo {
  width: 100%;
  aspect-ratio: 1/1;
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  border: 1px solid var(--border);
}

.founder-card__monogram {
  font-family: var(--font-display);
  font-size: 96px;
  font-weight: 700;
  color: var(--accent-grey);
  opacity: 0.5;
}

.founder-card__name {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 8px;
}

.founder-card__title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-grey);
  margin-bottom: 20px;
}

.founder-card__bio {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 360px;
  margin: 0 auto;
}

/* =============================================
   Mission / Vision
   ============================================= */
.mv-card {
  padding: 64px 56px;
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);

  background: var(--glass-bg);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.mv-card__icon {
  font-size: 48px;
  margin-bottom: 24px;
  display: block;
}

.mv-card h3 {
  font-size: 32px;
  margin-bottom: 16px;
}

.mv-card p {
  color: var(--text-secondary);
  font-size: 17px;
  line-height: 1.6;
}

/* =============================================
   Portfolio Grid
   ============================================= */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.portfolio-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  text-decoration: none;
  background: var(--glass-bg);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
}

.portfolio-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.portfolio-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(29,29,31,0.85);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.portfolio-card:hover .portfolio-card__overlay {
  opacity: 1;
}

.portfolio-card__title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 8px;
}

.portfolio-card__tag {
  font-size: 12px;
  color: var(--accent-grey);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.portfolio-card__soon {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--text-primary);
  opacity: 0.35;
}

.portfolio-card__soon-sub {
  font-size: 14px;
  color: var(--text-secondary);
  margin-top: 8px;
}

/* =============================================
   Contact Form
   ============================================= */
.contact-layout {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: var(--gutter);
  align-items: start;
}

.contact-form {
  padding: 56px;
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);

  background: var(--glass-bg);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px;
  font-size: 17px;
  color: var(--text-primary);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-secondary);
  opacity: 0.6;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent-grey);
  box-shadow: 0 0 0 3px var(--accent-grey-glow);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2386868B' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 48px;
  cursor: pointer;
}

.form-group select option {
  background: var(--bg-card);
  color: var(--text-primary);
}

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

.form-success {
  display: none;
  padding: 16px 24px;
  background: rgba(36,138,61,0.08);
  border: 1px solid rgba(36,138,61,0.25);
  border-radius: 8px;
  color: var(--success);
  font-size: 15px;
  font-weight: 500;
  margin-top: 16px;
  text-align: center;
}

.form-success.show {
  display: block;
}

/* Contact Info */
.contact-info {
  padding-left: 56px;
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);

  background: var(--glass-bg);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.contact-info__block {
  margin-bottom: 32px;
}

.contact-info__block-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.contact-info__item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 17px;
  transition: color 0.2s ease;
}

.contact-info__item:hover {
  color: var(--accent-grey);
}

.contact-info__item-icon {
  font-size: 20px;
  flex-shrink: 0;
}

.contact-info__badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 980px;
  font-size: 11px;
  font-weight: 600;
  color: var(--accent-grey);
  border: 1px solid var(--accent-grey);
  margin-left: 8px;
}

.contact-info__divider {
  height: 1px;
  background: var(--border);
  margin: 32px 0;
}

.contact-info__socials {
  display: flex;
  gap: 16px;
}

.contact-info__social-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  color: var(--text-secondary);
}

.contact-info__social-icon:hover {
  border-color: var(--accent-grey);
  color: var(--accent-grey);
}

.contact-info__social-icon svg {
  width: 20px;
  height: 20px;
}

.contact-info__promise {
  font-size: 15px;
  color: var(--text-secondary);
  margin-top: 8px;
}

/* =============================================
   WhatsApp FAB
   ============================================= */
.whatsapp-fab {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9998;
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
  animation: waPulse 2s ease-in-out infinite;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
  animation: none;
}

.whatsapp-fab svg {
  width: 28px;
  height: 28px;
  fill: white;
}

@keyframes waPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

/* =============================================
   Footer
   ============================================= */
.footer {
  background: #000000;
  border-top: 1px solid rgba(0,0,0,1);
  padding: 48px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 32px;
  padding-bottom: 32px;
}

.footer__brand-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 12px;
}

.footer__brand-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 240px;
  margin-bottom: 12px;
}

.footer__brand-loc {
  font-size: 13px;
  color: var(--text-secondary);
}

.footer__col-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #86868B;
  margin-bottom: 16px;
}

.footer__col a,
.footer__col p {
  display: block;
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 10px;
  transition: color 0.2s ease;
}

.footer__col a:hover {
  color: #FFFFFF;
}

.footer__socials {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.footer__socials .footer__social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  color: var(--text-secondary);
  margin-bottom: 0;
}

.footer__socials .footer__social-link:hover {
  border-color: #FFFFFF;
  color: #FFFFFF;
}

.footer__socials .footer__social-link svg {
  width: 16px;
  height: 16px;
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__copy {
  font-size: 11px;
  color: var(--text-secondary);
}

.footer__legal {
  display: flex;
  gap: 24px;
}

.footer__legal a {
  font-size: 11px;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.footer__legal a:hover {
  color: #FFFFFF;
}

/* =============================================
   Reveal Animations (GSAP targets)
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(40px);
}

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

/* =============================================
   Utility
   ============================================= */
.max-w-560 { max-width: 560px; margin-left: auto; margin-right: auto; }
.max-w-720 { max-width: 720px; margin-left: auto; margin-right: auto; }
.max-w-800 { max-width: 800px; margin-left: auto; margin-right: auto; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mt-48 { margin-top: 48px; }
.mb-24 { margin-bottom: 24px; }
.mb-48 { margin-bottom: 48px; }
.gap-2 { gap: 2px; }
.text-grey { color: var(--accent-grey); }
.text-grey { color: var(--text-secondary); }

/* =============================================
   Responsive — Tablet
   ============================================= */
@media (max-width: 1024px) {
  .container { padding: 0 40px; }
  .navbar__inner { padding: 0 40px; }
  h1 { font-size: 72px; }
  h2 { font-size: 48px; }
  .page-hero h1 { font-size: 56px; }
  .cta-banner h2 { font-size: 56px; }
  .about-split__left h2 { font-size: 44px; }
  .service-detail__content h2 { font-size: 44px; }
  .stats__number { font-size: 48px; }
  .process__steps { gap: 40px; }
  .process__number { font-size: 48px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .service-card { padding: 48px 40px; }
  .contact-info { padding-left: 0; }
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);

  background: var(--glass-bg);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

/* =============================================
   Responsive — Mobile
   ============================================= */
@media (max-width: 768px) {
  :root {
    --section-pad: 80px;
    --gutter: 24px;
  }

  .container { padding: 0 var(--gutter-mob); }
  .navbar__inner { padding: 0 var(--gutter-mob); }
  .navbar { height: var(--nav-height-mob); }

  h1, .h1 { font-size: 48px; }
  h2, .h2 { font-size: 36px; }
  h3, .h3 { font-size: 28px; }
  .page-hero h1 { font-size: 40px; }
  .page-hero { padding: 140px 0 60px; }
  .cta-banner h2 { font-size: 40px; }
  .hero__sub { font-size: 17px; }
  .about-split__left h2 { font-size: 36px; }

  /* Navbar mobile */
  .navbar__links { display: none; }
  .navbar__cta { display: none; }
  .navbar__hamburger { display: flex; }

  /* Grids → single column */
  .grid-2, .grid-3, .grid-2x2 { grid-template-columns: 1fr; }
  .about-split { grid-template-columns: 1fr; gap: 40px; }
  .service-detail__grid { grid-template-columns: 1fr; }
  .service-detail__grid.reverse { direction: ltr; }
  .service-detail__visual { order: -1; }
  .contact-layout { grid-template-columns: 1fr; }
  .founder-cards { grid-template-columns: 1fr; gap: 56px; }
  .portfolio-grid { grid-template-columns: 1fr; gap: 2px; }

  /* Stats */
  .stats__grid { flex-direction: column; gap: 40px; }
  .stats__item + .stats__item { border-left: none; border-top: 1px solid var(--border); padding-top: 40px; }
  .stats__number { font-size: 48px; }

  /* Process */
  .process__steps { grid-template-columns: 1fr; gap: 48px; }
  .process__steps::before { display: none; }

  /* Cards */
  .service-card { padding: 40px 28px; }
  .feature-card { padding: 40px 28px; }
  .mv-card { padding: 40px 28px; }

  /* Contact */
  .contact-form { padding: 32px 24px; }
  .contact-info { padding-left: 0; padding-top: 40px; }

  /* Footer */
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer__col:first-of-type { grid-column: 1 / -1; margin-bottom: 16px; }
  .footer__bottom { flex-direction: column; gap: 16px; text-align: center; }
  .footer__legal { justify-content: center; }

  /* Hero scroll indicator */
  .hero__scroll { bottom: 24px; }

  /* Button group */
  .btn-group { flex-direction: column; width: 100%; }
  .btn-group .btn { width: 100%; }

  /* Pull quote */
  .pull-quote p { font-size: 24px; }
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);

  background: var(--glass-bg);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

@media (max-width: 480px) {
  h1, .h1 { font-size: 40px; }
  h2, .h2 { font-size: 32px; }
  .page-hero h1 { font-size: 36px; }
  .hero { padding-top: calc(var(--nav-height-mob) + 20px); }
}

.emoji-icon {
  width: 1.2em;
  height: 1.2em;
  display: inline-block;
  vertical-align: text-bottom;
  margin-right: 4px;
}

.feature-card__icon .emoji-icon {
  width: 32px;
  height: 32px;
  color: var(--text-primary);
  margin-right: 0;
}

/* Rich Text for Legal Pages */
.rich-text {
  max-width: 800px;
  margin: 0 auto;
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 16px;
}

.rich-text h3 {
  color: var(--text-primary);
  margin-top: 48px;
  margin-bottom: 16px;
  font-size: 24px;
}

.rich-text p {
  margin-bottom: 24px;
}


/* Custom Cursor & Glow */
.hero__bg { overflow: hidden; }



.custom-cursor { position: fixed; top: 0; left: 0; width: 12px; height: 12px; background: #FFFFFF; border-radius: 50%; pointer-events: none; z-index: 99999; transform: translate(-50%, -50%); mix-blend-mode: difference; transition: width 0.2s, height 0.2s, background 0.2s; will-change: left, top; }
.custom-cursor.hovering { width: 40px; height: 40px; background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.5); mix-blend-mode: normal; backdrop-filter: blur(4px); }
@media (max-width: 768px) { body, a, button, input, select, textarea { cursor: auto; } .custom-cursor { display: none; }  }
 100% { transform: translate(-50%, -70%) scale(1.2); } }

/* =============================================
   Custom Cursor & Ambient Glow
   ============================================= */


@media (max-width: 768px) {
  
}


  100% { transform: translate(-50%, -70%) scale(1.2); }
}





/* =============================================
   Premium Tactile 3D Hover Effects
   ============================================= */
.service-card, .feature-card, .mv-card, .process__step, .portfolio-card, .founder-card {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
  will-change: transform, box-shadow;
}

.service-card:hover, .feature-card:hover, .mv-card:hover, .process__step:hover, .portfolio-card:hover, .founder-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.15) inset;
  border-color: transparent;
}

/* =============================================
   Scrolling Marquee
   ============================================= */
.marquee {
  width: 100%;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 24px 0;
  display: flex;
  white-space: nowrap;
}

.marquee-content {
  display: inline-flex;
  animation: scrollMarquee 40s linear infinite;
}

.marquee-content span {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-secondary);
  padding: 0 40px;
}

@keyframes scrollMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

