/* ============================================
   Section-Specific Styles
   ============================================ */

/* --- HERO --- */

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

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: orbFloat 8s ease-in-out infinite;
}

.hero-orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--accent), transparent 70%);
  top: -15%;
  right: -10%;
  animation-delay: 0s;
}

.hero-orb-2 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, #c084fc, transparent 70%);
  bottom: 10%;
  left: -5%;
  animation-delay: -4s;
}

.hero-orb-3 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, #a78bfa, transparent 70%);
  top: 40%;
  right: 20%;
  animation-delay: -2s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 15px) scale(0.95); }
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  margin-bottom: var(--space-lg);
}

.hero-subtitle {
  font-size: var(--fs-body-lg);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto var(--space-2xl);
  line-height: var(--lh-relaxed);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
  margin-bottom: var(--space-3xl);
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-md);
  max-width: 700px;
  margin: 0 auto;
}

/* --- Grid line decoration --- */
.hero-grid {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background:
    linear-gradient(to top, var(--bg-primary), transparent),
    linear-gradient(90deg, var(--border-color) 1px, transparent 1px),
    linear-gradient(var(--border-color) 1px, transparent 1px);
  background-size: 100% 100%, 60px 60px, 60px 60px;
  z-index: 0;
  mask-image: linear-gradient(to top, rgba(0,0,0,0.15), transparent);
  -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,0.15), transparent);
}

/* --- BENEFITS --- */

.benefits {
  background: var(--bg-secondary);
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

.benefit-card {
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;
}

.benefit-number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-glow-soft);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: var(--radius-lg);
  color: var(--accent);
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  font-size: var(--fs-h3);
}

/* --- STATS --- */

.stats {
  position: relative;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
}

.stat-item {
  text-align: center;
  padding: var(--space-xl);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: var(--fw-bold);
  color: var(--accent);
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.stat-label {
  font-size: var(--fs-small);
  color: var(--text-secondary);
  font-weight: var(--fw-medium);
}

.stats-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-glow), transparent);
  margin: var(--space-xl) 0;
}

/* --- SERVICES --- */

.services {
  background: var(--bg-secondary);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

.service-card .service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.service-tag {
  font-size: var(--fs-xs);
  padding: 4px 10px;
  background: var(--accent-glow-soft);
  border: 1px solid rgba(139, 92, 246, 0.15);
  border-radius: var(--radius-full);
  color: var(--accent);
  font-weight: var(--fw-medium);
}

/* --- INDUSTRIES --- */

.industries-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.industry-card {
  text-align: center;
  padding: var(--space-xl) var(--space-lg);
}

.industry-card .industry-icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-md);
}

/* --- HOW IT WORKS --- */

.how-it-works {
  background: var(--bg-secondary);
}

.how-it-works .accordion {
  max-width: 750px;
  margin: 0 auto;
}

.accordion-trigger .trigger-left {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.accordion-trigger .step-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-glow-soft);
  border-radius: var(--radius-sm);
  color: var(--accent);
  font-size: var(--fs-small);
  font-weight: var(--fw-bold);
}

/* --- TESTIMONIALS --- */

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

/* --- ABOUT --- */

.about {
  background: var(--bg-secondary);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3xl);
}

.about-text h3 {
  margin-top: var(--space-xl);
  margin-bottom: var(--space-sm);
  color: var(--accent);
}

.about-text p {
  line-height: var(--lh-relaxed);
}

.about-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-logo-large {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: var(--fw-bold);
  user-select: none;
  position: relative;
}

.about-logo-large .logo-zy { color: var(--text-primary); }
.about-logo-large .logo-ber { color: var(--accent); }

.about-logo-large::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, var(--accent-glow), transparent 70%);
  border-radius: 50%;
  z-index: -1;
  filter: blur(40px);
}

.about-values {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.value-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
}

.value-icon {
  color: var(--accent);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.value-item span {
  font-weight: var(--fw-medium);
  font-size: var(--fs-small);
}

/* --- CONTACT --- */

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3xl);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.contact-item-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-glow-soft);
  border-radius: var(--radius-md);
  color: var(--accent);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-item-text h4 {
  font-family: var(--font-heading);
  font-size: var(--fs-small);
  font-weight: var(--fw-semibold);
  margin-bottom: 2px;
}

.contact-item-text p,
.contact-item-text a {
  font-size: var(--fs-small);
  color: var(--text-secondary);
}

.contact-item-text a:hover {
  color: var(--accent);
}

/* --- FOOTER --- */

.footer {
  padding: var(--space-3xl) 0 var(--space-xl);
  border-top: 1px solid var(--border-color);
}

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

.footer-logo {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: var(--fw-bold);
  margin-bottom: var(--space-lg);
}

.footer-logo .logo-zy { color: var(--text-primary); }
.footer-logo .logo-ber { color: var(--accent); }

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.footer-links a {
  font-size: var(--fs-small);
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

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

.footer-email {
  color: var(--text-secondary);
  font-size: var(--fs-small);
  margin-bottom: var(--space-lg);
}

.footer-email a {
  color: var(--accent);
}

.footer-email a:hover {
  text-decoration: underline;
}

.footer-copy {
  font-size: var(--fs-xs);
  color: var(--text-muted);
}

/* --- BOOK A CALL PAGE --- */

.booking-page {
  min-height: 100vh;
  padding-top: 120px;
  padding-bottom: var(--space-4xl);
}

.booking-wrapper {
  max-width: 600px;
  margin: 0 auto;
}

.booking-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.booking-header h1 {
  margin-bottom: var(--space-md);
}

.booking-form .form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

/* --- BLOG PAGE --- */

.blog-page {
  padding-top: 120px;
  padding-bottom: var(--space-4xl);
}

.blog-hero {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.blog-hero h1 {
  margin-bottom: var(--space-md);
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

/* --- LOGO PAGE --- */

.logo-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: var(--space-2xl);
  padding-top: 100px;
}

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

.logo-display svg {
  max-width: 400px;
  margin: 0 auto;
}

.logo-variants {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2xl);
  justify-content: center;
}

.logo-variant {
  padding: var(--space-2xl) var(--space-3xl);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-color);
}

.logo-variant-dark {
  background: #000;
}

.logo-variant-light {
  background: #fff;
}
