/* ===========================================================
   CROOPPLE TECH — LANDING PAGE CLONE
   =========================================================== */

:root {
  --purple: #5B2CFF;
  --blue: #1B3DFF;
  --gradient: linear-gradient(135deg, #5B2CFF 0%, #1B3DFF 100%);
  --bg: #FFFFFF;
  --heading: #0F172A;
  --paragraph: #64748B;
  --border: #E5E7EB;
  --light-purple-bg: #F4F2FF;
  --light-purple-bg-2: #EDEAFE;
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 8px 24px rgba(91, 44, 255, 0.08);
  --shadow-lg: 0 20px 48px rgba(91, 44, 255, 0.12);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 999px;
  --container-width: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--paragraph);
  background: var(--bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

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

ul,
li {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

h1,
h2,
h3,
h4,
h5 {
  color: var(--heading);
  font-weight: 700;
  line-height: 1.2;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14.5px;
  padding: 13px 24px;
  border-radius: var(--radius-sm);
  border: 1.5px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}

.btn svg {
  flex-shrink: 0;
  transition: transform 0.15s ease;
}

.btn--primary {
  background: var(--purple);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(91, 44, 255, 0.25);
}

.btn--primary:hover {
  background: #4a22e0;
  transform: translateY(-1px);
}

.btn--header {
  padding: 11px 22px;
  font-size: 14px;
}

.btn--outline {
  background: transparent;
  color: var(--purple);
  border-color: var(--purple);
}

.btn--outline:hover {
  background: var(--light-purple-bg);
}

.btn--lg {
  padding: 14px 26px;
  font-size: 15px;
}

.btn--gradient {
  background: linear-gradient(90deg, #5B2CFF 0%, #1B3DFF 100%);
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(91, 44, 255, 0.3);
  font-size: 15px;
  padding: 15px 24px;
}

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

.btn--full {
  width: 100%;
}

.btn--white {
  background: #ffffff;
  color: var(--purple);
}

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

.btn--outline-white {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.5);
  color: #ffffff;
}

.btn--outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn:hover svg {
  transform: translateX(2px);
}

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo__icon {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.logo__text {
  font-size: 20px;
  font-weight: 800;
  color: var(--heading);
  letter-spacing: -0.3px;
  line-height: 1;
}

.logo__sub {
  display: block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--paragraph);
  margin-top: 1px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
  justify-content: center;
}

.nav__link {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--heading);
  position: relative;
  padding: 4px 0;
}

.nav__link.active {
  color: var(--purple);
  font-weight: 600;
}

.nav__link:hover {
  color: var(--purple);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--heading);
  border-radius: 2px;
  transition: 0.2s;
}

/* ===== HERO ===== */
.hero {
  padding: 40px 0 48px;
  overflow: hidden;
  position: relative;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--light-purple-bg);
  color: var(--purple);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
}

.badge__stars {
  color: var(--purple);
  font-size: 11px;
  letter-spacing: 1px;
}

.hero__heading {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
  color: var(--heading);
}

.text-gradient {
  background: linear-gradient(90deg, #5B2CFF, #1B3DFF);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__paragraph {
  font-size: 16px;
  color: var(--paragraph);
  max-width: 460px;
  margin-bottom: 32px;
}

.hero__buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 36px;
}

.trust-points {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-point {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--heading);
}

.trust-point__icon {
  width: 18px;
  height: 18px;
  background: var(--purple);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  flex-shrink: 0;
}

/* ===== HERO VISUAL ===== */
.hero__visual {
  position: relative;
  height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__blob {
  position: absolute;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(91, 44, 255, 0.12), transparent 70%);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.mockup-laptop {
  position: relative;
  width: 420px;
  z-index: 2;
  animation: floatY 6s ease-in-out infinite;
}

.mockup-laptop__screen {
  background: #1a1a1a;
  border-radius: 14px 14px 0 0;
  padding: 10px 10px 0;
  box-shadow: var(--shadow-lg);
}

.mockup-laptop__screen::before {
  content: '';
}

.mockup-laptop__screen {
  position: relative;
}

.mockup-nav {
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  border-radius: 6px 6px 0 0;
  font-size: 8px;
}

.mockup-nav__logo {
  font-size: 9px;
  font-weight: 800;
  color: var(--heading);
  display: flex;
  align-items: center;
  gap: 2px;
}

.mockup-nav__logo-dot {
  color: var(--purple);
}

.mockup-nav__links {
  display: flex;
  gap: 10px;
  font-size: 7px;
  color: var(--paragraph);
  font-weight: 500;
}

.mockup-nav__btn {
  width: 36px;
  height: 12px;
  background: var(--purple);
  border-radius: 4px;
}

.mockup-body {
  background: linear-gradient(135deg, #fdfdff, #f3f1ff);
  padding: 28px 20px 36px;
  border-radius: 0 0 6px 6px;
  min-height: 200px;
}

.mockup-eyebrow {
  font-size: 7px;
  font-weight: 700;
  color: var(--purple);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.mockup-body h3 {
  font-size: 17px;
  font-weight: 800;
  margin: 6px 0 8px;
  line-height: 1.25;
  color: var(--heading);
}

.mockup-body p {
  font-size: 8.5px;
  color: var(--paragraph);
  max-width: 200px;
  margin-bottom: 16px;
  line-height: 1.5;
}

.mockup-cta {
  display: flex;
  gap: 8px;
}

.mockup-cta__btn {
  font-size: 7.5px;
  font-weight: 600;
  padding: 7px 12px;
  border-radius: 5px;
}

.mockup-cta__btn--filled {
  background: var(--purple);
  color: #fff;
}

.mockup-cta__btn--ghost {
  background: transparent;
  border: 1px solid var(--purple);
  color: var(--purple);
}

.mockup-cta__btn.small {
  font-size: 6.5px;
  padding: 5px 9px;
}

.mockup-laptop__base {
  height: 14px;
  background: linear-gradient(180deg, #d4d4d8, #a3a3ad);
  border-radius: 0 0 10px 10px;
  position: relative;
}

.mockup-laptop__base::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 5px;
  background: #8b8b96;
  border-radius: 0 0 6px 6px;
}

.mockup-phone {
  position: absolute;
  right: -10px;
  bottom: 10px;
  width: 150px;
  background: #1a1a1a;
  border-radius: 22px;
  padding: 8px;
  box-shadow: var(--shadow-lg);
  z-index: 3;
  animation: floatY 6s ease-in-out infinite 0.5s;
}

.mockup-phone__notch {
  width: 40px;
  height: 5px;
  background: #1a1a1a;
  border-radius: 0 0 8px 8px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.mockup-phone__screen {
  background: #ffffff;
  border-radius: 16px;
  padding: 16px 12px 12px;
  min-height: 220px;
}

.mockup-phone__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.mockup-phone__nav .mockup-nav__logo {
  font-size: 8px;
}

.mockup-phone__dots {
  font-size: 10px;
  color: var(--paragraph);
}

.mockup-phone__screen h4 {
  font-size: 13px;
  font-weight: 800;
  color: var(--heading);
  line-height: 1.3;
  margin-bottom: 8px;
}

.mockup-phone__screen p {
  font-size: 7.5px;
  color: var(--paragraph);
  line-height: 1.5;
  margin-bottom: 14px;
}

/* ===== FLOAT CARDS ===== */
.float-card {
  position: absolute;
  background: #ffffff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 4;
  animation: floatY 5s ease-in-out infinite;
}

.float-card__icon {
  width: 36px;
  height: 36px;
  background: var(--light-purple-bg);
  color: var(--purple);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.float-card strong {
  display: block;
  font-size: 16px;
  font-weight: 800;
  color: var(--purple);
  line-height: 1.2;
}

.float-card span {
  font-size: 11px;
  color: var(--paragraph);
  font-weight: 500;
}

.float-card--projects {
  top: 0;
  right: 0;
  animation-delay: 0.2s;
}

.float-card--response {
  top: 42%;
  left: -30px;
  animation-delay: 0.8s;
}

.float-card--rating {
  bottom: 0;
  left: 30%;
  animation-delay: 1.4s;
}

@keyframes floatY {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* ===== CONTACT FORM SECTION ===== */
.contact-form-section {
  padding: 0 0 56px;
}

.contact-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 32px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
}

.contact-card__info h2 {
  font-size: 26px;
  margin-bottom: 14px;
}

.contact-card__info p {
  font-size: 14.5px;
  color: var(--paragraph);
  line-height: 1.6;
}

.contact-card__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  gap: 18px;
}

.form-row--3 {
  grid-template-columns: repeat(3, 1fr);
}

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

.form-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 8px;
}

.form-field label span {
  color: var(--purple);
}

.input-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  background: #fff;
  transition: border-color 0.15s ease;
}

.input-wrap:focus-within {
  border-color: var(--purple);
}

.input-wrap svg {
  color: #94a3b8;
  flex-shrink: 0;
}

.input-wrap input,
.input-wrap select {
  border: none;
  outline: none;
  font-size: 14px;
  font-family: inherit;
  color: var(--heading);
  width: 100%;
  background: transparent;
}

.input-wrap input::placeholder {
  color: #94a3b8;
}

.input-wrap--select {
  position: relative;
}

.input-wrap--select select {
  appearance: none;
  cursor: pointer;
  color: #94a3b8;
}

.select-arrow {
  position: absolute;
  right: 14px;
  color: #94a3b8;
  pointer-events: none;
}

/* ===== SECTION HEAD ===== */
.section-head {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 36px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--light-purple-bg);
  color: var(--purple);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 7px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.eyebrow__dot {
  width: 6px;
  height: 6px;
  background: var(--purple);
  border-radius: 50%;
}

.section-head h2 {
  font-size: 30px;
  margin-bottom: 12px;
}

.section-head p {
  font-size: 15px;
  color: var(--paragraph);
}

/* ===== SERVICES ===== */
.services-section {
  padding: 0 0 56px;
}

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

.service-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 16px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.service-card__icon {
  width: 52px;
  height: 52px;
  background: var(--light-purple-bg);
  color: var(--purple);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.service-card h3 {
  font-size: 15px;
  margin-bottom: 10px;
  line-height: 1.3;
}

.service-card p {
  font-size: 12.5px;
  color: var(--paragraph);
  line-height: 1.6;
}

/* ===== WHY CHOOSE ===== */
.why-section {
  padding: 0 0 44px;
}

.why-card {
  background: var(--light-purple-bg-2);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
}

.why-card__head {
  text-align: center;
  margin-bottom: 24px;
}

.why-card__pill {
  display: inline-block;
  background: rgba(255, 255, 255, 0.6);
  color: var(--purple);
  font-weight: 700;
  font-size: 14px;
  padding: 8px 20px;
  border-radius: var(--radius-full);
}

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

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.why-item__icon {
  width: 44px;
  height: 44px;
  background: #ffffff;
  color: var(--purple);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-item h4 {
  font-size: 14.5px;
  margin-bottom: 4px;
}

.why-item p {
  font-size: 12.5px;
  color: var(--paragraph);
  line-height: 1.5;
}

/* ===== PROCESS ===== */
.process-section {
  padding: 0 0 56px;
}

.process-line {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process-step {
  text-align: center;
  position: relative;
  padding: 0 16px;
}

.process-step__top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 18px;
  position: relative;
}

.process-step__num {
  width: 36px;
  height: 36px;
  background: var(--purple);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
  z-index: 2;
}

.process-step__icon {
  width: 56px;
  height: 56px;
  background: #faf9ff;
  border: 1px solid var(--border);
  color: var(--purple);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 2;
}

.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 18px;
  left: calc(50% + 47px);
  right: -50%;
  border-top: 2px dotted var(--purple);
  opacity: 0.45;
  z-index: 1;
}

.process-step h4 {
  font-size: 15.5px;
  margin-bottom: 8px;
}

.process-step p {
  font-size: 12.5px;
  color: var(--paragraph);
  line-height: 1.6;
  max-width: 200px;
  margin: 0 auto;
}

/* ===== PORTFOLIO ===== */
.portfolio-section {
  padding: 0 0 56px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  margin-bottom: 24px;
}

.portfolio-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: 14px;
  box-shadow: var(--shadow-sm);
}

.portfolio-card h4 {
  font-size: 14px;
  margin-bottom: 2px;
}

.portfolio-card p {
  font-size: 12px;
  color: var(--paragraph);
}

.portfolio-more {
  text-align: center;
}

/* ===== TESTIMONIALS + ACHIEVEMENTS ===== */
.testimonial-section {
  padding: 0 0 44px;
}

.testimonial-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 24px;
  align-items: start;
}

.testimonial-main h2 {
  font-size: 26px;
  margin: 14px 0 24px;
}

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

.testimonial-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px;
}

.testimonial-card__stars {
  color: var(--purple);
  font-size: 12px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.testimonial-card p {
  font-size: 13px;
  color: var(--heading);
  line-height: 1.6;
  margin-bottom: 16px;
  min-height: 64px;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testimonial-card__author img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-card__author strong {
  display: block;
  font-size: 13.5px;
  color: var(--heading);
}

.testimonial-card__author span {
  font-size: 12px;
  color: var(--paragraph);
}

.achievements-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  height: 100%;
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 18px;
}

.achievement-item strong {
  display: block;
  font-size: 26px;
  font-weight: 800;
  color: var(--purple);
  margin-bottom: 4px;
}

.achievement-item strong .achievement-item__unit {
  font-size: 15px;
  font-weight: 700;
  margin-left: 2px;
}

.achievement-item span {
  font-size: 12.5px;
  color: var(--paragraph);
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 0 0 56px;
}

.cta-card {
  background: linear-gradient(120deg, #5B2CFF 0%, #1B3DFF 100%);
  border-radius: var(--radius-lg);
  padding: 36px 48px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(27, 61, 255, 0.25);
}

.cta-card__illustration {
  flex-shrink: 0;
}

.cta-card__content h2 {
  color: #ffffff;
  font-size: 28px;
  margin-bottom: 10px;
}

.cta-card__content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14.5px;
  margin-bottom: 18px;
}

.cta-card__badges {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-card__badges span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 500;
}

.cta-card__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 200px;
}

/* ===== FOOTER ===== */
.footer {
  background: #fafaff;
  border-top: 1px solid var(--border);
}

.footer__top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 32px;
  padding: 40px 24px 28px;
}

.footer__col--brand p {
  font-size: 13.5px;
  color: var(--paragraph);
  margin: 10px 0 14px;
  line-height: 1.5;
}

.footer__social {
  display: flex;
  gap: 10px;
}

.footer__social a {
  width: 34px;
  height: 34px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--heading);
  transition: background 0.15s ease, color 0.15s ease;
}

.footer__social a:hover {
  background: var(--purple);
  color: #fff;
}

.footer__col h5 {
  font-size: 15px;
  margin-bottom: 14px;
}

.footer__col a {
  display: block;
  font-size: 13.5px;
  color: var(--paragraph);
  margin-bottom: 9px;
  transition: color 0.15s ease;
}

.footer__col a:hover {
  color: var(--purple);
}

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer__bottom {
  border-top: 1px solid var(--border);
}

.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-size: 13px;
  color: var(--paragraph);
}

.footer__legal {
  display: flex;
  gap: 24px;
}

.footer__legal a:hover {
  color: var(--purple);
}

/* ===========================================================
   RESPONSIVE
   =========================================================== */

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

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

  .testimonial-layout {
    grid-template-columns: 1fr;
  }

  .testimonial-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr;
  }

  .hero__visual {
    height: 380px;
    margin-top: 20px;
  }

  .mockup-laptop {
    width: 340px;
  }

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

  .cta-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cta-card__illustration {
    margin: 0 auto;
  }

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

  .cta-card__actions {
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .btn--header {
    display: none;
  }

  .nav.nav--open {
    display: flex;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 16px 24px;
    gap: 16px;
    box-shadow: var(--shadow-md);
  }

  .hero__heading {
    font-size: 32px;
  }

  .hero__buttons {
    flex-wrap: wrap;
  }

  .trust-points {
    gap: 14px 20px;
  }

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

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

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

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

  .process-step:not(:last-child)::after {
    display: none;
  }

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

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

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

  .footer__bottom-inner {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .form-row--3,
  .form-row--2 {
    grid-template-columns: 1fr;
  }

  .contact-card {
    padding: 28px;
  }

  .cta-card {
    padding: 36px 24px;
  }
}

@media (max-width: 480px) {
  .hero__heading {
    font-size: 26px;
  }

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

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

  .float-card {
    padding: 10px 12px;
  }

  .float-card strong {
    font-size: 14px;
  }

  .float-card span {
    font-size: 10px;
  }

  .mockup-phone {
    width: 120px;
    right: -14px;
  }
}

@media (prefers-reduced-motion: reduce) {

  .mockup-laptop,
  .mockup-phone,
  .float-card {
    animation: none;
  }
}

/* ===========================================================
   FREE WEBSITE MANAGEMENT SYSTEM SECTION
   =========================================================== */

.fwms-section {
  padding: 0 0 56px;
}

.fwms-card {
  background: var(--light-purple-bg-2);
  border-radius: var(--radius-lg);
  padding: 36px 36px 28px;
}

.fwms-card__top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
  align-items: center;
  margin-bottom: 28px;
}

.fwms-card__left h2 {
  font-size: 26px;
  margin: 14px 0 12px;
  line-height: 1.25;
}

.fwms-card__left p {
  font-size: 14px;
  color: var(--paragraph);
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 380px;
}

.fwms-card__btn {
  font-size: 14px;
  padding: 13px 22px;
}

/* center laptop mockup */
.fwms-card__center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.fwms-mockup-laptop {
  width: 100%;
  max-width: 340px;
}

.fwms-mockup-laptop__screen {
  background: #1a1a1a;
  border-radius: 14px;
  padding: 8px 8px 4px;
  box-shadow: var(--shadow-md);
}

.fwms-mockup-laptop__screen img {
  width: 100%;
  border-radius: 6px;
  display: block;
}

.fwms-mockup-laptop__base {
  height: 12px;
  background: linear-gradient(180deg, #d4d4d8, #a3a3ad);
  border-radius: 0 0 10px 10px;
  position: relative;
}

.fwms-mockup-laptop__base::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: #8b8b96;
  border-radius: 0 0 6px 6px;
}

/* right feature grid */
.fwms-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.fwms-feature {
  background: #ffffff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 16px 12px;
}

.fwms-feature__icon {
  width: 38px;
  height: 38px;
  background: var(--light-purple-bg);
  color: var(--purple);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.fwms-feature h4 {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--heading);
}

/* bottom benefits strip */
.fwms-benefits {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 20px 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.fwms-benefit {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.fwms-benefit__icon {
  width: 36px;
  height: 36px;
  background: var(--light-purple-bg);
  color: var(--purple);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fwms-benefit__icon--filled {
  background: linear-gradient(135deg, #5B2CFF 0%, #1B3DFF 100%);
  color: #ffffff;
}

.fwms-benefit h5 {
  font-size: 13.5px;
  margin-bottom: 2px;
}

.fwms-benefit p {
  font-size: 12px;
  color: var(--paragraph);
}

/* gradient banner */
.fwms-banner {
  margin-top: 24px;
  background: linear-gradient(90deg, #5B2CFF 0%, #1B3DFF 100%);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  text-align: center;
  box-shadow: 0 10px 24px rgba(91, 44, 255, 0.25);
}

.fwms-banner__main {
  color: #ffffff;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.3px;
  margin-bottom: 4px;
}

.fwms-banner__sub {
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  font-weight: 500;
}

@media (max-width: 1024px) {
  .fwms-card__top {
    grid-template-columns: 1fr;
  }

  .fwms-card__left p {
    max-width: none;
  }

  .fwms-feature-grid {
    grid-template-columns: repeat(4, 1fr);
  }

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

@media (max-width: 768px) {
  .fwms-card {
    padding: 28px 20px;
  }

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

  .fwms-benefits {
    grid-template-columns: 1fr;
  }

  .fwms-banner__main {
    font-size: 14px;
  }
}

/* ===========================================================
   FLOATING ELEMENTS — Chat Tab, WhatsApp, Call
   (Additive only — does not alter any existing section)
   =========================================================== */

/* ---- Left vertical "Click for Chat" tab ---- */
.float-chat-tab {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 35px 10px;
  /* padding: 18px 8px; */
  background: linear-gradient(135deg, #5B2CFF 0%, #1B3DFF 100%);
  color: #ffffff;
  border: none;
  border-top-right-radius: var(--radius-md);
  border-bottom-right-radius: var(--radius-md);
  box-shadow: 0 6px 20px rgba(91, 44, 255, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.06) inset;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.float-chat-tab__icon {
  flex-shrink: 0;
}

.float-chat-tab__text {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 18px;
  font-weight: 700;
  /* font-size: 13px;
  font-weight: 600; */
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.float-chat-tab:hover {
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 8px 26px rgba(91, 44, 255, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}

.float-chat-tab:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}

/* ---- Bottom-right stacked actions: WhatsApp + Call ---- */
.float-actions {
  position: fixed;
  right: 24px;
  bottom: 84px;
  /* right: 24px;
  bottom: 24px; */
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.float-action {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.float-action:hover {
  transform: scale(1.08);
}

.float-action--whatsapp {
  background: #25D366;
  animation: floatPulse 2.6s ease-in-out infinite;
}

.float-action--call {
  background: linear-gradient(135deg, #5B2CFF 0%, #1B3DFF 100%);
  animation: floatGentle 3.4s ease-in-out infinite;
}

@keyframes floatPulse {

  0%,
  100% {
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.22), 0 0 0 0 rgba(37, 211, 102, 0.45);
  }

  50% {
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.22), 0 0 0 10px rgba(37, 211, 102, 0);
  }
}

@keyframes floatGentle {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

.float-action--call:hover,
.float-action--whatsapp:hover {
  animation-play-state: paused;
}

/* ---- Responsive: hide vertical chat tab on mobile, keep WhatsApp/Call ---- */
@media (max-width: 768px) {
  .float-chat-tab {
    display: none;
  }

  .float-actions {
    right: 16px;
    bottom: 80px !important;
    /* bottom: 16px; */
  }

  .float-action {
    width: 50px;
    height: 50px;
  }

  .fwms-card__btn {
    font-size: 12px !important;
    padding: 13px 20px;
  }
}

@media (prefers-reduced-motion: reduce) {

  .float-action--whatsapp,
  .float-action--call {
    animation: none;
  }
}