:root {
  --yellow: #fdce03;
  --blue: #0199fc;
  --orange: #fc6133;
  --green: #49c024;
  --primary: #0199fc;
  --primary-dark: #0178c9;
  --primary-hover: #018ae6;
  --primary-soft: #e3f4fe;
  --primary-mid: #33adfd;
  --bg: #f6f7fb;
  --white: #ffffff;
  --text: #0f172a;
  --muted: #5b6b73;
  --line: #e4e7ee;
  --dark: #000000;
  --shadow: 0 8px 32px rgba(15, 23, 42, 0.06);
  --shadow-hover: 0 12px 40px rgba(30, 136, 229, 0.16);
  --radius: 24px;
  --radius-sm: 16px;
  --radius-pill: 999px;
  --space: 8px;
  --container: 1180px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Cairo", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
}

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

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

button,
input,
textarea,
select {
  font-family: inherit;
}

button {
  cursor: pointer;
  border: 0;
  background: none;
}

ul {
  list-style: none;
}

.skip-link {
  position: absolute;
  inset-inline-start: 16px;
  top: -40px;
  background: var(--primary);
  color: #fff;
  padding: 8px 16px;
  border-radius: 8px;
  z-index: 100;
}

.skip-link:focus {
  top: 16px;
}

.bg-pattern {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    repeating-radial-gradient(circle at 8% 12%, transparent 0, transparent 46px, rgba(30, 136, 229, 0.05) 47px, transparent 48px),
    repeating-radial-gradient(circle at 92% 78%, transparent 0, transparent 54px, rgba(248, 196, 0, 0.04) 55px, transparent 56px),
    repeating-radial-gradient(circle at 70% 8%, transparent 0, transparent 70px, rgba(67, 160, 71, 0.03) 71px, transparent 72px);
}

.page {
  position: relative;
  z-index: 1;
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.section {
  padding-block: 24px;
}

.section[id] {
  scroll-margin-top: 96px;
}

.hero-copy,
.hero-grid,
.hero-card {
  min-width: 0;
}

.hero-copy h1 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  max-width: 100%;
}

.hero-copy .title-line {
  white-space: normal;
}

.hero-copy .highlight {
  display: block;
  max-width: 100%;
}

.section-head {
  margin-bottom: 32px;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 8px;
}

.kicker::before {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

h1,
h2,
h3 {
  line-height: 1.3;
  font-weight: 800;
}

h1 {
  font-size: clamp(32px, 5vw, 52px);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(28px, 4vw, 40px);
}

h3 {
  font-size: 20px;
  font-weight: 700;
}

.lead {
  color: var(--muted);
  font-size: 16px;
  max-width: 56ch;
}

.highlight {
  background: #fff4c2;
  color: inherit;
  border-radius: 12px;
  padding: 0 10px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 700;
  transition: transform 200ms var(--ease), background 200ms var(--ease), box-shadow 200ms var(--ease);
}

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:focus-visible,
.nav-link:focus-visible,
.icon-btn:focus-visible,
.menu-toggle:focus-visible {
  outline: 3px solid rgba(30, 136, 229, 0.35);
  outline-offset: 2px;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  background: var(--primary-hover);
  box-shadow: 0 8px 20px rgba(30, 136, 229, 0.28);
}

.btn-dark {
  background: var(--dark);
  color: #fff;
}

.btn-ghost {
  background: var(--primary-soft);
  color: var(--primary-dark);
}

.icon-btn {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: #fff;
  transition: background 200ms var(--ease), transform 200ms var(--ease);
}

.icon-btn:hover {
  background: var(--primary-hover);
}

.icon-btn.light {
  background: var(--primary-soft);
  color: var(--primary);
}

.icon-btn svg {
  width: 18px;
  height: 18px;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 40;
  padding-top: 16px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 16px 12px 12px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 56px;
}

.brand img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  background: transparent;
}

.footer-brand img {
  width: 72px;
  height: 72px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.35;
  overflow: visible;
}

.brand-text strong {
  font-size: 16px;
}

.brand-text span {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 8px;
}

.nav-link {
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  transition: background 200ms var(--ease), color 200ms var(--ease);
}

.nav-link:hover,
.nav-link.active {
  color: var(--text);
  background: var(--primary-soft);
}

.nav-cta {
  display: none;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: var(--primary-soft);
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: var(--primary-dark);
  border-radius: 2px;
  transition: transform 200ms var(--ease), opacity 200ms var(--ease);
}

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

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

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

.mobile-menu {
  display: none;
  margin-top: 8px;
  padding: 16px;
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.mobile-menu.open {
  display: grid;
  gap: 8px;
}

.mobile-menu .nav-link {
  display: block;
}

.mobile-menu .btn {
  margin-top: 8px;
  width: 100%;
}

/* Hero */
.hero-card {
  padding: 24px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  gap: 32px;
  align-items: center;
}

.hero-copy p {
  margin: 16px 0 24px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  background: var(--bg);
  color: var(--muted);
  border-radius: var(--radius-pill);
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
}

.hero-media {
  position: relative;
}

.hero-photo {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 22px;
}

.hero-badges {
  position: absolute;
  inset-inline: 16px;
  bottom: 16px;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 12px;
  pointer-events: none;
}

.stat-chip,
.brand-chip {
  pointer-events: auto;
  height: 72px;
  border-radius: 16px;
  box-shadow: var(--shadow-hover);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 16px;
}

.stat-chip {
  background: var(--primary);
  color: #fff;
  min-width: 118px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 4px;
}

.stat-chip strong {
  font-size: 28px;
  line-height: 1;
}

.stat-chip span {
  font-size: 12px;
  opacity: 0.9;
  white-space: nowrap;
}

.brand-chip {
  background: var(--dark);
  color: #fff;
}

.brand-chip img {
  width: 40px;
  height: 40px;
  border-radius: 0;
  flex-shrink: 0;
  object-fit: contain;
  background: transparent;
}

.brand-chip b {
  display: block;
  font-size: 14px;
  line-height: 1.2;
}

.brand-chip small {
  color: #b7c9cc;
  font-size: 11px;
}

/* About */
.about-card {
  padding: 24px;
}

.about-grid {
  display: grid;
  gap: 24px;
}

.about-visual {
  position: relative;
}

.about-photo {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 20px;
}

.about-mini {
  position: absolute;
  width: 120px;
  height: 88px;
  object-fit: cover;
  border-radius: 14px;
  border: 4px solid #fff;
  box-shadow: var(--shadow);
  inset-inline-start: 16px;
  bottom: 16px;
}

.stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}

.stat strong {
  display: block;
  color: var(--primary);
  font-size: 32px;
  line-height: 1.1;
}

.stat span {
  color: var(--muted);
  font-size: 14px;
}

/* Services */
.services-card {
  padding: 24px;
}

.services-grid {
  display: grid;
  gap: 24px;
}

.services-photo {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  border-radius: 20px;
}

.service-list {
  display: grid;
}

.service-item {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 18px 8px;
  border-bottom: 1px solid var(--line);
  transition: background 200ms var(--ease);
  border-radius: 12px;
  cursor: default;
}

.service-item:hover svg {
  transform: translateX(-4px);
}

.service-item svg {
  width: 18px;
  height: 18px;
  color: var(--primary);
  transition: transform 200ms var(--ease);
}

.service-item:last-child {
  border-bottom: 0;
}

.service-item:hover {
  background: var(--primary-soft);
}

.service-num {
  color: var(--primary);
  font-weight: 800;
  font-size: 18px;
}

.service-item:nth-child(4n + 1) .service-num {
  color: var(--yellow);
}

.service-item:nth-child(4n + 2) .service-num {
  color: var(--blue);
}

.service-item:nth-child(4n + 3) .service-num {
  color: var(--orange);
}

.service-item:nth-child(4n + 4) .service-num {
  color: var(--green);
}

.service-item h3 {
  font-size: 16px;
}

.service-item p {
  color: var(--muted);
  font-size: 13px;
}

/* Projects */
.projects-card {
  padding: 24px;
}

.projects-showcase {
  display: grid;
  gap: 16px;
}

.proj {
  display: flex;
  flex-direction: column;
}

.proj-stage {
  position: relative;
  background: #eef3fb;
  border-radius: 20px;
  min-height: 240px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 28px 16px 8px;
  overflow: hidden;
}

.proj-stage.has-photo {
  padding: 0;
  align-items: stretch;
}

.proj-photo {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  display: block;
}

.proj-feature .proj-stage {
  min-height: 280px;
  background: #e3f2fd;
}

.proj-go {
  position: absolute;
  top: 16px;
  inset-inline-end: 16px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: grid;
  place-items: center;
  z-index: 3;
  box-shadow: 0 8px 16px rgba(30, 136, 229, 0.28);
}

.proj-go svg {
  width: 18px;
  height: 18px;
}

.proj-copy {
  padding: 16px 8px 0;
}

.proj-copy h3 {
  margin-bottom: 6px;
}

.proj-copy p {
  color: var(--muted);
  font-size: 14px;
}

.proj-cta {
  margin: 16px auto 0;
}

.devices {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0;
  min-height: 190px;
  position: relative;
}

.devices.pair .phone + .phone {
  margin-inline-start: -28px;
}

.feature-devices {
  min-height: 220px;
}

.phone {
  width: 102px;
  height: 198px;
  background: #111827;
  border-radius: 22px;
  padding: 7px;
  box-shadow: 0 16px 28px rgba(15, 23, 42, 0.18);
  position: relative;
  z-index: 1;
}

.phone.tilt-r {
  transform: rotate(-14deg) translateY(10px);
}

.phone.tilt-l {
  transform: rotate(12deg) translateY(12px);
}

.phone.back {
  z-index: 0;
}

.phone-screen {
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(180deg, #f8fbff, #eef3fb);
  padding: 12px 8px;
}

.phone-screen.alt {
  background: linear-gradient(180deg, #ffffff, #eef3fb);
}

.ui-logo {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary);
  margin: 8px auto 12px;
}

.ui-bar {
  height: 8px;
  width: 42%;
  background: var(--primary);
  border-radius: 8px;
  margin-bottom: 8px;
}

.ui-card {
  height: 32px;
  background: #fff;
  border-radius: 8px;
  margin-bottom: 6px;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
}

.ui-row {
  height: 7px;
  background: #d6e4f5;
  border-radius: 8px;
  margin-bottom: 6px;
}

.ui-row.short {
  width: 60%;
}

.float-card {
  width: 92px;
  height: 128px;
  background: #90caf9;
  border-radius: 16px;
  box-shadow: 0 18px 32px rgba(30, 136, 229, 0.22);
  transform: rotate(18deg) translateY(-28px);
  z-index: 2;
  margin: 0 -18px;
}

/* Testimonials */
.reviews-card {
  padding: 24px;
}

.reviews-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  align-items: end;
  margin-bottom: 24px;
}

.reviews-nav {
  display: flex;
  gap: 8px;
}

.reviews-track {
  display: grid;
  gap: 16px;
}

.review {
  background: var(--bg);
  border-radius: 20px;
  padding: 20px;
}

.review-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.review-head img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.stars {
  color: #f5b301;
  letter-spacing: 1px;
  font-size: 13px;
  margin-inline-start: auto;
}

.review p {
  color: var(--muted);
  font-size: 14px;
}

.review-head strong {
  display: block;
  font-size: 15px;
}

.review-head span {
  font-size: 12px;
  color: var(--muted);
}

/* CTA */
.cta-card {
  background: var(--primary);
  color: #fff;
  padding: 40px 24px;
  display: grid;
  gap: 20px;
  text-align: center;
}

.cta-card p {
  opacity: 0.9;
  max-width: 52ch;
  margin-inline: auto;
}

.cta-card .btn-dark:hover {
  background: #0b2c31;
}

/* Contact */
.contact-card {
  padding: 24px;
}

.contact-grid {
  display: grid;
  gap: 24px;
}

.info-list {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.info-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--bg);
  border-radius: 16px;
  padding: 16px;
}

.info-item .icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--primary-soft);
  color: var(--primary);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.info-item .icon svg {
  width: 18px;
  height: 18px;
}

.info-item span {
  display: block;
  font-size: 12px;
  color: var(--muted);
}

.info-item b,
.info-item a {
  font-size: 15px;
  font-weight: 700;
}

.ltr {
  direction: ltr;
  unicode-bidi: isolate;
  text-align: right;
}

.form {
  display: grid;
  gap: 16px;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  font-size: 14px;
  font-weight: 700;
}

.field input,
.field textarea {
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 14px;
  font-size: 15px;
  background: #fff;
  color: var(--text);
  transition: border 200ms var(--ease), box-shadow 200ms var(--ease);
}

.field textarea {
  min-height: 120px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(30, 136, 229, 0.12);
}

.field input.error,
.field textarea.error {
  border-color: #ef4444;
}

.field .hint {
  font-size: 12px;
  color: #ef4444;
  min-height: 16px;
}

.form-success {
  display: none;
  background: var(--primary-soft);
  color: var(--primary-dark);
  border-radius: 14px;
  padding: 12px 16px;
  font-weight: 700;
}

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

.form-success a {
  color: var(--primary-dark);
  font-weight: 800;
  text-decoration: underline;
}

.form .btn {
  justify-self: start;
}

.section-head.center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-head.center .lead {
  margin-inline: auto;
}

.packages-card {
  padding: 24px;
}

.pack-grid {
  display: grid;
  gap: 16px;
}

.pack {
  background: linear-gradient(180deg, #f8fbff 0%, #eef3fb 100%);
  border-radius: 20px;
  padding: 24px 20px;
  min-height: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 132px;
  align-items: center;
  gap: 8px;
  overflow: hidden;
  transition: transform 200ms var(--ease), box-shadow 200ms var(--ease);
}

.pack-body {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.pack-art {
  width: 120px;
  height: 120px;
  justify-self: center;
  pointer-events: none;
  color: var(--primary);
  opacity: 0.28;
  transition: opacity 200ms var(--ease);
}

.pack:hover .pack-art {
  opacity: 0.4;
}

.pack-art svg {
  width: 100%;
  height: 100%;
  display: block;
}

.pack-web,
.pack-net,
.pack-account,
.pack-sms {
  background: linear-gradient(180deg, #f8fbff 0%, #eef3fb 100%);
}

.pack-web .pack-art,
.pack-web .pack-num {
  color: var(--yellow);
}

.pack-net .pack-art,
.pack-net .pack-num {
  color: var(--blue);
}

.pack-account .pack-art,
.pack-account .pack-num {
  color: var(--orange);
}

.pack-sms .pack-art,
.pack-sms .pack-num {
  color: var(--green);
}

.pack:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.pack-num {
  color: var(--primary);
  font-weight: 800;
  font-size: 18px;
  display: block;
  margin-bottom: 8px;
}

.pack h3 {
  font-size: 20px;
  margin-bottom: 4px;
}

.pack-tag {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 16px;
}

.pack ul {
  display: grid;
  gap: 8px;
  margin-bottom: 20px;
  flex: 1;
}

.pack li {
  font-size: 14px;
  color: var(--text);
  padding-inline-start: 16px;
  position: relative;
}

.pack li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  position: absolute;
  inset-inline-start: 0;
  top: 8px;
}

.pack .btn {
  align-self: flex-start;
}

.cta-banner {
  background: var(--primary);
  color: #fff;
  border-radius: 24px;
  padding: 40px 24px;
  text-align: center;
  box-shadow: var(--shadow);
}

.cta-banner h2 {
  font-size: clamp(22px, 3vw, 32px);
  margin-bottom: 8px;
}

.cta-banner p {
  opacity: 0.9;
  margin-bottom: 16px;
}

.cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  color: #fff;
  font-weight: 700;
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  padding-bottom: 2px;
}

.cta-link svg {
  width: 18px;
  height: 18px;
}

.method-card {
  padding: 24px;
}

.method-grid {
  display: grid;
  gap: 24px;
}

.method-list {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.method-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.method-list h3 {
  font-size: 16px;
}

.method-list p {
  color: var(--muted);
  font-size: 14px;
}

.step-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 800;
  flex-shrink: 0;
  background: var(--primary-soft);
  color: var(--primary-dark);
}

.method-list li:nth-child(1) .step-icon {
  background: #fff4c2;
  color: #b88600;
}

.method-list li:nth-child(2) .step-icon {
  background: #e3f2fd;
  color: #1565c0;
}

.method-list li:nth-child(3) .step-icon {
  background: #fbe9e7;
  color: #e64a19;
}

.method-list li:nth-child(4) .step-icon {
  background: #e8f5e9;
  color: #2e7d32;
}

.method-visual {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.method-visual img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.method-caption {
  padding: 20px;
}

.method-caption h3 {
  margin-bottom: 8px;
}

.method-caption p {
  color: var(--muted);
  font-size: 14px;
}

.method-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 16px;
}

.method-stats strong {
  display: block;
  color: var(--primary);
  font-size: 28px;
  line-height: 1.1;
}

.method-stats span {
  font-size: 13px;
  color: var(--muted);
}

/* Footer */
.footer {
  margin-top: 24px;
  background: #000;
  color: #d0d0d0;
  padding: 48px 0 80px;
  border-radius: 32px 32px 0 0;
}

.footer-brand {
  margin-bottom: 12px;
  color: #fff;
}

.footer-brand span {
  color: #b0b0b0 !important;
}

.footer-grid {
  display: grid;
  gap: 32px;
  margin-bottom: 32px;
}

.footer-grid h3 {
  color: #fff;
  font-size: 15px;
  margin-bottom: 12px;
}

.footer-grid p,
.footer-grid a {
  display: block;
  font-size: 14px;
  margin-bottom: 8px;
  color: #c8c8c8;
}

.footer-grid a:hover {
  color: #fff;
}

.footer-copy {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 16px;
  font-size: 13px;
  color: #9a9a9a;
}

.wa-float {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 50;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.wa-float svg {
  width: 28px;
  height: 28px;
  display: block;
}

@media (min-width: 768px) {
  .container {
    width: min(100% - 48px, var(--container));
  }

  .hero-card,
  .about-card,
  .services-card,
  .projects-card,
  .packages-card,
  .reviews-card,
  .contact-card {
    padding: 40px;
  }

  .hero-photo {
    height: 420px;
  }

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

  .reviews-track,
  .contact-grid,
  .about-grid,
  .services-grid,
  .pack-grid,
  .method-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .method-card {
    padding: 40px;
  }

  .cta-banner {
    padding: 48px 56px;
  }
}

@media (min-width: 1024px) {
  .menu-toggle,
  .mobile-menu {
    display: none !important;
  }

  .nav-links,
  .nav-cta {
    display: flex;
  }

  .nav {
    padding: 12px 12px 12px 16px;
  }

  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 40px;
  }

  .hero-copy .title-line {
    white-space: nowrap;
  }

  .about-grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
  }

  .services-grid {
    grid-template-columns: 0.95fr 1.05fr;
    align-items: stretch;
  }

  .projects-showcase {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
    gap: 20px;
  }

  .reviews-track {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 0.8fr 0.8fr;
  }

  .cta-card,
  .cta-banner {
    text-align: center;
  }

  .section {
    padding-block: 16px;
  }
}

@media (max-width: 599px) {
  .pack {
    grid-template-columns: minmax(0, 1fr) 88px;
    padding: 20px 16px;
  }

  .pack-art {
    width: 80px;
    height: 80px;
  }

  h1 {
    font-size: 28px;
  }

  .hero-copy h1 {
    max-width: 100%;
  }

  .hero-copy .title-line {
    white-space: normal;
  }

  .chip {
    font-size: 12px;
    padding: 6px 10px;
  }

  .hero-photo,
  .about-photo,
  .services-photo {
    height: 240px;
    min-height: 240px;
  }

  .brand-chip {
    display: none;
  }

  .hero-badges {
    inset-inline: 12px;
    bottom: 12px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn,
  .form .btn,
  .cta-card .btn {
    width: 100%;
    justify-self: stretch;
  }

  .nav {
    padding: 10px 12px;
  }

  .header {
    padding-top: 12px;
  }
}
