/* ============================================
   WEBNIPRESENT - Premium Agency Website
   Color Palette: Black, Dark Charcoal, Gold
   ============================================ */

/* --- CSS Variables --- */
:root {
  --black: #0a0a0a;
  --charcoal: #141414;
  --charcoal-light: #1a1a1a;
  --charcoal-medium: #1e1e1e;
  --gold: #c9a84c;
  --gold-light: #e2c97e;
  --gold-dark: #a68a3e;
  --white: #ffffff;
  --white-soft: #e0e0e0;
  --gray: #888888;
  --gray-dark: #333333;
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-bg-hover: rgba(255, 255, 255, 0.06);
  --glow-gold: rgba(201, 168, 76, 0.3);
  --glow-gold-soft: rgba(201, 168, 76, 0.15);
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

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

ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
  position: relative;
}

.section-dark {
  background: var(--charcoal);
}

.section-darker {
  background: var(--charcoal-light);
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.25rem; }

p {
  color: var(--white-soft);
  font-size: 1.05rem;
  line-height: 1.8;
}

.text-gold { color: var(--gold); }
.text-center { text-align: center; }

.section-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 12px;
  font-weight: 600;
}

.section-title {
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto 50px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  font-family: var(--font-main);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--glow-gold);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* --- Navigation --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  padding: 14px 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: var(--transition);
}

.nav-logo:hover .logo-icon {
  filter: drop-shadow(0 0 10px rgba(201, 168, 76, 0.9));
  transform: scale(1.08);
}

/* Node ring fill — matches background so rings are crisp over lines */
.logo-icon .node-bg { fill: var(--black); }
.footer .logo-icon .node-bg { fill: var(--charcoal); }
.navbar.scrolled .logo-icon .node-bg { fill: #0d0d0d; }

.logo-icon {
  flex-shrink: 0;
  filter: drop-shadow(0 0 4px rgba(201, 168, 76, 0.4));
  transition: filter 0.4s ease, transform 0.4s ease;
}

.logo-text {
  font-family: 'Barlow Condensed', 'Inter', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: var(--white);
  line-height: 1;
  text-transform: uppercase;
}

.logo-text em {
  font-style: normal;
  background: linear-gradient(135deg, #e2c97e 0%, #c9a84c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-text-img {
  height: 22px;
  width: auto;
  display: block;
  vertical-align: middle;
}

/* Footer logo — slightly smaller */
.footer-brand .nav-logo .logo-text {
  font-size: 1.3rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

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

.nav-links a:hover {
  color: var(--gold);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}

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

.nav-cta {
  padding: 10px 24px !important;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black) !important;
  border-radius: 6px;
  font-weight: 600 !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  color: var(--black) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px var(--glow-gold);
}

/* Services Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--white-soft);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  user-select: none;
  transition: var(--transition);
}

.nav-dropdown-toggle:hover {
  color: var(--gold);
}

.dropdown-arrow {
  font-size: 0.7rem;
  transition: transform 0.2s ease;
  display: inline-block;
}

.nav-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  padding-top: 14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--charcoal);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  padding: 8px;
  min-width: 190px;
  flex-direction: column;
  gap: 2px;
  z-index: 200;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}

.nav-dropdown:hover .nav-dropdown-menu {
  display: flex;
}

.nav-dropdown-menu a {
  padding: 9px 14px;
  border-radius: 6px;
  font-size: 0.875rem;
  white-space: nowrap;
  display: block;
}

.nav-dropdown-menu a:hover {
  background: rgba(232, 201, 110, 0.1);
  color: var(--gold);
}

.nav-dropdown-menu a::after {
  display: none !important;
}

/* Mobile Menu */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

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

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

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

/* --- Hero Section --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

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

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  max-width: 600px;
  color: var(--gray);
}

/* Hero Canvas Background */
#hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(201, 168, 76, 0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(201, 168, 76, 0.05) 0%, transparent 50%);
  z-index: 1;
}

/* --- Glass Cards --- */
.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 36px;
  backdrop-filter: blur(10px);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--glow-gold-soft), transparent);
  opacity: 0;
  transition: var(--transition);
}

.glass-card:hover {
  background: var(--glass-bg-hover);
  border-color: rgba(201, 168, 76, 0.2);
  transform: translateY(-4px);
}

.glass-card:hover::before {
  opacity: 1;
}

/* --- Problem Section --- */
.problems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.problem-card {
  text-align: center;
  padding: 40px 28px;
}

.problem-card .icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.15), rgba(201, 168, 76, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
}

.problem-card h4 {
  margin-bottom: 10px;
}

.problem-card p {
  font-size: 0.95rem;
  color: var(--gray);
}

/* --- Solution / Workflow Section --- */
.workflow-steps {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.workflow-step {
  flex: 1;
  min-width: 200px;
  max-width: 320px;
  text-align: center;
  padding: 40px 24px;
  position: relative;
}

.workflow-step .step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  font-weight: 800;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.workflow-step h4 {
  margin-bottom: 10px;
}

.workflow-step p {
  font-size: 0.95rem;
  color: var(--gray);
}

.workflow-connector {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  align-self: center;
  margin-top: 24px;
}

/* --- Services Grid --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.service-card {
  padding: 40px 32px;
  position: relative;
}

.service-card .service-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.2), rgba(201, 168, 76, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.4rem;
}

.service-card h4 {
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--gray);
  margin-bottom: 20px;
}

.service-card .learn-more {
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.service-card:hover .learn-more {
  gap: 10px;
}

/* --- Stats / Counters --- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  text-align: center;
}

.stat-item .stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 8px;
  line-height: 1;
}

.stat-item .stat-label {
  font-size: 0.95rem;
  color: var(--gray);
}

/* --- Testimonials --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
}

.testimonial-card {
  padding: 36px;
}

.testimonial-card .stars {
  color: var(--gold);
  margin-bottom: 16px;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.testimonial-card blockquote {
  font-size: 1rem;
  color: var(--white-soft);
  margin-bottom: 20px;
  font-style: italic;
  line-height: 1.8;
}

.testimonial-card .author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card .author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--black);
  font-size: 0.9rem;
}

.testimonial-card .author-info h5 {
  font-size: 0.95rem;
  font-weight: 600;
}

.testimonial-card .author-info span {
  font-size: 0.85rem;
  color: var(--gray);
}

/* --- Industries --- */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
}

.industry-item {
  text-align: center;
  padding: 28px 16px;
}

.industry-item .ind-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.industry-item span {
  font-size: 0.9rem;
  font-weight: 500;
}

/* --- CTA Section --- */
.cta-section {
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--glow-gold-soft) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section h2 {
  margin-bottom: 20px;
  position: relative;
}

.cta-section p {
  max-width: 500px;
  margin: 0 auto 40px;
  position: relative;
}

.cta-section .btn-group {
  justify-content: center;
  position: relative;
}

/* --- FAQ --- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--glass-border);
  padding: 24px 0;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 600;
  gap: 16px;
}

.faq-question .faq-toggle {
  font-size: 1.5rem;
  color: var(--gold);
  transition: var(--transition);
  flex-shrink: 0;
}

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

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

.faq-answer p {
  padding-top: 16px;
  font-size: 0.95rem;
  color: var(--gray);
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

/* --- Footer --- */
.footer {
  background: var(--charcoal);
  border-top: 1px solid var(--glass-border);
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand .nav-logo {
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--gray);
  max-width: 280px;
}

.footer-col h5 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  color: var(--gray);
  font-size: 0.9rem;
  padding: 6px 0;
}

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

.footer-bottom {
  border-top: 1px solid var(--glass-border);
  padding-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: var(--gray);
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
}

.footer-legal-links a {
  color: var(--gray);
  text-decoration: none;
  transition: color 0.2s;
}

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

.footer-legal-links span {
  color: var(--gray);
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--gray);
}

.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* --- Service Page Specific --- */
.page-hero {
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(ellipse, var(--glow-gold-soft) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero h1 {
  position: relative;
  margin-bottom: 20px;
}

.page-hero p {
  max-width: 600px;
  margin: 0 auto 40px;
  font-size: 1.15rem;
  color: var(--gray);
  position: relative;
}

/* Feature List */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.feature-card {
  padding: 36px;
}

.feature-card .feature-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(201, 168, 76, 0.2);
  margin-bottom: 12px;
  line-height: 1;
}

.feature-card h4 {
  margin-bottom: 10px;
}

.feature-card p {
  color: var(--gray);
  font-size: 0.95rem;
}

/* Split Sections */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.split-section.reverse {
  direction: rtl;
}

.split-section.reverse > * {
  direction: ltr;
}

.split-content h3 {
  margin-bottom: 16px;
}

.split-content p {
  margin-bottom: 20px;
}

.split-visual {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.mock-browser {
  background: var(--charcoal-medium);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  overflow: hidden;
}

.mock-browser-bar {
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid var(--glass-border);
}

.mock-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gray-dark);
}

.mock-dot:first-child { background: #ff5f57; }
.mock-dot:nth-child(2) { background: #ffbd2e; }
.mock-dot:nth-child(3) { background: #28c840; }

.mock-browser-content {
  padding: 24px;
  min-height: 300px;
  background: linear-gradient(180deg, var(--charcoal-light) 0%, var(--charcoal) 100%);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mock-line {
  height: 12px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
}

.mock-line.short { width: 40%; }
.mock-line.medium { width: 65%; }
.mock-line.long { width: 85%; }

.mock-block {
  height: 80px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.1), rgba(201, 168, 76, 0.03));
  border: 1px solid rgba(201, 168, 76, 0.1);
}

/* Workflow Diagram (CRM page) */
.workflow-diagram {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 40px;
}

.workflow-node {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  transition: var(--transition);
}

.workflow-node:hover {
  border-color: var(--gold);
  box-shadow: 0 0 20px var(--glow-gold-soft);
}

.workflow-node .node-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px var(--glow-gold);
  flex-shrink: 0;
}

.workflow-node span {
  font-weight: 500;
  font-size: 0.95rem;
}

.workflow-line {
  width: 2px;
  height: 20px;
  background: linear-gradient(180deg, var(--gold), transparent);
  margin-left: 29px;
}

/* --- Contact Form --- */
.contact-info-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.contact-info-tile {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 24px;
}

.contact-info-tile h5 {
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.contact-info-tile p {
  font-size: 0.85rem;
  color: var(--gray);
}

.contact-steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.contact-step-tile {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 28px;
}

.contact-step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--black);
  font-size: 0.85rem;
  flex-shrink: 0;
}

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

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

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

.form-group label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--white-soft);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 18px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  color: var(--white);
  font-family: var(--font-main);
  font-size: 1rem;
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 20px var(--glow-gold-soft);
}

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

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

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

.contact-info-card {
  padding: 36px;
}

.contact-info-card h3 {
  margin-bottom: 24px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-info-item .ci-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.15), rgba(201, 168, 76, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-item h5 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.contact-info-item p {
  font-size: 0.9rem;
  color: var(--gray);
}

/* --- Scroll Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* --- Cursor Glow Effect --- */
.cursor-glow {
  position: fixed;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
}

/* --- Animated Gradient Background --- */
.animated-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--black) 0%, var(--charcoal) 50%, var(--black) 100%);
  background-size: 400% 400%;
  animation: gradientShift 8s ease infinite;
  z-index: 0;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Gold glow pulse */
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px var(--glow-gold-soft); }
  50% { box-shadow: 0 0 40px var(--glow-gold); }
}

/* Floating animation */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.floating {
  animation: float 3s ease-in-out infinite;
}

/* --- Check List --- */
.check-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--white-soft);
}

.check-list li::before {
  content: '\2713';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .split-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .split-section.reverse {
    direction: ltr;
  }

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

@media (max-width: 768px) {
  .section {
    padding: 70px 0;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--charcoal);
    flex-direction: column;
    padding: 100px 40px 40px;
    gap: 24px;
    transition: var(--transition-slow);
    border-left: 1px solid var(--glass-border);
  }

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

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown-toggle {
    font-size: 1rem;
    width: 100%;
    justify-content: space-between;
  }

  .nav-dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    background: transparent;
    padding: 8px 0 0 16px;
    display: none;
  }

  .nav-dropdown:hover .nav-dropdown-menu {
    display: none;
  }

  .nav-dropdown.open .dropdown-arrow {
    transform: rotate(180deg);
  }

  .nav-dropdown.open .nav-dropdown-menu {
    display: flex;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .btn-group {
    flex-direction: column;
    align-items: flex-start;
  }

  .problems-grid,
  .services-grid,
  .features-grid {
    grid-template-columns: 1fr;
  }

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

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

  .workflow-steps {
    flex-direction: column;
    align-items: center;
  }

  .workflow-connector {
    display: none;
  }

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

  .contact-info-row {
    grid-template-columns: 1fr 1fr;
  }

  .contact-steps-row {
    grid-template-columns: 1fr;
  }

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

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

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

  .page-hero {
    padding: 130px 0 60px;
  }

  .industries-grid {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }

  .cursor-glow {
    display: none;
  }
}

/* --- Funnel Form --- */
.funnel-header {
  margin-bottom: 28px;
}

.funnel-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.funnel-step-label {
  font-size: 0.8rem;
  color: var(--gray);
  font-weight: 500;
}

.funnel-step-pct {
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 600;
}

.funnel-progress {
  height: 3px;
  background: var(--glass-border);
  border-radius: 2px;
}

.funnel-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  border-radius: 2px;
  transition: width 0.4s ease;
}

.funnel-question {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.funnel-step {
  display: none;
}

.funnel-step.active {
  display: block;
  animation: funnelIn 0.3s ease;
}

@keyframes funnelIn {
  from { opacity: 0; transform: translateX(16px); }
  to   { opacity: 1; transform: translateX(0); }
}

.funnel-nav {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.funnel-nav .btn {
  flex: 1;
  justify-content: center;
}

/* --- Lucide SVG Icons --- */
.ind-icon svg,
.icon svg,
.service-icon svg,
.value-icon svg,
.ci-icon svg {
  display: block;
  stroke-width: 1.5;
  color: var(--gold);
  stroke: currentColor;
  fill: none;
}

.ind-icon svg       { width: 32px; height: 32px; }
.icon svg           { width: 26px; height: 26px; }
.service-icon svg   { width: 26px; height: 26px; }
.value-icon svg     { width: 30px; height: 30px; }
.ci-icon svg        { width: 20px; height: 20px; }

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }

  .btn {
    padding: 14px 28px;
    font-size: 0.95rem;
  }

  .glass-card {
    padding: 24px;
  }

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