/* ----------------------------------------------------
   DESIGN SYSTEM & VARIABLES
   ---------------------------------------------------- */
:root {
  /* Colors */
  --primary: #2563EB;
  --primary-rgb: 37, 99, 235;
  --secondary: #7C3AED;
  --secondary-rgb: 124, 58, 237;
  --accent: #38BDF8;
  --dark-accent: #1E293B;
  
  --text: #111827;
  --text-secondary: #6B7280;
  --text-muted: #9CA3AF;
  
  --bg: #FFFFFF;
  --bg-alt: #F8FAFC;
  --bg-card: rgba(255, 255, 255, 0.75);
  
  --border: rgba(226, 232, 240, 0.8);
  --border-hover: rgba(124, 58, 237, 0.25);
  
  /* Spacing & Borders */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  
  /* Shadows */
  --shadow-sm: 0 2px 8px -2px rgba(17, 24, 39, 0.04);
  --shadow-md: 0 12px 30px -10px rgba(17, 24, 39, 0.06);
  --shadow-lg: 0 24px 60px -15px rgba(17, 24, 39, 0.1);
  --shadow-glow: 0 0 40px -10px rgba(37, 99, 235, 0.2);
  
  /* Transitions */
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
}

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

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

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background-color: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Background Glowing Elements */
.glow-bg {
  position: absolute;
  width: 50vw;
  height: 50vw;
  max-width: 600px;
  max-height: 600px;
  border-radius: 50%;
  filter: blur(140px);
  z-index: -2;
  pointer-events: none;
  opacity: 0.35;
}

.glow-bg-1 {
  top: -10%;
  right: -5%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.4) 0%, rgba(124, 58, 237, 0.1) 70%);
}

.glow-bg-2 {
  top: 40%;
  left: -10%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.3) 0%, rgba(56, 189, 248, 0.1) 70%);
}

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

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

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

/* ----------------------------------------------------
   LAYOUT & CONTAINER
   ---------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

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

/* Section Titles */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px auto;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}

.section-title.text-left {
  text-align: left;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
}

/* Text Gradients */
.gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-glow {
  text-shadow: 0 0 30px rgba(37, 99, 235, 0.15);
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 99, 235, 0.06);
  border: 1px solid rgba(37, 99, 235, 0.1);
  color: var(--primary);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 24px;
  width: max-content;
}

/* ----------------------------------------------------
   NAVIGATION BAR
   ---------------------------------------------------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.5);
  transition: var(--transition);
}

.navbar.scrolled {
  height: 70px;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: var(--shadow-sm);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.03em;
}

.logo-icon {
  flex-shrink: 0;
}

.logo-text {
  color: var(--text);
}

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

.nav-link {
  font-size: 0.938rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.nav-link:hover {
  color: var(--primary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-social {
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg);
}

.nav-social:hover {
  color: var(--secondary);
  border-color: var(--border-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.nav-cta {
  font-size: 0.875rem !important;
  padding: 10px 20px !important;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 22px;
  height: 16px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.mobile-menu-toggle span {
  width: 100%;
  height: 2px;
  background-color: var(--text);
  border-radius: 2px;
  transition: var(--transition-fast);
}

/* ----------------------------------------------------
   BUTTONS
   ---------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--bg);
  border: none;
  box-shadow: 0 4px 20px -6px rgba(37, 99, 235, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px -4px rgba(37, 99, 235, 0.5), 0 0 15px rgba(124, 58, 237, 0.3);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.8);
  color: var(--text);
  border: 1px solid var(--border);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: var(--bg-alt);
  border-color: var(--text-muted);
  transform: translateY(-2px);
}

.btn-instagram {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--bg);
  border: none;
  box-shadow: 0 4px 20px -6px rgba(124, 58, 237, 0.4);
}

.btn-instagram:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px -4px rgba(124, 58, 237, 0.5), 0 0 20px rgba(37, 99, 235, 0.3);
}

.btn-lg {
  padding: 16px 32px;
  border-radius: var(--radius-lg);
}

/* ----------------------------------------------------
   HERO SECTION (Centered Content & Absolute Background Canvas)
   ---------------------------------------------------- */
.hero {
  position: relative;
  padding-top: 160px;
  padding-bottom: 120px;
  min-height: 95vh;
  background-color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg-animation {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.canvas-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(37, 99, 235, 0.08) 0%, rgba(124, 58, 237, 0.03) 50%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}

.canvas-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.9) 75%, var(--bg) 100%);
  z-index: 3;
  pointer-events: none;
}

#hero-canvas {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.14; /* Low opacity makes text extremely readable */
  filter: grayscale(10%) contrast(1.05);
  z-index: 1;
  position: relative;
}

.hero-container {
  position: relative;
  z-index: 5; /* Sit nicely on top of background canvas */
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}

.hero-description {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.65;
  max-width: 760px;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 56px;
  width: 100%;
}

.trust-badges {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 28px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  width: 100%;
  max-width: 820px;
}

.trust-badges li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.badge-check {
  width: 18px;
  height: 18px;
  color: var(--primary);
  flex-shrink: 0;
}

/* Canvas Preloader */
.preloader {
  position: absolute;
  inset: 0;
  z-index: 10;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  transition: opacity 0.5s ease;
}

.preloader.fade-out {
  opacity: 0;
  pointer-events: none;
}

.preloader-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(37, 99, 235, 0.15);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 1s infinite linear;
}

.preloader-text {
  font-size: 0.938rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.preloader-bar-bg {
  width: 200px;
  height: 6px;
  background: rgba(226, 232, 240, 0.8);
  border-radius: 10px;
  overflow: hidden;
}

.preloader-bar-fill {
  width: 0%;
  height: 100%;
  background: linear-gradient(95deg, var(--primary), var(--secondary));
  border-radius: 10px;
  transition: width 0.1s ease;
}

/* ----------------------------------------------------
   SERVICES SECTION
   ---------------------------------------------------- */
.services {
  background-color: var(--bg-alt);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-md), var(--shadow-glow);
}

.service-icon-wrapper {
  width: 54px;
  height: 54px;
  background: rgba(37, 99, 235, 0.08);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 24px;
  transition: var(--transition);
}

.service-card:hover .service-icon-wrapper {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--bg);
}

.service-icon {
  width: 26px;
  height: 26px;
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.service-card p {
  color: var(--text-secondary);
  font-size: 0.938rem;
  line-height: 1.6;
}

/* ----------------------------------------------------
   WHY CHOOSE US
   ---------------------------------------------------- */
.why-choose-us {
  background-color: var(--bg);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.benefit-card {
  border: 1px solid var(--border);
  padding: 32px 24px;
  border-radius: var(--radius-md);
  background-color: var(--bg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.benefit-card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.benefit-indicator {
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--primary), var(--secondary));
  opacity: 0.7;
}

.benefit-card h4 {
  font-size: 1.125rem;
  margin-bottom: 10px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.benefit-card p {
  color: var(--text-secondary);
  font-size: 0.875rem;
  line-height: 1.5;
}

/* ----------------------------------------------------
   PORTFOLIO SECTION
   ---------------------------------------------------- */
.portfolio {
  background-color: var(--bg-alt);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.portfolio-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.portfolio-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-lg);
}

.portfolio-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16/11;
  overflow: hidden;
  background-color: #E2E8F0;
}

.portfolio-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-card:hover .portfolio-img {
  transform: scale(1.05);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: rgba(17, 24, 39, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(4px);
}

.portfolio-card:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-link-btn {
  background: var(--bg);
  color: var(--text);
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: var(--shadow-md);
  transform: translateY(10px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-card:hover .portfolio-link-btn {
  transform: translateY(0);
}

.portfolio-info {
  padding: 32px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.portfolio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.portfolio-tag {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
}

.portfolio-info h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.portfolio-info p {
  color: var(--text-secondary);
  font-size: 0.938rem;
  line-height: 1.5;
}

/* ----------------------------------------------------
   PROCESS SECTION
   ---------------------------------------------------- */
.process {
  background-color: var(--bg);
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 50px;
  right: 50px;
  height: 2px;
  background: rgba(226, 232, 240, 0.8);
  z-index: 1;
}

.process-step {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
}

.step-number {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.process-step:hover .step-number {
  border-color: var(--primary);
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--bg);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.25);
  transform: scale(1.05);
}

.step-content h4 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  font-weight: 700;
}

.step-content p {
  color: var(--text-secondary);
  font-size: 0.938rem;
  line-height: 1.6;
}

/* ----------------------------------------------------
   ABOUT SECTION
   ---------------------------------------------------- */
.about {
  background-color: var(--bg);
  border-top: 1px solid var(--border);
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 64px;
}

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

.about-visual-box {
  position: relative;
  width: 100%;
  max-width: 380px;
  aspect-ratio: 1;
  background: var(--bg-alt);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-svg {
  width: 90%;
  height: 90%;
}

.pulse-node {
  animation: pulse 3s infinite ease-in-out;
}

.pulse-node:nth-child(even) {
  animation-delay: 1.5s;
}

.visual-tag-card {
  position: absolute;
  bottom: 24px;
  right: -24px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  padding: 12px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  z-index: 10;
}

.vt-title {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--text-secondary);
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}

.vt-name {
  font-size: 0.938rem;
  font-weight: 700;
  color: var(--text);
}

.about-content {
  display: flex;
  flex-direction: column;
}

.about-text p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 20px;
  line-height: 1.65;
}

.about-text p:last-child {
  margin-bottom: 0;
}

/* ----------------------------------------------------
   TESTIMONIALS SECTION
   ---------------------------------------------------- */
.testimonials {
  background-color: var(--bg-alt);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.testimonial-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-md);
}

.stars {
  color: #FBBF24;
  font-size: 1.15rem;
  margin-bottom: 24px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 32px;
  font-style: italic;
  flex-grow: 1;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.client-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--bg);
  flex-shrink: 0;
}

.grad-avatar-1 {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
}

.grad-avatar-2 {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
}

.grad-avatar-3 {
  background: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 100%);
}

.client-name {
  font-size: 0.938rem;
  font-weight: 700;
  color: var(--text);
}

.client-role {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

/* ----------------------------------------------------
   FAQ SECTION
   ---------------------------------------------------- */
.faq {
  background-color: var(--bg);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-accordion-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--border-hover);
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  background: transparent;
  border: none;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  outline: none;
}

.faq-icon {
  position: relative;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: var(--transition);
}

.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  background-color: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

.faq-icon::before {
  top: 7px;
  left: 0;
  width: 100%;
  height: 2px;
}

.faq-icon::after {
  top: 0;
  left: 7px;
  width: 2px;
  height: 100%;
}

.faq-trigger[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

.faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-trigger[aria-expanded="true"] + .faq-content {
  grid-template-rows: 1fr;
}

.faq-content-inner {
  overflow: hidden;
}

.faq-content p {
  padding: 0 24px 24px 24px;
  color: var(--text-secondary);
  font-size: 0.938rem;
  line-height: 1.6;
}

/* ----------------------------------------------------
   FINAL CTA / CONTACT SECTION
   ---------------------------------------------------- */
.contact {
  background-color: var(--bg);
  padding-bottom: 120px;
}

.contact-card {
  position: relative;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.03) 0%, rgba(124, 58, 237, 0.03) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 80px 40px;
  text-align: center;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.contact-glow-1, .contact-glow-2 {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.15;
}

.contact-glow-1 {
  top: -100px;
  left: -100px;
  background: var(--primary);
}

.contact-glow-2 {
  bottom: -100px;
  right: -100px;
  background: var(--secondary);
}

.contact-card-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto;
}

.contact-title {
  font-size: 2.85rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
}

.contact-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.6;
}

.contact-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.contact-actions .instagram-icon {
  margin-right: 4px;
}

/* ----------------------------------------------------
   FOOTER SECTION
   ---------------------------------------------------- */
.footer {
  background-color: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding-top: 80px;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.2fr 1.8fr;
  gap: 80px;
  margin-bottom: 64px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  margin-bottom: 20px;
  width: max-content;
}

.footer-desc {
  font-size: 0.938rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.6;
}

.footer-social-wrapper {
  display: flex;
  align-items: center;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--primary);
  font-size: 0.938rem;
  padding: 8px 16px;
  background: rgba(37, 99, 235, 0.05);
  border-radius: 100px;
  border: 1px solid rgba(37, 99, 235, 0.08);
}

.footer-social-link:hover {
  color: var(--secondary);
  background: rgba(124, 58, 237, 0.05);
  border-color: rgba(124, 58, 237, 0.15);
  transform: translateY(-2px);
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.footer-col h5 {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text);
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  font-size: 0.938rem;
  color: var(--text-secondary);
}

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

.footer-bottom {
  border-top: 1px solid rgba(226, 232, 240, 0.6);
  padding: 32px 0;
  background: var(--bg);
}

.footer-bottom-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.founder-highlight {
  font-weight: 600;
  color: var(--text);
}

/* ----------------------------------------------------
   ANIMATIONS & KEYFRAMES
   ---------------------------------------------------- */
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.15);
    opacity: 1;
    filter: drop-shadow(0 0 8px rgba(37, 99, 235, 0.5));
  }
}

/* Intersection Observer Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* ----------------------------------------------------
   RESPONSIVE MEDIA QUERIES
   ---------------------------------------------------- */
@media (max-width: 1024px) {
  html {
    font-size: 15px;
  }
  
  .hero {
    padding-top: 140px;
    padding-bottom: 100px;
    min-height: 90vh;
  }
  
  .hero-title {
    font-size: 3.25rem;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
  }
  
  .process-timeline::before {
    display: none;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .about-visual {
    order: 2;
  }
  
  .about-content {
    order: 1;
  }
  
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .footer-links-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  section {
    padding: 80px 0;
  }
  
  .hero {
    padding-top: 120px;
    padding-bottom: 80px;
  }
  
  .hero-title {
    font-size: 2.75rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-links-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  /* Mobile Menu Toggle & Menu Interaction */
  .mobile-menu-toggle {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 40px 24px;
    gap: 24px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
  }
  
  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  
  .navbar.scrolled .nav-menu {
    top: 70px;
  }
  
  .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.15rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
  }
  
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-actions .btn {
    width: 100%;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .process-timeline {
    grid-template-columns: 1fr;
  }
  
  .contact-title {
    font-size: 2.15rem;
  }
  
  .contact-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .contact-actions .btn {
    width: 100%;
  }
  
  .footer-links-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom-flex {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}
