/* =====================================================
   الجحفلي للحلول الرقمية - Professional Website
   HTML / CSS / JS only - No backend
===================================================== */
:root {
  /* Colors */
  --dark: #061426;
  --dark-2: #081b31;
  --dark-3: #020912;
  --blue: #007BFF;
  --cyan: #00D9FF;
  --white: #FFFFFF;
  --text: #F1F5F9;
  --muted: #CBD5E1;
  --glass: rgba(255, 255, 255, .075);
  --glass-2: rgba(255, 255, 255, .11);
  --border: rgba(0, 217, 255, .25);
  --border-soft: rgba(255, 255, 255, .11);
  --shadow: 0 30px 90px rgba(0, 123, 255, .18);
  --radius: 26px;
  --ease: .35s ease;

  /* Spacing System */
  --card-pad: 28px;
  --grid-gap: 24px;
  --section-pad-y: 84px;
  --section-pad-y-mob: 56px;
  --title-margin: 12px;
  --para-margin: 16px;
  --section-title-margin: 40px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Cairo', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 10%, rgba(0, 217, 255, .18), transparent 28%),
    radial-gradient(circle at 90% 20%, rgba(0, 123, 255, .18), transparent 30%),
    linear-gradient(135deg, var(--dark-3), var(--dark) 45%, #020711);
  line-height: 1.85;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .15;
  background-image:
    linear-gradient(rgba(0, 217, 255, .13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 217, 255, .13) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, black, transparent 75%);
}

a {
  text-decoration: none;
  color: inherit;
}

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

.container {
  width: 100%;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  box-sizing: border-box;
}

.section {
  padding: var(--section-pad-y) 0;
  position: relative;
}

/* Section Separation Visuals */
.section-alt {
  background: rgba(3, 11, 22, 0.7);
  backdrop-filter: blur(18px);
  border-top: 1px solid rgba(0, 217, 255, 0.07);
  border-bottom: 1px solid rgba(0, 217, 255, 0.07);
  position: relative;
}

.section-alt::before {
  content: "";
  position: absolute;
  top: 0;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 217, 255, 0.22), transparent);
}

.section-alt::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 217, 255, 0.22), transparent);
}

.section-divider {
  height: 1px;
  position: relative;
  width: 100%;
  overflow: hidden;
}

.section-divider::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(0, 217, 255, 0.18), transparent);
}

.scroll-progress {
  position: fixed;
  top: 0;
  right: 0;
  height: 4px;
  width: 0;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
  box-shadow: 0 0 20px var(--cyan);
  z-index: 5000;
}

/* Header */
.site-header {
  position: fixed;
  top: 18px;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--ease);
}

.site-header.scrolled {
  top: 0;
  background: rgba(2, 9, 18, .78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border-soft);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(6, 20, 38, .74);
  border: 1px solid var(--border-soft);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .25);
}

.site-header.scrolled .nav-shell {
  border-radius: 0;
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  filter: drop-shadow(0 0 16px rgba(0, 217, 255, .42));
}

.brand div {
  line-height: 1.15;
}

.brand strong {
  display: block;
  color: var(--white);
  font-size: 1.1rem;
}

.brand span {
  color: var(--cyan);
  font-size: .82rem;
  font-weight: 800;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-weight: 800;
  font-size: .94rem;
}

.main-nav a {
  color: var(--text);
  transition: var(--ease);
  position: relative;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--cyan);
}

.main-nav a.active::after {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  bottom: -9px;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), transparent);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--border-soft);
  border-radius: 50%;
  background: rgba(255, 255, 255, .07);
  color: var(--white);
  font-size: 1.25rem;
  cursor: pointer;
  position: relative;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  transition: var(--ease);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background-color: var(--white);
  transition: var(--ease);
  transform-origin: center;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 999px;
  padding: 12px 23px;
  font-weight: 900;
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--ease);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: var(--white);
  box-shadow: 0 14px 38px rgba(0, 217, 255, .25);
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 55px rgba(0, 217, 255, .36);
}

.btn-ghost {
  background: rgba(255, 255, 255, .06);
  border-color: var(--border);
  color: var(--white);
}

.btn-ghost:hover {
  background: rgba(0, 217, 255, .12);
  transform: translateY(-4px);
}

.btn-whatsapp {
  background: rgba(37, 211, 102, .14);
  border-color: rgba(37, 211, 102, .34);
  color: var(--white);
}

.btn-whatsapp:hover {
  background: rgba(37, 211, 102, .24);
  transform: translateY(-4px);
}

.btn-telegram {
  background: rgba(0, 136, 204, .14);
  border-color: rgba(0, 136, 204, .34);
  color: var(--white);
}

.btn-telegram:hover {
  background: rgba(0, 136, 204, .24);
  transform: translateY(-4px);
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 75% 45%, rgba(0, 217, 255, .12), transparent 34%), radial-gradient(circle at 20% 40%, rgba(0, 123, 255, .13), transparent 32%);
}

.pixel-cloud span {
  position: absolute;
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, rgba(0, 217, 255, .75), rgba(0, 123, 255, .32));
  border: 1px solid rgba(0, 217, 255, .5);
  box-shadow: 0 0 24px rgba(0, 217, 255, .35);
  animation: float 7s ease-in-out infinite;
}

.pixel-cloud span:nth-child(1) {
  top: 19%;
  right: 8%;
}

.pixel-cloud span:nth-child(2) {
  top: 34%;
  right: 14%;
  width: 18px;
  height: 18px;
  animation-delay: 1s;
}

.pixel-cloud span:nth-child(3) {
  top: 27%;
  left: 12%;
  width: 36px;
  height: 36px;
  animation-delay: 2s;
}

.pixel-cloud span:nth-child(4) {
  bottom: 28%;
  left: 9%;
  width: 22px;
  height: 22px;
  animation-delay: 3s;
}

.pixel-cloud span:nth-child(5) {
  bottom: 18%;
  right: 20%;
  width: 32px;
  height: 32px;
  animation-delay: 4s;
}

.pixel-cloud span:nth-child(6) {
  top: 58%;
  left: 18%;
  width: 18px;
  height: 18px;
  animation-delay: 5s;
}

.pixel-cloud span:nth-child(7) {
  top: 14%;
  left: 36%;
  width: 20px;
  height: 20px;
  animation-delay: 6s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
    opacity: .8;
  }

  50% {
    transform: translateY(-24px) rotate(10deg);
    opacity: 1;
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--cyan);
  font-weight: 900;
  border: 1px solid var(--border);
  background: rgba(0, 217, 255, .07);
  padding: 8px 15px;
  border-radius: 999px;
  margin-bottom: 17px;
}

h1,
h2,
h3 {
  color: var(--white);
  line-height: 1.28;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 5.3rem);
  font-weight: 900;
  letter-spacing: -1px;
  text-shadow: 0 0 30px rgba(0, 217, 255, .26);
  margin-bottom: 22px;
}

.hero-lead {
  font-size: 1.22rem;
  color: var(--text);
  max-width: 760px;
  margin-bottom: 30px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 34px;
  max-width: 640px;
}

.trust-strip div {
  border: 1px solid var(--border-soft);
  background: rgba(255, 255, 255, .06);
  border-radius: 20px;
  padding: 16px;
}

.trust-strip strong {
  display: block;
  color: var(--cyan);
  font-size: 1.16rem;
}

.trust-strip span {
  color: var(--muted);
  font-size: .9rem;
}

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

.device-card {
  width: min(440px, 90vw);
  min-height: 490px;
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .035));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  position: relative;
  padding: 18px;
  transform: perspective(1000px) rotateY(-9deg) rotateX(5deg);
}

.device-top {
  display: flex;
  gap: 7px;
  margin-bottom: 16px;
}

.device-top span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(0, 217, 255, .45);
}

.device-screen {
  min-height: 410px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  background: radial-gradient(circle, rgba(0, 217, 255, .18), transparent 64%), linear-gradient(135deg, rgba(2, 9, 18, .86), rgba(8, 27, 49, .65));
  border: 1px solid rgba(255, 255, 255, .08);
  position: relative;
  overflow: hidden;
}

.device-screen img {
  width: 72%;
  filter: drop-shadow(0 25px 40px rgba(0, 0, 0, .5));
}

.screen-lines {
  position: absolute;
  bottom: 28px;
  right: 28px;
  left: 28px;
  display: grid;
  gap: 9px;
}

.screen-lines b {
  height: 10px;
  border-radius: 99px;
  background: linear-gradient(90deg, rgba(0, 217, 255, .65), transparent);
}

.floating-badge {
  position: absolute;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(2, 9, 18, .86);
  border: 1px solid var(--border);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .25);
  font-weight: 900;
  color: var(--white);
}

.badge-one {
  top: 84px;
  right: -18px;
}

.badge-two {
  bottom: 120px;
  left: -24px;
}

.badge-three {
  bottom: 44px;
  right: 28px;
}

/* Common sections */
.section-title h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  margin-bottom: var(--title-margin);
}

.section-title p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
}

.center {
  text-align: center;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--section-title-margin);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--grid-gap);
  align-items: start;
}

.intro-text p {
  font-size: 1.14rem;
  color: var(--muted);
  margin-bottom: var(--para-margin);
}

.glass {
  background: rgba(6, 20, 38, .65);
  border: 1px solid rgba(0, 217, 255, .18);
  border-radius: var(--radius);
  backdrop-filter: blur(20px);
  box-shadow: 0 24px 65px rgba(0, 0, 0, .22);
  transition: var(--ease);
}

.glass:hover {
  border-color: var(--cyan);
  box-shadow: 0 20px 50px rgba(0, 217, 255, .12);
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--grid-gap);
}

.service-card {
  padding: var(--card-pad);
  transition: var(--ease);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: radial-gradient(circle at top right, rgba(0, 217, 255, .16), transparent 45%);
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--border);
}

.service-card i,
.service-icon i,
.value-card i,
.service-num,
.service-card svg,
.value-card svg {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: white;
  font-size: 1.45rem;
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(0, 217, 255, .18);
  margin-bottom: 16px;
  flex-shrink: 0;
}

.service-card h3 {
  margin-bottom: var(--title-margin);
}

.service-card p {
  color: #E2ECF6;
  margin-bottom: var(--para-margin);
  font-weight: 400;
  font-size: 0.96rem;
  line-height: 1.7;
}

.service-card a {
  color: var(--cyan);
  font-weight: 900;
}

.why-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 40px;
  align-items: center;
}

.why-panel {
  padding: var(--card-pad);
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(0, 123, 255, .16), rgba(0, 217, 255, .07));
  border: 1px solid var(--border);
}

.why-panel h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  margin-bottom: 15px;
}

.why-panel p {
  color: var(--muted);
  margin-bottom: 24px;
}

.why-list {
  display: grid;
  gap: 18px;
}

.why-item {
  display: flex;
  gap: 16px;
  padding: 20px 24px;
  border-radius: 22px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid var(--border-soft);
  transition: var(--ease);
  align-items: center;
}

.why-item:hover {
  transform: translateX(-8px);
  border-color: var(--border);
}

.why-item i,
.why-item svg {
  color: var(--cyan);
  font-size: 1.8rem;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.why-item h3 {
  margin-bottom: 8px;
  font-size: 1.18rem;
  font-weight: 700;
}

.why-item p {
  color: var(--muted);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--grid-gap);
}

.step {
  padding: var(--card-pad);
  border: 1px solid var(--border-soft);
  border-radius: 24px;
  background: rgba(255, 255, 255, .055);
}

.step span {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(0, 217, 255, .11);
  border: 1px solid var(--border);
  color: var(--cyan);
  font-weight: 900;
  margin-bottom: 14px;
}

.step h3 {
  margin-bottom: var(--title-margin);
  font-size: 1.2rem;
  font-weight: 700;
}

.step p {
  color: var(--muted);
}

.cta {
  padding: var(--section-pad-y) 0;
}

.cta-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  border-radius: 34px;
  padding: var(--card-pad) 40px;
  background: linear-gradient(135deg, rgba(0, 123, 255, .2), rgba(0, 217, 255, .07));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.cta-box h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.3rem);
  margin-bottom: var(--title-margin);
}

.cta-box p {
  color: var(--muted);
}

/* Inner pages */
.page-hero {
  padding: 170px 0 95px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 45%, rgba(0, 217, 255, .16), transparent 34%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.page-hero h1 {
  font-size: clamp(2.3rem, 5vw, 4.2rem);
  font-weight: 900;
  margin-bottom: 16px;
  text-shadow: 0 0 30px rgba(0, 217, 255, .2);
}

.page-hero p {
  color: var(--muted);
  font-size: 1.18rem;
}

.content-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 34px;
  align-items: center;
}

.content-block h2 {
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.content-block p {
  color: var(--muted);
  margin-bottom: 14px;
  font-size: 1.08rem;
}

.highlight-card {
  padding: 34px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
}

.highlight-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(0, 217, 255, .08), transparent 70%);
  pointer-events: none;
}

.highlight-card svg {
  filter: drop-shadow(0 0 16px rgba(0, 217, 255, .35));
  transition: var(--ease);
}

.highlight-card:hover svg {
  transform: scale(1.08) rotate(5deg);
}

.highlight-card p {
  color: var(--muted);
}

.triple-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--grid-gap);
}

.value-card {
  padding: var(--card-pad);
}

.value-card h3 {
  margin-bottom: var(--title-margin);
  font-size: 1.25rem;
  font-weight: 700;
}

.value-card p {
  color: var(--muted);
}

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

.list-panel {
  padding: 30px;
}

.list-panel h2 {
  margin-bottom: 14px;
}

.checked {
  list-style: none;
}

.checked li {
  position: relative;
  padding-right: 34px;
  margin: 12px 0;
  color: var(--text);
  font-size: 1.02rem;
  line-height: 1.7;
}

.checked li::before {
  content: "✓";
  position: absolute;
  right: 0;
  top: 2px;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  background: rgba(0, 217, 255, .11);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--cyan);
  font-size: .85rem;
  font-weight: 900;
  box-shadow: 0 0 10px rgba(0, 217, 255, .15);
}

.services-list {
  display: grid;
  gap: 20px;
}

.service-detail {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 22px;
  padding: 28px;
}

.service-detail h2 {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.service-detail p {
  color: #E2ECF6;
  margin-bottom: 12px;
  font-weight: 400;
  font-size: 1.02rem;
  line-height: 1.75;
}

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

.project-card {
  overflow: hidden;
  display: grid;
  grid-template-columns: .75fr 1.25fr;
}

.project-visual {
  display: grid;
  place-items: center;
  min-height: 260px;
  background: radial-gradient(circle, rgba(0, 217, 255, .18), transparent 65%), linear-gradient(135deg, rgba(0, 123, 255, .22), rgba(0, 217, 255, .08));
}

.project-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 260px;
}

.project-visual i {
  font-size: 4.5rem;
  color: var(--cyan);
}

.project-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.project-body span {
  color: var(--cyan);
  font-weight: 900;
}

.project-body p {
  color: var(--muted);
  margin: 12px 0;
}

.project-body ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}

.project-body li {
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(0, 217, 255, .09);
  border: 1px solid var(--border);
  color: var(--cyan);
  font-size: .85rem;
  font-weight: 800;
}

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

.price-card {
  padding: 32px;
  position: relative;
  transition: var(--ease);
}

.price-card:hover {
  transform: translateY(-10px);
}

.price-card.featured {
  border-color: var(--border);
  transform: scale(1.04);
}

.badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  padding: 6px 13px;
  border-radius: 999px;
  font-weight: 900;
  color: #fff;
}

.price-desc {
  color: var(--cyan);
  font-weight: 900;
  margin: 8px 0 18px;
}

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

.add-ons>div {
  padding: 24px;
  text-align: center;
}

.add-ons i {
  font-size: 2.2rem;
  color: var(--cyan);
  margin-bottom: 12px;
}

.add-ons p {
  color: var(--muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 32px;
}

.contact-panel {
  padding: 10px;
}

.contact-panel h2 {
  font-size: 2.4rem;
  margin-bottom: 12px;
}

.contact-panel p {
  color: var(--muted);
  margin-bottom: 22px;
}

.contact-methods {
  display: grid;
  gap: 14px;
  margin-bottom: 24px;
}

.contact-methods a,
.contact-methods>div {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 17px;
  border-radius: 20px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid var(--border-soft);
}

.contact-methods i {
  color: var(--cyan);
  font-size: 1.45rem;
}

.contact-methods span {
  display: block;
  color: var(--muted);
}

.mini-note {
  padding: 22px;
  border-radius: 22px;
  background: rgba(0, 217, 255, .07);
  border: 1px solid var(--border);
}

.contact-form {
  padding: 30px;
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--white);
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--border-soft);
  background: rgba(2, 9, 18, .62);
  color: var(--white);
  border-radius: 16px;
  padding: 13px 16px;
  font-family: inherit;
  outline: none;
  transition: var(--ease);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 4px rgba(0, 217, 255, .09);
}

.contact-form option {
  background: var(--dark);
}

.form-note {
  color: var(--cyan);
  font-weight: 900;
  min-height: 22px;
}

/* Footer */
.site-footer {
  padding: 72px 0 24px;
  background: rgba(2, 9, 18, .78);
  border-top: 1px solid var(--border-soft);
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 1fr);
  gap: 34px;
}

.footer-logo {
  width: 112px;
  margin-bottom: 14px;
}

.site-footer h3 {
  margin-bottom: 13px;
}

.site-footer p,
.site-footer a,
.site-footer span {
  display: block;
  color: var(--muted);
  margin: 7px 0;
}

.site-footer a:hover {
  color: var(--cyan);
}

.copyright {
  text-align: center;
  color: var(--muted);
  padding-top: 22px;
  margin-top: 36px;
  border-top: 1px solid var(--border-soft);
}

/* Floating actions widget */
.floating-actions {
  position: fixed;
  left: 22px;
  bottom: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.floating-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.65rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .3);
  transition: var(--ease);
  cursor: pointer;
  position: relative;
}

.floating-btn:hover {
  transform: scale(1.08) translateY(-3px);
}

.floating-btn.wa {
  background: #25d366;
  box-shadow: 0 10px 30px rgba(37, 211, 102, .34);
  animation: pulse 2.2s infinite;
}

.floating-btn.tg {
  background: #0088cc;
  box-shadow: 0 10px 30px rgba(0, 136, 204, .34);
  animation: pulse 2.2s infinite;
  animation-delay: 1.1s;
}

@keyframes pulse {
  50% {
    transform: scale(1.05);
  }
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: .75s ease;
}

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

/* Responsive */
@media(max-width:1080px) {
  .nav-cta {
    display: none;
  }

  .main-nav {
    position: fixed;
    top: 92px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 22px;
    border-radius: 24px;
    background: rgba(2, 9, 18, .96);
    border: 1px solid var(--border);
    backdrop-filter: blur(18px);
  }

  .main-nav.active {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }

  .hero-grid,
  .intro-grid,
  .why-grid,
  .content-grid,
  .two-columns,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-actions,
  .trust-strip {
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }

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

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

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

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

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

  .portfolio-grid-full {
    grid-template-columns: 1fr;
  }
}

@media(max-width:720px) {
  .section {
    padding: var(--section-pad-y-mob) 0;
  }

  .page-hero {
    padding: 120px 0 60px;
  }

  .brand div {
    display: none;
  }

  .nav-shell {
    border-radius: 22px;
  }

  .hero {
    padding-top: 120px;
  }

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

  .trust-strip,
  .service-cards,
  .timeline,
  .add-ons,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .device-card {
    min-height: 390px;
  }

  .device-screen {
    min-height: 315px;
  }

  .floating-badge {
    display: none;
  }

  .service-detail {
    grid-template-columns: 1fr;
  }

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

  .cta-box {
    flex-direction: column;
    align-items: flex-start;
    padding: var(--card-pad) 24px;
    gap: var(--grid-gap);
  }

  .floating-actions {
    bottom: 16px;
    left: 16px;
  }

  .floating-btn {
    width: 48px;
    height: 48px;
    font-size: 1.45rem;
  }

  .center {
    margin-bottom: 28px;
  }

  .why-grid {
    gap: 24px;
  }
}
