/* ============================================
   GB NAILS EMPIRE LLC — Bold Creative Design
   ============================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@500;600;700;800&display=swap');

/* --- CSS Custom Properties --- */
:root {
  --bg: #0B0914;
  --bg-alt: #131123;
  --bg-card: #1C1933;
  --text: #FFFFFF;
  --text-secondary: #C4B8E8;
  --text-muted: #8B7EB5;
  --pink: #DB2777;
  --blue: #2563EB;
  --amber: #F59E0B;
  --border: #2D2665;
  --font-body: 'Inter', sans-serif;
  --font-display: 'Plus Jakarta Sans', sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* --- Utility --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* --- Scroll Fade-In --- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Gradient Text --- */
.gradient-text {
  background: linear-gradient(135deg, var(--pink), var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-text-amber {
  background: linear-gradient(135deg, var(--amber), var(--pink));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* --- Outline Text --- */
.outline-text {
  color: transparent;
  -webkit-text-stroke: 2px var(--pink);
  text-stroke: 2px var(--pink);
  letter-spacing: -0.02em;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  border-radius: 9999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--pink), var(--blue));
  color: #fff;
  box-shadow: 0 0 40px rgba(219, 39, 119, 0.4), 0 0 80px rgba(37, 99, 235, 0.2);
}

.btn-primary:hover {
  box-shadow: 0 0 60px rgba(219, 39, 119, 0.6), 0 0 120px rgba(37, 99, 235, 0.3);
  transform: translateY(-2px);
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 2rem;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
  background: rgba(11, 9, 20, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.01em;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--pink), var(--blue));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 900;
  color: #fff;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--pink), var(--blue));
  border-radius: 2px;
  transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* --- Hamburger --- */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}

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

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

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

/* ============================================
   HERO
   ============================================ */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 2rem 4rem;
  background: linear-gradient(180deg, #0B0914 0%, #131123 40%, #0f0c25 100%);
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-shape {
  position: absolute;
  opacity: 0.08;
}

.hero-shape.shape-1 {
  width: 300px;
  height: 300px;
  background: var(--pink);
  border-radius: 50%;
  top: 15%;
  left: -5%;
  animation: floatSlow 12s ease-in-out infinite;
}

.hero-shape.shape-2 {
  width: 0;
  height: 0;
  border-left: 120px solid transparent;
  border-right: 120px solid transparent;
  border-bottom: 200px solid var(--blue);
  top: 40%;
  right: 8%;
  animation: floatSlow 15s ease-in-out 2s infinite reverse;
}

.hero-shape.shape-3 {
  width: 160px;
  height: 160px;
  background: var(--amber);
  transform: rotate(45deg);
  bottom: 20%;
  left: 55%;
  animation: floatSlow 18s ease-in-out 4s infinite;
}

@keyframes floatSlow {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-30px) rotate(5deg); }
  50% { transform: translateY(-15px) rotate(0deg); }
  75% { transform: translateY(-40px) rotate(-5deg); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 850px;
}

.hero-badge {
  display: inline-block;
  padding: 0.35rem 1.2rem;
  border-radius: 9999px;
  border: 1px solid var(--border);
  background: rgba(28, 25, 51, 0.6);
  backdrop-filter: blur(8px);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.hero-badge-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pink);
  margin-right: 8px;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}

.hero h1 .outline-text {
  display: block;
  font-size: clamp(3.5rem, 10vw, 7rem);
  -webkit-text-stroke: 2px var(--pink);
  text-stroke: 2px var(--pink);
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  font-weight: 600;
  margin-bottom: 2.5rem;
  background: linear-gradient(135deg, var(--text-secondary), var(--pink), var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--border);
  color: var(--text);
}

.btn-outline:hover {
  border-color: var(--pink);
  color: var(--pink);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: bounceDown 2s ease-in-out infinite;
  z-index: 2;
}

.hero-scroll-indicator span {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--pink), transparent);
}

@keyframes bounceDown {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* ============================================
   SECTION COMMON
   ============================================ */

.section {
  padding: 6rem 2rem;
  position: relative;
}

.section-label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--pink);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.7;
}

/* ============================================
   SERVICES — Hexagon Grid
   ============================================ */

.services {
  background: var(--bg-alt);
  position: relative;
  overflow: hidden;
}

.services::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 60px;
  background: linear-gradient(175deg, var(--bg) 50%, transparent 50%);
}

.services-header {
  text-align: center;
  margin-bottom: 4rem;
}

.hex-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1rem;
}

.hex-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.hex-row.offset {
  margin-top: -2.2rem;
  margin-left: 4.5rem;
}

.hex-item {
  width: 260px;
  height: 290px;
  clip-path: polygon(25% 6%, 75% 6%, 100% 50%, 75% 94%, 25% 94%, 0% 50%);
  background: var(--bg-card);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1.5rem;
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.hex-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  transition: height 0.4s ease;
}

.hex-item.pink::before { background: var(--pink); }
.hex-item.blue::before { background: var(--blue); }
.hex-item.amber::before { background: var(--amber); }

.hex-item:hover::before {
  height: 100%;
  opacity: 0.1;
}

.hex-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.hex-icon {
  font-size: 2.2rem;
  margin-bottom: 0.8rem;
  transition: transform 0.4s ease;
}

.hex-item:hover .hex-icon {
  transform: scale(1.15);
}

.hex-item h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.4rem;
  color: var(--text);
}

.hex-item p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ============================================
   ABOUT — Angled Section
   ============================================ */

.about {
  background: var(--bg);
  position: relative;
  overflow: visible;
  padding-top: 8rem;
}

.about::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 80px;
  background: linear-gradient(185deg, var(--bg-alt) 50%, transparent 50%);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.about-left {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.about-big-number {
  font-family: var(--font-display);
  font-size: 9rem;
  font-weight: 900;
  line-height: 0.8;
  background: linear-gradient(180deg, var(--pink), var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-big-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--text-secondary);
  padding-top: 1rem;
}

.about-right p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about-pull-text {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--pink);
  line-height: 1.4;
  padding-left: 1rem;
  border-left: 3px solid var(--pink);
  margin: 1.5rem 0;
}

/* Capability Highlights */
.about-capabilities {
  display: flex;
  gap: 3rem;
  max-width: 1200px;
  margin: 4rem auto 0;
  padding: 2rem 2rem 0;
  justify-content: center;
}

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

.cap-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
}

.cap-number.pink { color: var(--pink); }
.cap-number.blue { color: var(--blue); }
.cap-number.amber { color: var(--amber); }

.cap-divider {
  width: 40px;
  height: 3px;
  margin: 0.8rem auto;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--pink), var(--blue));
}

.cap-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ============================================
   APPROACH — Radial Visualization
   ============================================ */

.approach {
  background: var(--bg-alt);
  position: relative;
  overflow: hidden;
}

.approach::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 60px;
  background: linear-gradient(175deg, var(--bg) 50%, transparent 50%);
}

.approach-header {
  text-align: center;
  margin-bottom: 5rem;
}

.approach-radial {
  position: relative;
  width: 420px;
  height: 420px;
  margin: 0 auto 3rem;
}

.approach-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 110px;
  height: 110px;
  background: linear-gradient(135deg, var(--pink), var(--blue));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.9rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  box-shadow: 0 0 60px rgba(219, 39, 119, 0.3), 0 0 120px rgba(37, 99, 235, 0.15);
  z-index: 5;
}

.approach-node {
  position: absolute;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: all 0.4s ease;
  z-index: 3;
}

.approach-node::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 120px;
  background: linear-gradient(to center, var(--border), transparent);
  transform-origin: top left;
  z-index: 1;
}

.approach-node:hover {
  border-color: var(--pink);
  box-shadow: 0 0 40px rgba(219, 39, 119, 0.2);
  transform: scale(1.1);
}

.approach-node .step-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.8rem;
  line-height: 1;
  background: linear-gradient(135deg, var(--pink), var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.approach-node .step-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-secondary);
  margin-top: 2px;
}

/* Node positions */
.node-1 { top: 0; left: 50%; transform: translate(-50%, -50%); }
.node-2 { top: 50%; right: 0; transform: translate(50%, -50%); }
.node-3 { bottom: 0; left: 50%; transform: translate(-50%, 50%); }
.node-4 { top: 50%; left: 0; transform: translate(-50%, -50%); }

/* Connecting lines */
.radial-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

.radial-line {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 145px;
  height: 1px;
  background: var(--border);
  transform-origin: left center;
}

.radial-line.l1 { transform: rotate(-90deg); }
.radial-line.l2 { transform: rotate(0deg); }
.radial-line.l3 { transform: rotate(90deg); }
.radial-line.l4 { transform: rotate(180deg); }

/* Step descriptions below */
.approach-descriptions {
  display: flex;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}

.approach-desc-item {
  flex: 1;
  min-width: 180px;
  max-width: 220px;
  text-align: center;
}

.approach-desc-item .desc-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2rem;
  background: linear-gradient(135deg, var(--pink), var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.3rem;
}

.approach-desc-item h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
  color: var(--text);
}

.approach-desc-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ============================================
   TECH STACK — Creative Cloud
   ============================================ */

.tech-stack {
  background: var(--bg);
  position: relative;
  overflow: hidden;
  padding: 6rem 2rem;
}

.tech-stack::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 60px;
  background: linear-gradient(175deg, var(--bg-alt) 50%, transparent 50%);
}

.tech-header {
  text-align: center;
  margin-bottom: 4rem;
}

.cloud-container {
  position: relative;
  width: 100%;
  max-width: 900px;
  height: 450px;
  margin: 0 auto;
}

.cloud-tag {
  position: absolute;
  padding: 0.6rem 1.4rem;
  border-radius: 9999px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
  transition: all 0.3s ease;
  cursor: default;
}

.cloud-tag:hover {
  transform: scale(1.1);
  z-index: 10;
}

.cloud-tag.pink {
  background: rgba(219, 39, 119, 0.15);
  border: 1px solid rgba(219, 39, 119, 0.4);
  color: var(--pink);
}

.cloud-tag.blue {
  background: rgba(37, 99, 235, 0.15);
  border: 1px solid rgba(37, 99, 235, 0.4);
  color: var(--blue);
}

.cloud-tag.amber {
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.4);
  color: var(--amber);
}

/* Tag positions and animations */
.tag-1  { top: 15%; left: 35%; animation: cloudFloat 8s ease-in-out 0s infinite; }
.tag-2  { top: 25%; left: 55%; animation: cloudFloat 9s ease-in-out 1s infinite; }
.tag-3  { top: 10%; left: 20%; animation: cloudFloat 7.5s ease-in-out 2s infinite; }
.tag-4  { top: 35%; left: 40%; animation: cloudFloat 10s ease-in-out 3s infinite; }
.tag-5  { top: 20%; left: 65%; animation: cloudFloat 8.5s ease-in-out 1.5s infinite; }
.tag-6  { top: 40%; left: 70%; animation: cloudFloat 9.5s ease-in-out 0.5s infinite; }
.tag-7  { top: 30%; left: 15%; animation: cloudFloat 7s ease-in-out 2.5s infinite; }
.tag-8  { top: 50%; left: 25%; animation: cloudFloat 11s ease-in-out 3.5s infinite; }
.tag-9  { top: 45%; left: 50%; animation: cloudFloat 8s ease-in-out 4s infinite; }
.tag-10 { top: 55%; left: 60%; animation: cloudFloat 9s ease-in-out 2s infinite; }
.tag-11 { top: 15%; left: 75%; animation: cloudFloat 7.5s ease-in-out 1s infinite; }
.tag-12 { top: 60%; left: 40%; animation: cloudFloat 10s ease-in-out 3s infinite; }
.tag-13 { top: 50%; left: 75%; animation: cloudFloat 8.5s ease-in-out 0s infinite; }
.tag-14 { top: 35%; left: 80%; animation: cloudFloat 9s ease-in-out 2.5s infinite; }
.tag-15 { top: 65%; left: 30%; animation: cloudFloat 7s ease-in-out 1.5s infinite; }
.tag-16 { top: 70%; left: 55%; animation: cloudFloat 8s ease-in-out 3.5s infinite; }
.tag-17 { top: 5%;  left: 45%; animation: cloudFloat 9.5s ease-in-out 4s infinite; }
.tag-18 { top: 65%; left: 70%; animation: cloudFloat 7.5s ease-in-out 2s infinite; }

@keyframes cloudFloat {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(12px, -15px); }
  50% { transform: translate(-8px, -5px); }
  75% { transform: translate(5px, -20px); }
}

/* ============================================
   INDUSTRIES — Curved Arc Layout
   ============================================ */

.industries {
  background: var(--bg-alt);
  position: relative;
  overflow: hidden;
}

.industries::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 60px;
  background: linear-gradient(175deg, var(--bg) 50%, transparent 50%);
}

.industries-header {
  text-align: center;
  margin-bottom: 4rem;
}

.industries-arc {
  display: flex;
  justify-content: center;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
  padding: 0 1rem;
}

.industry-card {
  width: 250px;
  padding: 2rem 1.5rem;
  background: var(--bg-card);
  border-radius: 20px;
  border: 1px solid var(--border);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.industry-card:nth-child(1) { transform: rotate(-3deg) translateY(20px); }
.industry-card:nth-child(2) { transform: rotate(1.5deg) translateY(0); }
.industry-card:nth-child(3) { transform: rotate(-1.5deg) translateY(0); }
.industry-card:nth-child(4) { transform: rotate(3deg) translateY(20px); }

.industry-card:hover {
  transform: rotate(0deg) translateY(-12px) scale(1.05) !important;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  border-color: transparent;
  z-index: 10;
}

.industry-card:nth-child(1):hover { background: linear-gradient(155deg, var(--bg-card), rgba(219,39,119,0.12)); }
.industry-card:nth-child(2):hover { background: linear-gradient(155deg, var(--bg-card), rgba(37,99,235,0.12)); }
.industry-card:nth-child(3):hover { background: linear-gradient(155deg, var(--bg-card), rgba(245,158,11,0.12)); }
.industry-card:nth-child(4):hover { background: linear-gradient(155deg, var(--bg-card), rgba(219,39,119,0.12)); }

.industry-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.industry-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.industry-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ============================================
   CTA
   ============================================ */

.cta {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 60px;
  background: linear-gradient(175deg, var(--bg-alt) 50%, transparent 50%);
}

.cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  background: var(--bg-card);
  border-radius: 28px;
  padding: 4rem;
  position: relative;
  overflow: hidden;
}

.cta-inner::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 30px;
  padding: 2px;
  background: linear-gradient(135deg, var(--pink), var(--blue), var(--amber));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.cta-left {
  position: relative;
  z-index: 2;
}

.cta-left h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.cta-left p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.cta-right {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cta-contact-card {
  padding: 1.5rem;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: transform 0.3s ease;
}

.cta-contact-card:hover {
  transform: translateX(-5px);
}

.cta-contact-card.pink {
  background: rgba(219, 39, 119, 0.1);
  border: 1px solid rgba(219, 39, 119, 0.3);
}

.cta-contact-card.blue {
  background: rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(37, 99, 235, 0.3);
}

.cta-contact-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.cta-contact-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}

.cta-contact-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text);
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
  background: linear-gradient(to bottom, var(--bg), #0a0616);
  padding: 5rem 2rem 2rem;
  position: relative;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-brand .logo {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 280px;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.2rem;
  color: var(--text-secondary);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-col a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: var(--pink);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.footer-legal-links {
  display: flex;
  gap: 1.5rem;
}

.footer-legal-links a {
  font-size: 0.82rem;
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.footer-legal-links a:hover {
  color: var(--pink);
}

/* ============================================
   LEGAL PAGES (Privacy & Terms)
   ============================================ */

.legal-page {
  padding-top: 7rem;
  padding-bottom: 4rem;
  min-height: 100vh;
  background: var(--bg);
}

.legal-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
  align-items: start;
}

.legal-sidebar {
  position: sticky;
  top: 6rem;
  background: var(--bg-card);
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 1.5rem;
}

.legal-sidebar h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

.legal-toc {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.legal-toc a {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 0.4rem 0.6rem;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.legal-toc a:hover,
.legal-toc a.active {
  color: var(--pink);
  background: rgba(219, 39, 119, 0.08);
}

.legal-content {
  background: var(--bg-card);
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 3rem;
}

.legal-content .section-label {
  margin-bottom: 0.5rem;
}

.legal-content h1 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
  line-height: 1.15;
}

.legal-content .legal-last-updated {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.legal-content section {
  margin-bottom: 2.5rem;
}

.legal-content section:last-child {
  margin-bottom: 0;
}

.legal-content h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}

.legal-content p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.legal-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-content ul li {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 0.3rem;
}

.legal-content strong {
  color: var(--text);
}

.legal-content address {
  font-style: normal;
  color: var(--text-secondary);
  line-height: 1.8;
}

.legal-content a {
  color: var(--pink);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.legal-content a:hover {
  border-bottom-color: var(--pink);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .legal-container {
    grid-template-columns: 1fr;
  }

  .legal-sidebar {
    position: static;
  }

  .cta-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background: var(--bg-card);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    transition: right 0.4s ease;
    box-shadow: -10px 0 40px rgba(0,0,0,0.5);
  }

  .nav-links.open {
    right: 0;
  }

  .hamburger {
    display: flex;
  }

  .hex-row.offset {
    margin-left: 0;
    margin-top: 1rem;
  }

  .hex-row {
    flex-wrap: wrap;
  }

  .hex-item {
    width: 220px;
    height: 250px;
  }

  .approach-radial {
    width: 300px;
    height: 300px;
  }

  .approach-node {
    width: 65px;
    height: 65px;
  }

  .approach-node .step-num {
    font-size: 1.3rem;
  }

  .approach-node .step-title {
    font-size: 0.6rem;
  }

  .radial-line {
    width: 100px;
  }

  .approach-center {
    width: 80px;
    height: 80px;
    font-size: 0.7rem;
  }

  .cloud-container {
    height: 350px;
  }

  .cloud-tag {
    font-size: 0.75rem;
    padding: 0.4rem 1rem;
  }

  .about-capabilities {
    flex-direction: column;
    gap: 2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .legal-content {
    padding: 1.5rem;
  }

  .industry-card:nth-child(1),
  .industry-card:nth-child(2),
  .industry-card:nth-child(3),
  .industry-card:nth-child(4) {
    transform: none;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: clamp(2rem, 7vw, 3rem);
  }

  .hero h1 .outline-text {
    font-size: clamp(2.5rem, 9vw, 4rem);
  }

  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }

  .section {
    padding: 4rem 1rem;
  }

  .hex-item {
    width: 160px;
    height: 190px;
  }

  .hex-item h3 {
    font-size: 0.85rem;
  }

  .hex-item p {
    font-size: 0.72rem;
  }

  .approach-radial {
    width: 250px;
    height: 250px;
  }

  .approach-node {
    width: 55px;
    height: 55px;
  }

  .approach-node .step-num {
    font-size: 1.1rem;
  }

  .approach-node .step-title {
    font-size: 0.55rem;
  }

  .radial-line {
    width: 80px;
  }

  .approach-center {
    width: 65px;
    height: 65px;
    font-size: 0.65rem;
  }

  .cloud-container {
    height: 400px;
  }

  .legal-content h1 {
    font-size: 1.8rem;
  }
}
