/* ============================================================
   FADALO CREATIVE STUDIO — Landing Page Stylesheet
   ============================================================ */

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --accent:    #C8F135;
  --accent2:   #a8d820;
  --bg:        #0a0a0a;
  --bg2:       #111111;
  --bg3:       #161616;
  --card:      #141414;
  --border:    rgba(255,255,255,.07);
  --text:      #e8e8e8;
  --muted:     #888;
  --font:      'Inter', sans-serif;
  --easing:    cubic-bezier(.22,.68,0,1.2);
  --ease:      cubic-bezier(.4,0,.2,1);
}
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  cursor: none;
}
a { text-decoration: none; color: inherit; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
ul { list-style: none; }
.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.accent { color: var(--accent); }

/* ---------- LOGO IMAGE (PNG) ---------- */
.logo-img {
  display: block; object-fit: contain;
  height: auto; filter: brightness(1);
}
.logo-img--xs { width: 130px; }
.logo-img--sm { width: 160px; }
.logo-img--md { width: 220px; }
.logo-img--lg { width: 300px; }
.logo-img--xl { width: 380px; }

/* ---------- LOGO MARK ---------- */
.logo-mark {
  display: inline-flex; flex-direction: column;
  gap: 3px; line-height: 1; user-select: none;
}
.lm-word {
  position: relative; display: inline-block;
  font-family: 'Nunito', 'Inter', sans-serif;
  font-weight: 900; font-size: var(--lm-size, 2.4rem);
  color: #fff; letter-spacing: -0.03em; line-height: 1;
}
.lm-sub {
  font-family: 'Nunito', 'Inter', sans-serif;
  font-size: calc(var(--lm-size, 2.4rem) * 0.195);
  font-weight: 700; letter-spacing: 0.22em;
  color: var(--accent); text-transform: uppercase;
}
/* Two-part accent mark: dark block + lime parallelogram */
.lm-acc {
  position: absolute;
  bottom: 0.06em;
  display: inline-flex;
  align-items: flex-end;
  pointer-events: none;
  gap: 0;
}
/* Dark block — blends with dark bg, visible on light bg */
.lm-acc b {
  display: block;
  width: 0.20em; height: 0.64em;
  background: #0c0c0c;
  clip-path: polygon(6% 0%, 100% 0%, 94% 100%, 0% 100%);
  font-weight: normal;
}
/* Lime parallelogram — always visible */
.lm-acc i {
  display: block;
  font-style: normal; font-weight: normal;
  width: 0.18em; height: 0.58em;
  background: var(--accent);
  clip-path: polygon(24% 0%, 100% 0%, 76% 100%, 0% 100%);
  margin-left: -0.06em;
  margin-bottom: 0.03em;
}
/* Accent 1: on first 'a' */
.lm-acc-1 { left: 1.05em; }
/* Accent 2: on 'o' */
.lm-acc-2 { left: 3.16em; }

/* Size modifiers */
.logo-mark--xs { --lm-size: 1.15rem; }
.logo-mark--sm { --lm-size: 1.55rem; }
.logo-mark--md { --lm-size: 2.0rem; }
.logo-mark--lg { --lm-size: 3.2rem; }

/* ---------- SCROLLBAR ---------- */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 2px; }

/* ---------- CURSOR ---------- */
.cursor, .cursor-follower {
  position: fixed; border-radius: 50%; pointer-events: none;
  z-index: 9999; mix-blend-mode: difference; transition: opacity .3s;
}
.cursor {
  width: 10px; height: 10px; background: var(--accent);
  transform: translate(-50%,-50%);
}
.cursor-follower {
  width: 36px; height: 36px; border: 1.5px solid rgba(200,241,53,.5);
  transform: translate(-50%,-50%); transition: transform .12s var(--ease);
}
body:not(:hover) .cursor, body:not(:hover) .cursor-follower { opacity: 0; }

/* ---------- LOADER ---------- */
.loader {
  position: fixed; inset: 0; background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  z-index: 10000; transition: opacity .6s var(--ease), visibility .6s;
}
.loader.hidden { opacity: 0; visibility: hidden; }
.loader-inner { display: flex; flex-direction: column; align-items: center; gap: 24px; }
/* loader-logo removed — using .logo-mark now */
.loader-bar {
  width: 200px; height: 2px; background: rgba(255,255,255,.1);
  border-radius: 1px; overflow: hidden;
}
.loader-progress {
  height: 100%; width: 0; background: var(--accent);
  border-radius: 1px; transition: width .05s linear;
}

/* ---------- REVEAL ANIMATIONS ---------- */
.reveal-up, .reveal-right {
  opacity: 0; transform: translateY(40px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal-right { transform: translateX(60px); }
.reveal-up.visible, .reveal-right.visible { opacity: 1; transform: none; }

/* ---------- SECTION SHARED ---------- */
.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .72rem; font-weight: 700; letter-spacing: .12em;
  color: var(--accent); text-transform: uppercase; margin-bottom: 16px;
}
.section-tag::before {
  content: ''; display: block; width: 20px; height: 1.5px; background: var(--accent);
}
.section-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 800; line-height: 1.2;
  margin-bottom: 24px;
}

/* ---------- BUTTONS ---------- */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px; background: var(--accent); color: #0a0a0a;
  font-weight: 700; font-size: .9rem; border-radius: 8px;
  border: none; cursor: none; transition: transform .2s var(--ease), box-shadow .2s;
  position: relative; overflow: hidden;
}
.btn-primary::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,.15);
  transform: translateX(-100%) skewX(-15deg);
  transition: transform .4s var(--ease);
}
.btn-primary:hover::after { transform: translateX(120%) skewX(-15deg); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(200,241,53,.35); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px; background: transparent;
  border: 1.5px solid rgba(200,241,53,.4); color: var(--text);
  font-weight: 600; font-size: .9rem; border-radius: 8px;
  cursor: none; transition: all .2s var(--ease);
}
.btn-outline:hover {
  border-color: var(--accent); color: var(--accent);
  background: rgba(200,241,53,.06); transform: translateY(-2px);
}
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: .9rem; color: var(--accent);
  cursor: none; transition: gap .2s;
}
.btn-ghost:hover { gap: 14px; }
.btn-consult {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px; background: var(--accent); color: #0a0a0a;
  font-weight: 700; font-size: .82rem; border-radius: 6px;
  cursor: none; transition: transform .2s, box-shadow .2s;
  white-space: nowrap;
}
.btn-consult:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,241,53,.3); }

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0; transition: background .3s, box-shadow .3s, padding .3s;
}
.navbar.scrolled {
  background: rgba(10,10,10,.92); backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  display: flex; align-items: center; gap: 32px;
  max-width: 1240px; margin: 0 auto; padding: 20px 24px;
}
.nav-logo { display: inline-flex; align-items: center; line-height: 1; }
.nav-links { display: flex; gap: 4px; margin-left: auto; }
.nav-link {
  padding: 6px 14px; font-size: .85rem; font-weight: 500; color: var(--muted);
  border-radius: 4px; transition: color .2s, background .2s; position: relative;
}
.nav-link::after {
  content: ''; position: absolute; bottom: 0; left: 50%; right: 50%;
  height: 1.5px; background: var(--accent);
  transition: left .2s var(--ease), right .2s var(--ease);
}
.nav-link:hover, .nav-link.active { color: var(--text); }
.nav-link:hover::after, .nav-link.active::after { left: 14px; right: 14px; }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: none; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 1.5px; background: var(--text);
  transition: transform .3s, opacity .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ---------- HERO ---------- */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  padding: 120px 0 80px; overflow: hidden;
}
.hero-bg-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(200,241,53,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,241,53,.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-glow {
  position: absolute; border-radius: 50%; filter: blur(100px);
  pointer-events: none; opacity: .18;
}
.hero-glow-1 { width: 600px; height: 600px; background: var(--accent); top: -200px; left: -100px; }
.hero-glow-2 { width: 400px; height: 400px; background: #6af; bottom: -100px; right: 10%; }
.hero-particles { position: absolute; inset: 0; pointer-events: none; }
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: center; position: relative;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 14px; border: 1px solid rgba(200,241,53,.3);
  border-radius: 20px; font-size: .72rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: var(--accent);
  margin-bottom: 24px;
}
.tag-dot {
  width: 7px; height: 7px; background: var(--accent); border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(200,241,53,.6); }
  50% { box-shadow: 0 0 0 6px rgba(200,241,53,0); }
}
.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  line-height: 1.05; letter-spacing: .02em;
  margin-bottom: 20px; color: #fff;
}
.hero-accent { color: var(--accent); }
.hero-desc { font-size: .95rem; line-height: 1.7; color: var(--muted); max-width: 440px; margin-bottom: 32px; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-clients { }
.clients-label { font-size: .72rem; color: var(--muted); letter-spacing: .06em; text-transform: uppercase; margin-bottom: 12px; display: block; }
.clients-logos { display: flex; gap: 20px; flex-wrap: wrap; align-items: center; }
.client-logo {
  font-weight: 800; font-size: .8rem; letter-spacing: .04em;
  color: rgba(255,255,255,.35); text-transform: uppercase;
  transition: color .2s;
}
.client-logo:hover { color: rgba(255,255,255,.7); }

/* Hero Cards */
.hero-cards {
  position: relative; height: 380px;
}
.hero-card {
  position: absolute; border-radius: 14px; overflow: hidden;
  background: var(--card); border: 1px solid var(--border);
  transition: transform .4s var(--ease), box-shadow .4s;
}
.hero-card:hover { transform: scale(1.04) translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,.6); }
.hero-card .card-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(0,0,0,.8) 0%, transparent 60%);
}
.hero-card .card-label {
  position: absolute; bottom: 12px; left: 14px; z-index: 2;
  font-size: .72rem; font-weight: 700; color: #fff;
  display: flex; align-items: center; gap: 6px; text-transform: uppercase;
  letter-spacing: .06em;
}
.hero-card .card-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 42px; height: 42px; background: rgba(200,241,53,.9);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: #0a0a0a; font-size: .8rem; z-index: 2; opacity: 0;
  transition: opacity .3s;
}
.hero-card:hover .card-play { opacity: 1; }
.card-main    { width: 320px; aspect-ratio: 19/8; top: 0;      left: 0;    background: linear-gradient(135deg,#1a1f0a,#2d3a0e); animation: floatCard1 6s ease-in-out infinite; }
.card-branding{ width: 244px; aspect-ratio: 17/9; top: 80px;   right: 0;   background: linear-gradient(135deg,#1a0a0f,#3a0e1a); animation: floatCard2 7s ease-in-out infinite; }
.card-motion  { width: 349px; aspect-ratio: 20/13; top: 200px;  left: 10px; background: linear-gradient(135deg,#0a101a,#0e1e3a); animation: floatCard3 5.5s ease-in-out infinite; }
.card-video   { width: 300px; aspect-ratio: 18/9; bottom: 0;   right: 0;   background: linear-gradient(135deg,#1a0f0a,#3a200e); animation: floatCard4 6.5s ease-in-out infinite; }
@keyframes floatCard1 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-14px)} }
@keyframes floatCard2 { 0%,100%{transform:translateY(-8px)} 50%{transform:translateY(6px)} }
@keyframes floatCard3 { 0%,100%{transform:translateY(4px)} 50%{transform:translateY(-10px)} }
@keyframes floatCard4 { 0%,100%{transform:translateY(-4px)} 50%{transform:translateY(10px)} }
.hero-logo-float {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  background: rgba(10,10,10,.85); backdrop-filter: blur(10px);
  border: 1px solid var(--border); border-radius: 12px;
  padding: 12px 18px; text-align: center; z-index: 10;
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  animation: floatCenter 4s ease-in-out infinite;
}
/* hero-logo-float inner text handled by .logo-mark */
@keyframes floatCenter { 0%,100%{transform:translate(-50%,-50%) translateY(0)} 50%{transform:translate(-50%,-50%) translateY(-8px)} }
.hero-scroll-hint {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: .68rem; letter-spacing: .12em; color: var(--muted); text-transform: uppercase;
}
.scroll-line {
  width: 1.5px; height: 40px; background: linear-gradient(to bottom, var(--muted), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine { 0%{transform:scaleY(0);transform-origin:top} 50%{transform:scaleY(1);transform-origin:top} 50.01%{transform-origin:bottom} 100%{transform:scaleY(0);transform-origin:bottom} }

/* ---------- STATS ---------- */
.stats-section {
  padding: 80px 0; border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: grid; grid-template-columns: 280px 1fr; gap: 64px; align-items: start;
}
.stats-desc { font-size: .95rem; line-height: 1.7; color: var(--muted); margin-bottom: 24px; }
.stats-right {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 16px;
}
.stat-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 14px; padding: 24px 20px; text-align: center;
  transition: border-color .3s, transform .3s var(--ease), box-shadow .3s;
  position: relative; overflow: hidden;
}
.stat-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(200,241,53,.06) 0%, transparent 70%);
  opacity: 0; transition: opacity .3s;
}
.stat-card:hover { border-color: rgba(200,241,53,.3); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,.4); }
.stat-card:hover::before { opacity: 1; }
.stat-icon { font-size: 1.4rem; color: var(--accent); margin-bottom: 12px; display: block; }
.stat-num {
  font-family: 'Bebas Neue', sans-serif; font-size: 3rem; color: #fff;
  line-height: 1; display: inline;
}
.stat-plus { display: inline; font-family: 'Bebas Neue', sans-serif; font-size: 2rem; color: var(--accent); }
.stat-label { font-size: .78rem; color: var(--muted); margin-top: 6px; }

/* ---------- SERVICES ---------- */
.services-section {
  padding: 100px 0; position: relative; overflow: hidden;
}
.services-glow {
  position: absolute; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(200,241,53,.05) 0%, transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  pointer-events: none;
}
.section-header { text-align: center; margin-bottom: 56px; }
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(120px,1fr));
  gap: 12px;
}
.service-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 14px; padding: 22px 14px;
  transition: border-color .3s, transform .3s var(--ease), box-shadow .3s;
  position: relative; overflow: hidden; cursor: none;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  text-align: center;
}
.service-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 100%;
  height: 2px; background: var(--accent);
  transition: right .3s var(--ease);
}
.service-card:hover::after { right: 0; }
.service-card:hover { border-color: rgba(200,241,53,.2); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,.4); }
.service-icon-wrap {
  width: 44px; height: 44px; background: rgba(200,241,53,.1);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  color: var(--accent); font-size: 1.1rem;
  transition: background .3s, transform .3s var(--ease);
}
.service-card:hover .service-icon-wrap { background: rgba(200,241,53,.2); transform: scale(1.1); }
.service-card h3 { font-size: .78rem; font-weight: 700; color: #fff; line-height: 1.3; }
.service-card p { display: none; }
.service-arrow { display: none; }

/* ---------- PORTFOLIO ---------- */
.portfolio-section { padding: 100px 0; }
.portfolio-filter {
  display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 40px; justify-content: center;
}
.filter-btn {
  padding: 8px 18px; background: var(--card); border: 1px solid var(--border);
  border-radius: 20px; color: var(--muted); font-size: .8rem; font-weight: 600;
  cursor: none; transition: all .2s var(--ease);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--accent); border-color: var(--accent);
  color: #0a0a0a;
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  grid-template-rows: auto;
  gap: 16px;
}
.portfolio-item { position: relative; border-radius: 14px; overflow: hidden; cursor: none; }
.portfolio-item-wide { grid-column: span 2; }
.portfolio-item.hidden { display: none; }
.portfolio-img-wrap {
  position: relative; aspect-ratio: 4/3; overflow: hidden;
}
.portfolio-item-wide .portfolio-img-wrap { aspect-ratio: 16/9; }
.portfolio-img-wrap img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .5s var(--ease);
}
.portfolio-item:hover .portfolio-img-wrap img { transform: scale(1.06); }
.portfolio-placeholder {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem; color: rgba(200,241,53,.3);
  transition: transform .4s var(--ease);
}
.portfolio-item:hover .portfolio-placeholder { transform: scale(1.05); }
.portfolio-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.9) 0%, rgba(0,0,0,.2) 60%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 20px; opacity: 0; transition: opacity .3s;
  gap: 4px;
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-cat { font-size: .68rem; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: .1em; }
.portfolio-overlay h4 { font-size: .9rem; color: #fff; font-weight: 700; }
.portfolio-link {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px; background: var(--accent);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: #0a0a0a; font-size: .8rem;
  transform: scale(0); transition: transform .3s var(--easing);
}
.portfolio-item:hover .portfolio-link { transform: scale(1); }
.portfolio-more { text-align: center; margin-top: 40px; }

/* ---------- WHY CHOOSE US ---------- */
.why-section { padding: 100px 0; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.why-features { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 8px; }
.why-feature { display: flex; gap: 14px; align-items: flex-start; }
.why-icon {
  width: 40px; height: 40px; background: rgba(200,241,53,.1);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  color: var(--accent); font-size: 1rem; flex-shrink: 0;
  transition: background .3s, transform .3s var(--ease);
}
.why-feature:hover .why-icon { background: rgba(200,241,53,.2); transform: scale(1.1); }
.why-feature h4 { font-size: .88rem; font-weight: 700; margin-bottom: 4px; }
.why-feature p { font-size: .78rem; color: var(--muted); }

/* ---------- TESTIMONIALS ---------- */
.why-right { display: flex; flex-direction: column; gap: 24px; }
.testimonials-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.testimonial-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 14px; padding: 24px;
  display: flex; flex-direction: column; gap: 12px;
}
.testimonial-quote { color: var(--accent); font-size: 1.2rem; opacity: .6; }
.testimonial-stars { color: #FFD700; font-size: .82rem; display: flex; gap: 3px; }
.testimonial-text { font-size: .82rem; line-height: 1.65; color: var(--text); font-style: italic; flex: 1; }
.testimonial-author { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.author-avatar {
  width: 36px; height: 36px; background: var(--accent);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: #0a0a0a; font-weight: 800; font-size: .7rem; flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: .8rem; }
.testimonial-author span { font-size: .72rem; color: var(--muted); }

/* ---------- FOUNDER ---------- */
.founder-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 14px; padding: 24px;
}
.founder-inner { display: flex; gap: 16px; align-items: flex-start; margin-top: 12px; }
.founder-photo { flex-shrink: 0; }
.founder-photo-placeholder {
  width: 70px; height: 70px; background: linear-gradient(135deg, #1e2d0a, #3a540e);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.1rem; color: var(--accent);
  border: 2px solid rgba(200,241,53,.2);
}
.founder-photo-img {
  width: 70px; height: 70px; border-radius: 12px;
  object-fit: cover; object-position: top;
  border: 2px solid rgba(200,241,53,.2);
}
.founder-info h4 { font-size: 1rem; font-weight: 800; margin-bottom: 2px; }
.founder-role { font-size: .72rem; color: var(--accent); font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }
.founder-info p { font-size: .8rem; color: var(--muted); line-height: 1.6; margin: 10px 0 8px; }
.founder-sig { font-family: Georgia, serif; font-size: .9rem; color: rgba(200,241,53,.7); }

/* ---------- CONTACT (combined CTA + Form + Visual) ---------- */
.contact-section {
  padding: 80px 0; position: relative; overflow: hidden;
  background: linear-gradient(135deg, #0d1802, #0a0a0a 50%, #020b18);
  border-top: 1px solid var(--border);
}
.contact-master-grid {
  display: grid; grid-template-columns: 1fr 1.4fr 1fr;
  gap: 48px; align-items: start;
  max-width: 1240px; margin: 0 auto; padding: 0 24px;
}

/* CTA Info Column */
.cta-info-col { position: relative; padding-top: 16px; }
.cta-bg-letter {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(9rem,13vw,15rem); line-height: 0.85;
  color: rgba(200,241,53,.06); position: absolute;
  top: -48px; left: -24px;
  user-select: none; pointer-events: none; z-index: 0;
}
.cta-main-heading {
  font-size: clamp(1.3rem, 2vw, 1.9rem); font-weight: 900; line-height: 1.2;
  position: relative; z-index: 1; margin-bottom: 20px;
}
.cta-detail-list {
  display: flex; flex-direction: column; gap: 10px;
  position: relative; z-index: 1;
}
.cta-detail-list a {
  font-size: .85rem; color: var(--muted);
  display: flex; align-items: center; gap: 10px; transition: color .2s;
}
.cta-detail-list a:hover { color: var(--accent); }
.cta-detail-list i { width: 16px; color: var(--accent); font-size: .8rem; }

/* Form Column */
.contact-form-col { position: relative; }
.contact-form { display: flex; flex-direction: column; gap: 12px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-group { position: relative; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; background: var(--card); border: 1px solid var(--border);
  border-radius: 8px; padding: 13px 16px; color: var(--text);
  font-family: var(--font); font-size: .88rem; outline: none;
  transition: border-color .2s, background .2s;
  -webkit-appearance: none;
}
.form-group select { cursor: none; }
.form-group select option { background: var(--bg2); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--muted); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: rgba(200,241,53,.4); background: rgba(200,241,53,.03); }
.form-group textarea { resize: vertical; }
.form-line { display: none; }
.form-submit { width: fit-content; margin-top: 4px; }
.form-success {
  display: none; flex-direction: column; align-items: center; gap: 12px;
  text-align: center; padding: 48px 24px; color: var(--accent);
}
.form-success.show { display: flex; }
.form-success i { font-size: 3rem; }
.form-success h4 { font-size: 1.2rem; font-weight: 800; color: #fff; }
.form-success p { color: var(--muted); }

/* Visual Column */
.contact-visual-col { align-self: stretch; min-height: 380px; }
.contact-img-placeholder {
  width: 100%; height: 100%; min-height: 380px; border-radius: 18px;
  background: linear-gradient(135deg, #0f1a03, #030c0a);
  border: 1px solid var(--border); display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.contact-img-placeholder::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(200,241,53,.08) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(0,100,200,.06) 0%, transparent 50%);
}
.contact-overlay-logo {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  z-index: 1; position: relative;
}
.contact-overlay-logo small { font-size: .6rem; letter-spacing: .15em; color: rgba(255,255,255,.25); text-transform: uppercase; }

/* ---------- FOOTER ---------- */
.footer { padding: 72px 0 0; border-top: 1px solid var(--border); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; }
.footer-brand p { font-size: .85rem; color: var(--muted); line-height: 1.7; margin: 16px 0 20px; max-width: 300px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 38px; height: 38px; background: var(--card); border: 1px solid var(--border);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-size: .9rem;
  transition: color .2s, border-color .2s, background .2s;
}
.footer-social a:hover { color: var(--accent); border-color: rgba(200,241,53,.3); background: rgba(200,241,53,.06); }
.footer-links-col h5 { font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 16px; color: #fff; }
.footer-links-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links-col a { font-size: .85rem; color: var(--muted); display: flex; align-items: center; gap: 8px; transition: color .2s, padding-left .2s; }
.footer-links-col a:hover { color: var(--accent); padding-left: 4px; }
.footer-bottom { border-top: 1px solid var(--border); padding: 20px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; }
.footer-bottom span { font-size: .78rem; color: var(--muted); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: .78rem; color: var(--muted); transition: color .2s; }
.footer-bottom-links a:hover { color: var(--accent); }

/* ---------- WHATSAPP FLOAT ---------- */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 900;
  background: #25D366; color: #fff;
  display: flex; align-items: center; gap: 10px;
  padding: 12px 18px; border-radius: 50px;
  font-size: .82rem; font-weight: 700; cursor: none;
  box-shadow: 0 8px 32px rgba(37,211,102,.35);
  transition: transform .2s var(--ease), box-shadow .2s;
  animation: waBounce 3s ease-in-out infinite;
}
@keyframes waBounce {
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-6px)}
}
.whatsapp-float:hover { transform: scale(1.05) translateY(-4px); box-shadow: 0 16px 48px rgba(37,211,102,.45); animation: none; }
.whatsapp-float i { font-size: 1.3rem; }

/* ---------- BACK TO TOP ---------- */
.back-to-top {
  position: fixed; bottom: 90px; right: 32px; z-index: 900;
  width: 40px; height: 40px; background: var(--card);
  border: 1px solid var(--border); border-radius: 8px;
  color: var(--text); font-size: .8rem; cursor: none;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(10px);
  transition: opacity .3s, transform .3s, border-color .2s, color .2s;
}
.back-to-top.visible { opacity: 1; transform: none; }
.back-to-top:hover { border-color: rgba(200,241,53,.4); color: var(--accent); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stats-grid { grid-template-columns: 1fr; }
  .stats-right { grid-template-columns: repeat(4,1fr); }
  .portfolio-grid { grid-template-columns: repeat(3,1fr); }
  .portfolio-item-wide { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: span 2; }
  .contact-master-grid { grid-template-columns: 1fr 1.4fr; }
  .contact-visual-col { display: none; }
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-cards { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .contact-master-grid { grid-template-columns: 1fr; }
  .cta-bg-letter { font-size: 6rem; top: -20px; left: -10px; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(10,10,10,.97); backdrop-filter: blur(20px);
    justify-content: center; align-items: center;
    z-index: 999; gap: 8px;
  }
  .nav-link { font-size: 1.4rem; padding: 12px 24px; }
  .btn-consult { display: none; }
  .hamburger { display: flex; z-index: 1000; }
  .testimonials-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-item-wide { grid-column: span 2; }
  .stats-right { grid-template-columns: repeat(2,1fr); }
  .why-features { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .hero-title { font-size: 2.6rem; }
  .footer-bottom-inner { flex-direction: column; gap: 12px; text-align: center; }
  .services-grid { grid-template-columns: repeat(auto-fill, minmax(100px,1fr)); }
}
@media (max-width: 420px) {
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-item-wide { grid-column: span 1; }
}

/* ---------- HOVER MAGNETIC EFFECT READY ---------- */
[data-magnetic] { transition: transform .25s var(--ease); }
