/* ==========================================================================
   PNP MIND LOGIC - OFFICIAL STYLESHEET
   Website: pnpmindlogic.me
   Tagline: A COMPLETE WEB SOLUTION
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS VARIABLES & DESIGN TOKENS
   -------------------------------------------------------------------------- */
:root {
  /* Brand Core Colors */
  --bg-primary: #FFFBF4;         /* Primary Light Color */
  --bg-surface: #FFFFFF;         /* Crisp White Surface */
  --bg-surface-warm: #F8F3EA;    /* Soft Warm Contrast */
  --color-primary-dark: #224F71; /* Primary Dark Color */
  --color-dark-deep: #15354E;    /* Deep Navy */
  --color-dark-surface: #1B4261; /* Surface Navy */

  /* Accents */
  --accent-cyan: #00C4D6;        /* Modern Vibrant Cyan */
  --accent-cyan-light: #48E5F4;  /* Light Cyan */
  --accent-teal: #0EA5E9;        /* Sky / Light Teal */
  --accent-green: #10B981;       /* Fresh Emerald Green */
  --accent-green-bright: #22C55E;/* Vibrant Bright Green */
  --accent-lime: #84CC16;        /* Subtle Lime from Logo */

  /* Gradients */
  --gradient-brand: linear-gradient(135deg, #00C4D6 0%, #0EA5E9 50%, #22C55E 100%);
  --gradient-accent: linear-gradient(135deg, #00C4D6 0%, #22C55E 100%);
  --gradient-dark: linear-gradient(145deg, #224F71 0%, #15354E 100%);
  --gradient-card: linear-gradient(180deg, #FFFFFF 0%, #FFFBF4 100%);
  --gradient-card-dark: linear-gradient(180deg, #1E4665 0%, #173750 100%);

  /* Typography */
  --font-heading: 'Plus Jakarta Sans', 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Text Colors */
  --text-main: #1C2B38;
  --text-muted: #546879;
  --text-light: #FFFFFF;
  --text-light-muted: #B4CADB;
  --text-light-subtle: #8BAABF;

  /* Borders & Dividers */
  --border-light: rgba(34, 79, 113, 0.1);
  --border-focus: rgba(0, 196, 214, 0.5);
  --border-dark: rgba(255, 255, 255, 0.12);
  --border-glow: rgba(0, 196, 214, 0.3);

  /* Shadows */
  --shadow-xs: 0 2px 4px rgba(34, 79, 113, 0.04);
  --shadow-sm: 0 4px 12px rgba(34, 79, 113, 0.06);
  --shadow-md: 0 10px 25px rgba(34, 79, 113, 0.08);
  --shadow-lg: 0 20px 45px rgba(34, 79, 113, 0.12);
  --shadow-xl: 0 28px 60px rgba(34, 79, 113, 0.16);
  --shadow-cyan-glow: 0 0 30px rgba(0, 196, 214, 0.3);
  --shadow-green-glow: 0 0 30px rgba(34, 197, 94, 0.25);

  /* Radius */
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-pill: 9999px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);

  /* Layout */
  --max-width: 1280px;
  --navbar-height: 94px;
}

/* --------------------------------------------------------------------------
   2. RESET & BASE STYLES
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--navbar-height);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-main);
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
}

::selection {
  background-color: var(--accent-cyan);
  color: var(--color-primary-dark);
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: #C8D7E3;
  border-radius: var(--radius-pill);
  border: 2px solid var(--bg-primary);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary-dark);
}

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

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

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  outline: none;
  border: none;
}

ul, ol {
  list-style: none;
}

/* Typography Base */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-primary-dark);
  line-height: 1.25;
  letter-spacing: -0.02em;
}

p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* --------------------------------------------------------------------------
   3. UTILITIES & REUSABLE COMPONENTS
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

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

.section-dark {
  background-color: var(--color-primary-dark);
  color: var(--text-light);
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--text-light);
}

.section-dark p {
  color: var(--text-light-muted);
}

/* Section Header */
.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 60px auto;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(34, 79, 113, 0.08);
  color: var(--color-primary-dark);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  margin-bottom: 18px;
  border: 1px solid rgba(34, 79, 113, 0.12);
}

.section-dark .section-tag {
  background: rgba(255, 255, 255, 0.1);
  color: var(--accent-cyan);
  border-color: rgba(255, 255, 255, 0.15);
}

.section-tag .dot {
  width: 7px;
  height: 7px;
  background: var(--accent-green-bright);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 10px var(--accent-green-bright);
}

.section-title {
  font-size: 2.75rem;
  margin-bottom: 20px;
}

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

/* Gradient Highlights */
.gradient-text {
  background: linear-gradient(135deg, #224F71 20%, #00C4D6 70%, #22C55E 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
}

.gradient-text-alt {
  background: linear-gradient(135deg, #00C4D6 0%, #22C55E 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 30px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: var(--transition-normal);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background: var(--color-primary-dark);
  color: var(--text-light);
  box-shadow: 0 4px 18px rgba(34, 79, 113, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #00C4D6 0%, #0EA5E9 100%);
  opacity: 0;
  z-index: -1;
  transition: var(--transition-normal);
}

.btn-primary:hover {
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 196, 214, 0.35);
  border-color: transparent;
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-secondary {
  background: transparent;
  color: var(--color-primary-dark);
  border: 1.5px solid var(--color-primary-dark);
}

.btn-secondary:hover {
  background: rgba(34, 79, 113, 0.06);
  border-color: var(--accent-cyan);
  color: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 196, 214, 0.15);
}

.btn-light {
  background: var(--bg-primary);
  color: var(--color-primary-dark);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.btn-light:hover {
  background: #FFFFFF;
  color: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 196, 214, 0.3);
}

.btn-outline-white {
  background: transparent;
  color: var(--text-light);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.88rem;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

.btn i {
  font-size: 0.9em;
  transition: transform var(--transition-fast);
}

.btn:hover i.fa-arrow-right,
.btn:hover i.fa-paper-plane {
  transform: translateX(4px);
}

/* Glassmorphism Card Base */
.glass-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(34, 79, 113, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.glass-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 196, 214, 0.35);
  transform: translateY(-4px);
}

/* --------------------------------------------------------------------------
   4. STICKY NAVBAR
   -------------------------------------------------------------------------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--navbar-height);
  background-color: var(--bg-primary);
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: var(--transition-normal);
  border-bottom: 1px solid rgba(34, 79, 113, 0.06);
}

.navbar.scrolled {
  background-color: rgba(255, 251, 244, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  height: 80px;
  box-shadow: 0 8px 30px rgba(34, 79, 113, 0.08);
  border-bottom-color: rgba(34, 79, 113, 0.1);
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.brand-logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo-img {
  height: 64px;
  max-height: 68px;
  width: auto;
  object-fit: contain;
  transition: var(--transition-fast);
  filter: drop-shadow(0 2px 8px rgba(34, 79, 113, 0.08));
}

.navbar.scrolled .brand-logo-img {
  height: 52px;
}

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

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-primary-dark);
  position: relative;
  padding: 6px 0;
  transition: var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2.5px;
  background: var(--gradient-accent);
  border-radius: var(--radius-pill);
  transition: var(--transition-normal);
}

.nav-link:hover,
.nav-link.active {
  color: #0EA5E9;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

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

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

.mobile-toggle span {
  display: block;
  height: 2.5px;
  width: 100%;
  background: var(--color-primary-dark);
  border-radius: 2px;
  transition: var(--transition-normal);
}

.mobile-toggle.active span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
  background: var(--accent-cyan);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.mobile-toggle.active span:nth-child(3) {
  transform: translateY(-9.5px) rotate(-45deg);
  background: var(--accent-cyan);
}

/* Mobile Nav Drawer */
.mobile-menu-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 82%;
  max-width: 380px;
  height: 100vh;
  background: #FFFBF4;
  box-shadow: -15px 0 40px rgba(34, 79, 113, 0.15);
  z-index: 999;
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow-y: auto;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border-left: 1px solid rgba(34, 79, 113, 0.1);
}

.mobile-menu-drawer.active {
  right: 0;
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(21, 53, 78, 0.6);
  backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav-link {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(34, 79, 113, 0.08);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: #0EA5E9;
  padding-left: 6px;
}

.mobile-drawer-bottom {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* --------------------------------------------------------------------------
   5. HERO SECTION
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: calc(var(--navbar-height) + 40px);
  padding-bottom: 80px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--bg-primary);
}

/* Hero Canvas Background */
#heroParticlesCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.85;
}

/* Background Ambient Glows */
.hero-ambient-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
}

.hero-glow-1 {
  width: 500px;
  height: 500px;
  background: #00C4D6;
  top: 10%;
  left: -100px;
}

.hero-glow-2 {
  width: 550px;
  height: 550px;
  background: #22C55E;
  bottom: 10%;
  right: -100px;
}

.hero-glow-3 {
  width: 400px;
  height: 400px;
  background: #224F71;
  top: 40%;
  left: 40%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: center;
  gap: 50px;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 640px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #FFFFFF;
  border: 1px solid rgba(0, 196, 214, 0.35);
  box-shadow: 0 4px 14px rgba(34, 79, 113, 0.06);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  margin-bottom: 24px;
  animation: pulse-glow 3s infinite alternate;
}

.hero-badge-tag {
  background: var(--gradient-brand);
  color: #FFFFFF;
  font-size: 0.72rem;
  padding: 3px 9px;
  border-radius: var(--radius-pill);
  font-weight: 800;
  letter-spacing: 0.05em;
}

.hero-title {
  font-size: 3.4rem;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.hero-subtitle {
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 38px;
  max-width: 580px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-trust-badges {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(34, 79, 113, 0.1);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.trust-item i {
  color: var(--accent-green-bright);
  font-size: 1.1rem;
}

.trust-item span {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-primary-dark);
}

/* Hero Right: 3D Multi-Device & Floating Cards */
/* Hero Right: High-Fidelity Multi-Device & Floating Badges */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 40px 25px;
}

.device-showcase-wrapper {
  position: relative;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
}

/* Modern Laptop Mockup */
.laptop-mockup {
  position: relative;
  width: 100%;
  background: #111D28;
  border-radius: 18px 18px 0 0;
  padding: 12px 12px 0 12px;
  box-shadow: 0 25px 65px rgba(34, 79, 113, 0.22), 0 0 0 1px rgba(0, 196, 214, 0.25);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.laptop-mockup:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 75px rgba(34, 79, 113, 0.28), 0 0 0 1px rgba(0, 196, 214, 0.4);
}

.laptop-camera {
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  background: #2E4053;
  border-radius: 50%;
}

.laptop-screen {
  background: #081018;
  border-radius: 8px 8px 0 0;
  overflow: hidden;
  border: 1px solid #1E2D3D;
  position: relative;
}

.laptop-browser-bar {
  height: 32px;
  background: #162433;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.browser-dots {
  display: flex;
  gap: 5px;
}

.browser-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.browser-dots span:nth-child(1) { background: #FF5F56; }
.browser-dots span:nth-child(2) { background: #FFBD2E; }
.browser-dots span:nth-child(3) { background: #27C93F; }

.browser-url {
  background: #09131C;
  color: #8BAABF;
  font-size: 0.72rem;
  padding: 3px 14px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.browser-url i {
  color: var(--accent-green-bright);
  font-size: 0.65rem;
}

.browser-actions {
  color: #627D94;
  font-size: 0.72rem;
}

/* Screen UI Content */
.screen-content {
  padding: 16px 18px 20px;
  background: linear-gradient(180deg, #0D1924 0%, #071018 100%);
  color: #FFFFFF;
}

.screen-header-ui {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.screen-brand {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent-cyan);
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.04em;
}

.screen-status-badge {
  font-size: 0.68rem;
  background: rgba(34, 197, 94, 0.15);
  color: var(--accent-green-bright);
  padding: 3px 9px;
  border-radius: 10px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(34, 197, 94, 0.25);
}

.pulse-dot {
  width: 6px;
  height: 6px;
  background: var(--accent-green-bright);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent-green-bright);
  animation: pulse-dot-anim 1.8s infinite;
}

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

.screen-grid-ui {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}

.screen-card-ui {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 8px 10px;
}

.screen-card-ui .lbl {
  font-size: 0.68rem;
  color: #8BAABF;
  margin-bottom: 2px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.screen-card-ui .val {
  font-size: 1.12rem;
  font-weight: 700;
  color: #FFFFFF;
  font-family: var(--font-heading);
}

.screen-chart-sim {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 10px 14px 6px;
  height: 85px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 12px;
}

.chart-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  height: 100%;
  flex: 1;
  justify-content: flex-end;
}

.chart-col span {
  font-size: 0.62rem;
  color: #627D94;
}

.chart-bar {
  width: 100%;
  background: linear-gradient(180deg, #00C4D6 0%, #153A54 100%);
  border-radius: 3px 3px 0 0;
  transition: height 0.5s ease;
}

.chart-bar.highlight {
  background: linear-gradient(180deg, #22C55E 0%, #00C4D6 100%);
}

.screen-deployment-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  color: #48E5F4;
  background: rgba(0, 196, 214, 0.08);
  border: 1px solid rgba(0, 196, 214, 0.2);
  border-radius: 6px;
  padding: 6px 12px;
}

.laptop-base {
  height: 14px;
  background: #1C2B3A;
  border-radius: 0 0 14px 14px;
  position: relative;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.35);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.laptop-notch {
  width: 64px;
  height: 4px;
  background: #0E1620;
  border-radius: 0 0 4px 4px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

/* Smartphone Mockup (Overlapping Bottom Right) */
.phone-mockup {
  position: absolute;
  bottom: -18px;
  right: -15px;
  width: 145px;
  background: #111D28;
  border-radius: 22px;
  padding: 6px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45), 0 0 0 1.5px rgba(0, 196, 214, 0.3);
  z-index: 5;
  animation: floatPhone 6s ease-in-out infinite;
}

.phone-screen {
  background: #071018;
  border-radius: 16px;
  padding: 8px;
  overflow: hidden;
}

.phone-dynamic-island {
  width: 32px;
  height: 5px;
  background: #1E2D3D;
  border-radius: 4px;
  margin: 0 auto 8px auto;
}

.phone-header-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.phone-logo {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--accent-cyan);
}

.phone-pill {
  font-size: 0.58rem;
  background: rgba(34, 197, 94, 0.2);
  color: var(--accent-green-bright);
  padding: 1px 5px;
  border-radius: 6px;
  font-weight: 600;
}

.phone-card {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  padding: 6px;
  margin-bottom: 6px;
}

.phone-line {
  height: 3.5px;
  border-radius: 2px;
  margin-bottom: 3.5px;
}

.phone-line.cyan { background: var(--accent-cyan); }
.phone-line.green { background: var(--accent-green-bright); }

.phone-chart-mini {
  height: 25px;
  display: flex;
  align-items: flex-end;
  gap: 3px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 4px;
  padding: 3px 5px;
  margin-bottom: 6px;
}

.phone-chart-mini div {
  flex: 1;
  background: linear-gradient(180deg, #00C4D6 0%, #22C55E 100%);
  border-radius: 2px 2px 0 0;
}

.phone-footer-label {
  font-size: 0.58rem;
  color: #8BAABF;
  text-align: center;
  font-weight: 600;
}

/* Floating Micro-Cards (Precisely Positioned & No Glitches) */
.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1.5px solid rgba(34, 79, 113, 0.12);
  border-radius: var(--radius-md);
  padding: 10px 16px;
  box-shadow: 0 14px 35px rgba(34, 79, 113, 0.14);
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
  z-index: 10;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.floating-card:hover {
  transform: scale(1.04) translateY(-3px);
  border-color: var(--accent-cyan);
  box-shadow: 0 18px 40px rgba(0, 196, 214, 0.25);
}

.card-icon-wrap {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  flex-shrink: 0;
}

.icon-cyan {
  background: rgba(0, 196, 214, 0.12);
  color: #009BB0;
}

.icon-green {
  background: rgba(34, 197, 94, 0.12);
  color: #16A34A;
}

.icon-teal {
  background: rgba(14, 165, 233, 0.12);
  color: #0284C7;
}

.floating-card-info h5 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  margin-bottom: 2px;
  line-height: 1.2;
}

.floating-card-info span {
  font-size: 0.74rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Floating positions */
.card-float-1 {
  top: -24px;
  left: -28px;
  animation: floatSlow 5s ease-in-out infinite;
}

.card-float-2 {
  top: -24px;
  right: -15px;
  animation: floatMed 6s ease-in-out infinite;
}

.card-float-3 {
  bottom: 20px;
  left: -32px;
  animation: floatFast 7s ease-in-out infinite;
}

/* --------------------------------------------------------------------------
   6. TRUST / INTRO SECTION
   -------------------------------------------------------------------------- */
.trust-section {
  background-color: var(--bg-primary);
  padding: 60px 0 90px;
  border-bottom: 1px solid rgba(34, 79, 113, 0.06);
}

.trust-intro-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
}

.trust-intro-header h2 {
  font-size: 2.25rem;
  margin-bottom: 16px;
}

.trust-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 60px;
}

.trust-card {
  background: #FFFFFF;
  border: 1px solid rgba(34, 79, 113, 0.08);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-sm);
}

.trust-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3.5px;
  background: var(--gradient-brand);
  opacity: 0;
  transition: var(--transition-fast);
}

.trust-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 196, 214, 0.3);
}

.trust-card:hover::before {
  opacity: 1;
}

.trust-card-num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(34, 79, 113, 0.12);
  margin-bottom: 12px;
  line-height: 1;
  transition: var(--transition-fast);
}

.trust-card:hover .trust-card-num {
  color: var(--accent-cyan);
}

.trust-card-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: rgba(34, 79, 113, 0.05);
  color: var(--color-primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 20px;
  transition: var(--transition-fast);
}

.trust-card:hover .trust-card-icon {
  background: var(--color-primary-dark);
  color: var(--accent-cyan);
}

.trust-card h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.trust-card p {
  font-size: 0.95rem;
  line-height: 1.65;
}

/* Stats Counter Bar */
.stats-strip {
  background: #FFFFFF;
  border: 1px solid rgba(34, 79, 113, 0.1);
  border-radius: var(--radius-xl);
  padding: 30px 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  box-shadow: var(--shadow-md);
}

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

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(34, 79, 113, 0.12);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-primary-dark);
  line-height: 1.1;
  margin-bottom: 4px;
}

.stat-number span.plus {
  color: var(--accent-cyan);
}

.stat-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   7. ABOUT SECTION
   -------------------------------------------------------------------------- */
.about-section {
  background-color: var(--bg-primary);
  padding: 110px 0;
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}

/* Left: Interactive Agency Visual Showcase */
.about-visual-container {
  position: relative;
}

.about-main-card {
  background: #FFFFFF;
  border: 1px solid rgba(34, 79, 113, 0.1);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.about-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(34, 79, 113, 0.08);
}

.badge-agency {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  background: rgba(34, 79, 113, 0.06);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
}

.badge-live-pulse {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--accent-green-bright);
  font-weight: 600;
}

.badge-live-pulse::before {
  content: '';
  width: 7px;
  height: 7px;
  background: var(--accent-green-bright);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent-green-bright);
}

/* Code / Tech Box */
.code-preview-box {
  background: #111D28;
  border-radius: var(--radius-md);
  padding: 20px;
  font-family: 'JetBrains Mono', 'Fira Code', Consolas, monospace;
  font-size: 0.84rem;
  color: #D1E4F5;
  margin-bottom: 24px;
  line-height: 1.6;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.code-keyword { color: #FF7B72; }
.code-prop { color: #79C0FF; }
.code-string { color: #7EE787; }
.code-comment { color: #8B949E; font-style: italic; }

.about-feature-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.feature-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(34, 79, 113, 0.05);
  border: 1px solid rgba(34, 79, 113, 0.08);
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-primary-dark);
}

.feature-chip i {
  color: var(--accent-cyan);
}

/* Floating Overlapping Badge */
.about-badge-float {
  position: absolute;
  bottom: -25px;
  right: -20px;
  background: var(--color-primary-dark);
  color: #FFFFFF;
  padding: 18px 24px;
  border-radius: var(--radius-lg);
  box-shadow: 0 15px 35px rgba(34, 79, 113, 0.3);
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  z-index: 2;
}

.about-badge-icon {
  width: 44px;
  height: 44px;
  background: rgba(0, 196, 214, 0.2);
  color: var(--accent-cyan);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.about-badge-text h4 {
  color: #FFFFFF;
  font-size: 1.1rem;
  margin-bottom: 2px;
}

.about-badge-text p {
  color: var(--text-light-muted);
  font-size: 0.78rem;
  margin: 0;
}

/* Right Content */
.about-content h2 {
  font-size: 2.6rem;
  margin-bottom: 20px;
}

.about-lead {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-primary-dark);
  margin-bottom: 18px;
  line-height: 1.6;
}

.about-body {
  margin-bottom: 30px;
}

.about-values-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 36px;
}

.about-value-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.about-value-icon {
  width: 24px;
  height: 24px;
  background: rgba(34, 197, 94, 0.15);
  color: var(--accent-green-bright);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.about-value-text h5 {
  font-size: 0.95rem;
  color: var(--color-primary-dark);
  margin-bottom: 2px;
}

.about-value-text p {
  font-size: 0.85rem;
  line-height: 1.4;
  margin: 0;
}

/* --------------------------------------------------------------------------
   8. SERVICES SECTION
   -------------------------------------------------------------------------- */
.services-section {
  background: #F8F3EA;
  padding: 110px 0;
  position: relative;
}

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

.service-card {
  background: #FFFFFF;
  border: 1px solid rgba(34, 79, 113, 0.08);
  border-radius: var(--radius-lg);
  padding: 38px 32px;
  position: relative;
  overflow: hidden;
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-brand);
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition-normal);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(0, 196, 214, 0.4);
}

.service-card:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.service-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.service-icon-box {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: rgba(34, 79, 113, 0.05);
  color: var(--color-primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: var(--transition-normal);
}

.service-card:hover .service-icon-box {
  background: var(--color-primary-dark);
  color: var(--accent-cyan);
  transform: scale(1.08) rotate(-4deg);
}

.service-card-num {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: rgba(34, 79, 113, 0.15);
  letter-spacing: 0.05em;
  transition: var(--transition-fast);
}

.service-card:hover .service-card-num {
  color: var(--accent-cyan);
}

.service-card h3 {
  font-size: 1.38rem;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.95rem;
  margin-bottom: 24px;
  flex-grow: 1;
}

.service-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.service-tag-badge {
  font-size: 0.74rem;
  font-weight: 600;
  background: rgba(34, 79, 113, 0.05);
  color: var(--text-muted);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

.service-card:hover .service-tag-badge {
  background: rgba(0, 196, 214, 0.1);
  color: var(--color-primary-dark);
}

.service-card-link {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-fast);
}

.service-card-link i {
  font-size: 0.8rem;
  transition: transform var(--transition-fast);
}

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

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

/* --------------------------------------------------------------------------
   9. WHY CHOOSE US
   -------------------------------------------------------------------------- */
.why-section {
  background: var(--bg-primary);
  padding: 110px 0;
  position: relative;
}

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

.why-feature-card {
  background: #FFFFFF;
  border: 1px solid rgba(34, 79, 113, 0.08);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.why-feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 196, 214, 0.35);
  box-shadow: var(--shadow-md);
}

.why-check-circle {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(34, 197, 94, 0.12);
  color: var(--accent-green-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 18px;
  transition: var(--transition-fast);
}

.why-feature-card:hover .why-check-circle {
  background: var(--accent-green-bright);
  color: #FFFFFF;
  transform: scale(1.1);
}

.why-feature-card h4 {
  font-size: 1.12rem;
  margin-bottom: 8px;
}

.why-feature-card p {
  font-size: 0.9rem;
  line-height: 1.55;
  margin: 0;
}

/* --------------------------------------------------------------------------
   10. PORTFOLIO SECTION
   -------------------------------------------------------------------------- */
.portfolio-section {
  background: #F8F3EA;
  padding: 110px 0;
}

/* Filter Controls */
.portfolio-filters {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.filter-btn {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  background: #FFFFFF;
  color: var(--color-primary-dark);
  border: 1px solid rgba(34, 79, 113, 0.12);
  cursor: pointer;
  transition: var(--transition-fast);
  box-shadow: var(--shadow-xs);
}

.filter-btn:hover {
  border-color: var(--accent-cyan);
  color: #0EA5E9;
  transform: translateY(-2px);
}

.filter-btn.active {
  background: var(--color-primary-dark);
  color: #FFFFFF;
  border-color: var(--color-primary-dark);
  box-shadow: 0 4px 15px rgba(34, 79, 113, 0.25);
}

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

.portfolio-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(34, 79, 113, 0.08);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.portfolio-card.hide {
  display: none;
}

.portfolio-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(0, 196, 214, 0.35);
}

/* Browser Frame Device Mockup */
.project-browser-frame {
  background: #E8EEF3;
  border-bottom: 1px solid rgba(34, 79, 113, 0.1);
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.project-dots {
  display: flex;
  gap: 4px;
}

.project-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.project-dots span:nth-child(1) { background: #FF5F56; }
.project-dots span:nth-child(2) { background: #FFBD2E; }
.project-dots span:nth-child(3) { background: #27C93F; }

.project-url-bar {
  background: #FFFFFF;
  color: var(--text-muted);
  font-size: 0.65rem;
  padding: 2px 10px;
  border-radius: 10px;
  margin-left: 8px;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Mockup Canvas Screen / Preview */
.project-preview-wrap {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #111D28;
}

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

.portfolio-card:hover .project-ui-preview {
  transform: scale(1.08);
}

/* Dynamic CSS Mockup Graphic when img fallback */
.project-graphic-mockup {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #152738 0%, #0D1924 100%);
  color: #FFFFFF;
  padding: 20px;
  position: relative;
  text-align: center;
}

.project-graphic-icon {
  font-size: 2.8rem;
  margin-bottom: 12px;
}

.project-category-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  color: #FFFFFF;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Card Body */
.portfolio-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.portfolio-card-body h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.portfolio-card-body p {
  font-size: 0.9rem;
  line-height: 1.55;
  margin-bottom: 18px;
  flex-grow: 1;
}

.portfolio-tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}

.tech-tag {
  font-size: 0.72rem;
  font-weight: 600;
  background: rgba(34, 79, 113, 0.05);
  color: var(--color-primary-dark);
  padding: 3px 9px;
  border-radius: var(--radius-pill);
}

.portfolio-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 10px;
  background: rgba(34, 79, 113, 0.04);
  color: var(--color-primary-dark);
  border: 1px solid rgba(34, 79, 113, 0.1);
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-fast);
}

.portfolio-action-btn:hover {
  background: var(--color-primary-dark);
  color: #FFFFFF;
  border-color: var(--color-primary-dark);
}

/* Quick View Project Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 34, 48, 0.8);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: #FFFBF4;
  border-radius: var(--radius-xl);
  max-width: 680px;
  width: 100%;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.modal-overlay.active .modal-card {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  background: rgba(34, 79, 113, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--color-primary-dark);
  cursor: pointer;
  transition: var(--transition-fast);
  z-index: 10;
}

.modal-close-btn:hover {
  background: var(--color-primary-dark);
  color: #FFFFFF;
}

.modal-body {
  padding: 36px;
}

.modal-header-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  color: #0EA5E9;
  text-transform: uppercase;
  margin-bottom: 8px;
  letter-spacing: 0.08em;
}

.modal-title {
  font-size: 1.85rem;
  margin-bottom: 14px;
}

.modal-desc {
  font-size: 0.98rem;
  margin-bottom: 24px;
  line-height: 1.65;
}

.modal-feature-list {
  margin-bottom: 28px;
}

.modal-feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text-main);
  margin-bottom: 8px;
}

.modal-feature-list li i {
  color: var(--accent-green-bright);
}

/* --------------------------------------------------------------------------
   11. WORK PROCESS ("FROM IDEA TO LAUNCH")
   -------------------------------------------------------------------------- */
.process-section {
  background: var(--bg-primary);
  padding: 110px 0;
  position: relative;
}

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

/* Connecting Horizontal Glowing Line */
.process-timeline::before {
  content: '';
  position: absolute;
  top: 48px;
  left: 12%;
  width: 76%;
  height: 3px;
  background: linear-gradient(90deg, #00C4D6 0%, #0EA5E9 50%, #22C55E 100%);
  z-index: 0;
  opacity: 0.35;
}

.process-step-card {
  background: #FFFFFF;
  border: 1px solid rgba(34, 79, 113, 0.08);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  position: relative;
  z-index: 1;
  text-align: center;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-sm);
}

.process-step-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(0, 196, 214, 0.4);
}

.process-step-node {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 3px solid #224F71;
  color: var(--color-primary-dark);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  box-shadow: 0 0 0 6px rgba(34, 79, 113, 0.06);
  transition: var(--transition-normal);
}

.process-step-card:hover .process-step-node {
  background: var(--color-primary-dark);
  color: var(--accent-cyan);
  border-color: var(--accent-cyan);
  box-shadow: 0 0 0 8px rgba(0, 196, 214, 0.2);
  transform: scale(1.1);
}

.process-step-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  letter-spacing: 0.04em;
}

.process-step-card p {
  font-size: 0.9rem;
  line-height: 1.55;
  margin: 0;
}

/* --------------------------------------------------------------------------
   12. CTA SECTION
   -------------------------------------------------------------------------- */
.cta-section {
  background-color: var(--color-primary-dark);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  color: var(--text-light);
}

.cta-glow-bg {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 196, 214, 0.25) 0%, rgba(34, 197, 94, 0.15) 50%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}

.cta-box {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

.cta-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--accent-cyan);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.cta-title {
  font-size: 3.2rem;
  color: #FFFFFF;
  margin-bottom: 20px;
  line-height: 1.15;
}

.cta-subtitle {
  font-size: 1.25rem;
  color: var(--text-light-muted);
  margin-bottom: 40px;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   13. CONTACT SECTION
   -------------------------------------------------------------------------- */
.contact-section {
  background: var(--bg-primary);
  padding: 110px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 50px;
}

/* Left Message & Quick Channels */
.contact-info-col h2 {
  font-size: 2.5rem;
  margin-bottom: 18px;
}

.contact-info-col .lead-desc {
  font-size: 1.08rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  line-height: 1.7;
}

.contact-channels-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 36px;
}

.contact-channel-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #FFFFFF;
  border: 1px solid rgba(34, 79, 113, 0.08);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  transition: var(--transition-fast);
  box-shadow: var(--shadow-xs);
}

.contact-channel-card:hover {
  transform: translateX(6px);
  border-color: var(--accent-cyan);
  box-shadow: var(--shadow-sm);
}

.channel-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.channel-icon-wrap.email { background: rgba(14, 165, 233, 0.12); color: #0284C7; }
.channel-icon-wrap.whatsapp { background: rgba(34, 197, 94, 0.12); color: #16A34A; }
.channel-icon-wrap.instagram { background: rgba(236, 72, 153, 0.12); color: #DB2777; }

.channel-content h5 {
  font-size: 0.95rem;
  margin-bottom: 2px;
  color: var(--color-primary-dark);
}

.channel-content p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

/* Right Enquiry Form Card */
.contact-form-card {
  background: #FFFFFF;
  border: 1px solid rgba(34, 79, 113, 0.1);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.contact-form-card h3 {
  font-size: 1.65rem;
  margin-bottom: 8px;
}

.contact-form-card p {
  font-size: 0.92rem;
  margin-bottom: 28px;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}

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

.form-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--color-primary-dark);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 13px 18px;
  background: #FFFBF4;
  border: 1.5px solid rgba(34, 79, 113, 0.12);
  border-radius: var(--radius-md);
  font-size: 0.94rem;
  color: var(--text-main);
  transition: var(--transition-fast);
}

.form-control:focus {
  border-color: var(--accent-cyan);
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(0, 196, 214, 0.15);
}

textarea.form-control {
  resize: vertical;
  min-height: 110px;
}

/* --------------------------------------------------------------------------
   14. FOOTER
   -------------------------------------------------------------------------- */
.footer {
  background-color: var(--color-primary-dark);
  color: var(--text-light);
  padding: 90px 0 35px;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr 1.2fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand-col {
  padding-right: 20px;
}

.footer-logo-wrap {
  display: inline-flex;
  align-items: center;
  margin-bottom: 20px;
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}

.footer-logo-img {
  height: 62px;
  max-height: 66px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.25));
}

.footer-tagline {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--accent-cyan);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-desc {
  color: var(--text-light-muted);
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 24px;
}

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

.social-icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: var(--transition-fast);
}

.social-icon-btn:hover {
  background: var(--accent-cyan);
  color: var(--color-primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(0, 196, 214, 0.4);
}

.footer-col h4 {
  color: #FFFFFF;
  font-size: 1.15rem;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2.5px;
  background: var(--accent-cyan);
  border-radius: 2px;
}

.footer-links-list li {
  margin-bottom: 12px;
}

.footer-links-list a {
  color: var(--text-light-muted);
  font-size: 0.92rem;
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-links-list a:hover {
  color: var(--accent-cyan);
  transform: translateX(4px);
}

.footer-contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-light-muted);
  font-size: 0.92rem;
  margin-bottom: 14px;
}

.footer-contact-info i {
  color: var(--accent-cyan);
  margin-top: 4px;
}

/* Footer Bottom Bar */
.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--text-light-subtle);
  font-size: 0.86rem;
}

.footer-bottom-website {
  color: var(--accent-cyan);
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   15. FLOATING HELPERS & TOAST
   -------------------------------------------------------------------------- */
.floating-whatsapp-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  z-index: 990;
  transition: var(--transition-normal);
}

.floating-whatsapp-btn:hover {
  transform: scale(1.1) rotate(6deg);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.55);
}

.back-to-top-btn {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #FFFFFF;
  color: var(--color-primary-dark);
  border: 1px solid rgba(34, 79, 113, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--shadow-md);
  z-index: 989;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition-normal);
}

.back-to-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top-btn:hover {
  background: var(--color-primary-dark);
  color: #FFFFFF;
}

/* Toast Alert Notification */
.toast-notification {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: #111D28;
  color: #FFFFFF;
  padding: 16px 28px;
  border-radius: var(--radius-pill);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
  border: 1px solid var(--accent-cyan);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  z-index: 3000;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
}

.toast-notification.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.toast-notification i {
  color: var(--accent-green-bright);
  font-size: 1.2rem;
}

/* --------------------------------------------------------------------------
   16. KEYFRAME ANIMATIONS
   -------------------------------------------------------------------------- */
@keyframes floatSlow {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

@keyframes floatMed {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-14px); }
}

@keyframes floatFast {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

@keyframes floatPhone {
  0%, 100% { transform: translateZ(40px) translateY(0px); }
  50% { transform: translateZ(40px) translateY(-12px); }
}

@keyframes growBar {
  0% { transform: scaleY(0.9); }
  100% { transform: scaleY(1.05); }
}

@keyframes pulse-glow {
  0% { box-shadow: 0 4px 14px rgba(34, 79, 113, 0.06); }
  100% { box-shadow: 0 4px 20px rgba(0, 196, 214, 0.25); }
}

/* Reveal Scroll Animation Classes */
.reveal-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* --------------------------------------------------------------------------
   17. COMPREHENSIVE RESPONSIVE DESIGN SYSTEM
   Tested Viewports: 1920px, 1440px, 1200px, 1024px, 768px, 576px, 480px, 375px, 320px
   -------------------------------------------------------------------------- */

/* 1440px / Large Desktop Screens */
@media (max-width: 1440px) {
  :root {
    --max-width: 1240px;
  }
}

/* 1200px / Standard Laptops & Desktops */
@media (max-width: 1200px) {
  :root {
    --max-width: 1100px;
  }

  .hero-title {
    font-size: 2.9rem;
  }

  .hero-visual {
    padding: 30px 15px;
  }

  .card-float-1 {
    top: -16px;
    left: -12px;
  }

  .card-float-2 {
    top: -16px;
    right: -8px;
  }

  .card-float-3 {
    bottom: 12px;
    left: -14px;
  }

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

  .why-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }

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

/* 1024px / iPad Pro & Small Laptops */
@media (max-width: 1024px) {
  .section {
    padding: 85px 0;
  }

  .hero {
    padding-top: calc(var(--navbar-height) + 20px);
    padding-bottom: 60px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  .hero-content {
    max-width: 720px;
    margin: 0 auto;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

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

  .hero-trust-badges {
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
  }

  .device-showcase-wrapper {
    max-width: 520px;
  }

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

  .about-content {
    text-align: left;
  }

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

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .process-timeline::before {
    display: none;
  }

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

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

/* 768px / Tablets & Mobile Landscape */
@media (max-width: 768px) {
  :root {
    --navbar-height: 80px;
  }

  .section {
    padding: 75px 0;
  }

  /* Navbar */
  .navbar {
    height: 80px;
  }

  .brand-logo-img {
    height: 52px;
    max-height: 54px;
  }

  .navbar.scrolled {
    height: 72px;
  }

  .navbar.scrolled .brand-logo-img {
    height: 46px;
  }

  .nav-menu,
  .nav-actions .btn-primary {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  /* Hero Section */
  .hero-title {
    font-size: 2.35rem;
    line-height: 1.2;
  }

  .hero-subtitle {
    font-size: 1.05rem;
  }

  .hero-visual {
    padding: 20px 0;
  }

  .device-showcase-wrapper {
    max-width: 100%;
  }

  .card-float-1,
  .card-float-2,
  .card-float-3 {
    display: none;
  }

  .phone-mockup {
    width: 120px;
    bottom: -12px;
    right: -8px;
  }

  .screen-grid-ui {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }

  .screen-card-ui {
    padding: 6px 8px;
  }

  .screen-card-ui .val {
    font-size: 0.95rem;
  }

  .screen-chart-sim {
    height: 70px;
  }

  /* Trust Section */
  .trust-cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .stats-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 24px 20px;
  }

  .stat-item:nth-child(2)::after {
    display: none;
  }

  .stat-number {
    font-size: 2.1rem;
  }

  /* About Section */
  .about-badge-float {
    position: static;
    margin-top: 20px;
    width: 100%;
  }

  .about-values-list {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  /* Services & Why & Portfolio */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .portfolio-filters {
    gap: 8px;
    margin-bottom: 35px;
  }

  .filter-btn {
    padding: 8px 18px;
    font-size: 0.85rem;
  }

  /* Process Steps */
  .process-timeline {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* CTA Section */
  .cta-title {
    font-size: 2.25rem;
  }

  .cta-subtitle {
    font-size: 1.05rem;
  }

  /* Contact Form */
  .form-grid-2 {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-form-card {
    padding: 30px 24px;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
}

/* 576px / Large Mobile Phones */
@media (max-width: 576px) {
  .container {
    padding: 0 18px;
  }

  .section-title {
    font-size: 2rem;
  }

  .hero-title {
    font-size: 2.1rem;
  }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }

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

  .hero-trust-badges {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .stats-strip {
    grid-template-columns: 1fr 1fr;
    padding: 20px 14px;
    gap: 14px;
  }

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

  .stat-item::after {
    display: none !important;
  }

  .stat-number {
    font-size: 1.85rem;
  }

  .stat-label {
    font-size: 0.8rem;
  }

  .about-content h2 {
    font-size: 1.95rem;
  }

  .service-card {
    padding: 28px 20px;
  }

  .contact-form-card {
    padding: 24px 18px;
  }

  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

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

  .modal-card {
    width: 95%;
    max-height: 88vh;
    overflow-y: auto;
  }

  .modal-body {
    padding: 24px 18px;
  }
}

/* 480px / 375px / 320px Standard & Small Mobile Portrait */
@media (max-width: 480px) {
  .section {
    padding: 60px 0;
  }

  .navbar {
    height: 74px;
  }

  .brand-logo-img {
    height: 46px;
    max-height: 48px;
    max-width: 180px;
  }

  .footer-logo-img {
    height: 50px;
    max-width: 200px;
  }

  .hero-title {
    font-size: 1.85rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .laptop-mockup {
    padding: 8px 8px 0 8px;
    border-radius: 12px 12px 0 0;
  }

  .laptop-browser-bar {
    height: 26px;
    padding: 0 8px;
  }

  .browser-url {
    font-size: 0.65rem;
    padding: 2px 8px;
    max-width: 160px;
  }

  .screen-content {
    padding: 12px;
  }

  .screen-header-ui {
    margin-bottom: 8px;
    padding-bottom: 6px;
  }

  .screen-brand {
    font-size: 0.72rem;
  }

  .screen-status-badge {
    font-size: 0.6rem;
    padding: 2px 6px;
  }

  .screen-grid-ui {
    grid-template-columns: 1fr 1fr;
    gap: 6px;
  }

  .screen-grid-ui .screen-card-ui:nth-child(3) {
    display: none;
  }

  .screen-deployment-badge {
    font-size: 0.62rem;
    padding: 4px 8px;
  }

  .phone-mockup {
    display: none;
  }

  .code-preview-box {
    padding: 14px;
    font-size: 0.76rem;
  }

  .form-control {
    font-size: 16px; /* Prevents auto-zoom on iOS */
    padding: 12px 14px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .floating-whatsapp-btn {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
    font-size: 1.6rem;
  }

  .back-to-top-btn {
    bottom: 82px;
    right: 22px;
    width: 40px;
    height: 40px;
    font-size: 0.95rem;
  }

  .toast-notification {
    width: 90%;
    font-size: 0.85rem;
    padding: 12px 18px;
  }
}

