:root {
  --bg-color: #e8eef5;
  --bg-dark: #dce4ed;
  --bg-light: #f0f4f8;
  --text-primary: #1a202c;
  --text-secondary: #4a5568;
  --text-muted: #718096;
  --accent: #667eea;
  --accent-hover: #5a67d8;
  --accent-light: rgba(102, 126, 234, 0.1);
  --accent-glow: rgba(102, 126, 234, 0.3);
  --white: #ffffff;
  --shadow-light: rgba(255, 255, 255, 0.9);
  --shadow-dark: rgba(163, 177, 198, 0.5);
  --shadow-dark-strong: rgba(163, 177, 198, 0.7);
  --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--bg-color);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
}

::selection {
  background: var(--accent);
  color: white;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
}

.neo-card {
  background: var(--bg-color);
  border-radius: 24px;
  box-shadow: 
    10px 10px 30px var(--shadow-dark),
    -10px -10px 30px var(--shadow-light);
  transition: var(--transition-smooth);
}

.neo-card:hover {
  box-shadow: 
    15px 15px 40px var(--shadow-dark-strong),
    -15px -15px 40px var(--shadow-light);
  transform: translateY(-5px);
}

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

.navbar.scrolled {
  background: rgba(232, 238, 245, 0.9);
  backdrop-filter: blur(20px);
  box-shadow: 0 10px 40px var(--shadow-dark);
  padding: 15px 0;
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
}

.logo-text {
  font-size: 28px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -1px;
}

.logo-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.2); opacity: 0.7; }
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 8px;
  background: var(--bg-color);
  padding: 8px;
  border-radius: 50px;
  box-shadow: 
    inset 3px 3px 8px var(--shadow-dark),
    inset -3px -3px 8px var(--shadow-light);
}

.nav-link {
  text-decoration: none;
  color: var(--text-muted);
  font-weight: 500;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 25px;
  transition: var(--transition-smooth);
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-primary);
  background: var(--bg-color);
  box-shadow: 
    4px 4px 10px var(--shadow-dark),
    -4px -4px 10px var(--shadow-light);
}

.nav-cta {
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  color: white;
  background: var(--gradient-1);
  border-radius: 50px;
  transition: var(--transition-bounce);
  box-shadow: 0 10px 30px var(--accent-glow);
}

.nav-cta:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 40px var(--accent-glow);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: var(--bg-color);
  border: none;
  cursor: pointer;
  padding: 12px;
  border-radius: 12px;
  box-shadow: 
    4px 4px 10px var(--shadow-dark),
    -4px -4px 10px var(--shadow-light);
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition-smooth);
}

/* ==================== BUTTONS ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  cursor: pointer;
  border: none;
  transition: var(--transition-bounce);
  font-family: inherit;
}

.btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s;
}

.btn:hover svg {
  transform: translateX(4px);
}

.btn-primary {
  background: var(--gradient-1);
  color: white;
  box-shadow: 0 10px 30px var(--accent-glow);
}

.btn-primary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 20px 50px var(--accent-glow);
}

.btn-primary:active {
  transform: translateY(-2px) scale(0.98);
}

.btn-secondary {
  background: var(--bg-color);
  color: var(--text-primary);
  box-shadow: 
    6px 6px 15px var(--shadow-dark),
    -6px -6px 15px var(--shadow-light);
}

.btn-secondary:hover {
  transform: translateY(-4px);
  box-shadow: 
    10px 10px 25px var(--shadow-dark),
    -10px -10px 25px var(--shadow-light);
}

.btn-full {
  width: 100%;
}

/* ==================== HERO ==================== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 40px 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-gradient {
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 150%;
  background: radial-gradient(circle, var(--accent-light) 0%, transparent 60%);
  animation: float-gradient 15s ease-in-out infinite;
}

@keyframes float-gradient {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(-50px, 50px) rotate(10deg); }
}

.floating-shapes {
  position: absolute;
  inset: 0;
}

.shape {
  position: absolute;
  border-radius: 50%;
  background: var(--bg-light);
  box-shadow: 
    10px 10px 30px var(--shadow-dark),
    -10px -10px 30px var(--shadow-light);
}

.shape-1 {
  width: 80px;
  height: 80px;
  top: 15%;
  left: 10%;
  animation: float 8s ease-in-out infinite;
}

.shape-2 {
  width: 120px;
  height: 120px;
  top: 60%;
  left: 5%;
  animation: float 10s ease-in-out infinite 1s;
}

.shape-3 {
  width: 60px;
  height: 60px;
  top: 20%;
  right: 15%;
  animation: float 7s ease-in-out infinite 2s;
}

.shape-4 {
  width: 100px;
  height: 100px;
  bottom: 20%;
  right: 10%;
  animation: float 9s ease-in-out infinite 0.5s;
}

.shape-5 {
  width: 40px;
  height: 40px;
  bottom: 40%;
  left: 20%;
  animation: float 6s ease-in-out infinite 1.5s;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(5deg); }
}

.hero-content {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text {
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: var(--bg-color);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 30px;
  box-shadow: 
    4px 4px 10px var(--shadow-dark),
    -4px -4px 10px var(--shadow-light);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

.hero-name {
  margin-bottom: 20px;
}

.hero-name .greeting {
  display: block;
  font-size: 18px;
  font-weight: 400;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.hero-name .name-highlight {
  display: block;
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.1;
  letter-spacing: -2px;
}

.hero-name .name-last {
  display: block;
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 800;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  letter-spacing: -2px;
}

.hero-title-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.title-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, var(--shadow-dark), transparent);
  max-width: 60px;
}

.hero-title {
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 600;
  color: var(--text-secondary);
  white-space: nowrap;
}

.hero-description {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 40px;
  line-height: 1.8;
}

.hero-cta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.hero-social {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-color);
  border-radius: 14px;
  color: var(--text-secondary);
  box-shadow: 
    4px 4px 10px var(--shadow-dark),
    -4px -4px 10px var(--shadow-light);
  transition: var(--transition-bounce);
}

.social-icon:hover {
  transform: translateY(-4px);
  color: var(--text-primary);
  box-shadow: 
    6px 6px 15px var(--shadow-dark),
    -6px -6px 15px var(--shadow-light);
}

.social-icon svg {
  width: 20px;
  height: 20px;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-card {
  position: relative;
  background: var(--bg-color);
  border-radius: 32px;
  padding: 50px 40px;
  box-shadow: 
    25px 25px 60px var(--shadow-dark),
    -25px -25px 60px var(--shadow-light);
  text-align: center;
}

.card-glow {
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: var(--gradient-1);
  border-radius: 34px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s;
}

.hero-card:hover .card-glow {
  opacity: 0.3;
}

.hero-avatar {
  position: relative;
  width: 160px;
  height: 160px;
  margin: 0 auto 35px;
}

.avatar-ring {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 2px dashed var(--shadow-dark);
  animation: spin 20s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.avatar-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--gradient-1);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 
    inset 5px 5px 15px rgba(0,0,0,0.1),
    0 20px 50px var(--accent-glow);
  position: relative;
  z-index: 1;
}

.avatar-inner span {
  font-size: 48px;
  font-weight: 800;
  color: white;
  letter-spacing: -2px;
}

.hero-stats {
  display: flex;
  gap: 30px;
  justify-content: center;
}

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

.stat-number {
  font-size: 36px;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
}

.stat-plus {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent);
}

.stat-label {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.card-decorations {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.deco {
  position: absolute;
  background: var(--bg-light);
  border-radius: 50%;
  box-shadow: 
    4px 4px 10px var(--shadow-dark),
    -4px -4px 10px var(--shadow-light);
}

.deco-1 {
  width: 20px;
  height: 20px;
  top: 30px;
  right: 30px;
}

.deco-2 {
  width: 14px;
  height: 14px;
  bottom: 40px;
  left: 25px;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.scroll-line {
  width: 2px;
  height: 60px;
  background: var(--shadow-dark);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.scroll-dot {
  position: absolute;
  top: 0;
  width: 100%;
  height: 20px;
  background: var(--text-primary);
  border-radius: 2px;
  animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
  0% { top: 0; opacity: 1; }
  50% { top: 40px; opacity: 0.5; }
  100% { top: 0; opacity: 1; }
}

.scroll-indicator span {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 3px;
}

/* ==================== SECTIONS ==================== */
.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-number {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.section-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 20px;
  padding: 10px 25px;
  background: var(--bg-color);
  border-radius: 50px;
  box-shadow: 
    inset 3px 3px 8px var(--shadow-dark),
    inset -3px -3px 8px var(--shadow-light);
}

.section-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.2;
  letter-spacing: -1px;
}

.title-accent {
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 20px auto 0;
}

/* ==================== ABOUT ==================== */
.about {
  padding: 120px 0;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-text .lead-text {
  font-size: 20px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 20px;
  line-height: 1.7;
}

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

.about-highlights {
  display: grid;
  gap: 20px;
  margin-top: 40px;
}

.highlight-item {
  padding: 25px 30px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.highlight-number {
  font-size: 32px;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.3;
  line-height: 1;
}

.highlight-content h4 {
  font-size: 17px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.highlight-content p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

.skills-card {
  padding: 40px;
}

.skills-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 30px;
}

.skills-grid {
  display: grid;
  gap: 25px;
}

.skill-item {
  position: relative;
}

.skill-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.skill-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
}

.skill-percent {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}

.skill-bar {
  height: 8px;
  border-radius: 4px;
  background: var(--bg-color);
  box-shadow: 
    inset 3px 3px 6px var(--shadow-dark),
    inset -3px -3px 6px var(--shadow-light);
  overflow: hidden;
}

.skill-progress {
  height: 100%;
  background: var(--gradient-1);
  border-radius: 4px;
  width: 0;
  transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.tools-section {
  margin-top: 35px;
  padding-top: 30px;
  border-top: 1px solid var(--shadow-dark);
}

.tools-section h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.tools-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tool-item {
  padding: 8px 16px;
  background: var(--bg-color);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  box-shadow: 
    3px 3px 8px var(--shadow-dark),
    -3px -3px 8px var(--shadow-light);
}

/* ==================== SERVICES ==================== */
.services {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--bg-color) 0%, var(--bg-dark) 100%);
}

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

.service-card {
  padding: 40px 35px;
  position: relative;
  overflow: hidden;
}

.service-number {
  position: absolute;
  top: 25px;
  right: 25px;
  font-size: 48px;
  font-weight: 800;
  color: var(--shadow-dark);
  opacity: 0.5;
  line-height: 1;
}

.service-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-color);
  border-radius: 20px;
  margin-bottom: 25px;
  box-shadow: 
    6px 6px 15px var(--shadow-dark),
    -6px -6px 15px var(--shadow-light);
  transition: var(--transition-bounce);
}

.service-card:hover .service-icon {
  transform: translateY(-5px);
  box-shadow: 
    10px 10px 25px var(--shadow-dark),
    -10px -10px 25px var(--shadow-light);
}

.service-icon svg {
  width: 32px;
  height: 32px;
  color: var(--text-secondary);
}

.service-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.service-link span {
  transition: transform 0.3s;
}

.service-link:hover {
  color: var(--accent);
}

.service-link:hover span {
  transform: translateX(5px);
}

/* ==================== PRICING ==================== */
.pricing {
  padding: 120px 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.pricing-card {
  padding: 40px 35px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card.featured {
  background: linear-gradient(145deg, var(--bg-light), var(--bg-color));
  transform: scale(1.03);
  box-shadow: 
    20px 20px 50px var(--shadow-dark-strong),
    -20px -20px 50px var(--shadow-light);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-1);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 8px 24px;
  border-radius: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 10px 25px var(--accent-glow);
}

.pricing-header {
  text-align: center;
  margin-bottom: 25px;
}

.pricing-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-color);
  border-radius: 16px;
  box-shadow: 
    inset 4px 4px 10px var(--shadow-dark),
    inset -4px -4px 10px var(--shadow-light);
}

.pricing-icon svg {
  width: 28px;
  height: 28px;
  color: var(--text-secondary);
}

.pricing-header h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.pricing-desc {
  font-size: 14px;
  color: var(--text-muted);
}

.pricing-price {
  text-align: center;
  padding: 30px 0;
  margin-bottom: 25px;
  border-radius: 20px;
  background: var(--bg-color);
  box-shadow: 
    inset 5px 5px 15px var(--shadow-dark),
    inset -5px -5px 15px var(--shadow-light);
}

.pricing-price .currency {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
  vertical-align: top;
}

.pricing-price .amount {
  font-size: 52px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -2px;
}

.pricing-price .period {
  display: block;
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 5px;
}

.pricing-features {
  list-style: none;
  margin-bottom: 30px;
  flex-grow: 1;
}

.pricing-features li {
  padding: 14px 0;
  font-size: 14px;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(163, 177, 198, 0.2);
  position: relative;
  padding-left: 30px;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: var(--accent-light);
  border-radius: 50%;
}

.pricing-features li::after {
  content: '✓';
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 11px;
  color: var(--accent);
  font-weight: 700;
}

.pricing-card .btn {
  margin-top: auto;
}

.pricing-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 30px 40px;
  background: var(--bg-color);
  border-radius: 20px;
  box-shadow: 
    inset 5px 5px 15px var(--shadow-dark),
    inset -5px -5px 15px var(--shadow-light);
}

.note-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-color);
  border-radius: 50%;
  box-shadow: 
    4px 4px 10px var(--shadow-dark),
    -4px -4px 10px var(--shadow-light);
}

.note-icon svg {
  width: 24px;
  height: 24px;
  color: var(--text-secondary);
}

.pricing-note p {
  font-size: 16px;
  color: var(--text-secondary);
}

.pricing-note a {
  color: var(--text-primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ==================== CONTACT ==================== */
.contact {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--bg-color) 0%, var(--bg-dark) 100%);
}

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

.contact-intro p {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 40px;
}

.contact-cards {
  display: grid;
  gap: 20px;
}

.contact-item {
  padding: 25px 30px;
  display: flex;
  gap: 20px;
  align-items: center;
}

.contact-icon {
  width: 55px;
  height: 55px;
  min-width: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-color);
  border-radius: 16px;
  box-shadow: 
    inset 4px 4px 10px var(--shadow-dark),
    inset -4px -4px 10px var(--shadow-light);
}

.contact-icon svg {
  width: 24px;
  height: 24px;
  color: var(--text-secondary);
}

.contact-details h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-details p {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-primary);
}

.social-links {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.social-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-color);
  border-radius: 14px;
  color: var(--text-secondary);
  box-shadow: 
    4px 4px 10px var(--shadow-dark),
    -4px -4px 10px var(--shadow-light);
  transition: var(--transition-bounce);
}

.social-link:hover {
  transform: translateY(-4px);
  color: var(--text-primary);
}

.social-link svg {
  width: 20px;
  height: 20px;
}

.contact-form {
  padding: 50px;
}

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

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.neo-input {
  width: 100%;
  padding: 18px 24px;
  font-size: 15px;
  font-family: inherit;
  color: var(--text-primary);
  background: var(--bg-color);
  border: none;
  border-radius: 16px;
  box-shadow: 
    inset 5px 5px 12px var(--shadow-dark),
    inset -5px -5px 12px var(--shadow-light);
  transition: var(--transition-smooth);
  outline: none;
}

.neo-input:focus {
  box-shadow: 
    inset 6px 6px 15px var(--shadow-dark),
    inset -6px -6px 15px var(--shadow-light),
    0 0 0 3px var(--accent-light);
}

.neo-input::placeholder {
  color: var(--text-muted);
}

textarea.neo-input {
  resize: vertical;
  min-height: 140px;
}

select.neo-input {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%234a5568' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 18px;
}

/* ==================== FOOTER ==================== */
.footer {
  padding: 80px 0 40px;
}

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

.footer-brand {
  margin-bottom: 40px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  font-size: 36px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -1px;
  margin-bottom: 15px;
}

.footer-logo .logo-dot {
  margin-left: 4px;
}

.footer-tagline {
  font-size: 16px;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
  padding: 25px 0;
  border-top: 1px solid var(--shadow-dark);
  border-bottom: 1px solid var(--shadow-dark);
}

.footer-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition-smooth);
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copyright,
.footer-credit {
  font-size: 14px;
  color: var(--text-muted);
}

/* ==================== ANIMATIONS ==================== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1200px) {
  .container {
    padding: 0 30px;
  }
  
  .hero-content {
    gap: 60px;
  }
  
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-social {
    justify-content: center;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-card.featured {
    transform: none;
  }

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

@media (max-width: 768px) {
  .nav-menu,
  .nav-cta {
    display: none;
  }

  .nav-menu.active {
    display: flex;
    position: fixed;
    top: 80px;
    left: 20px;
    right: 20px;
    flex-direction: column;
    padding: 25px;
    border-radius: 24px;
    box-shadow: 
      15px 15px 40px var(--shadow-dark),
      -15px -15px 40px var(--shadow-light);
  }

  .nav-toggle {
    display: flex;
  }

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

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

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

  .hero {
    padding: 100px 20px 60px;
  }

  .floating-shapes {
    display: none;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 20px;
  }

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

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

  .section-header {
    margin-bottom: 50px;
  }

  .about,
  .services,
  .pricing,
  .contact {
    padding: 80px 0;
  }

  .scroll-indicator {
    display: none;
  }

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

  .contact-form {
    padding: 30px;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 20px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .hero-cta {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta .btn {
    width: 100%;
  }

  .stat-number {
    font-size: 28px;
  }

  .pricing-price .amount {
    font-size: 42px;
  }

  .social-links {
    flex-direction: column;
    align-items: flex-start;
  }
}