/* ============================================
   SECTIONS — Section-specific styles
   ============================================ */

/* ══════════════════════════════════════
   HERO SECTION
   ══════════════════════════════════════ */

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

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
  width: 100%;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

/* ── Hero Badge — Floating Status ── */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  width: fit-content;
  padding: var(--space-2) var(--space-4);
  background: var(--accent-glow);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  color: var(--accent);
  animation: badge-float 6s ease-in-out infinite;
  position: relative;
}

.hero-badge::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(90deg, transparent, var(--accent-glow), transparent);
  opacity: 0;
  animation: badge-shimmer 4s ease-in-out infinite;
  z-index: -1;
}

@keyframes badge-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes badge-shimmer {
  0%, 100% { opacity: 0; }
  50% { opacity: 1; }
}

.hero-badge .pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  animation: pulse-glow 2s infinite;
  position: relative;
}

.hero-badge .pulse::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: var(--success);
  opacity: 0;
  animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
  50% { box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
}

@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(2.5); opacity: 0; }
}

/* ── Hero Title — Animated Gradient Text ── */
.hero-title {
  font-size: var(--text-7xl);
  font-weight: var(--font-extrabold);
  letter-spacing: -0.03em;
  line-height: 1.05;
  position: relative;
}

.hero-title .text-gradient {
  background: linear-gradient(
    135deg,
    #6366f1 0%,
    #8b5cf6 25%,
    #ec4899 50%,
    #8b5cf6 75%,
    #6366f1 100%
  );
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 6s ease-in-out infinite;
}

@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* ── Hero Subtitle ── */
.hero-subtitle {
  font-size: var(--text-xl);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
  max-width: 520px;
}

.hero-subtitle strong {
  position: relative;
}

.hero-subtitle strong::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  animation: underline-draw 1.5s ease-out 1.5s forwards;
}

@keyframes underline-draw {
  to { transform: scaleX(1); }
}

/* ── Hero CTA Buttons — Enhanced Hover ── */
.hero-cta {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
  margin-top: var(--space-4);
}

.hero-cta .btn {
  position: relative;
  overflow: hidden;
}

.hero-cta .btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.hero-cta .btn:hover::after {
  width: 300px;
  height: 300px;
}

.hero-cta .btn-primary {
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.3);
  transition: all var(--transition-base);
}

.hero-cta .btn-primary:hover {
  box-shadow: 0 8px 32px rgba(99, 102, 241, 0.5);
  transform: translateY(-2px);
}

.hero-cta .btn-secondary:hover {
  transform: translateY(-2px);
}

.hero-cta .btn-ghost {
  transition: all var(--transition-base);
}

.hero-cta .btn-ghost:hover {
  transform: translateX(4px);
}

/* ── Hero Stats — Animated Borders ── */
.hero-stats {
  display: flex;
  gap: var(--space-10);
  margin-top: var(--space-8);
  padding-top: var(--space-8);
  border-top: 1px solid var(--border);
  position: relative;
}

.hero-stats::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  width: 60px;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: 2px;
  animation: stats-line-slide 4s ease-in-out infinite;
}

@keyframes stats-line-slide {
  0%, 100% { left: 0; }
  50% { left: calc(100% - 60px); }
}

.hero-stat {
  position: relative;
}

.hero-stat-value {
  font-size: var(--text-3xl);
  font-weight: var(--font-bold);
  color: var(--text-primary);
  position: relative;
  display: inline-block;
}

.hero-stat-label {
  font-size: var(--text-sm);
  color: var(--text-tertiary);
  margin-top: var(--space-1);
}

/* Hero Visual */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* ── Decorative orbit rings around image ── */
.hero-visual::before {
  content: '';
  position: absolute;
  width: 440px;
  height: 440px;
  border: 1px dashed var(--border-accent);
  border-radius: 50%;
  animation: orbit-spin 30s linear infinite;
  opacity: 0.4;
}

.hero-visual::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border: 1px solid var(--border);
  border-radius: 50%;
  animation: orbit-spin 50s linear infinite reverse;
  opacity: 0.2;
}

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

/* ── Floating orbit dots ── */
.hero-image-wrapper {
  position: relative;
  width: 380px;
  height: 380px;
  animation: image-float 8s ease-in-out infinite;
}

@keyframes image-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-10px) rotate(0.5deg); }
  50% { transform: translateY(-5px) rotate(0deg); }
  75% { transform: translateY(-12px) rotate(-0.5deg); }
}

/* Orbit dot decorations */
.hero-image-wrapper::before {
  content: '';
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--gradient-primary);
  border-radius: 50%;
  top: 10%;
  right: -8%;
  box-shadow: 0 0 20px rgba(99, 102, 241, 0.5);
  animation: dot-pulse 3s ease-in-out infinite;
  z-index: 5;
}

.hero-image-wrapper::after {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--gradient-accent);
  border-radius: 50%;
  bottom: 15%;
  left: -6%;
  box-shadow: 0 0 16px rgba(139, 92, 246, 0.5);
  animation: dot-pulse 3s ease-in-out 1.5s infinite;
  z-index: 5;
}

@keyframes dot-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.6; }
}

.hero-image {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-2xl);
  object-fit: cover;
  position: relative;
  z-index: 2;
  border: 2px solid var(--border);
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), 
              border-color var(--transition-base),
              box-shadow var(--transition-base);
}

.hero-image:hover {
  transform: scale(1.03) rotate(1deg);
  border-color: var(--accent);
  box-shadow: 0 20px 60px rgba(99, 102, 241, 0.2);
}

.hero-image-glow {
  position: absolute;
  inset: -20px;
  background: var(--gradient-primary);
  border-radius: var(--radius-2xl);
  filter: blur(60px);
  opacity: 0.2;
  z-index: 1;
  animation: glow-breathe 4s ease-in-out infinite;
}

@keyframes glow-breathe {
  0%, 100% { opacity: 0.15; transform: scale(1); filter: blur(60px); }
  50% { opacity: 0.3; transform: scale(1.08); filter: blur(50px); }
}

/* ── Hero Background Effects — Enhanced ── */
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  transition: transform 0.3s ease-out;
}

.hero-orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.12) 0%, rgba(99, 102, 241, 0.03) 70%);
  top: -10%;
  right: -5%;
  animation: float-orb-1 10s ease-in-out infinite;
}

.hero-orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, rgba(139, 92, 246, 0.02) 70%);
  bottom: -10%;
  left: -5%;
  animation: float-orb-2 12s ease-in-out infinite;
}

.hero-orb-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.08) 0%, rgba(6, 182, 212, 0.01) 70%);
  top: 40%;
  left: 30%;
  animation: float-orb-3 14s ease-in-out infinite;
}

@keyframes float-orb-1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, -30px) scale(1.05); }
  50% { transform: translate(-20px, 20px) scale(0.95); }
  75% { transform: translate(15px, 10px) scale(1.02); }
}

@keyframes float-orb-2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-25px, -15px) scale(1.08); }
  66% { transform: translate(20px, 25px) scale(0.92); }
}

@keyframes float-orb-3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  30% { transform: translate(15px, -25px) scale(1.1); }
  60% { transform: translate(-15px, 15px) scale(0.9); }
}

/* ── Grid Background with Scan Line ── */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black, transparent);
  opacity: 0.4;
}

/* Animated scan line over grid */
.hero-grid::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(99, 102, 241, 0.03) 30%,
    rgba(99, 102, 241, 0.06) 50%,
    rgba(99, 102, 241, 0.03) 70%,
    transparent 100%
  );
  animation: grid-scan 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes grid-scan {
  0% { transform: translateY(-120px); }
  100% { transform: translateY(calc(100vh + 120px)); }
}

/* ══════════════════════════════════════
   ABOUT SECTION
   ══════════════════════════════════════ */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.about-text {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
}

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

.about-highlight {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-4);
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.about-highlight:hover {
  border-color: var(--border-hover);
  background: var(--bg-glass-hover);
}

.about-highlight-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--accent-glow);
  color: var(--accent);
  font-size: var(--text-lg);
}

.about-highlight-text h4 {
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  margin-bottom: var(--space-1);
}

.about-highlight-text p {
  font-size: var(--text-xs);
  color: var(--text-tertiary);
}

/* About Stats */
.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
}

.about-stat {
  text-align: center;
  padding: var(--space-6);
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

.about-stat:hover {
  border-color: var(--border-accent);
  box-shadow: var(--shadow-glow);
}

.about-stat-number {
  font-size: var(--text-4xl);
  font-weight: var(--font-bold);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-stat-label {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  margin-top: var(--space-2);
}

/* ══════════════════════════════════════
   SERVICES SECTION
   ══════════════════════════════════════ */

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

.service-card {
  padding: var(--space-8);
  position: relative;
}

.service-number {
  position: absolute;
  top: var(--space-6);
  right: var(--space-6);
  font-size: var(--text-5xl);
  font-weight: var(--font-extrabold);
  color: var(--text-primary);
  opacity: 0.03;
  line-height: 1;
}

.service-card .card-icon {
  width: 52px;
  height: 52px;
  font-size: var(--text-2xl);
}

.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-4);
}

.service-feature {
  font-size: var(--text-xs);
  color: var(--text-tertiary);
  padding: var(--space-1) var(--space-3);
  background: var(--bg-glass);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

/* ══════════════════════════════════════
   PROJECTS SECTION
   ══════════════════════════════════════ */

.projects-grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}

.project-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  overflow: hidden;
  padding: 0;
  cursor: pointer;
}

.project-card:nth-child(even) {
  direction: rtl;
}

.project-card:nth-child(even) > * {
  direction: ltr;
}

.project-image-wrapper {
  position: relative;
  overflow: hidden;
  min-height: 320px;
}

.project-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.project-card:hover .project-image {
  transform: scale(1.05);
}

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), transparent);
  opacity: 0;
  transition: opacity var(--transition-base);
}

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

.project-info {
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-4);
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.project-title {
  font-size: var(--text-2xl);
  font-weight: var(--font-bold);
}

.project-description {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
}

.project-meta {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-top: var(--space-2);
}

.project-meta-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  font-size: var(--text-sm);
}

.project-meta-label {
  font-weight: var(--font-semibold);
  color: var(--accent);
  min-width: 70px;
}

.project-meta-value {
  color: var(--text-secondary);
}

.project-tech {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-2);
}

.project-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  color: var(--accent);
  margin-top: var(--space-2);
  transition: gap var(--transition-fast);
}

.project-link:hover {
  gap: var(--space-3);
}

/* Planned Projects */
.planned-projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-12);
}

.planned-card {
  text-align: center;
  padding: var(--space-8);
  position: relative;
}

.planned-card .card-icon {
  margin: 0 auto var(--space-5);
  width: 56px;
  height: 56px;
}

.planned-badge {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
}

/* ══════════════════════════════════════
   DASHBOARD SECTION
   ══════════════════════════════════════ */

.dashboard-wrapper {
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  position: relative;
  overflow: hidden;
}

.dashboard-wrapper::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: var(--gradient-primary);
  z-index: -1;
  opacity: 0.05;
}

.dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--border);
}

.dashboard-title {
  font-size: var(--text-lg);
  font-weight: var(--font-semibold);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.dashboard-tabs {
  display: flex;
  gap: var(--space-1);
  background: var(--bg-glass);
  border-radius: var(--radius-md);
  padding: var(--space-1);
}

.dashboard-tab {
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-xs);
  font-weight: var(--font-medium);
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition-fast);
  border: none;
  background: none;
}

.dashboard-tab.active {
  background: var(--accent);
  color: white;
}

.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}

.dashboard-stat-card {
  padding: var(--space-5);
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.dashboard-stat-card:hover {
  border-color: var(--border-hover);
}

.dashboard-stat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-3);
}

.dashboard-stat-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  font-size: var(--text-sm);
}

.dashboard-stat-change {
  font-size: var(--text-xs);
  font-weight: var(--font-medium);
  padding: var(--space-1) var(--space-2);
  border-radius: var(--radius-sm);
}

.dashboard-stat-change.positive {
  color: var(--success);
  background: var(--success-bg);
}

.dashboard-stat-value {
  font-size: var(--text-2xl);
  font-weight: var(--font-bold);
  color: var(--text-primary);
  margin-bottom: var(--space-1);
}

.dashboard-stat-label {
  font-size: var(--text-xs);
  color: var(--text-tertiary);
}

/* Mini Chart */
.dashboard-chart-area {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--space-4);
}

.dashboard-chart {
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-5);
  min-height: 200px;
}

.dashboard-chart-title {
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  margin-bottom: var(--space-4);
}

.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: var(--space-2);
  height: 140px;
  padding-top: var(--space-4);
}

.chart-bar {
  flex: 1;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  transition: all var(--transition-base);
  position: relative;
  min-width: 0;
}

.chart-bar:hover {
  filter: brightness(1.2);
}

.chart-bar-label {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 9px;
  color: var(--text-tertiary);
  white-space: nowrap;
}

.dashboard-activity {
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-5);
}

.dashboard-activity-title {
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  margin-bottom: var(--space-4);
}

.activity-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--border);
}

.activity-item:last-child {
  border-bottom: none;
}

.activity-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  min-width: 8px;
}

.activity-text {
  font-size: var(--text-xs);
  color: var(--text-secondary);
  flex: 1;
}

.activity-time {
  font-size: 10px;
  color: var(--text-tertiary);
  white-space: nowrap;
}

/* ══════════════════════════════════════
   TECH STACK SECTION
   ══════════════════════════════════════ */

.tech-categories {
  display: flex;
  flex-direction: column;
  gap: var(--space-12);
}

.tech-intro {
  margin-bottom: var(--space-10);
}

.tech-intro-card {
  position: relative;
  overflow: hidden;
  padding: var(--space-8);
  background:
    radial-gradient(circle at top right, rgba(56, 189, 248, 0.12), transparent 32%),
    radial-gradient(circle at bottom left, rgba(34, 197, 94, 0.1), transparent 28%),
    var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.tech-intro-copy,
.tech-intro-note {
  position: relative;
  z-index: 1;
  max-width: 72ch;
}

.tech-intro-copy {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-4);
}

.tech-intro-note {
  font-size: var(--text-sm);
  color: var(--text-primary);
  line-height: var(--leading-relaxed);
}

.tech-category-title {
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wider);
  margin-bottom: var(--space-6);
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: var(--space-4);
}

.tech-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-5);
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  cursor: default;
}

.tech-item:hover {
  border-color: var(--border-accent);
  background: var(--bg-glass-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.tech-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-2xl);
}

.tech-icon img,
.tech-icon svg {
  width: 36px;
  height: 36px;
}

.tech-name {
  font-size: var(--text-xs);
  font-weight: var(--font-medium);
  color: var(--text-secondary);
  text-align: center;
}

/* ══════════════════════════════════════
   CONTACT SECTION
   ══════════════════════════════════════ */

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

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

.contact-info-text {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
}

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

.contact-method {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-4);
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--text-primary);
  transition: all var(--transition-base);
}

.contact-method:hover {
  border-color: var(--border-accent);
  background: var(--bg-glass-hover);
  transform: translateX(4px);
}

.contact-method-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  color: white;
  font-size: var(--text-lg);
}

.contact-method-text h4 {
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  margin-bottom: var(--space-1);
}

.contact-method-text p {
  font-size: var(--text-xs);
  color: var(--text-tertiary);
}

.contact-socials {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

/* Contact Form */
.contact-form-wrapper {
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  backdrop-filter: blur(12px);
}

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

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

.contact-form .btn-primary {
  width: 100%;
  padding: var(--space-4);
  font-size: var(--text-base);
  margin-top: var(--space-2);
}

.contact-form.is-submitting .btn-primary {
  opacity: 0.75;
  cursor: wait;
}

.form-honeypot {
  display: none;
}

.form-status {
  display: none;
  margin-top: var(--space-3);
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
}

.form-status.show {
  display: block;
}

.form-status.is-success {
  color: var(--success);
  background: var(--success-bg);
  border-color: rgba(34, 197, 94, 0.2);
}

.form-status.is-error {
  color: var(--warning);
  background: var(--warning-bg);
  border-color: rgba(245, 158, 11, 0.2);
}

.form-success {
  display: none;
  text-align: center;
  padding: var(--space-8);
}

.form-success.show {
  display: block;
}

.form-success-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-4);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--success-bg);
  color: var(--success);
  font-size: var(--text-2xl);
}

.form-success .form-success-icon + .form-success-icon {
  display: none;
}

/* ══════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════ */

@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--space-10);
  }

  .hero-content {
    align-items: center;
  }

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

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

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

  .hero-image-wrapper {
    width: 300px;
    height: 300px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }

  .project-card {
    grid-template-columns: 1fr;
  }

  .project-card:nth-child(even) {
    direction: ltr;
  }

  .project-image-wrapper {
    min-height: 240px;
  }

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

  .dashboard-chart-area {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  .hero-title {
    font-size: var(--text-5xl);
  }

  .hero-stats {
    gap: var(--space-6);
    flex-wrap: wrap;
  }

  .hero-image-wrapper {
    width: 260px;
    height: 260px;
  }

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

  .planned-projects-grid {
    grid-template-columns: 1fr;
  }

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

  .about-highlights {
    grid-template-columns: 1fr;
  }

  .tech-intro-card {
    padding: var(--space-6);
  }

  .tech-intro-copy {
    font-size: var(--text-base);
  }

  .tech-grid {
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: var(--text-4xl);
  }

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

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

  .hero-image-wrapper {
    width: 220px;
    height: 220px;
  }
}
