/* =========================================================
   GLOBAL SETTINGS
========================================================= */

:root {
  --primary: #5b5bf7;
  --primary-dark: #4545d8;
  --primary-soft: #eef0ff;
  --secondary: #8b5cf6;

  --dark: #111827;
  --dark-soft: #1f2937;

  --text: #374151;
  --muted: #6b7280;

  --white: #ffffff;
  --background: #f8fafc;
  --background-soft: #f5f7fb;

  --border: #e5e7eb;

  --success: #16a34a;

  --shadow-sm: 0 10px 30px rgba(15, 23, 42, 0.06);

  --shadow-md: 0 20px 50px rgba(15, 23, 42, 0.1);

  --shadow-lg: 0 35px 90px rgba(15, 23, 42, 0.14);

  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;

  --container: 1200px;
}

/* =========================================================
   RESET
========================================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  border: none;
  background: none;
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

img {
  display: block;
  max-width: 100%;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 110px 0;
}

/* =========================================================
   COMMON TYPOGRAPHY
========================================================= */

.section-header {
  max-width: 720px;
  margin: 0 auto 55px;
  text-align: center;
}

.section-header-row {
  max-width: none;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
  text-align: left;
}

.section-header-row > div {
  max-width: 650px;
}

.section-header-row > p {
  max-width: 420px;
}

.section-header h2,
.about-content h2,
.faq-intro h2,
.contact-content h2 {
  font-family: "Manrope", sans-serif;
  color: var(--dark);
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -1.6px;
}

.section-header h2 span,
.about-content h2 span,
.faq-intro h2 span,
.contact-content h2 span {
  color: var(--primary);
}

.section-header > p,
.section-header-row > p,
.faq-intro > p,
.contact-content > p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}

.section-badge {
  width: fit-content;
  margin: 0 auto 15px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  border: 1px solid #dfe2ff;
  border-radius: 100px;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.section-badge-light {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: #dfe2ff;
}

/* =========================================================
   BUTTONS
========================================================= */

.btn {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border-radius: 13px;
  font-size: 12px;
  font-weight: 800;
  transition: 0.3s ease;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(91, 91, 247, 0.22);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(91, 91, 247, 0.27);
}

.btn-secondary {
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--dark);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  border-color: #cdd2dd;
  box-shadow: var(--shadow-sm);
}

/* =========================================================
   HEADER
========================================================= */

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  transition: 0.3s ease;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(229, 231, 235, 0.82);
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.05);
}

.nav-container {
  min-height: 86px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
}

.logo-icon {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  box-shadow: 0 10px 22px rgba(91, 91, 247, 0.22);
}

.logo-text strong,
.logo-text span {
  display: block;
}

.logo-text strong {
  color: var(--dark);
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  line-height: 1.2;
}

.logo-text span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 8px;
}

.navbar {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-link {
  position: relative;
  padding: 10px 10px;
  border-radius: 9px;
  color: #58606d;
  font-size: 10px;
  font-weight: 700;
  transition: 0.25s;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
  background: var(--primary-soft);
}

.nav-order-btn {
  min-height: 43px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  border-radius: 11px;
  background: var(--dark);
  color: var(--white);
  font-size: 10px;
  font-weight: 800;
  transition: 0.3s ease;
}

.nav-order-btn:hover {
  background: var(--primary);
  transform: translateY(-2px);
}

.menu-btn {
  display: none;
  margin-left: auto;
  width: 43px;
  height: 43px;
  place-items: center;
  border-radius: 11px;
  background: var(--background-soft);
  color: var(--dark);
  font-size: 18px;
}

/* =========================================================
   HERO
========================================================= */

.hero {
  position: relative;
  min-height: 820px;
  display: flex;
  align-items: center;
  padding: 155px 0 100px;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 20% 25%,
      rgba(91, 91, 247, 0.09),
      transparent 30%
    ),
    radial-gradient(
      circle at 85% 65%,
      rgba(139, 92, 246, 0.09),
      transparent 28%
    ),
    #fbfcff;
}

.hero-decoration {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

.hero-decoration-one {
  width: 260px;
  height: 260px;
  left: -120px;
  top: 180px;
  background: rgba(91, 91, 247, 0.14);
}

.hero-decoration-two {
  width: 300px;
  height: 300px;
  right: -130px;
  bottom: 50px;
  background: rgba(139, 92, 246, 0.13);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 85px;
}

.hero-content {
  max-width: 670px;
}

.hero-badge {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 100px;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.hero-badge > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 5px rgba(22, 163, 74, 0.09);
}

.hero h1 {
  max-width: 660px;
  color: var(--dark);
  font-family: "Manrope", sans-serif;
  font-size: clamp(48px, 6vw, 73px);
  font-weight: 800;
  line-height: 1.03;
  letter-spacing: -3.2px;
}

.hero h1 span {
  display: block;
  color: var(--primary);
}

.hero-description {
  max-width: 620px;
  margin-top: 25px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-benefits {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.hero-benefits > div {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #5d6570;
  font-size: 10px;
  font-weight: 600;
}

.hero-benefits i {
  color: var(--success);
}

/* =========================================================
   HERO VISUAL
========================================================= */

.hero-visual {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin-left: auto;
}

.dashboard-card {
  position: relative;
  z-index: 3;
  padding: 26px;
  border: 1px solid rgba(224, 226, 235, 0.88);
  border-radius: 27px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-lg);
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 22px;
  border-bottom: 1px solid #eceef3;
}

.dashboard-header span {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 8px;
}

.dashboard-header h3 {
  color: var(--dark);
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  line-height: 1.3;
}

.dashboard-status {
  height: fit-content;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 9px;
  border-radius: 100px;
  background: #ecfdf3;
  color: #16803e;
  font-size: 8px;
  font-weight: 700;
}

.dashboard-status > span {
  width: 6px;
  height: 6px;
  margin: 0;
  border-radius: 50%;
  background: #22c55e;
}

.dashboard-services {
  display: grid;
  gap: 10px;
  padding: 19px 0;
}

.dashboard-service {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 13px;
  padding: 13px;
  border: 1px solid transparent;
  border-radius: 14px;
  transition: 0.28s ease;
}

.dashboard-service:hover {
  border-color: #e4e6ef;
  background: #fafbff;
  transform: translateX(3px);
}

.dashboard-service-icon {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  font-size: 18px;
}

.word-color {
  background: #edf3ff;
  color: #2563eb;
}

.ppt-color {
  background: #fff0eb;
  color: #e75524;
}

.excel-color {
  background: #edf9f1;
  color: #16854a;
}

.education-color {
  background: #f5efff;
  color: #8b5cf6;
}

.dashboard-service strong,
.dashboard-service span {
  display: block;
}

.dashboard-service strong {
  color: var(--dark);
  font-size: 11px;
}

.dashboard-service span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 8px;
}

.dashboard-service > i {
  color: #a1a6b0;
  font-size: 10px;
  transition: 0.25s;
}

.dashboard-service:hover > i {
  color: var(--primary);
  transform: translateX(3px);
}

.dashboard-all-services {
  min-height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 11px;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 9px;
  font-weight: 800;
  transition: 0.25s;
}

.dashboard-all-services:hover {
  background: var(--primary);
  color: var(--white);
}

.floating-card {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  border: 1px solid rgba(229, 231, 235, 0.9);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(15px);
}

.floating-card > div {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
}

.floating-card small,
.floating-card strong {
  display: block;
}

.floating-card small {
  color: var(--muted);
  font-size: 7px;
}

.floating-card strong {
  margin-top: 1px;
  color: var(--dark);
  font-size: 9px;
}

.floating-card-one {
  left: -45px;
  bottom: 80px;
}

.floating-card-one > div {
  background: #ecfdf3;
  color: #16a34a;
}

.floating-card-two {
  right: -25px;
  top: 88px;
}

.floating-card-two > div {
  background: #fff7ed;
  color: #f97316;
}

/* =========================================================
   TRUST
========================================================= */

.trust-section {
  border-top: 1px solid #edf0f3;
  border-bottom: 1px solid #edf0f3;
  background: #fff;
}

.trust-grid {
  min-height: 125px;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
}

.trust-item {
  text-align: center;
}

.trust-item strong,
.trust-item span {
  display: block;
}

.trust-item strong {
  color: var(--dark);
  font-family: "Manrope", sans-serif;
  font-size: 24px;
}

.trust-item span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 9px;
}

.trust-divider {
  width: 1px;
  height: 38px;
  background: var(--border);
}

/* =========================================================
   SERVICES
========================================================= */

.services-section {
  background: var(--background);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card {
  position: relative;
  min-height: 390px;
  display: flex;
  flex-direction: column;
  padding: 27px;
  overflow: hidden;
  border: 1px solid #e5e8ee;
  border-radius: 21px;
  background: var(--white);
  transition: 0.35s ease;
}

.service-card:hover {
  transform: translateY(-7px);
  border-color: #d1d5ff;
  box-shadow: var(--shadow-md);
}

.service-card-special {
  background: linear-gradient(145deg, #111827, #1e2744);
  border-color: transparent;
}

.service-card-special h3,
.service-card-special p,
.service-card-special li,
.service-card-special .service-number {
  color: #fff;
}

.service-card-special p,
.service-card-special li {
  opacity: 0.75;
}

.service-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.service-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  font-size: 21px;
}

.service-word {
  background: #edf3ff;
  color: #2563eb;
}

.service-ppt {
  background: #fff0eb;
  color: #e45624;
}

.service-excel {
  background: #edf9f1;
  color: #16854a;
}

.service-education {
  background: #f5efff;
  color: #8b5cf6;
}

.service-academic {
  background: #fff6e8;
  color: #d97706;
}

.service-pdf {
  background: #fff0f0;
  color: #dc2626;
}

.service-design {
  background: #fff0fa;
  color: #db2777;
}

.service-other {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.service-number {
  color: #c7cbd3;
  font-size: 10px;
  font-weight: 800;
}

.service-card h3 {
  margin-top: 24px;
  color: var(--dark);
  font-family: "Manrope", sans-serif;
  font-size: 17px;
}

.service-card > p {
  margin-top: 11px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.8;
}

.service-card ul {
  display: grid;
  gap: 9px;
  margin: 22px 0 26px;
}

.service-card li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #5c6370;
  font-size: 9px;
}

.service-card li i {
  color: var(--success);
  font-size: 8px;
}

.service-link,
.service-order-btn {
  width: 100%;
  min-height: 43px;
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  border-radius: 11px;
  background: #f7f8fb;
  color: var(--dark);
  font-size: 9px;
  font-weight: 800;
  transition: 0.27s;
}

.service-card-special .service-link {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.service-link:hover,
.service-order-btn:hover {
  background: var(--primary);
  color: #fff;
}

/* =========================================================
   ABOUT
========================================================= */

.about-section {
  background: #fff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 90px;
  align-items: center;
}

.about-content .section-badge {
  margin-left: 0;
}

.about-content > p {
  max-width: 620px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.9;
}

.about-features {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 14px;
}

.about-feature > div {
  flex: 0 0 43px;
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--primary-soft);
  color: var(--primary);
}

.about-feature strong,
.about-feature small {
  display: block;
}

.about-feature strong {
  color: var(--dark);
  font-size: 12px;
}

.about-feature small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 9px;
}

.about-panel {
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(
      circle at top right,
      rgba(91, 91, 247, 0.1),
      transparent 30%
    ),
    #fff;
  box-shadow: var(--shadow-lg);
}

.about-panel-header span {
  color: var(--primary);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.about-panel-header h3 {
  max-width: 360px;
  margin-top: 7px;
  color: var(--dark);
  font-family: "Manrope", sans-serif;
  font-size: 25px;
  line-height: 1.3;
}

.about-panel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
  margin-top: 28px;
}

.about-panel-grid > div {
  min-height: 130px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 17px;
  background: rgba(248, 250, 252, 0.75);
  transition: 0.3s;
}

.about-panel-grid > div:hover {
  transform: translateY(-4px);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.about-panel-grid i {
  margin-bottom: 19px;
  color: var(--primary);
  font-size: 21px;
}

.about-panel-grid strong,
.about-panel-grid span {
  display: block;
}

.about-panel-grid strong {
  color: var(--dark);
  font-size: 12px;
}

.about-panel-grid span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 8px;
}

/* =========================================================
   WHY US
========================================================= */

.why-section {
  background: var(--background-soft);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.why-card {
  min-height: 255px;
  position: relative;
  padding: 27px;
  border: 1px solid #e5e7ee;
  border-radius: 20px;
  background: #fff;
  transition: 0.3s;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.why-card > span {
  position: absolute;
  top: 22px;
  right: 22px;
  color: #c7cbd4;
  font-size: 9px;
  font-weight: 800;
}

.why-card > i {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 17px;
}

.why-card h3 {
  margin-top: 28px;
  color: var(--dark);
  font-size: 14px;
}

.why-card p {
  margin-top: 9px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.8;
}

/* =========================================================
   PROCESS
========================================================= */

.process-section {
  background: #fff;
}

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.process-grid::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  top: 48px;
  height: 1px;
  background: #e3e6ed;
}

.process-card {
  position: relative;
  z-index: 2;
  min-height: 270px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: #fff;
}

.process-number {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--dark);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
}

.process-icon {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  margin-top: 32px;
  border-radius: 12px;
  background: var(--primary-soft);
  color: var(--primary);
}

.process-card h3 {
  margin-top: 18px;
  color: var(--dark);
  font-size: 13px;
}

.process-card p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.75;
}

/* =========================================================
   PORTFOLIO
========================================================= */

.portfolio-section {
  background: var(--background-soft);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.portfolio-card {
  overflow: hidden;
  border: 1px solid #e4e7ed;
  border-radius: 22px;
  background: #fff;
  transition: 0.35s;
}

.portfolio-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.portfolio-preview {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 13px;
  font-family: "Manrope", sans-serif;
}

.portfolio-preview i {
  font-size: 47px;
}

.portfolio-preview span {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
}

.portfolio-word-preview {
  background: #edf3ff;
  color: #2563eb;
}

.portfolio-slide-preview {
  background: #fff1ec;
  color: #e45b2b;
}

.portfolio-excel-preview {
  background: #edf9f1;
  color: #16854a;
}

.portfolio-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 22px;
}

.portfolio-info span {
  color: var(--muted);
  font-size: 8px;
}

.portfolio-info h3 {
  margin-top: 4px;
  color: var(--dark);
  font-size: 13px;
}

.portfolio-info a {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: var(--background-soft);
  color: var(--dark);
  transition: 0.3s;
}

.portfolio-info a:hover {
  background: var(--primary);
  color: #fff;
}

/* =========================================================
   PREMIUM PRICING SECTION
========================================================= */

.pricing-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 15% 10%,
      rgba(91, 91, 247, 0.08),
      transparent 26%
    ),
    radial-gradient(
      circle at 85% 90%,
      rgba(139, 92, 246, 0.07),
      transparent 28%
    ),
    #f8fafc;
}

.pricing-section .section-header {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.pricing-section .section-header h2 {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-section .section-header h2 span {
  color: #5b5bf7;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 22px;
  margin-top: 52px;
}

/* =========================================================
   CARD
========================================================= */

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 600px;
  padding: 34px 30px 30px;
  overflow: hidden;
  border: 1px solid #e4e7ee;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow:
    0 8px 20px rgba(15, 23, 42, 0.03),
    0 20px 45px rgba(15, 23, 42, 0.05);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.pricing-card::before {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  right: -85px;
  top: -85px;
  border-radius: 50%;
  background: rgba(91, 91, 247, 0.045);
  transition: 0.35s ease;
}

.pricing-card:hover {
  transform: translateY(-8px);
  border-color: rgba(91, 91, 247, 0.22);
  box-shadow:
    0 15px 30px rgba(15, 23, 42, 0.05),
    0 30px 70px rgba(15, 23, 42, 0.1);
}

.pricing-card:hover::before {
  transform: scale(1.2);
}

/* =========================================================
   FEATURED CARD
========================================================= */

.pricing-card.featured {
  border: 1px solid rgba(91, 91, 247, 0.28);
  background: linear-gradient(180deg, rgba(91, 91, 247, 0.05) 0%, #ffffff 28%);
  box-shadow:
    0 22px 55px rgba(91, 91, 247, 0.12),
    0 8px 18px rgba(15, 23, 42, 0.04);
}

.pricing-card.featured::before {
  background: rgba(91, 91, 247, 0.08);
}

.pricing-card.featured:hover {
  box-shadow:
    0 28px 75px rgba(91, 91, 247, 0.18),
    0 8px 18px rgba(15, 23, 42, 0.04);
}

/* =========================================================
   POPULAR LABEL
========================================================= */

.pricing-popular {
  position: absolute;
  top: 19px;
  right: 19px;
  padding: 7px 11px;
  border-radius: 100px;
  color: #ffffff;
  background: linear-gradient(135deg, #5b5bf7, #8b5cf6);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.2px;
  box-shadow: 0 8px 20px rgba(91, 91, 247, 0.2);
}

/* =========================================================
   ICON
========================================================= */

.pricing-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 23px;
  border-radius: 17px;
  color: #5b5bf7;
  background: #f0f0ff;
  font-size: 21px;
  box-shadow: inset 0 0 0 1px rgba(91, 91, 247, 0.07);
}

.pricing-card.featured .pricing-icon {
  color: #ffffff;
  background: linear-gradient(135deg, #5b5bf7, #8b5cf6);
  box-shadow: 0 13px 30px rgba(91, 91, 247, 0.22);
}

/* =========================================================
   LABEL + TITLE
========================================================= */

.pricing-label {
  display: inline-block;
  width: fit-content;
  margin-bottom: 9px;
  color: #6b7280;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.pricing-card h3 {
  margin: 0;
  color: #111827;
  font-family: "Manrope", sans-serif;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.6px;
}

/* =========================================================
   PRICE VALUE
========================================================= */

.pricing-value {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 25px;
  padding: 19px 20px;
  border: 1px solid #eceef4;
  border-radius: 17px;
  background: #f8fafc;
}

.pricing-value strong {
  color: #5b5bf7;
  font-family: "Manrope", sans-serif;
  font-size: 26px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.7px;
}

.pricing-value span {
  color: #7c828d;
  font-size: 10px;
  font-weight: 600;
}

.pricing-card.featured .pricing-value {
  border-color: rgba(91, 91, 247, 0.14);
  background: rgba(91, 91, 247, 0.055);
}

.pricing-card.featured .pricing-value strong {
  background: linear-gradient(135deg, #4545d8, #8b5cf6);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* =========================================================
   DESCRIPTION
========================================================= */

.pricing-description {
  margin-top: 20px;
  color: #6b7280;
  font-size: 10px;
  line-height: 1.8;
}

/* =========================================================
   FEATURES
========================================================= */

.pricing-features {
  display: grid;
  gap: 13px;
  margin: 27px 0 30px;
  padding: 0;
  list-style: none;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #4b5563;
  font-size: 10px;
  line-height: 1.5;
}

.pricing-features li i {
  flex: 0 0 21px;
  width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  margin-top: -2px;
  border-radius: 50%;
  color: #16a34a;
  background: #f0fdf4;
  font-size: 7px;
}

/* =========================================================
   BUTTON
========================================================= */

.pricing-button {
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: auto;
  padding: 0 18px;
  border: 1px solid #e2e5eb;
  border-radius: 14px;
  color: #1f2937;
  background: #ffffff;
  font-size: 10px;
  font-weight: 800;
  transition: 0.3s ease;
}

.pricing-button i {
  font-size: 8px;
  transition: transform 0.3s ease;
}

.pricing-button:hover {
  transform: translateY(-2px);
  border-color: #c9c9ff;
  color: #4b4bd4;
  background: #f7f7ff;
}

.pricing-button:hover i {
  transform: translateX(4px);
}

.pricing-main-button {
  border-color: transparent;
  color: #ffffff;
  background: linear-gradient(135deg, #5b5bf7, #7c3aed);
  box-shadow: 0 12px 26px rgba(91, 91, 247, 0.2);
}

.pricing-main-button:hover {
  border-color: transparent;
  color: #ffffff;
  background: linear-gradient(135deg, #4949df, #6d28d9);
  box-shadow: 0 16px 34px rgba(91, 91, 247, 0.25);
}

/* =========================================================
   PRICE NOTE
========================================================= */

.pricing-note {
  max-width: 930px;
  display: flex;
  align-items: flex-start;
  gap: 17px;
  margin: 32px auto 0;
  padding: 23px 25px;
  border: 1px solid #e3e6ed;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

.pricing-note-icon {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #5b5bf7;
  background: #f0f0ff;
  font-size: 15px;
}

.pricing-note strong {
  display: block;
  color: #111827;
  font-size: 11px;
}

.pricing-note p {
  margin-top: 5px;
  color: #6b7280;
  font-size: 9px;
  line-height: 1.75;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1050px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-card.featured {
    order: -1;
  }
}

@media (max-width: 760px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
  }

  .pricing-card {
    min-height: auto;
  }

  .pricing-note {
    max-width: 560px;
  }
}

@media (max-width: 500px) {
  .pricing-card {
    padding: 27px 22px 23px;
    border-radius: 21px;
  }

  .pricing-card h3 {
    font-size: 20px;
  }

  .pricing-value {
    align-items: flex-start;
    flex-direction: column;
  }

  .pricing-value strong {
    font-size: 23px;
  }

  .pricing-popular {
    top: 16px;
    right: 16px;
  }

  .pricing-note {
    padding: 20px;
  }
}
/* =========================================================
   REVIEWS
========================================================= */

.reviews-section {
  background: var(--background-soft);
}

.reviews-placeholder {
  max-width: 720px;
  margin: auto;
  padding: 55px 40px;
  text-align: center;
  border: 1px dashed #ced3de;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.75);
}

.reviews-placeholder-icon {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  border-radius: 17px;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 23px;
}

.reviews-placeholder h3 {
  color: var(--dark);
  font-size: 17px;
}

.reviews-placeholder p {
  max-width: 500px;
  margin: 10px auto 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.8;
}

/* =========================================================
   FAQ
========================================================= */

.faq-section {
  background: #fff;
}

.faq-container {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
  align-items: flex-start;
}

.faq-intro .section-badge {
  margin-left: 0;
}

.faq-contact {
  width: fit-content;
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  color: var(--muted);
  font-size: 9px;
}

.faq-contact strong {
  color: var(--primary);
  font-size: 11px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 15px;
  background: #fff;
  transition: 0.3s;
}

.faq-item.active {
  border-color: #d3d6ff;
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 20px;
  color: var(--dark);
  text-align: left;
  font-size: 11px;
  font-weight: 700;
}

.faq-question i {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: var(--background-soft);
  color: var(--muted);
  font-size: 9px;
  transition: 0.3s;
}

.faq-item.active .faq-question i {
  background: var(--primary);
  color: #fff;
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item.active .faq-answer {
  max-height: 220px;
}

.faq-answer p {
  padding: 0 20px 20px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.8;
}

/* =========================================================
   CONTACT
========================================================= */

.contact-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 10% 10%,
      rgba(91, 91, 247, 0.22),
      transparent 30%
    ),
    linear-gradient(135deg, #101728, #1e2745);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 90px;
  align-items: center;
}

.contact-content h2 {
  color: #fff;
}

.contact-content h2 span {
  display: block;
  color: #aeb5ff;
}

.contact-content > p {
  color: #aeb4c1;
}

.contact-content .section-badge {
  margin-left: 0;
}

.contact-features {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

.contact-features > div {
  display: flex;
  align-items: center;
  gap: 13px;
}

.contact-features > div > i {
  flex: 0 0 37px;
  width: 37px;
  height: 37px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.1);
  color: #aeb5ff;
  font-size: 10px;
}

.contact-features strong,
.contact-features small {
  display: block;
}

.contact-features strong {
  color: #fff;
  font-size: 11px;
}

.contact-features small {
  margin-top: 3px;
  color: #9199a9;
  font-size: 8px;
}

.contact-form-wrapper {
  padding: 34px;
  border-radius: 25px;
  background: #fff;
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.18);
}

.form-heading {
  padding-bottom: 21px;
  border-bottom: 1px solid #eceef2;
}

.form-heading span {
  color: var(--primary);
  font-size: 8px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.form-heading h3 {
  margin-top: 4px;
  color: var(--dark);
  font-family: "Manrope", sans-serif;
  font-size: 21px;
}

#orderForm {
  margin-top: 22px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  margin-bottom: 7px;
  color: #4b5563;
  font-size: 9px;
  font-weight: 700;
}

.input-wrapper {
  position: relative;
}

.input-wrapper > i {
  position: absolute;
  top: 50%;
  left: 14px;
  transform: translateY(-50%);
  color: #9ca3af;
  font-size: 11px;
  pointer-events: none;
}

.input-wrapper input,
.input-wrapper select,
.form-group textarea {
  width: 100%;
  border: 1px solid #dde1e8;
  outline: none;
  background: #fff;
  color: var(--dark);
  font-size: 10px;
  transition: 0.25s;
}

.input-wrapper input,
.input-wrapper select {
  height: 49px;
  padding: 0 14px 0 38px;
  border-radius: 11px;
}

.form-group textarea {
  min-height: 125px;
  resize: vertical;
  padding: 14px;
  border-radius: 11px;
  line-height: 1.7;
}

.input-wrapper input:focus,
.input-wrapper select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(91, 91, 247, 0.07);
}

.form-submit {
  width: 100%;
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 17px;
  border-radius: 13px;
  background: #22c55e;
  color: #fff;
  transition: 0.3s;
}

.form-submit:hover {
  background: #16a34a;
  transform: translateY(-2px);
  box-shadow: 0 16px 35px rgba(34, 197, 94, 0.2);
}

.form-submit > i:first-child {
  font-size: 21px;
}

.form-submit > span {
  flex: 1;
  text-align: left;
  font-size: 11px;
  font-weight: 800;
}

.form-submit small {
  display: block;
  margin-bottom: 1px;
  font-size: 7px;
  font-weight: 500;
  opacity: 0.8;
}

.form-submit > i:last-child {
  font-size: 10px;
}

.form-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 12px;
  color: #9298a3;
  font-size: 7px;
}

/* =========================================================
   FOOTER
========================================================= */

.footer {
  padding: 70px 0 25px;
  background: #0b1120;
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 55px;
  padding-bottom: 50px;
}

.footer-logo .logo-text strong {
  color: #fff;
}

.footer-logo .logo-text span {
  color: #7f8795;
}

.footer-brand p {
  max-width: 310px;
  margin-top: 18px;
  color: #858e9d;
  font-size: 9px;
  line-height: 1.8;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-column h4 {
  margin-bottom: 5px;
  color: #fff;
  font-size: 11px;
}

.footer-column a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #858e9d;
  font-size: 9px;
  transition: 0.25s;
}

.footer-column a:hover {
  color: #fff;
  transform: translateX(3px);
}

.footer-bottom {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #687180;
  font-size: 8px;
}

.footer-bottom > div {
  display: flex;
  gap: 18px;
}

.footer-bottom a:hover {
  color: #fff;
}

/* =========================================================
   FLOATING WHATSAPP
========================================================= */

.floating-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 900;
  min-height: 52px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 16px;
  border-radius: 15px;
  background: #22c55e;
  color: #fff;
  box-shadow: 0 18px 38px rgba(34, 197, 94, 0.28);
  transition: 0.3s;
}

.floating-whatsapp:hover {
  transform: translateY(-4px);
  background: #16a34a;
}

.floating-whatsapp > i {
  font-size: 21px;
}

.floating-whatsapp small,
.floating-whatsapp span {
  display: block;
}

.floating-whatsapp small {
  font-size: 7px;
  opacity: 0.78;
}

.floating-whatsapp span {
  font-size: 10px;
  font-weight: 800;
}

/* =========================================================
   BACK TO TOP
========================================================= */

.back-to-top {
  position: fixed;
  right: 25px;
  bottom: 90px;
  z-index: 850;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--dark);
  color: #fff;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: 0.3s;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--primary);
}

/* =========================================================
   REVEAL ANIMATION
========================================================= */

.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   RESPONSIVE - 1100px
========================================================= */

@media (max-width: 1100px) {
  .navbar {
    gap: 2px;
  }

  .nav-link {
    padding: 9px 7px;
  }

  .hero-grid {
    gap: 50px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid::before {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

  .footer-column:last-child {
    grid-column: 2 / 4;
  }
}

/* =========================================================
   RESPONSIVE - 900px
========================================================= */

@media (max-width: 900px) {
  .section {
    padding: 85px 0;
  }

  .nav-order-btn {
    display: none;
  }

  .menu-btn {
    display: grid;
  }

  .navbar {
    position: fixed;
    top: 86px;
    left: 20px;
    right: 20px;
    display: grid;
    gap: 6px;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: 0.3s;
  }

  .navbar.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-link {
    min-height: 42px;
    display: flex;
    align-items: center;
    padding: 0 12px;
  }

  .hero {
    min-height: auto;
    padding: 145px 0 90px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    margin: auto;
    text-align: center;
  }

  .hero-badge {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons,
  .hero-benefits {
    justify-content: center;
  }

  .hero-visual {
    margin: 30px auto 0;
  }

  .trust-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 20px 0;
  }

  .trust-divider {
    display: none;
  }

  .trust-item {
    padding: 22px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .about-content {
    text-align: center;
  }

  .about-content .section-badge {
    margin-inline: auto;
  }

  .about-content > p {
    margin-left: auto;
    margin-right: auto;
  }

  .about-features {
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }

  .about-panel {
    max-width: 650px;
    width: 100%;
    margin: auto;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-card {
    max-width: 650px;
    width: 100%;
    margin: auto;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 650px;
    margin: auto;
  }

  .faq-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .faq-intro {
    text-align: center;
  }

  .faq-intro .section-badge,
  .faq-contact {
    margin-left: auto;
    margin-right: auto;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .contact-content {
    text-align: center;
  }

  .contact-content .section-badge {
    margin-inline: auto;
  }

  .contact-features {
    max-width: 570px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }

  .contact-form-wrapper {
    max-width: 700px;
    width: 100%;
    margin: auto;
  }

  .section-header-row {
    display: block;
    text-align: center;
  }

  .section-header-row > div {
    margin: auto;
  }

  .section-header-row > p {
    margin: 18px auto 0;
  }
}

/* =========================================================
   RESPONSIVE - 700px
========================================================= */

@media (max-width: 700px) {
  .services-grid,
  .why-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .why-card,
  .process-card {
    min-height: auto;
  }

  .about-panel-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / 3;
  }

  .footer-column:last-child {
    grid-column: auto;
  }
}

/* =========================================================
   RESPONSIVE - 550px
========================================================= */

@media (max-width: 550px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 70px 0;
  }

  .nav-container {
    min-height: 76px;
  }

  .navbar {
    top: 76px;
    left: 14px;
    right: 14px;
  }

  .logo-icon {
    width: 40px;
    height: 40px;
  }

  .hero {
    padding: 125px 0 70px;
  }

  .hero h1 {
    font-size: 43px;
    letter-spacing: -2.3px;
  }

  .hero-description {
    font-size: 13px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .hero-benefits {
    gap: 11px;
  }

  .dashboard-card {
    padding: 18px;
    border-radius: 21px;
  }

  .dashboard-header h3 {
    font-size: 15px;
  }

  .floating-card {
    display: none;
  }

  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }

  .trust-item {
    padding: 18px 10px;
  }

  .trust-item strong {
    font-size: 20px;
  }

  .section-header {
    margin-bottom: 38px;
  }

  .section-header h2,
  .about-content h2,
  .faq-intro h2,
  .contact-content h2 {
    font-size: 34px;
    letter-spacing: -1.2px;
  }

  .service-card {
    padding: 23px;
  }

  .about-panel {
    padding: 22px;
  }

  .about-panel-header h3 {
    font-size: 21px;
  }

  .portfolio-preview {
    min-height: 210px;
  }

  .reviews-placeholder {
    padding: 40px 22px;
  }

  .contact-form-wrapper {
    padding: 24px 19px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand,
  .footer-column:last-child {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
    justify-content: center;
    padding: 20px 0;
    text-align: center;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
  }

  .floating-whatsapp span {
    display: none;
  }

  .floating-whatsapp {
    width: 50px;
    height: 50px;
    min-height: 50px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }

  .back-to-top {
    right: 18px;
    bottom: 76px;
  }
}

/* =========================================================
   RESPONSIVE - 400px
========================================================= */

@media (max-width: 400px) {
  .hero h1 {
    font-size: 38px;
  }

  .hero-benefits {
    flex-direction: column;
    align-items: center;
  }

  .dashboard-header {
    flex-direction: column;
  }

  .dashboard-status {
    width: fit-content;
  }

  .dashboard-service {
    grid-template-columns: auto 1fr;
  }

  .dashboard-service > i {
    display: none;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .section-header h2,
  .about-content h2,
  .faq-intro h2,
  .contact-content h2 {
    font-size: 31px;
  }

  .portfolio-info {
    align-items: flex-start;
  }
  /* =========================================================
   WORD PAGE — FINAL DESIGN
========================================================= */

  /* ---------------- HERO ---------------- */

  .word-page-hero {
    position: relative;
    overflow: hidden;
    padding: 165px 0 105px;
    background:
      radial-gradient(
        circle at 8% 20%,
        rgba(37, 99, 235, 0.09),
        transparent 28%
      ),
      radial-gradient(
        circle at 92% 70%,
        rgba(91, 91, 247, 0.08),
        transparent 30%
      ),
      linear-gradient(180deg, #fbfcff 0%, #ffffff 100%);
  }

  .word-page-hero::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    right: -220px;
    top: 50px;
    border-radius: 50%;
    border: 1px solid rgba(91, 91, 247, 0.08);
  }

  .word-page-hero::after {
    content: "";
    position: absolute;
    width: 270px;
    height: 270px;
    right: -145px;
    top: 125px;
    border-radius: 50%;
    border: 1px solid rgba(91, 91, 247, 0.1);
  }

  .word-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    align-items: center;
    gap: 90px;
  }

  .word-hero-content {
    max-width: 660px;
  }

  .word-hero-content .section-badge {
    margin: 0 0 21px;
  }

  .word-hero-content h1 {
    max-width: 660px;
    color: var(--dark);
    font-family: "Manrope", sans-serif;
    font-size: clamp(46px, 5.3vw, 69px);
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: -3px;
  }

  .word-hero-content h1 span {
    display: block;
    color: #2563eb;
  }

  .word-hero-content > p {
    max-width: 600px;
    margin-top: 25px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.9;
  }

  .word-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 31px;
  }

  .word-hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 27px;
  }

  .word-hero-features > div {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #5e6672;
    font-size: 10px;
    font-weight: 600;
  }

  .word-hero-features i {
    color: var(--success);
  }

  /* ---------------- PACKAGE BOX ---------------- */

  .word-service-box {
    position: relative;
    width: 100%;
    max-width: 480px;
    margin-left: auto;
    padding: 31px;
    overflow: hidden;
    border: 1px solid #e3e7ef;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 35px 85px rgba(15, 23, 42, 0.12);
  }

  .word-service-box::before {
    content: "";
    position: absolute;
    width: 170px;
    height: 170px;
    right: -75px;
    top: -75px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.08);
  }

  .word-service-box-head {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 14px;
    padding-bottom: 24px;
    border-bottom: 1px solid #eceef3;
  }

  .word-box-icon {
    flex: 0 0 55px;
    width: 55px;
    height: 55px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    background: #edf3ff;
    color: #2563eb;
    font-size: 23px;
  }

  .word-service-box-head span {
    display: block;
    margin-bottom: 3px;
    color: var(--muted);
    font-size: 8px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
  }

  .word-service-box-head h3 {
    color: var(--dark);
    font-family: "Manrope", sans-serif;
    font-size: 19px;
  }

  .word-package-list {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 15px;
    padding: 27px 0;
  }

  .word-package-list > div {
    display: flex;
    align-items: center;
    gap: 11px;
    color: #515966;
    font-size: 10px;
    font-weight: 600;
  }

  .word-package-list i {
    flex: 0 0 25px;
    width: 25px;
    height: 25px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #ecfdf3;
    color: #16a34a;
    font-size: 8px;
  }

  .word-package-bottom {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 21px;
    border-top: 1px solid #eceef3;
  }

  .word-package-bottom > div span,
  .word-package-bottom > div strong {
    display: block;
  }

  .word-package-bottom > div span {
    margin-bottom: 3px;
    color: var(--muted);
    font-size: 8px;
  }

  .word-package-bottom > div strong {
    color: var(--dark);
    font-size: 11px;
  }

  .word-package-bottom > a {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 15px;
    border-radius: 11px;
    background: #2563eb;
    color: #fff;
    font-size: 9px;
    font-weight: 800;
    transition: 0.3s ease;
  }

  .word-package-bottom > a:hover {
    transform: translateY(-2px);
    background: #1d4ed8;
    box-shadow: 0 12px 25px rgba(37, 99, 235, 0.2);
  }

  /* =========================================================
   WORD SERVICES
========================================================= */

  .word-services-section {
    background: #f8fafc;
  }

  .word-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 17px;
  }

  .word-service-card {
    position: relative;
    min-height: 245px;
    padding: 27px;
    overflow: hidden;
    border: 1px solid #e5e8ef;
    border-radius: 20px;
    background: #fff;
    transition:
      transform 0.3s ease,
      border-color 0.3s ease,
      box-shadow 0.3s ease;
  }

  .word-service-card::after {
    content: "";
    position: absolute;
    right: -50px;
    bottom: -50px;
    width: 105px;
    height: 105px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.045);
    transition: 0.35s ease;
  }

  .word-service-card:hover {
    transform: translateY(-6px);
    border-color: #cbd8f7;
    box-shadow: var(--shadow-md);
  }

  .word-service-card:hover::after {
    transform: scale(1.6);
  }

  .word-card-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    background: #edf3ff;
    color: #2563eb;
    font-size: 18px;
  }

  .word-service-card > span {
    position: absolute;
    top: 26px;
    right: 26px;
    color: #c8ccd4;
    font-size: 9px;
    font-weight: 800;
  }

  .word-service-card h3 {
    position: relative;
    z-index: 2;
    margin-top: 25px;
    color: var(--dark);
    font-size: 14px;
  }

  .word-service-card p {
    position: relative;
    z-index: 2;
    margin-top: 9px;
    color: var(--muted);
    font-size: 9px;
    line-height: 1.8;
  }

  /* =========================================================
   AUDIENCE
========================================================= */

  .word-audience-section {
    background: #fff;
  }

  .word-audience-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 90px;
    align-items: center;
  }

  .word-audience-content .section-badge {
    margin-left: 0;
  }

  .word-audience-content h2 {
    max-width: 530px;
    color: var(--dark);
    font-family: "Manrope", sans-serif;
    font-size: clamp(33px, 4vw, 48px);
    line-height: 1.13;
    letter-spacing: -1.5px;
  }

  .word-audience-content h2 span {
    display: block;
    color: #2563eb;
  }

  .word-audience-content > p {
    max-width: 540px;
    margin-top: 19px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.9;
  }

  .word-audience-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .word-audience-item {
    min-height: 150px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 22px;
    border: 1px solid #e5e7ec;
    border-radius: 17px;
    background: #fff;
    transition: 0.3s ease;
  }

  .word-audience-item:hover {
    transform: translateY(-4px);
    border-color: #cfd8ef;
    box-shadow: var(--shadow-sm);
  }

  .word-audience-item > div {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: #edf3ff;
    color: #2563eb;
  }

  .word-audience-item strong,
  .word-audience-item small {
    display: block;
  }

  .word-audience-item strong {
    margin-top: 3px;
    color: var(--dark);
    font-size: 11px;
  }

  .word-audience-item small {
    margin-top: 6px;
    color: var(--muted);
    font-size: 8px;
    line-height: 1.7;
  }

  /* =========================================================
   WORD PROCESS
========================================================= */

  .word-process-section {
    background: linear-gradient(180deg, #f8fafc, #ffffff);
  }

  .word-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 17px;
  }

  .word-process-card {
    position: relative;
    min-height: 215px;
    padding: 27px;
    border: 1px solid #e5e8ef;
    border-radius: 19px;
    background: #fff;
    transition: 0.3s;
  }

  .word-process-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-sm);
  }

  .word-process-number {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: #111827;
    color: #fff;
    font-size: 9px;
    font-weight: 800;
  }

  .word-process-card h3 {
    margin-top: 28px;
    color: var(--dark);
    font-size: 13px;
  }

  .word-process-card p {
    margin-top: 9px;
    color: var(--muted);
    font-size: 9px;
    line-height: 1.8;
  }

  /* =========================================================
   QUALITY
========================================================= */

  .word-quality-section {
    background: #fff;
  }

  .word-quality-grid {
    display: grid;
    grid-template-columns: 1fr 0.85fr;
    gap: 80px;
    align-items: center;
    padding: 55px;
    border: 1px solid #e5e8ef;
    border-radius: 28px;
    background:
      radial-gradient(
        circle at 10% 20%,
        rgba(37, 99, 235, 0.06),
        transparent 30%
      ),
      #fbfcff;
  }

  .word-quality-box {
    display: flex;
    align-items: flex-start;
    gap: 22px;
  }

  .word-quality-icon {
    flex: 0 0 64px;
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: #2563eb;
    color: #fff;
    font-size: 25px;
    box-shadow: 0 16px 32px rgba(37, 99, 235, 0.2);
  }

  .word-quality-label {
    display: block;
    margin-bottom: 8px;
    color: #2563eb;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
  }

  .word-quality-box h2 {
    max-width: 540px;
    color: var(--dark);
    font-family: "Manrope", sans-serif;
    font-size: clamp(28px, 3.5vw, 40px);
    line-height: 1.18;
    letter-spacing: -1.2px;
  }

  .word-quality-box h2 span {
    color: #2563eb;
  }

  .word-quality-box p {
    max-width: 530px;
    margin-top: 15px;
    color: var(--muted);
    font-size: 10px;
    line-height: 1.85;
  }

  .word-quality-features {
    display: grid;
    gap: 11px;
  }

  .word-quality-features > div {
    display: flex;
    align-items: center;
    gap: 11px;
    min-height: 45px;
    padding: 0 14px;
    border: 1px solid #e7e9ef;
    border-radius: 12px;
    background: #fff;
    color: #515967;
    font-size: 9px;
    font-weight: 600;
  }

  .word-quality-features i {
    flex: 0 0 23px;
    width: 23px;
    height: 23px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #ecfdf3;
    color: #16a34a;
    font-size: 7px;
  }

  /* =========================================================
   CTA
========================================================= */

  .word-cta-section {
    padding: 20px 0 100px;
    background: #fff;
  }

  .word-cta-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 55px;
    padding: 52px 58px;
    overflow: hidden;
    border-radius: 28px;
    background: linear-gradient(135deg, #111827, #1d2948);
    box-shadow: 0 30px 75px rgba(15, 23, 42, 0.16);
  }

  .word-cta-box::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    top: -210px;
    right: 8%;
    border-radius: 50%;
    background: rgba(91, 91, 247, 0.35);
    filter: blur(10px);
  }

  .word-cta-box > div,
  .word-cta-button {
    position: relative;
    z-index: 2;
  }

  .word-cta-box > div > span {
    display: block;
    margin-bottom: 8px;
    color: #aeb5ff;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
  }

  .word-cta-box h2 {
    max-width: 650px;
    color: #fff;
    font-family: "Manrope", sans-serif;
    font-size: clamp(26px, 3.2vw, 38px);
    line-height: 1.2;
    letter-spacing: -1px;
  }

  .word-cta-box p {
    max-width: 580px;
    margin-top: 10px;
    color: #aab2c1;
    font-size: 10px;
    line-height: 1.8;
  }

  .word-cta-button {
    flex: 0 0 270px;
    min-height: 72px;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 0 18px;
    border-radius: 16px;
    background: #22c55e;
    color: #fff;
    transition: 0.3s ease;
  }

  .word-cta-button:hover {
    transform: translateY(-4px);
    background: #16a34a;
    box-shadow: 0 18px 40px rgba(34, 197, 94, 0.24);
  }

  .word-cta-button > i:first-child {
    font-size: 25px;
  }

  .word-cta-button > span {
    flex: 1;
  }

  .word-cta-button small,
  .word-cta-button strong {
    display: block;
  }

  .word-cta-button small {
    margin-bottom: 2px;
    font-size: 7px;
    opacity: 0.8;
  }

  .word-cta-button strong {
    font-size: 10px;
  }

  .word-cta-button > i:last-child {
    font-size: 9px;
  }

  /* =========================================================
   WORD PAGE ANIMATION SUPPORT
========================================================= */

  .word-service-card,
  .word-audience-item,
  .word-process-card,
  .word-quality-grid {
    transition:
      opacity 0.7s ease,
      transform 0.7s ease,
      border-color 0.3s ease,
      box-shadow 0.3s ease;
  }

  /* =========================================================
   RESPONSIVE — 1050px
========================================================= */

  @media (max-width: 1050px) {
    .word-hero-grid {
      gap: 50px;
    }

    .word-services-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .word-process-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .word-quality-grid {
      gap: 45px;
      padding: 45px;
    }
  }

  /* =========================================================
   RESPONSIVE — 900px
========================================================= */

  @media (max-width: 900px) {
    .word-page-hero {
      padding: 145px 0 85px;
    }

    .word-hero-grid {
      grid-template-columns: 1fr;
      gap: 55px;
    }

    .word-hero-content {
      max-width: 720px;
      margin: auto;
      text-align: center;
    }

    .word-hero-content .section-badge {
      margin-inline: auto;
    }

    .word-hero-content > p {
      margin-left: auto;
      margin-right: auto;
    }

    .word-hero-buttons,
    .word-hero-features {
      justify-content: center;
    }

    .word-service-box {
      margin: auto;
    }

    .word-audience-grid {
      grid-template-columns: 1fr;
      gap: 50px;
    }

    .word-audience-content {
      text-align: center;
    }

    .word-audience-content .section-badge {
      margin-inline: auto;
    }

    .word-audience-content h2,
    .word-audience-content > p {
      margin-left: auto;
      margin-right: auto;
    }

    .word-quality-grid {
      grid-template-columns: 1fr;
    }

    .word-cta-box {
      flex-direction: column;
      align-items: flex-start;
    }

    .word-cta-button {
      width: 100%;
      flex: initial;
    }
  }

  /* =========================================================
   RESPONSIVE — 650px
========================================================= */

  @media (max-width: 650px) {
    .word-page-hero {
      padding: 125px 0 70px;
    }

    .word-hero-content h1 {
      font-size: 41px;
      letter-spacing: -2px;
    }

    .word-services-grid,
    .word-process-grid,
    .word-audience-list {
      grid-template-columns: 1fr;
    }

    .word-service-card,
    .word-process-card {
      min-height: auto;
    }

    .word-quality-grid {
      padding: 30px 24px;
      border-radius: 22px;
    }

    .word-quality-box {
      display: block;
    }

    .word-quality-icon {
      margin-bottom: 22px;
    }

    .word-cta-section {
      padding-bottom: 70px;
    }

    .word-cta-box {
      padding: 37px 27px;
      border-radius: 22px;
    }
  }

  /* =========================================================
   RESPONSIVE — 430px
========================================================= */

  @media (max-width: 430px) {
    .word-hero-content h1 {
      font-size: 35px;
      letter-spacing: -1.5px;
    }

    .word-hero-buttons {
      flex-direction: column;
    }

    .word-hero-buttons .btn {
      width: 100%;
    }

    .word-hero-features {
      flex-direction: column;
      align-items: center;
    }

    .word-service-box {
      padding: 23px 19px;
      border-radius: 21px;
    }

    .word-service-box-head {
      align-items: flex-start;
    }

    .word-package-bottom {
      flex-direction: column;
      align-items: stretch;
    }

    .word-package-bottom > a {
      justify-content: center;
    }

    .word-audience-item {
      min-height: auto;
    }

    .word-quality-box h2 {
      font-size: 27px;
    }

    .word-cta-box h2 {
      font-size: 26px;
    }
  }
}
