/* DS Tech Sales Page - Main CSS */
/* Design System: Ocean Blue Theme */

/* CSS Variables - Ocean Blue Design System */
:root {
  /* Primary Colors */
  --color-deep-ocean: #053742;
  --color-ocean-blue: #39a2db;
  --color-sky-blue: #a2dbfa;
  --color-ice-white: #e8f0f2;

  /* Extended Palette */
  --color-deep-ocean-light: #0a4a58;
  --color-deep-ocean-dark: #032a32;
  --color-ocean-blue-light: #5bb5e5;
  --color-ocean-blue-dark: #2a7ba8;
  --color-sky-blue-light: #c4eafc;
  --color-sky-blue-dark: #7cc5f0;

  /* Legacy variable mapping for compatibility */
  --primary-color: var(--color-ocean-blue);
  --secondary-color: var(--color-sky-blue);
  --accent-color: var(--color-deep-ocean);
  --bg-primary: #ffffff;
  --bg-secondary: var(--color-ice-white);
  --bg-tertiary: #f4f8fa;
  --bg-dark: var(--color-deep-ocean);
  --text-primary: #1a2634;
  --text-secondary: #3d4f5f;
  --text-muted: #6b7d8a;
  --text-light: #ffffff;
  --border-color: #d1e3ea;
  --border-medium: #b0cdd8;

  /* Gradients */
  --gradient-1: linear-gradient(
    135deg,
    var(--color-ocean-blue) 0%,
    var(--color-sky-blue) 100%
  );
  --gradient-2: linear-gradient(
    135deg,
    var(--color-deep-ocean) 0%,
    var(--color-ocean-blue) 100%
  );
  --gradient-3: linear-gradient(
    135deg,
    var(--color-ocean-blue) 0%,
    var(--color-sky-blue) 100%
  );
  --gradient-primary: linear-gradient(
    135deg,
    var(--color-deep-ocean) 0%,
    var(--color-ocean-blue) 100%
  );
  --gradient-primary-light: linear-gradient(
    135deg,
    var(--color-ocean-blue) 0%,
    var(--color-sky-blue) 100%
  );
  --gradient-hero: linear-gradient(
    135deg,
    var(--color-deep-ocean) 0%,
    var(--color-deep-ocean-light) 50%,
    var(--color-ocean-blue-dark) 100%
  );

  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(5, 55, 66, 0.08);
  --shadow-md: 0 4px 8px rgba(5, 55, 66, 0.12);
  --shadow-lg: 0 8px 16px rgba(5, 55, 66, 0.15);
  --shadow-xl: 0 16px 32px rgba(5, 55, 66, 0.2);
  --shadow-glow: 0 0 20px rgba(57, 162, 219, 0.4);
  --shadow-glow-lg: 0 0 40px rgba(57, 162, 219, 0.5);

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 24px;
  --radius-full: 9999px;

  /* Transitions */
  --transition: all 0.3s ease;
  --transition-fast: 150ms ease;
  --transition-slow: 500ms ease;

  /* Typography */
  --font-mono: "JetBrains Mono", "Fira Code", monospace;
  --font-sans: "Rubik", "Assistant", "Heebo", -apple-system, BlinkMacSystemFont,
    sans-serif;
  --font-secondary: "IBM Plex Sans Hebrew", "Assistant", sans-serif;

  /* Semantic Colors */
  --color-success: #10b981;
  --color-success-light: #d1fae5;
  --color-warning: #f59e0b;
  --color-warning-light: #fef3c7;
  --color-error: #ef4444;
  --color-error-light: #fee2e2;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden !important;
  width: 100%;
  max-width: 100vw;
  height: 100%;
  touch-action: pan-y pinch-zoom;
  -webkit-overflow-scrolling: touch;
}

body {
  font-family: var(--font-sans);
  background-color: #ffffff;
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden !important;
  overflow-y: auto !important;
  width: 100vw;
  max-width: 100vw;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  touch-action: pan-y pinch-zoom;
  -webkit-overflow-scrolling: touch;
  min-height: 100vh;
  min-height: 100dvh; /* Modern viewport height with fallback */
  height: auto;
}

/* Prevent any element from causing horizontal scroll */
*,
*::before,
*::after {
  max-width: 100vw;
}

.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
  overflow-x: hidden;
}

/* Loading Screen */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
  cursor: pointer;
  /* Failsafe: Auto-hide after 5 seconds using CSS animation */
  animation: loading-screen-failsafe 5s forwards;
}

@keyframes loading-screen-failsafe {
  0%,
  80% {
    opacity: 1;
    pointer-events: auto;
  }
  100% {
    opacity: 0;
    pointer-events: none;
    display: none;
  }
}

.loader {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  min-height: 100px;
  justify-content: center;
  width: 100%;
  max-width: 400px;
}

.terminal-loader {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.2);
  min-width: 300px;
  direction: ltr;
}

.terminal-line {
  font-family: var(--font-mono);
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.prompt {
  color: var(--color-sky-blue);
  font-weight: 600;
}

.command {
  color: #ffffff;
  min-height: 1.5rem;
}

.cursor {
  color: var(--color-sky-blue);
  animation: blink 1s infinite;
}

@keyframes blink {
  0%,
  50% {
    opacity: 1;
  }
  51%,
  100% {
    opacity: 0;
  }
}

/* ============================================
   NAVIGATION - SIMPLE TOP NAVBAR
   ============================================ */

/* Header Container */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  transition: all 0.3s ease;
}

.header.scrolled {
  box-shadow: var(--shadow-md);
  border-bottom-color: var(--border-medium);
}

/* Nav Container */
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  gap: 1rem;
}

/* Brand Logo */
.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--color-deep-ocean);
  text-decoration: none;
  transition: transform 0.3s ease;
  -webkit-tap-highlight-color: transparent;
  flex-shrink: 0;
}

.nav-brand:hover {
  transform: scale(1.02);
}

.brand-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.brand-text {
  display: block;
  white-space: nowrap;
  color: var(--color-deep-ocean);
}

.brand-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-1);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

/* Navigation Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-link {
  padding: 0.625rem 1rem;
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.875rem;
  background: transparent;
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  -webkit-tap-highlight-color: transparent;
  white-space: nowrap;
}

.nav-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-1);
  opacity: 0.1;
  transition: left 0.3s ease;
}

.nav-link:hover,
.nav-link:active {
  color: var(--color-ocean-blue);
  background: var(--color-ice-white);
  border-color: var(--border-color);
  transform: translateY(-2px);
}

.nav-link:hover::before,
.nav-link:active::before {
  left: 0;
}

.nav-link:active {
  transform: translateY(0) scale(0.98);
}

/* Special styling for restaurant link */
.nav-link.restaurant-link {
  background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
  color: #ffffff;
  border-color: transparent;
  font-weight: 600;
}

.nav-link.restaurant-link:hover,
.nav-link.restaurant-link:active {
  background: linear-gradient(135deg, #ff5252, #f44336);
  box-shadow: 0 4px 12px rgba(255, 107, 107, 0.4);
}

/* Special styling for contact link */
.nav-link:last-child {
  background: var(--gradient-1);
  color: var(--color-deep-ocean);
  border-color: transparent;
  font-weight: 600;
}

.nav-link:last-child:hover,
.nav-link:last-child:active {
  background: var(--gradient-primary);
  color: #ffffff;
  box-shadow: var(--shadow-glow);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .nav-container {
    padding: 0.75rem 1rem;
  }

  .brand-text {
    font-size: 1rem;
  }

  .brand-logo {
    width: 36px;
    height: 36px;
  }

  .nav-links {
    gap: 0.5rem;
  }

  .nav-link {
    padding: 0.5rem 0.75rem;
    font-size: 0.8125rem;
  }
}

/* Very small mobile screens */
@media (max-width: 480px) {
  .nav-container {
    padding: 0.625rem 0.75rem;
  }

  .brand-text {
    display: none;
  }

  .nav-links {
    gap: 0.375rem;
  }

  .nav-link {
    padding: 0.5rem 0.625rem;
    font-size: 0.75rem;
  }
}

/* Hero Buttons - Enhanced Design */
.btn-primary {
  background: var(--gradient-primary);
  color: #ffffff;
  border: none;
  padding: 1.25rem 2.5rem;
  border-radius: var(--radius-xl);
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(10px);
  z-index: 20;
  pointer-events: auto;
  -webkit-tap-highlight-color: rgba(57, 162, 219, 0.3);
  touch-action: manipulation;
  min-height: 56px;
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.6s ease;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: var(--shadow-xl), var(--shadow-glow);
  background: var(--gradient-1);
}

.btn-primary:active {
  transform: translateY(-2px) scale(0.98);
  transition: all 0.1s ease;
}

.btn-ghost {
  background: transparent;
  color: var(--color-ocean-blue);
  border: 2px solid var(--color-ocean-blue);
  padding: 1.25rem 2.5rem;
  border-radius: var(--radius-xl);
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  z-index: 20;
  pointer-events: auto;
  -webkit-tap-highlight-color: rgba(57, 162, 219, 0.3);
  touch-action: manipulation;
  min-height: 56px;
}

.btn-ghost::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: var(--gradient-1);
  border-radius: 50%;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translate(-50%, -50%);
  z-index: 0;
}

.btn-ghost > span {
  position: relative;
  z-index: 1;
}

.btn-ghost:hover::before {
  width: 300%;
  height: 300%;
}

.btn-ghost:hover {
  border-color: var(--color-ocean-blue);
  color: var(--color-deep-ocean);
  transform: translateY(-4px) scale(1.02);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.btn-ghost:active {
  transform: translateY(-2px) scale(0.98);
  transition: all 0.1s ease;
}

.btn-submit {
  background: var(--gradient-primary);
  color: #ffffff;
  border: none;
  padding: 1rem 2rem;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  justify-content: center;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.btn-submit.loading {
  opacity: 0.7;
  pointer-events: none;
}

.btn-submit.success {
  background: linear-gradient(135deg, #10b981, #065f46);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 80px;
  overflow: hidden;
  background: var(--gradient-hero);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.grid-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.05) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.5;
  animation: grid-move 20s linear infinite;
}

@keyframes grid-move {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(50px, 50px);
  }
}

/* Animated background with geometric shapes */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 30%,
      rgba(57, 162, 219, 0.3) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(162, 219, 250, 0.2) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 80%,
      rgba(57, 162, 219, 0.15) 0%,
      transparent 50%
    );
  animation: backgroundMove 15s ease-in-out infinite;
  z-index: 1;
}

@keyframes backgroundMove {
  0%,
  100% {
    transform: translateX(0) translateY(0);
    opacity: 0.8;
  }
  25% {
    transform: translateX(-20px) translateY(-10px);
    opacity: 0.6;
  }
  50% {
    transform: translateX(20px) translateY(20px);
    opacity: 1;
  }
  75% {
    transform: translateX(-10px) translateY(15px);
    opacity: 0.7;
  }
}

.hero-content {
  max-width: 800px;
  text-align: center;
  z-index: 2;
}

.hero-intro {
  margin-bottom: 3rem;
}

.intro-line {
  color: var(--color-sky-blue);
  font-size: 1.125rem;
  display: block;
  margin-bottom: 1rem;
}

.hero-title {
  margin-bottom: 2rem;
}

.title-name {
  display: block;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.title-role {
  display: block;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 300;
  color: var(--color-sky-blue);
  letter-spacing: 0.1em;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--color-sky-blue);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 4rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 10;
  pointer-events: auto;
}

.hero-actions::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 120%;
  background: radial-gradient(
    ellipse at center,
    rgba(162, 219, 250, 0.1) 0%,
    transparent 70%
  );
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: -1;
  animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%,
  100% {
    opacity: 0.3;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 600px;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
  opacity: 1 !important;
  transform: translateY(0) !important;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-item.animate {
  opacity: 1;
  transform: translateY(0);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: #ffffff;
  display: block;
  line-height: 1;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--color-sky-blue);
  margin-top: 0.5rem;
}

/* Section Styles */
section {
  padding: 3rem 0;
  opacity: 1 !important;
  transform: translateY(0) !important;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

section.animate {
  opacity: 1;
  transform: translateY(0);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-tag {
  color: var(--color-ocean-blue);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  display: block;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--color-deep-ocean);
  margin: 0;
}

/* About Section */
.about {
  background: var(--bg-secondary);
}

.closing-brace {
  position: absolute;
  top: -1rem;
  right: -4rem;
  font-size: 8rem;
  font-family: "Fira Code", "JetBrains Mono", "SF Mono", Monaco, "Cascadia Code",
    "Roboto Mono", Consolas, "Courier New", monospace;
  font-weight: 600;
  background: linear-gradient(
    45deg,
    var(--color-ocean-blue),
    var(--color-sky-blue)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.15;
  line-height: 1;
  pointer-events: none;
  z-index: 1;
  transform: rotate(-10deg);
  animation: bracePulse 4s ease-in-out infinite alternate;
}

@keyframes bracePulse {
  0% {
    opacity: 0.15;
    transform: rotate(-10deg) scale(1);
  }
  100% {
    opacity: 0.25;
    transform: rotate(-5deg) scale(1.1);
  }
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text {
  position: relative;
}

.about-description {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.tech-stack {
  display: grid;
  gap: 2rem;
}

.tech-category h3 {
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-weight: 600;
}

.tech-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.tech-item {
  background: #ffffff;
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-lg);
  font-size: 0.875rem;
  font-weight: 500;
  transition: var(--transition);
}

.tech-item:hover {
  border-color: var(--color-ocean-blue);
  color: var(--color-ocean-blue);
  background: var(--color-ice-white);
  transform: translateY(-2px);
}

/* Code Editor */
.code-editor {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.editor-header {
  background: var(--bg-secondary);
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-color);
}

.editor-tabs {
  display: flex;
  gap: 0.5rem;
}

.tab {
  background: var(--bg-tertiary);
  color: var(--text-secondary);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  cursor: pointer;
  transition: var(--transition);
}

.tab.active {
  background: var(--primary-color);
  color: var(--bg-primary);
}

.editor-controls {
  display: flex;
  gap: 0.5rem;
}

.control {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--border-color);
}

.control.red {
  background: #ff5f56;
}
.control.yellow {
  background: #ffbd2e;
}
.control.green {
  background: #27ca3f;
}

.editor-content {
  display: flex;
  font-family: var(--font-mono);
  font-size: 0.875rem;
  line-height: 1.6;
  direction: ltr;
}

.line-numbers {
  background: var(--bg-secondary);
  padding: 1.5rem 1rem;
  color: var(--text-muted);
  text-align: right;
  user-select: none;
  border-left: 1px solid var(--border-color);
}

.line-numbers span {
  display: block;
}

.code-content {
  padding: 1.5rem;
  flex: 1;
}

.code-line {
  margin-bottom: 0.25rem;
}

.keyword {
  color: #ff79c6;
}
.variable {
  color: #8be9fd;
}
.operator {
  color: #ff79c6;
}
.punctuation {
  color: #f8f8f2;
}
.parameter {
  color: #ffb86c;
}
.property {
  color: #50fa7b;
}
.boolean {
  color: #bd93f9;
}
.string {
  color: #f1fa8c;
}
.indent {
  color: transparent;
  white-space: pre;
}

/* New About Section Styles */
.about-main {
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.value-item {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-color);
  text-align: center;
  transition: var(--transition);
}

.value-item:hover {
  border-color: var(--color-ocean-blue);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.value-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary-light);
  border-radius: var(--radius-lg);
  color: #ffffff;
}

.value-item h3 {
  font-size: 1.125rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.value-item p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.about-visual {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.trust-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.trust-badge {
  background: var(--gradient-hero);
  color: #ffffff;
  padding: 1.5rem 1rem;
  border-radius: var(--radius-xl);
  text-align: center;
}

.badge-number {
  display: block;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.badge-text {
  font-size: 0.875rem;
  opacity: 0.9;
}

.quote-box {
  background: #ffffff;
  padding: 2rem;
  border-radius: var(--radius-xl);
  border-right: 4px solid var(--color-ocean-blue);
}

.quote-box blockquote {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.quote-box cite {
  color: var(--color-ocean-blue);
  font-weight: 600;
  font-style: normal;
}

/* Process Section Updates */
.section-subtitle {
  color: var(--text-muted);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0.5rem auto 0;
  text-align: center;
}

.process .section-subtitle {
  margin-bottom: 1rem;
}

.process-step {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.process-step:hover {
  border-color: var(--color-ocean-blue);
  box-shadow: var(--shadow-md);
}

.step-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-ice-white);
  border-radius: var(--radius-lg);
  color: var(--color-ocean-blue);
}

.process-step .step-number {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  color: #ffffff;
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.875rem;
}

.step-content h3 {
  color: var(--text-primary);
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.step-content p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.process-cta {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background: var(--color-ice-white);
  border-radius: var(--radius-xl);
}

.process-cta p {
  color: var(--text-secondary);
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

/* Services Section Updates */
.service-tagline {
  display: block;
  font-size: 0.875rem;
  color: var(--color-ocean-blue);
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.service-benefits {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.service-benefits li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.service-benefits li svg {
  color: var(--color-success);
  flex-shrink: 0;
}

.btn-service {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-ocean-blue);
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: var(--transition);
}

.btn-service:hover {
  gap: 0.75rem;
}

.btn-service svg {
  transition: var(--transition);
}

.btn-service:hover svg {
  transform: translateX(-4px);
}

.services-note {
  text-align: center;
  margin-top: 2.5rem;
  padding: 1rem;
}

.services-note p {
  color: var(--text-muted);
  font-size: 1rem;
}

.services-note a {
  color: var(--color-ocean-blue);
  font-weight: 600;
  text-decoration: none;
}

.services-note a:hover {
  text-decoration: underline;
}

/* Contact Section Updates */
.contact .section-subtitle {
  margin-bottom: 2rem;
}

.form-header {
  margin-bottom: 1.5rem;
}

.form-header h3 {
  color: var(--text-primary);
  font-size: 1.125rem;
  font-weight: 600;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-note {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.form-note a {
  color: var(--color-ocean-blue);
  font-weight: 600;
  text-decoration: none;
}

.form-note a:hover {
  text-decoration: underline;
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-submit svg {
  transition: var(--transition);
}

.btn-submit:hover svg {
  transform: translateX(-4px);
}

/* Responsive Styles for New Elements */
@media (max-width: 768px) {
  .about-values {
    grid-template-columns: 1fr;
  }

  .trust-badges {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
  }

  .trust-badge {
    padding: 1rem 0.5rem;
  }

  .badge-number {
    font-size: 1.5rem;
  }

  .badge-text {
    font-size: 0.75rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .process-step {
    flex-direction: column;
    text-align: center;
  }

  .step-icon {
    margin: 0 auto;
  }

  .process-step .step-number {
    right: 50%;
    transform: translateX(50%);
  }
}

/* About Profile Section */
.about-profile {
  background: var(--gradient-hero);
  color: #ffffff;
  padding: 2rem;
  border-radius: var(--radius-xl);
  margin-bottom: 1.5rem;
}

.profile-info h3 {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.profile-title {
  display: block;
  font-size: 0.9375rem;
  opacity: 0.9;
  margin-bottom: 1rem;
}

.profile-desc {
  font-size: 0.9375rem;
  line-height: 1.6;
  opacity: 0.9;
}

.trust-highlights {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-color);
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-color);
}

.highlight-item:last-child {
  border-bottom: none;
}

.highlight-item svg {
  color: var(--color-success);
  flex-shrink: 0;
}

.highlight-item span {
  color: var(--text-secondary);
  font-size: 0.9375rem;
}

/* OurServices Showcase */
.services-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
}

.showcase-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  border: 2px solid var(--border-color);
  padding: 0;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  position: relative;
}

.showcase-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary-light);
  opacity: 0;
  transition: var(--transition);
}

.showcase-card:hover {
  border-color: var(--color-ocean-blue);
  box-shadow: var(--shadow-xl);
  transform: translateY(-8px);
}

.showcase-card:hover::before {
  opacity: 1;
}

.showcase-icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  border-radius: var(--radius-xl);
  margin: 2rem auto 1.5rem;
  box-shadow: var(--shadow-md);
  position: relative;
}

.showcase-icon::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: var(--radius-xl);
  border: 2px dashed var(--color-sky-blue);
  opacity: 0.5;
}

.showcase-icon svg {
  width: 36px;
  height: 36px;
  color: #ffffff;
}

.showcase-content {
  padding: 0 2rem;
  text-align: center;
}

.showcase-tagline {
  display: inline-block;
  font-size: 0.8125rem;
  color: var(--color-ocean-blue);
  font-weight: 600;
  margin-bottom: 0.75rem;
  background: var(--color-ice-white);
  padding: 0.375rem 1rem;
  border-radius: var(--radius-full);
  letter-spacing: 0.02em;
}

.showcase-title {
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-weight: 700;
}

.showcase-description {
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.showcase-benefits {
  list-style: none;
  padding: 1.5rem 2rem;
  margin: 0;
  flex-grow: 1;
  background: var(--color-ice-white);
  text-align: right;
}

.showcase-benefits li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.625rem 0;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-color);
}

.showcase-benefits li:last-child {
  border-bottom: none;
}

.showcase-benefits li svg {
  color: var(--color-success);
  flex-shrink: 0;
  background: #ffffff;
  border-radius: 50%;
  padding: 2px;
}

.showcase-footer {
  padding: 1.5rem 2rem;
  background: #ffffff;
  border-top: 2px solid var(--border-color);
  text-align: center;
}

.showcase-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  background: var(--gradient-primary);
  padding: 0.875rem 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.showcase-link:hover {
  gap: 1rem;
  box-shadow: var(--shadow-md), var(--shadow-glow);
  transform: translateY(-2px);
}

.showcase-link svg {
  transition: var(--transition);
}

.showcase-link:hover svg {
  transform: translateX(-4px);
}

.services-cta-box {
  margin-top: 3rem;
  padding: 2.5rem;
  background: var(--gradient-hero);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.services-cta-box .cta-content h3 {
  color: #ffffff;
  font-size: 1.375rem;
  margin-bottom: 0.5rem;
}

.services-cta-box .cta-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
}

/* Contact Form Card */
.form-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}

.form-card-header {
  background: var(--gradient-hero);
  color: #ffffff;
  padding: 2rem;
  text-align: center;
}

.form-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.2);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.form-card-header h3 {
  font-size: 1.375rem;
  margin-bottom: 0.5rem;
}

.form-card-header p {
  font-size: 0.9375rem;
  opacity: 0.9;
}

.form-card .contact-form {
  padding: 2rem;
}

.form-card .form-group label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text-primary);
}

.form-card .form-group label svg {
  color: var(--color-ocean-blue);
}

.btn-submit-new {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: var(--gradient-primary);
  color: #ffffff;
  border: none;
  border-radius: var(--radius-lg);
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.btn-submit-new:hover:not(:disabled) {
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}

.btn-submit-new:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.form-footer {
  padding: 1.5rem 2rem;
  background: var(--bg-secondary);
  text-align: center;
  border-top: 1px solid var(--border-color);
}

.form-footer p {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.phone-link-big {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-ocean-blue);
  font-size: 1.25rem;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
}

.phone-link-big:hover {
  color: var(--color-deep-ocean);
}

/* ============================================
   FORM FIELD SEQUENTIAL ANIMATION
   ============================================ */
.form-card .form-group {
  position: relative;
}

/* Arrow indicator for current field */
.form-card .form-group::before {
  content: "";
  position: absolute;
  right: -24px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-right: 10px solid var(--color-ocean-blue);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Show arrow on focus */
.form-card .form-group:focus-within::before {
  opacity: 1;
  animation: arrow-bounce 1s ease-in-out infinite;
}

@keyframes arrow-bounce {
  0%,
  100% {
    transform: translateY(-50%) translateX(0);
  }
  50% {
    transform: translateY(-50%) translateX(-4px);
  }
}

/* Sequential highlight animation */
.form-card .form-group.form-step-active {
  animation: step-highlight 0.5s ease-out;
}

@keyframes step-highlight {
  0% {
    background: rgba(57, 162, 219, 0.2);
    transform: scale(1.02);
  }
  100% {
    background: transparent;
    transform: scale(1);
  }
}

/* Field completion indicator - valid */
.form-card .form-group.field-complete label::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 0.5rem;
  background: var(--color-success);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
  animation: checkmark-pop 0.3s ease-out;
}

/* Field invalid indicator - X */
.form-card .form-group.field-invalid label::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 0.5rem;
  background: var(--color-error);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'%3E%3C/line%3E%3Cline x1='6' y1='6' x2='18' y2='18'%3E%3C/line%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
  animation: x-shake 0.4s ease-out;
}

/* Error message styling */
.field-error-message {
  color: var(--color-error);
  font-size: 0.8125rem;
  margin-top: 0.375rem;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  animation: error-slide-in 0.3s ease-out;
}

.field-error-message svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* Invalid field input styling */
.form-card .form-group.field-invalid input,
.form-card .form-group.field-invalid textarea,
.form-card .form-group.field-invalid select {
  border-color: var(--color-error);
  background: rgba(220, 53, 69, 0.05);
}

.form-card .form-group.field-invalid input:focus,
.form-card .form-group.field-invalid textarea:focus,
.form-card .form-group.field-invalid select:focus {
  border-color: var(--color-error);
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.15);
}

@keyframes checkmark-pop {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes x-shake {
  0%,
  100% {
    transform: translateX(0);
  }
  20%,
  60% {
    transform: translateX(-3px);
  }
  40%,
  80% {
    transform: translateX(3px);
  }
}

@keyframes error-slide-in {
  0% {
    opacity: 0;
    transform: translateY(-5px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Progress dots indicator */
.form-progress {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.form-progress-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border-color);
  transition: var(--transition);
}

.form-progress-dot.active {
  background: var(--color-ocean-blue);
  transform: scale(1.2);
}

.form-progress-dot.completed {
  background: var(--color-success);
}

@media (max-width: 768px) {
  .services-showcase {
    grid-template-columns: 1fr;
  }

  .showcase-card {
    margin: 0 auto;
    max-width: 400px;
  }

  .showcase-icon {
    width: 64px;
    height: 64px;
    margin: 1.5rem auto 1rem;
  }

  .showcase-icon svg {
    width: 32px;
    height: 32px;
  }

  .showcase-content {
    padding: 0 1.5rem;
  }

  .showcase-title {
    font-size: 1.25rem;
  }

  .showcase-benefits {
    padding: 1rem 1.5rem;
  }

  .showcase-footer {
    padding: 1.25rem 1.5rem;
  }

  .showcase-link {
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
  }

  .services-cta-box {
    flex-direction: column;
    text-align: center;
  }

  .form-card-header {
    padding: 1.5rem;
  }

  .form-card .contact-form {
    padding: 1.5rem;
  }
}

/* Services Section */
.services {
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.services::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    transparent 0%,
    rgba(0, 245, 255, 0.03) 50%,
    transparent 100%
  );
  pointer-events: none;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  position: relative;
  z-index: 1;
  justify-items: center;
}

.service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 280px;
  padding: 1.5rem;
  margin: 10px 0;
  text-align: center;
  position: relative;
  cursor: default;
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-xl);
  background: #ffffff;
  border: 1px solid var(--border-color);
  height: auto;
  min-height: 320px;
  transition: var(--transition);
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--color-ocean-blue);
  transform: translateY(-4px);
}

.service-card.featured {
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--color-ocean-blue);
  background: #ffffff;
}

.service-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-1);
  color: var(--color-deep-ocean);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-lg);
  font-size: 0.75rem;
  font-weight: 600;
}

.service-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

.service-icon {
  width: 64px;
  height: 64px;
  background: var(--gradient-1);
  border: none;
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem auto;
  font-size: 1.5rem;
  color: var(--color-deep-ocean);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.service-icon::after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    transparent 0%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 100%
  );
  content: "";
  pointer-events: none;
  border-radius: 16px;
}

.service-icon svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
  z-index: 1;
  position: relative;
}

/* SVG Icons for Services */
.service-icon .icon-globe::before,
.service-icon .icon-smartphone::before,
.service-icon .icon-cloud::before,
.service-icon .icon-briefcase::before,
.service-icon .icon-cpu::before,
.service-icon .icon-book-open::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.icon-globe::before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 32px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23ffffff' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 17.93c-3.95-.49-7-3.85-7-7.93 0-.62.08-1.21.21-1.79L9 15v1c0 1.1.9 2 2 2v1.93zm6.9-2.54c-.26-.81-1-1.39-1.9-1.39h-1v-3c0-.55-.45-1-1-1H8v-2h2c.55 0 1-.45 1-1V7h2c1.1 0 2-.9 2-2v-.41c2.93 1.19 5 4.06 5 7.41 0 2.08-.8 3.97-2.1 5.39z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.icon-smartphone::before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 32px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23ffffff' viewBox='0 0 24 24'%3E%3Cpath d='M17 1H7c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zM7 4V3h10v1H7zm0 14V6h10v12H7z'/%3E%3Ccircle cx='12' cy='20' r='1'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.icon-cloud::before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 32px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23ffffff' viewBox='0 0 24 24'%3E%3Cpath d='M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM14 13v4h-4v-4H7l5-5 5 5h-3z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.icon-briefcase::before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 32px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23ffffff' viewBox='0 0 24 24'%3E%3Cpath d='M10 16V8c0-1.1.9-2 2-2s2 .9 2 2v8c0 1.1-.9 2-2 2s-2-.9-2-2z'/%3E%3Cpath d='M20 7h-4V5l-2-2h-4L8 5v2H4c-1.1 0-2 .9-2 2v9c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V9c0-1.1-.9-2-2-2zM10 5h4v2h-4V5zm10 14H4v-5h5v1c0 1.1.9 2 2 2h2c1.1 0 2-.9 2-2v-1h5v5z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.icon-cpu::before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 32px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23ffffff' viewBox='0 0 24 24'%3E%3Cpath d='M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.icon-book-open::before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 32px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23ffffff' viewBox='0 0 24 24'%3E%3Cpath d='M21 5c-1.11-.35-2.33-.5-3.5-.5-1.95 0-4.05.4-5.5 1.5-1.45-1.1-3.55-1.5-5.5-1.5S2.45 4.9 1 6v14.65c0 .25.25.5.5.5.1 0 .15-.05.25-.05C3.1 20.45 5.05 20 6.5 20c1.95 0 4.05.4 5.5 1.5 1.35-.85 3.8-1.5 5.5-1.5 1.65 0 3.35.3 4.75 1.05.1.05.15.05.25.05.25 0 .5-.25.5-.5V6c-.6-.45-1.25-.75-2-1zm0 13.5c-1.1-.35-2.3-.5-3.5-.5-1.7 0-4.15.65-5.5 1.5V8c1.35-.85 3.8-1.5 5.5-1.5 1.2 0 2.4.15 3.5.5v11.5z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.service-title {
  font-weight: 600;
  text-transform: none;
  color: var(--color-deep-ocean);
  margin: 0.5rem 0;
  font-size: 1.1rem;
  letter-spacing: 0;
  line-height: 1.4;
}

.service-description {
  color: var(--text-secondary);
  margin: 0.5rem 0 1rem 0;
  font-size: 0.9rem;
  line-height: 1.5;
  text-align: center;
}

.service-features {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 1rem 0;
  flex-wrap: wrap;
  justify-content: center;
}

.service-features li {
  color: var(--color-deep-ocean);
  font-size: 0.75rem;
  font-weight: 500;
  background: var(--color-ice-white);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  list-style: none;
  border: 1px solid var(--border-color);
}

.service-price {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.price-text {
  color: var(--color-ocean-blue);
  font-weight: 700;
  font-size: 1.5rem;
  margin: 0;
}

/* Bubbles Button Design */
.bubbles {
  --c1: var(--color-deep-ocean); /* Background color */
  --c2: var(--color-ocean-blue); /* Primary color matching site theme */
  --size-letter: 18px;
  padding: 0.75rem 1.5rem;
  font-size: var(--size-letter);
  background-color: transparent;
  border: calc(var(--size-letter) / 6) solid var(--c2);
  border-radius: var(--radius-lg);
  cursor: pointer;
  overflow: hidden;
  position: relative;
  transition: 300ms cubic-bezier(0.83, 0, 0.17, 1);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.bubbles > .text {
  font-weight: 600;
  color: var(--c2);
  position: relative;
  z-index: 1;
  transition: color 700ms cubic-bezier(0.83, 0, 0.17, 1);
  font-family: var(--font-sans);
}

.bubbles::before {
  top: 0;
  left: 0;
}

.bubbles::after {
  top: 100%;
  left: 100%;
}

.bubbles::before,
.bubbles::after {
  content: "";
  width: 150%;
  aspect-ratio: 1/1;
  scale: 0;
  transition: 1000ms cubic-bezier(0.76, 0, 0.24, 1);
  background-color: var(--c2);
  border-radius: 50%;
  position: absolute;
  translate: -50% -50%;
}

.bubbles:hover > .text {
  color: var(--c1);
}

.bubbles:hover::before,
.bubbles:hover::after {
  scale: 1;
}

.bubbles:active {
  scale: 0.98;
  filter: brightness(0.9);
}

/* Process Section */
.process-steps {
  display: grid;
  gap: 3rem;
  max-width: 800px;
  margin: 0 auto;
}

.process-step {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--gradient-3);
  color: var(--bg-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.step-content h3 {
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.step-content p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Portfolio Section */
.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.work-item {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all 0.3s ease;
  opacity: 1 !important;
  transform: translateY(0) !important;
  cursor: pointer;
  display: block;
  text-decoration: none;
  color: inherit;
}

.work-item.animate {
  opacity: 1;
  transform: translateY(0);
}

.work-item:hover {
  border-color: var(--primary-color);
  box-shadow: 0 20px 40px rgba(0, 245, 255, 0.15);
  transform: translateY(-5px) scale(1.02);
  background: rgba(255, 255, 255, 0.05);
}

.work-image {
  position: relative;
  height: 200px;
  background: var(--bg-tertiary);
  overflow: hidden;
}

.image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--text-muted);
}

.work-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 245, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.work-item:hover .work-overlay {
  opacity: 1;
}

.view-btn {
  background: var(--bg-primary);
  color: var(--primary-color);
  border: none;
  padding: 1rem;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
}

.view-btn:hover {
  transform: scale(1.1);
}

.work-content {
  padding: 1rem;
}

.work-title {
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-weight: 600;
}

.work-description {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.work-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tech-tag {
  background: var(--bg-tertiary);
  color: var(--primary-color);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-lg);
  font-size: 0.75rem;
  font-weight: 500;
}

/* Contact Section */
.contact {
  background: #ffffff;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-description {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.contact-details {
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 0.875rem 1rem;
  background: var(--color-ice-white);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.contact-item:hover {
  background: #ffffff;
  box-shadow: var(--shadow-sm);
  transform: translateX(-4px);
}

.contact-item svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.contact-item span {
  color: var(--text-primary);
  font-size: 0.9375rem;
}

.contact-item a.contact-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-primary);
  text-decoration: none;
  transition: var(--transition);
  width: 100%;
}

.contact-item a.contact-link:hover {
  color: var(--color-ocean-blue);
}

.contact-item a.contact-link span {
  font-weight: 500;
}

.contact-item i {
  width: 24px;
  color: var(--color-ocean-blue);
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 50px;
  height: 50px;
  background: var(--color-ice-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition);
}

.social-link:hover {
  border-color: var(--color-ocean-blue);
  color: var(--color-ocean-blue);
  background: var(--gradient-1);
  transform: translateY(-2px);
}

/* Contact Form */
.contact-form-wrapper {
  background: var(--color-ice-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.contact-form {
  display: grid;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  color: var(--color-deep-ocean);
  font-weight: 600;
  font-size: 0.875rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: #ffffff;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1rem;
  color: var(--text-primary);
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-ocean-blue);
  box-shadow: 0 0 0 3px rgba(57, 162, 219, 0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* Checkbox styling */
.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin: 1rem 0;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  line-height: 1.5;
  color: var(--text-primary);
  font-size: 0.875rem;
}

.checkbox-label input[type="checkbox"] {
  display: none;
}

.checkmark {
  width: 18px;
  height: 18px;
  border: 2px solid var(--border-color);
  border-radius: 3px;
  background: var(--bg-secondary);
  transition: var(--transition);
  position: relative;
  flex-shrink: 0;
  margin-top: 2px;
}

.checkmark::after {
  content: "";
  position: absolute;
  display: none;
  left: 5px;
  top: 1px;
  width: 6px;
  height: 10px;
  border: solid var(--primary-color);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
  background: var(--bg-secondary);
  border-color: var(--primary-color);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
  display: block;
}

.checkbox-text {
  flex: 1;
}

.privacy-link {
  color: var(--primary-color);
  text-decoration: underline;
  transition: var(--transition);
}

.privacy-link:hover {
  color: #4dd0e1;
  text-decoration: none;
}

/* Disabled button styling */
.btn-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background: var(--bg-secondary);
  color: var(--text-muted);
  border-color: var(--border-color);
}

.btn-submit:disabled:hover {
  transform: none;
  background: var(--bg-secondary);
  color: var(--text-muted);
}

/* Footer */
.footer {
  background: var(--color-deep-ocean);
  border-top: none;
  padding: 2rem 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #ffffff;
  font-weight: 700;
}

.footer-brand .brand-logo {
  max-width: 32px;
  max-height: 32px;
  opacity: 0.9;
}

.footer-brand .brand-logo:hover {
  opacity: 1;
  transform: scale(1.1);
}

.footer-text {
  color: var(--color-sky-blue);
  font-size: 0.875rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-link {
  color: var(--color-sky-blue);
  text-decoration: none;
  font-size: 0.875rem;
  transition: var(--transition);
}

.footer-link:hover {
  color: #ffffff;
}

/* Notification */
.notification {
  position: fixed;
  top: 2rem;
  right: 2rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1rem 1.5rem;
  color: var(--text-primary);
  box-shadow: var(--shadow-xl);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 10000;
  max-width: 300px;
}

.notification.show {
  transform: translateX(0);
}

.notification.success {
  border-color: #10b981;
  background: linear-gradient(
    135deg,
    var(--bg-secondary),
    rgba(16, 185, 129, 0.1)
  );
}

/* Icon System */
.icon {
  width: 18px;
  height: 18px;
  display: inline-block;
  vertical-align: middle;
}

/* Icon classes using Unicode characters */
.icon-arrow-left::before {
  content: "←";
}
.icon-arrow-right::before {
  content: "→";
}
.icon-arrow-down::before {
  content: "↓";
}
.icon-eye::before {
  content: "👁";
}
.icon-mail::before {
  content: "✉";
}

/* Mobile Overflow Prevention */
@media (max-width: 768px) {
  /* Prevent horizontal scroll and enable smooth vertical scrolling */
  html,
  body {
    overflow-x: hidden !important;
    overflow-y: auto !important;
    max-width: 100% !important;
    height: auto !important;
    min-height: 100vh;
    touch-action: pan-y pinch-zoom !important;
    -webkit-overflow-scrolling: touch !important;
  }

  * {
    max-width: 100vw !important;
  }

  /* Fix container overflow */
  .container {
    padding: 0 1rem;
    max-width: 100% !important;
    overflow-x: hidden !important;
  }

  /* Removed old nav styles - using new mobile-first navbar */

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .work-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .service-card {
    padding: 1.5rem;
  }

  .process-step {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }

  section {
    padding: 4rem 0;
  }

  .notification {
    right: 1rem;
    left: 1rem;
    max-width: none;
  }
}

@media (max-width: 480px) {
  /* Enhanced mobile overflow prevention */
  html,
  body {
    overflow-x: hidden !important;
    overflow-y: auto !important;
    max-width: 100% !important;
    position: relative !important;
    height: auto !important;
    min-height: 100vh;
    touch-action: pan-y pinch-zoom !important;
    -webkit-overflow-scrolling: touch !important;
  }

  .title-name {
    font-size: 3rem;
    word-break: break-word;
  }

  .title-role {
    font-size: 1.5rem;
    word-break: break-word;
  }

  .hero-actions {
    width: 100%;
    max-width: 100%;
  }

  .btn-primary,
  .btn-ghost {
    width: 100%;
    max-width: 100%;
    justify-content: center;
  }

  .contact-form-wrapper {
    padding: 1.5rem;
    max-width: 100%;
  }

  .services-grid {
    gap: 1rem;
    max-width: 100%;
  }

  .service-card {
    padding: 1.25rem;
    max-width: 100%;
  }

  /* Fix all sections */
  section {
    max-width: 100vw !important;
    overflow-x: hidden !important;
  }
}

/* Floating Social Media Buttons */
.floating-buttons {
  position: fixed;
  left: 20px;
  bottom: 96px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1000;
}

.floating-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: white;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.floating-btn svg {
  width: 28px;
  height: 28px;
}

.whatsapp-btn {
  background: linear-gradient(135deg, #25d366, #128c7e);
}

.whatsapp-btn:hover {
  background: linear-gradient(135deg, #128c7e, #075e54);
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
}

.linkedin-btn {
  background: linear-gradient(135deg, #0077b5, #005885);
}

.linkedin-btn:hover {
  background: linear-gradient(135deg, #005885, #004471);
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(0, 119, 181, 0.4);
}

.instagram-btn {
  background: linear-gradient(135deg, #e1306c, #fd1d1d, #fcb045);
}

.instagram-btn:hover {
  background: linear-gradient(135deg, #d91c5c, #e91e1e, #e5a041);
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(225, 48, 108, 0.4);
}

.floating-btn:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 3px;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .floating-buttons {
    left: 15px;
    bottom: 90px;
    gap: 12px;
  }

  .floating-btn {
    width: 50px;
    height: 50px;
  }

  .floating-btn svg {
    width: 24px;
    height: 24px;
  }
}

/* Hide on very small screens */
@media (max-width: 480px) {
  .floating-buttons {
    /* display: none; */
    left: 8px;
    bottom: 74px;
    gap: 4px;
  }
}

/* Portfolio Button - Enhanced with Site Theme Integration */
.buttonPortfplio {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  background: var(--gradient-1);
  border: 3px solid var(--color-ocean-blue);
  color: var(--color-deep-ocean);
  gap: 10px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  font-family: var(--font-sans);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-top: 24px;
}

.buttonPortfplio::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  transition: left 0.6s;
}

.buttonPortfplio:hover::before {
  left: 100%;
}

.textPortfplio {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 1;
}

.svg {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.svg svg {
  width: 32px;
  height: 20px;
  transition: var(--transition);
}

.buttonPortfplio:hover {
  border-color: var(--color-deep-ocean);
  background: var(--gradient-primary);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.buttonPortfplio:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(0, 245, 255, 0.3);
}

.buttonPortfplio:hover .svg svg {
  animation: jello-vertical 0.6s both;
  transform-origin: center;
}

.buttonPortfplio:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 3px;
}

/* Mobile responsive styles for portfolio button */
@media (max-width: 768px) {
  .buttonPortfplio {
    padding: 12px 24px;
    gap: 8px;
    margin: 0 auto;
    display: flex;
    width: fit-content;
  }

  .textPortfplio {
    font-size: 1.1rem;
    font-weight: 600;
  }

  .svg svg {
    width: 28px;
    height: 16px;
  }
}

@media (max-width: 480px) {
  .buttonPortfplio {
    padding: 10px 20px;
    gap: 6px;
    border-width: 2px;
  }

  .textPortfplio {
    font-size: 1rem;
    letter-spacing: 0.3px;
  }

  .svg svg {
    width: 24px;
    height: 14px;
  }

  .buttonPortfplio:hover {
    transform: translateY(-1px);
  }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
  .buttonPortfplio {
    padding: 14px 28px;
    min-height: 48px;
  }

  .buttonPortfplio:hover {
    transform: none;
    background: var(--gradient-1);
  }

  .buttonPortfplio:active {
    background: var(--gradient-2);
    transform: scale(0.98);
  }
}

@keyframes jello-vertical {
  0% {
    transform: scale3d(1, 1, 1);
  }
  30% {
    transform: scale3d(0.75, 1.25, 1);
  }
  40% {
    transform: scale3d(1.25, 0.75, 1);
  }
  50% {
    transform: scale3d(0.85, 1.15, 1);
  }
  65% {
    transform: scale3d(1.05, 0.95, 1);
  }
  75% {
    transform: scale3d(0.95, 1.05, 1);
  }
  100% {
    transform: scale3d(1, 1, 1);
  }
}

/* ============================================
   VALUES RIBBON - About Section
   ============================================ */
.values-ribbon {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.value-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #ffffff;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  font-size: 0.9375rem;
  font-weight: 500;
  transition: var(--transition);
}

.value-pill:hover {
  border-color: var(--color-ocean-blue);
  color: var(--color-ocean-blue);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.value-pill svg {
  color: var(--color-ocean-blue);
  flex-shrink: 0;
}

/* ============================================
   FOUNDER CARD - About Section
   ============================================ */
.founder-card {
  background: var(--gradient-hero);
  border-radius: var(--radius-xl);
  padding: 2rem;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.founder-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle,
    rgba(57, 162, 219, 0.3) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.founder-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 0.375rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 1rem;
  backdrop-filter: blur(4px);
}

.founder-info {
  position: relative;
  z-index: 1;
}

.founder-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.founder-title {
  display: block;
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 1rem;
  color: var(--color-sky-blue);
}

.founder-desc {
  font-size: 0.9375rem;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 1.5rem;
}

.founder-stats {
  display: flex;
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.founder-stat {
  text-align: center;
}

.founder-stat .stat-num {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.founder-stat .stat-text {
  font-size: 0.8125rem;
  opacity: 0.8;
}

/* ============================================
   PROCESS ROADMAP - Visual Path Design
   ============================================ */
.process-roadmap {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0;
}

/* Curvy SVG connecting line */
.roadmap-line {
  position: absolute;
  right: 20px;
  top: 32px;
  bottom: 32px;
  width: 60px;
  overflow: visible;
  z-index: 1;
}

.roadmap-line svg {
  position: absolute;
  top: 40px;
  right: 0;
  width: 60px;
  height: 80%;
}

.roadmap-line-path {
  fill: none;
  stroke: url(#roadmap-gradient);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: draw-path 2s ease-out forwards;
}

@keyframes draw-path {
  to {
    stroke-dashoffset: 0;
  }
}

.roadmap-step {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  position: relative;
  margin-bottom: 2.5rem;
}

.roadmap-step:last-child {
  margin-bottom: 0;
}

.step-marker {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
}

.marker-dot {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary-light);
  border-radius: 50%;
  color: #ffffff;
  box-shadow: var(--shadow-md), 0 0 0 4px rgba(57, 162, 219, 0.2);
  transition: var(--transition);
}

.roadmap-step:hover .marker-dot {
  transform: scale(1.1);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.marker-dot svg {
  width: 28px;
  height: 28px;
}

.marker-final {
  background: var(--gradient-primary);
  box-shadow: var(--shadow-lg), 0 0 0 4px rgba(5, 55, 66, 0.2);
}

.step-num {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-ocean-blue);
  letter-spacing: 0.05em;
}

.step-card {
  flex: 1;
  background: #ffffff;
  padding: 1.5rem 2rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.roadmap-step:hover .step-card {
  border-color: var(--color-ocean-blue);
  box-shadow: var(--shadow-md);
  transform: translateX(-8px);
}

.step-card h3 {
  font-size: 1.25rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.step-card p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

.step-card-final {
  background: var(--color-ice-white);
  border-color: var(--color-ocean-blue);
}

.step-card-final h3 {
  color: var(--color-deep-ocean);
}

/* ============================================
   CHECKBOX PULSE ANIMATION - Contact Form
   ============================================ */
@keyframes checkbox-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(57, 162, 219, 0.4);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(57, 162, 219, 0);
  }
}

@keyframes checkbox-glow {
  0%,
  100% {
    border-color: var(--color-ocean-blue);
    background: rgba(57, 162, 219, 0.1);
  }
  50% {
    border-color: var(--color-deep-ocean);
    background: rgba(57, 162, 219, 0.2);
  }
}

.checkbox-label .checkmark.needs-attention {
  animation: checkbox-pulse 1.5s ease-in-out infinite,
    checkbox-glow 1.5s ease-in-out infinite;
  border-color: var(--color-ocean-blue);
}

.checkbox-label:hover .checkmark.needs-attention {
  animation: none;
  border-color: var(--color-ocean-blue);
  background: var(--color-ice-white);
}

/* Highlight the entire checkbox group when needs attention */
.checkbox-group.needs-attention {
  background: rgba(57, 162, 219, 0.05);
  padding: 1rem;
  margin: 1rem -1rem;
  border-radius: var(--radius-lg);
  border: 1px dashed var(--color-ocean-blue);
}

/* ============================================
   RESPONSIVE - New Elements
   ============================================ */
@media (max-width: 768px) {
  .values-ribbon {
    justify-content: center;
  }

  .value-pill {
    padding: 0.625rem 1rem;
    font-size: 0.875rem;
  }

  .founder-card {
    padding: 1.5rem;
  }

  .founder-stats {
    flex-wrap: wrap;
    justify-content: center;
  }

  .founder-stat {
    flex: 1;
    min-width: 80px;
  }

  /* Roadmap mobile - line on right for RTL */
  .roadmap-line {
    right: 20px;
  }

  .roadmap-step {
    flex-direction: row;
    gap: 1rem;
  }

  .marker-dot {
    width: 48px;
    height: 48px;
  }

  .marker-dot svg {
    width: 22px;
    height: 22px;
  }

  .step-card {
    padding: 1.25rem;
  }

  .step-card h3 {
    font-size: 1.125rem;
  }

  .roadmap-step:hover .step-card {
    transform: translateX(-4px);
  }
}

@media (max-width: 480px) {
  .value-pill {
    width: 100%;
    justify-content: center;
  }

  .founder-stats {
    gap: 1rem;
  }

  .founder-stat .stat-num {
    font-size: 1.25rem;
  }

  .roadmap-line {
    display: none;
  }

  .roadmap-step {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .step-card {
    width: 100%;
  }

  .roadmap-step:hover .step-card {
    transform: translateY(-4px);
  }
}
