/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  background: #0E0E0E;
  color: #E6E6E6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { border: none; background: none; cursor: pointer; font-family: inherit; color: inherit; }
::selection { background: rgba(0,168,159,.3); color: #fff; }

/* ===== NOISE ===== */
.noise-overlay {
  position: fixed; inset: 0; z-index: 9998; pointer-events: none;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: .35;
}

/* ===== CURSOR ===== */
.cursor-dot {
  width: 8px; height: 8px; background: #00A89F; border-radius: 50%;
  position: fixed; top: 0; left: 0; pointer-events: none; z-index: 10000;
  mix-blend-mode: difference;
}
.cursor-ring {
  width: 40px; height: 40px; border: 1.5px solid rgba(0,168,159,.35); border-radius: 50%;
  position: fixed; top: 0; left: 0; pointer-events: none; z-index: 10000;
  transition: width .3s, height .3s, border-color .3s, background .3s;
}
.cursor-ring.hover { width: 64px; height: 64px; border-color: #00A89F; background: rgba(0,168,159,.06); }

/* ===== LOADER ===== */
.loader {
  position: fixed; inset: 0; z-index: 9999;
  background: #0E0E0E;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 28px;
  transition: opacity .8s cubic-bezier(.4,0,.2,1), visibility .8s;
}
.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-logo {
  width: 80px; height: 80px; object-fit: contain;
  filter: invert(1) drop-shadow(0 0 30px rgba(0,168,159,.4));
  animation: loaderFloat 2.5s ease-in-out infinite;
}
.loader-bar { width: 180px; height: 2px; background: #1a1a1a; border-radius: 2px; overflow: hidden; }
.loader-bar span { display: block; height: 100%; width: 0; background: linear-gradient(90deg, #00A89F, #00A89F); border-radius: 2px; }
.loader-text {
  font-family: 'Outfit', sans-serif; font-size: .65rem;
  letter-spacing: 5px; text-transform: uppercase; color: #444;
}
@keyframes loaderFloat {
  0%, 100% { transform: translateY(0) scale(1); filter: invert(1) drop-shadow(0 0 30px rgba(0,168,159,.4)); }
  50% { transform: translateY(-10px) scale(1.05); filter: invert(1) drop-shadow(0 0 50px rgba(0,168,159,.6)); }
}

/* ===== NAV ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 24px 48px;
  display: flex; align-items: center; justify-content: space-between;
  transition: padding .4s, background .4s, backdrop-filter .4s;
}
.nav.scrolled {
  padding: 14px 48px;
  background: rgba(14,14,14,.85); backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,168,159,.06);
}
.nav-logo { height: 30px; filter: brightness(0) invert(1); transition: transform .3s; }
.nav-logo:hover { transform: scale(1.05); }
.nav-links { display: flex; gap: 36px; }
.nav-links a {
  font-size: .72rem; font-weight: 500; letter-spacing: 2.5px; text-transform: uppercase;
  position: relative; padding-bottom: 4px; color: rgba(230,230,230,.6);
  transition: color .3s;
}
.nav-links a:hover { color: #E6E6E6; }
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background: #00A89F;
  transition: width .4s cubic-bezier(.4,0,.2,1);
}
.nav-links a:hover::after { width: 100%; }
.hamburger { display: none; flex-direction: column; gap: 6px; cursor: pointer; }
.hamburger span { display: block; width: 28px; height: 2px; background: #fff; transition: .3s; }
.mobile-menu {
  position: fixed; inset: 0; z-index: 999;
  background: rgba(14,14,14,.97); backdrop-filter: blur(30px);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 36px;
  opacity: 0; visibility: hidden; transition: .4s;
}
.mobile-menu.active { opacity: 1; visibility: visible; }
.mobile-menu a {
  font-family: 'Outfit', sans-serif;
  font-size: 2.5rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  opacity: .6; transition: opacity .3s;
}
.mobile-menu a:hover { opacity: 1; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.hero-canvas { position: absolute; inset: 0; z-index: 0; }
.hero-bg-text {
  position: absolute; z-index: 1;
  font-family: 'Outfit', sans-serif;
  font-size: clamp(18rem, 28vw, 35rem);
  font-weight: 900; letter-spacing: -12px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(0,168,159,.04);
  user-select: none; pointer-events: none; white-space: nowrap;
}
.hero-content { position: relative; z-index: 2; text-align: center; padding: 0 24px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(0,168,159,.08); border: 1px solid rgba(0,168,159,.15);
  border-radius: 40px; padding: 10px 24px; margin-bottom: 36px;
  font-size: .7rem; letter-spacing: 3px; text-transform: uppercase; color: #00A89F;
}
.hero-badge span {
  width: 6px; height: 6px; background: #00A89F; border-radius: 50%;
  animation: pulse 2s infinite;
}
.split-text .line { overflow: hidden; display: block; }
.split-text .line span { display: inline-block; }
.hero h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(3.2rem, 8.5vw, 8.5rem);
  font-weight: 800; line-height: .95;
  letter-spacing: -4px; margin-bottom: 28px;
}
.hero h1 .gradient {
  background: linear-gradient(135deg, #00A89F 0%, #00A89F 50%, #00c9be 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero h1 .thin { font-weight: 300; color: rgba(230,230,230,.5); }
.hero-sub {
  font-size: clamp(.95rem, 1.4vw, 1.15rem);
  color: rgba(150,150,150,.8); max-width: 520px; margin: 0 auto 44px; line-height: 1.8;
  font-weight: 300;
}
.hero-cta {
  display: inline-flex; align-items: center; gap: 12px;
  background: linear-gradient(135deg, #00A89F, #00A89F);
  color: #0E0E0E; padding: 18px 44px; border-radius: 60px;
  font-size: .8rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  position: relative; overflow: hidden;
  transition: box-shadow .3s;
}
.hero-cta::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, #00A89F, #00c9be);
  opacity: 0; transition: opacity .4s;
}
.hero-cta:hover::before { opacity: 1; }
.hero-cta:hover { box-shadow: 0 8px 40px rgba(0,168,159,.35); }
.hero-cta span, .hero-cta svg { position: relative; z-index: 1; }
.hero-cta svg { width: 16px; height: 16px; }
.scroll-indicator {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px; z-index: 2;
}
.scroll-indicator span { font-size: .6rem; letter-spacing: 4px; text-transform: uppercase; color: #444; }
.scroll-line { width: 1px; height: 48px; background: #1c1c1c; position: relative; overflow: hidden; }
.scroll-line::after {
  content: ''; position: absolute; top: -100%; left: 0;
  width: 100%; height: 100%; background: linear-gradient(to bottom, transparent, #00A89F);
  animation: scrollDown 2.5s ease infinite;
}

/* ===== MARQUEE ===== */
.marquee {
  padding: 24px 0;
  border-top: 1px solid rgba(0,168,159,.06); border-bottom: 1px solid rgba(0,168,159,.06);
  overflow: hidden; white-space: nowrap;
  background: rgba(0,168,159,.02);
}
.marquee-track { display: flex; gap: 56px; }
.marquee-item {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem; font-weight: 600; letter-spacing: 4px; text-transform: uppercase;
  color: rgba(255,255,255,.12); flex-shrink: 0;
  display: flex; align-items: center; gap: 20px;
  transition: color .3s;
}
.marquee-item:hover { color: rgba(0,168,159,.4); }
.marquee-item .dot { width: 5px; height: 5px; background: #00A89F; border-radius: 50%; }

/* ===== SECTION COMMON ===== */
section { padding: 140px 48px; position: relative; }
.section-label {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-size: .65rem; letter-spacing: 4px; text-transform: uppercase; color: #00A89F;
  margin-bottom: 20px; font-weight: 500;
}
.section-label::before { content: ''; width: 28px; height: 1px; background: linear-gradient(90deg, #00A89F, transparent); }
.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700; line-height: 1.1; letter-spacing: -1.5px; margin-bottom: 20px;
}
.section-desc { color: rgba(150,150,150,.8); max-width: 480px; line-height: 1.8; font-size: .9rem; font-weight: 300; }

/* ===== ABOUT ===== */
.about { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-visual { position: relative; }
.about-img {
  border-radius: 20px; overflow: hidden; position: relative; aspect-ratio: 7/6;
  background: linear-gradient(160deg, #00A89F 0%, #00A89F 40%, #0a0a2e 100%);
  display: flex; align-items: center; justify-content: center;
}
.about-img .swan-logo { width: 55%; opacity: .2; filter: invert(1); }
.about-float {
  position: absolute; bottom: -28px; right: -28px;
  background: rgba(10,10,20,.9); backdrop-filter: blur(20px);
  border: 1px solid rgba(0,168,159,.12); border-radius: 16px; padding: 28px 32px;
}
.about-float-number { font-family: 'Outfit', sans-serif; font-size: 2.5rem; font-weight: 800; color: #00A89F; }
.about-float-text { font-size: .7rem; color: #666; letter-spacing: 2px; text-transform: uppercase; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 44px; }
.stat {
  background: rgba(22,22,22,.4); border: 1px solid rgba(255,255,255,.04);
  border-radius: 14px; padding: 28px;
  transition: border-color .4s, transform .4s, background .4s;
}
.stat:hover { border-color: rgba(0,168,159,.2); transform: translateY(-4px); background: rgba(0,168,159,.04); }
.stat-num { font-family: 'Outfit', sans-serif; font-size: 2rem; font-weight: 700; color: #00A89F; }
.stat-label { font-size: .7rem; color: #666; letter-spacing: 1.5px; text-transform: uppercase; margin-top: 6px; }

/* ===== SERVICES ===== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px; }
.service-card {
  background: rgba(18,18,18,.6); border: 1px solid rgba(255,255,255,.04);
  border-radius: 18px; padding: 44px 32px;
  transition: border-color .4s, transform .4s, background .4s;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute;
  width: 250px; height: 250px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,168,159,.1), transparent 70%);
  left: var(--glow-x, 50%); top: var(--glow-y, 50%);
  transform: translate(-50%, -50%);
  opacity: 0; transition: opacity .4s; pointer-events: none;
}
.service-card:hover::before { opacity: 1; }
.service-card:hover {
  border-color: rgba(0,168,159,.2); transform: translateY(-8px);
  background: rgba(0,168,159,.03);
}
.service-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, rgba(0,168,159,.12), rgba(0,168,159,.08));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px; color: #00A89F; font-size: 1.2rem;
  position: relative; z-index: 1;
}
.service-card h3 {
  font-family: 'Outfit', sans-serif; font-size: 1.15rem; font-weight: 600;
  margin-bottom: 12px; position: relative; z-index: 1;
}
.service-card p { color: rgba(150,150,150,.7); font-size: .84rem; line-height: 1.75; position: relative; z-index: 1; }

/* ===== PROJECTS ===== */
.projects-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 56px; }
.project-card {
  border-radius: 18px; overflow: hidden; position: relative; cursor: pointer;
  border: 1px solid rgba(255,255,255,.04); transition: border-color .4s;
  background: rgba(18,18,18,.4);
}
.project-card:hover { border-color: rgba(0,168,159,.2); }
.project-img { aspect-ratio: 3/2; overflow: hidden; background: #0a0a15; }
.project-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.4,0,.2,1), filter .6s; filter: saturate(.85); }
.project-card:hover .project-img img { transform: scale(1.08); filter: saturate(1); }
.project-info { padding: 28px 28px 32px; }
.project-tag { font-size: .6rem; letter-spacing: 3px; text-transform: uppercase; color: #00A89F; margin-bottom: 10px; font-weight: 500; }
.project-info h3 { font-family: 'Outfit', sans-serif; font-size: 1.2rem; font-weight: 600; margin-bottom: 8px; }
.project-info p { color: rgba(150,150,150,.7); font-size: .82rem; line-height: 1.65; }

/* ===== PROCESS ===== */
.process-timeline { display: flex; gap: 0; margin-top: 64px; position: relative; }
.process-timeline::before {
  content: ''; position: absolute; top: 40px; left: 40px; right: 40px;
  height: 1px; background: linear-gradient(90deg, transparent, rgba(0,168,159,.15), transparent);
}
.process-step { flex: 1; text-align: center; padding: 0 20px; position: relative; }
.process-num {
  width: 80px; height: 80px;
  background: rgba(18,18,18,.8); border: 1px solid rgba(255,255,255,.05); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 28px;
  font-family: 'Outfit', sans-serif; font-size: 1.4rem; font-weight: 700; color: #00A89F;
  position: relative; z-index: 1;
  transition: border-color .4s, transform .4s, box-shadow .4s, background .4s;
}
.process-step:hover .process-num {
  border-color: rgba(0,168,159,.3); transform: scale(1.12);
  box-shadow: 0 0 40px rgba(0,168,159,.15);
  background: rgba(0,168,159,.06);
}
.process-step h3 { font-family: 'Outfit', sans-serif; font-size: 1.05rem; font-weight: 600; margin-bottom: 10px; }
.process-step p { color: rgba(150,150,150,.7); font-size: .8rem; line-height: 1.65; }

/* ===== TESTIMONIALS ===== */
.testimonials-wrapper { margin-top: 56px; }
.testimonial-card {
  background: rgba(18,18,18,.5); border: 1px solid rgba(255,255,255,.04);
  border-radius: 20px; padding: 56px; max-width: 700px; margin: 0 auto; text-align: center;
  position: relative;
}
.testimonial-card::before {
  content: '"'; position: absolute; top: 20px; left: 40px;
  font-family: 'Outfit', sans-serif; font-size: 6rem; font-weight: 800;
  color: rgba(0,168,159,.08); line-height: 1;
}
.testimonial-card blockquote { font-size: 1.15rem; line-height: 1.85; font-style: italic; color: rgba(200,200,200,.85); margin-bottom: 28px; }
.testimonial-author { display: flex; align-items: center; justify-content: center; gap: 16px; }
.testimonial-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, #00A89F, #00A89F);
  display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: .85rem;
}
.testimonial-name { font-weight: 600; }
.testimonial-role { font-size: .75rem; color: #666; }

/* ===== CONTACT ===== */
.contact { text-align: center; }
.contact-form { max-width: 540px; margin: 48px auto 0; display: flex; flex-direction: column; gap: 14px; }
.form-row { display: flex; gap: 14px; }
.form-field {
  flex: 1; background: rgba(18,18,18,.5); border: 1px solid rgba(255,255,255,.04); border-radius: 14px;
  padding: 18px 22px; font-family: inherit; font-size: .88rem; color: #E6E6E6;
  transition: border-color .3s, background .3s; outline: none;
}
.form-field:focus { border-color: rgba(0,168,159,.3); background: rgba(0,168,159,.03); }
textarea.form-field { min-height: 140px; resize: vertical; }
.submit-btn {
  background: linear-gradient(135deg, #00A89F, #00A89F); color: #0E0E0E;
  padding: 18px 44px; border-radius: 60px;
  font-size: .8rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  cursor: pointer; border: none; font-family: inherit;
  transition: box-shadow .3s, transform .3s;
}
.submit-btn:hover { box-shadow: 0 8px 40px rgba(0,168,159,.3); transform: translateY(-2px); }

/* ===== FOOTER ===== */
.footer {
  padding: 48px; border-top: 1px solid rgba(255,255,255,.04);
  display: flex; align-items: center; justify-content: space-between;
}
.footer-logo { height: 22px; filter: brightness(0) invert(1); opacity: .35; }
.footer p { font-size: .75rem; color: #444; }
.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
  width: 38px; height: 38px; border: 1px solid rgba(255,255,255,.06); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem; color: #555; transition: all .3s;
}
.footer-socials a:hover { border-color: rgba(0,168,159,.3); color: #00A89F; background: rgba(0,168,159,.05); }

/* ===== KEYFRAMES ===== */
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .3; } }
@keyframes scrollDown { 0% { top: -100%; } 100% { top: 100%; } }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  section { padding: 100px 32px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .process-timeline { flex-wrap: wrap; }
  .process-step { flex: 0 0 50%; margin-bottom: 40px; }
}
@media (max-width: 768px) {
  section { padding: 72px 20px; }
  .nav { padding: 16px 20px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .about { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .process-step { flex: 0 0 100%; }
  .form-row { flex-direction: column; }
  .footer { flex-direction: column; gap: 24px; text-align: center; }
  .cursor-dot, .cursor-ring { display: none; }
  .hero h1 { letter-spacing: -2px; }
  .hero-bg-text { font-size: 10rem; }
}
