/* Aurelius Writing — shared public-site theme */
:root {
  --navy: #06265f;
  --navy-2: #031d4d;
  --royal: #0d64d8;
  --blue: #1689e7;
  --sky: #eaf5ff;
  --orange: #ff6b35;
  --orange-2: #ff8a42;
  --ink: #0b2147;
  --muted: #66758f;
  --line: #dbe6f2;
  --paper: #fff;
  --soft: #f7fbff;
  --success: #1d9567;
  --warning: #e39a1b;
  --danger: #d84949;
  --shadow: 0 22px 60px rgba(7, 45, 98, 0.12);
  --shadow-sm: 0 10px 30px rgba(7, 45, 98, 0.08);
  --radius: 20px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
button {
  cursor: pointer;
}
img {
  display: block;
  max-width: 100%;
}
.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}
.section {
  padding: 92px 0;
  position: relative;
}
.muted {
  color: var(--muted);
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #31567f;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.eyebrow:before {
  content: "";
  width: 18px;
  height: 3px;
  background: var(--orange);
  border-radius: 3px;
}
.section-title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 4.4vw, 58px);
  line-height: 1.03;
  letter-spacing: -0.035em;
  font-weight: 300;
  margin: 14px 0;
  color: var(--navy);
}
.section-copy {
  max-width: 620px;
  color: var(--muted);
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(10, 54, 105, 0.08);
}
.nav-shell {
  height: 78px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}
.brand img {
  width: 155px;
  height: 54px;
  object-fit: contain;
}
.nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
}
.nav a,
.nav-services-trigger {
  font-size: 14px;
  font-weight: 700;
  color: #183665;
  position: relative;
  padding: 28px 0;
}
.nav a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 5px;
  height: 2px;
  background: var(--orange);
  transition: right 0.28s ease;
}
.nav a:hover:after,
.nav a.active:after {
  right: 0;
}
.nav-services {
  position: relative;
}
.nav-services-trigger {
  border: 0;
  background: none;
  padding-inline: 0;
}
.nav-services-trigger span {
  font-size: 15px;
  margin-left: 4px;
  transition: transform 0.2s ease;
}
.nav-services:hover .nav-services-trigger span,
.nav-services:focus-within .nav-services-trigger span,
.nav-services.open .nav-services-trigger span {
  transform: rotate(180deg);
}
.services-dropdown {
  position: absolute;
  top: 64px;
  left: 50%;
  width: 220px;
  padding: 8px;
  background: #fff;
  border: 1px solid #d9e5ef;
  border-radius: 12px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    visibility 0.2s ease;
  z-index: 110;
}
.nav-services:hover .services-dropdown,
.nav-services:focus-within .services-dropdown,
.nav-services.open .services-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}
.services-dropdown a {
  display: block;
  padding: 9px 11px;
  font-size: 11px;
}
.services-dropdown a:hover,
.services-dropdown a:focus {
  background: #edf6ff;
  color: var(--royal);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-actions .btn {
  font-size: 13px;
  padding: 11px 17px;
}
.menu-toggle {
  display: none;
  border: 0;
  background: none;
  padding: 6px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  margin: 5px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 18px;
  border-radius: 11px;
  border: 1px solid transparent;
  font-weight: 800;
  font-size: 13px;
  transition: 0.25s;
  position: relative;
  overflow: hidden;
}
.btn:before {
  content: "";
  position: absolute;
  inset: -1px auto -1px -45%;
  width: 35%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.45),
    transparent
  );
  transform: skewX(-18deg);
  transition: left 0.55s;
}
.btn:hover:before {
  left: 120%;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-small {
  padding: 11px 17px;
  font-size: 13px;
}
.btn-primary,
.btn-accent {
  background: linear-gradient(135deg, var(--orange), #ff4f3d);
  color: #fff;
  box-shadow: 0 12px 28px rgba(255, 88, 50, 0.24);
}
.btn-secondary {
  background: var(--royal);
  color: #fff;
  box-shadow: 0 12px 28px rgba(13, 100, 216, 0.18);
}
.btn-outline {
  border-color: #bad0e4;
  background: #fff;
  color: var(--navy);
}
.btn-ghost {
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}
.btn-lg {
  padding: 14px 22px;
  font-size: 14px;
}
.btn-large {
  padding: 14px 23px;
  font-size: 14px;
}
.link-arrow {
  font-weight: 800;
  color: var(--royal);
}
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 80px;
  background:
    radial-gradient(
      circle at 80% 15%,
      rgba(20, 126, 240, 0.34),
      transparent 27%
    ),
    linear-gradient(120deg, #04183f, #052e72 58%, #0b5db7);
  color: #fff;
}
.page-hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(#000, transparent);
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
  align-items: center;
}
.page-hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 300;
  letter-spacing: -0.04em;
  font-size: clamp(48px, 6vw, 78px);
  line-height: 0.96;
  margin: 14px 0 20px;
}
.page-hero h1 em {
  font-style: normal;
  color: var(--orange);
}
.page-hero p {
  max-width: 620px;
  color: #d9e8fa;
  font-size: 14px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.hero-whatsapp {
  flex-basis: 100%;
}
.hero-panel {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 22px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.12),
    rgba(255, 255, 255, 0.05)
  );
  backdrop-filter: blur(18px);
  padding: 28px;
  box-shadow: 0 32px 80px rgba(0, 15, 50, 0.34);
  overflow: hidden;
}
.hero-panel:after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255, 107, 53, 0.2);
  right: -70px;
  top: -80px;
  filter: blur(5px);
  animation: floatBlob 7s ease-in-out infinite alternate;
}
.hero-panel h3 {
  margin: 0 0 18px;
  font-family: Georgia, serif;
  font-weight: 300;
  font-size: 28px;
}
.hero-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.metric {
  padding: 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
}
.metric strong {
  display: block;
  font-size: 24px;
  color: #fff;
}
.metric span {
  font-size: 10px;
  color: #d2e4f6;
}
.floating-badge {
  margin-top: 14px;
  padding: 13px 15px;
  border-radius: 12px;
  background: #fff;
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.floating-badge b {
  color: var(--orange);
}
.subnav {
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.subnav .container {
  display: flex;
  gap: 22px;
  overflow: auto;
}
.subnav a {
  white-space: nowrap;
  padding: 16px 0;
  font-size: 12px;
  font-weight: 800;
  color: #4a6687;
}
.subnav a:hover {
  color: var(--royal);
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.card {
  background: #fff;
  border: 1px solid #dbe7f2;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  padding: 24px;
  transition: 0.32s;
}
.card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}
.icon-box {
  width: 45px;
  height: 45px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: #eaf4ff;
  color: var(--royal);
  font-weight: 900;
  font-size: 20px;
}
.card h3 {
  margin: 16px 0 7px;
  font-size: 18px;
}
.card p {
  font-size: 12px;
  color: var(--muted);
  margin: 0;
}
.card .meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 18px;
  padding-top: 15px;
  border-top: 1px solid #e5edf5;
  color: #7d8da2;
  font-size: 10px;
}
.tag-row {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.tag {
  padding: 5px 8px;
  border-radius: 999px;
  background: #eef6ff;
  color: #27609c;
  font-size: 9px;
  font-weight: 700;
}
.surface {
  background: linear-gradient(125deg, #eef8ff 0%, #f8fbff 48%, #fff4ed 100%);
}
.dark-surface {
  background: linear-gradient(135deg, #05255b, #0a4f9d);
  color: #fff;
}
.dark-surface .section-title {
  color: #fff;
}
.dark-surface .eyebrow {
  color: #d6e8ff;
}
.dark-surface .section-copy {
  color: #d4e4f8;
}
.filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 32px 0 28px;
}
.filter-bar input,
.filter-bar select,
.form-control {
  height: 46px;
  border: 1px solid #cfdeec;
  border-radius: 10px;
  background: #fff;
  color: #193a61;
  padding: 0 13px;
  outline: none;
}
.filter-bar input {
  min-width: 240px;
  flex: 1;
}
.filter-bar input:focus,
.filter-bar select:focus,
.form-control:focus,
textarea.form-control:focus {
  border-color: var(--royal);
  box-shadow: 0 0 0 3px rgba(22, 137, 231, 0.1);
}
textarea.form-control {
  height: auto;
  min-height: 130px;
  padding: 13px;
  resize: vertical;
}
.writer-card {
  overflow: hidden;
  padding: 0;
}
.writer-photo {
  height: 210px;
  background: #dbeaf6;
  overflow: hidden;
}
.writer-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}
.writer-card:hover .writer-photo img {
  transform: scale(1.05);
}
.writer-body {
  padding: 20px;
}
.writer-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.writer-head h3 {
  margin: 0;
  font-size: 17px;
}
.rating {
  color: #f39b17;
  font-size: 12px;
  font-weight: 800;
}
.availability {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--success);
  font-size: 10px;
  font-weight: 800;
}
.availability:before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
}
.writer-actions {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}
.price-shell {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 35px;
  align-items: start;
}
.calculator,
.summary-panel,
.form-card {
  background: #fff;
  border: 1px solid #d6e5f3;
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 28px;
}
.surface .calculator,
.surface .summary-panel,
.surface .form-card {
  position: relative;
  overflow: hidden;
  border-color: rgba(143, 188, 224, 0.72);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 255, 0.96)),
    #fff;
  box-shadow:
    0 22px 52px rgba(32, 89, 143, 0.12),
    0 3px 0 rgba(255, 255, 255, 0.9) inset;
}
.surface .calculator::before,
.surface .summary-panel::before,
.surface .form-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--royal), #43a8ef, var(--orange));
}
.surface .calculator:hover,
.surface .summary-panel:hover,
.surface .form-card:hover {
  border-color: rgba(47, 137, 216, 0.58);
  box-shadow:
    0 28px 62px rgba(32, 89, 143, 0.16),
    0 3px 0 rgba(255, 255, 255, 0.9) inset;
}
.surface .wizard-nav {
  padding: 12px;
  border: 1px solid rgba(143, 188, 224, 0.58);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.54);
  box-shadow: 0 16px 38px rgba(32, 89, 143, 0.08);
}
.surface .wizard-step-tab {
  transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease;
}
.surface .wizard-step-tab:hover {
  background: rgba(255, 255, 255, 0.86);
  transform: translateX(3px);
}
.surface .wizard-step-tab.active {
  box-shadow: 0 8px 18px rgba(13, 100, 216, 0.1);
}
.surface .dropzone {
  display: grid;
  width: 100%;
  min-height: 180px;
  box-sizing: border-box;
  align-content: center;
  justify-items: center;
  gap: 8px;
  margin-top: 24px;
  border-color: rgba(47, 137, 216, 0.5);
  background: linear-gradient(145deg, #fafdff, #eef7ff);
  box-shadow: 0 10px 24px rgba(32, 89, 143, 0.06) inset;
  transition: border-color 0.22s ease, background 0.22s ease, transform 0.22s ease;
}
.surface .dropzone strong,
.surface .dropzone small {
  display: block;
  text-align: center;
}
.surface .dropzone strong {
  color: #245a87;
  font-size: 13px;
}
.surface .dropzone small {
  color: #7190aa;
  font-size: 11px;
}
.surface .dropzone:hover {
  border-color: var(--royal);
  background: linear-gradient(145deg, #ffffff, #e9f5ff);
  transform: translateY(-2px);
}
.surface .price-total {
  border: 1px solid rgba(255, 143, 74, 0.22);
  box-shadow: 0 10px 24px rgba(255, 111, 45, 0.08);
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}
.price-shell .form-grid {
  gap: 14px;
  margin-top: 24px;
}
.price-shell .field {
  position: relative;
  gap: 8px;
  padding: 13px 14px 12px;
  border: 1px solid rgba(143, 188, 224, 0.62);
  border-radius: 13px;
  background: linear-gradient(145deg, #ffffff, #f3f9ff);
  box-shadow: 0 8px 18px rgba(32, 89, 143, 0.06);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.price-shell .field:hover {
  border-color: rgba(47, 137, 216, 0.7);
  box-shadow: 0 12px 24px rgba(32, 89, 143, 0.1);
  transform: translateY(-2px);
}
.price-shell .field label {
  color: #315b80;
  font-size: 10px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.price-shell .field select {
  min-height: 34px;
  appearance: none;
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: #123f6d;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  outline: none;
  padding: 0 24px 0 0;
}
.price-shell .field::after {
  content: "\\2304";
  position: absolute;
  right: 14px;
  bottom: 18px;
  color: var(--royal);
  font-size: 17px;
  font-weight: 900;
  pointer-events: none;
}
.price-shell .field:focus-within {
  border-color: var(--royal);
  box-shadow: 0 0 0 3px rgba(22, 137, 231, 0.12), 0 12px 24px rgba(32, 89, 143, 0.1);
}
.price-shell .field {
  gap: 7px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transform: none;
}
.price-shell .field:hover {
  border-color: transparent;
  box-shadow: none;
  transform: none;
}
.price-shell .field label {
  color: #42617f;
  font-size: 11px;
  letter-spacing: 0;
  text-transform: none;
}
.price-shell .field select {
  height: 44px;
  min-height: 44px;
  margin-top: 7px;
  appearance: auto;
  border: 1px solid #cfdeec;
  border-radius: 9px;
  background: #f9fcff;
  color: #193a61;
  cursor: pointer;
  font-size: inherit;
  font-weight: 400;
  outline: none;
  padding: 0 12px;
}
.price-shell .field::after {
  display: none;
}
.price-shell .field select:focus {
  border-color: var(--royal);
  box-shadow: 0 0 0 3px rgba(22, 137, 231, 0.12);
}
.field {
  display: grid;
  gap: 7px;
}
.field label {
  font-size: 11px;
  font-weight: 800;
  color: #486580;
}
.field input,
.field select,
.field textarea {
  width: 100%;
}
.wizard .field select,
.wizard .field input {
  height: 44px;
  margin-top: 7px;
  border: 1px solid #cfdeec;
  border-radius: 9px;
  background: #f9fcff;
  color: #193a61;
  padding: 0 12px;
  outline: none;
}
.wizard .field select:focus,
.wizard .field input:focus {
  border-color: var(--royal);
  box-shadow: 0 0 0 3px rgba(22, 137, 231, 0.12);
}
.price-total {
  margin-top: 22px;
  padding: 22px;
  border-radius: 15px;
  background: linear-gradient(135deg, #eff7ff, #fff5ef);
  display: flex;
  justify-content: space-between;
  align-items: end;
}
.price-total small {
  display: block;
  color: #74869a;
}
.price-total strong {
  font-size: 40px;
  line-height: 1;
  color: var(--royal);
}
.include-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}
.include-list span {
  display: flex;
  gap: 9px;
  font-size: 12px;
  color: #496581;
}
.include-list span:before {
  content: "✓";
  color: var(--success);
  font-weight: 900;
}
.price-table {
  width: 100%;
  border-collapse: collapse;
}
.price-table th,
.price-table td {
  padding: 14px;
  border-bottom: 1px solid #e1eaf2;
  text-align: left;
  font-size: 12px;
}
.price-table th {
  color: #48627f;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.sample-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.sample-card {
  overflow: hidden;
  padding: 0;
}
.sample-cover {
  height: 190px;
  position: relative;
  background: linear-gradient(135deg, #eaf5ff, #fff5ee);
  display: grid;
  place-items: center;
}
.sample-cover:before {
  content: "";
  width: 115px;
  height: 145px;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 18px 36px rgba(7, 45, 98, 0.14);
  transform: rotate(-4deg);
}
.sample-cover:after {
  content: "AURELIUS\A SAMPLE";
  white-space: pre;
  text-align: center;
  position: absolute;
  color: var(--navy);
  font-family: Georgia, serif;
  font-size: 14px;
  line-height: 1.6;
}
.sample-body {
  padding: 20px;
}
.sample-body h3 {
  margin: 0 0 8px;
}
.sample-body p {
  font-size: 11px;
  color: var(--muted);
}
.wizard {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 34px;
  align-items: start;
}
.wizard-nav {
  position: sticky;
  top: 100px;
  display: grid;
  gap: 8px;
}
.wizard-step-tab {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 13px;
  border-radius: 11px;
  color: #5a7390;
  font-size: 11px;
  font-weight: 800;
}
.wizard-step-tab span {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #eaf4ff;
  color: var(--royal);
}
.wizard-step-tab.active {
  background: #eef7ff;
  color: var(--royal);
}
.wizard-step-tab.active span {
  background: var(--royal);
  color: #fff;
}
.wizard-panel {
  display: none;
}
.wizard-panel.active {
  display: block;
  animation: fadeSlide 0.35s ease;
}
.wizard-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 24px;
}
.dropzone {
  border: 1px dashed #9fbfdd;
  border-radius: 14px;
  background: #f7fbff;
  padding: 30px;
  text-align: center;
  color: #5a7897;
}
.order-summary {
  display: grid;
  gap: 12px;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e4edf5;
  font-size: 12px;
}
.summary-row span {
  color: #70839a;
}
.summary-row strong {
  text-align: right;
}
.profile-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 32px;
}
.profile-card {
  position: sticky;
  top: 105px;
}
.profile-card img {
  width: 100%;
  height: 290px;
  object-fit: cover;
  border-radius: 14px;
}
.profile-card h2 {
  font-family: Georgia, serif;
  font-weight: 300;
  font-size: 30px;
  margin: 18px 0 4px;
}
.profile-content {
  display: grid;
  gap: 18px;
}
.content-panel {
  background: #fff;
  border: 1px solid #dbe7f1;
  border-radius: 16px;
  padding: 25px;
  box-shadow: var(--shadow-sm);
}
.content-panel h3 {
  margin: 0 0 13px;
  color: var(--navy);
}
.timeline {
  display: grid;
  gap: 13px;
}
.timeline-item {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
}
.timeline-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #eaf4ff;
  color: var(--royal);
  display: grid;
  place-items: center;
  font-weight: 900;
}
.feature-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.feature-item {
  text-align: center;
  padding: 24px;
}
.feature-item .icon-box {
  margin: auto;
}
.feature-item h3 {
  font-size: 15px;
}
.feature-item p {
  font-size: 11px;
  color: var(--muted);
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.photo-frame {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.photo-frame img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}
.photo-frame:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(3, 28, 69, 0.22), transparent);
}
.stat-belt {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid #dbe6f2;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
}
.stat-belt div {
  padding: 22px;
  text-align: center;
  border-right: 1px solid #dbe6f2;
}
.stat-belt div:last-child {
  border: 0;
}
.stat-belt strong {
  display: block;
  font-size: 28px;
  color: var(--royal);
}
.stat-belt span {
  font-size: 10px;
  color: var(--muted);
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 45px;
}
.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}
.contact-item {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  padding: 16px;
  border: 1px solid #dbe7f2;
  border-radius: 13px;
  background: #fff;
}
.contact-item .icon-box {
  flex: 0 0 auto;
}
.contact-item strong {
  display: block;
  font-size: 13px;
}
.contact-item span {
  font-size: 11px;
  color: var(--muted);
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.blog-card {
  padding: 0;
  overflow: hidden;
}
.blog-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}
.blog-body {
  padding: 20px;
}
.blog-body small {
  color: var(--royal);
  font-weight: 800;
}
.blog-body h3 {
  font-family: Georgia, serif;
  font-size: 21px;
  font-weight: 300;
  line-height: 1.2;
  margin: 10px 0;
}
.blog-body p {
  font-size: 11px;
  color: var(--muted);
}
.policy {
  max-width: 820px;
  margin: auto;
}
.policy h2 {
  font-family: Georgia, serif;
  font-weight: 300;
  color: var(--navy);
  font-size: 34px;
  margin-top: 40px;
}
.policy p,
.policy li {
  color: #526b88;
  font-size: 13px;
  line-height: 1.8;
}
.policy ul {
  padding-left: 22px;
}
.cta-panel {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: linear-gradient(120deg, #041b49, #083c83 55%, #0d67ba);
  padding: 38px;
  color: #fff;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  box-shadow: 0 24px 60px rgba(5, 41, 92, 0.2);
}
.cta-panel:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    transparent 25%,
    rgba(255, 255, 255, 0.08) 45%,
    transparent 60%
  );
  transform: translateX(-130%);
  animation: ctaSweep 6s ease-in-out infinite;
}
.cta-panel > * {
  position: relative;
  z-index: 1;
}
.cta-panel h2 {
  font-family: Georgia, serif;
  font-size: 36px;
  font-weight: 300;
  margin: 0 0 6px;
}
.cta-panel p {
  margin: 0;
  color: #d5e7fb;
}
.site-footer {
  border-top: 1px solid #dce7f1;
  background: #fff;
  padding: 58px 0 22px;
}
.site-footer.service-footer {
  position: relative;
  overflow: hidden;
  border-top-color: rgba(147, 198, 240, 0.25);
  background:
    radial-gradient(
      circle at 88% 12%,
      rgba(22, 137, 231, 0.3),
      transparent 28%
    ),
    linear-gradient(125deg, #04183f 0%, #052e72 58%, #0b5db7 100%);
  color: #fff;
}
.site-footer.service-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, #000, transparent 82%);
}
.service-footer .container {
  position: relative;
  z-index: 1;
}
.service-footer .footer-brand p,
.service-footer .footer-col a,
.service-footer .footer-col span,
.service-footer .footer-bottom {
  color: #c7ddf5;
}
.service-footer .footer-col h3 {
  color: #fff;
}
.service-footer .footer-col a:hover {
  color: var(--orange);
}
.service-footer .footer-bottom {
  border-top-color: rgba(255, 255, 255, 0.16);
}
.whatsapp-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 13px;
  padding: 10px 14px;
  border: 1px solid rgba(126, 239, 170, 0.55);
  border-radius: 10px;
  background: rgba(24, 183, 96, 0.16);
  color: #d9ffe9;
  font-size: 12px;
  font-weight: 800;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}
.whatsapp-cta span {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: #073e26;
  font-size: 13px;
}
.whatsapp-icon svg {
  width: 15px;
  height: 15px;
}
.whatsapp-cta:hover {
  border-color: #7eefaa;
  background: rgba(37, 211, 102, 0.28);
  transform: translateY(-2px);
}
.whatsapp-float {
  position: fixed;
  right: 38px;
  bottom: 38px;
  z-index: 140;
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border: 4px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  background: #25d366;
  color: #25d366;
  box-shadow: 0 12px 30px rgba(0, 90, 47, 0.3);
  animation: whatsappFloat 2.8s ease-in-out infinite;
}
.whatsapp-float::before {
  content: "";
  position: absolute;
  inset: -8px;
  border: 2px solid rgba(37, 211, 102, 0.42);
  border-radius: 50%;
  animation: whatsappPulse 2.8s ease-out infinite;
}
.whatsapp-float > svg:not(.whatsapp-float-ring) {
  position: relative;
  width: 34px;
  height: 34px;
}
.whatsapp-float-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 116px;
  height: 116px;
  transform: translate(-50%, -50%);
  overflow: visible;
  pointer-events: none;
  fill: none;
  animation: whatsappRingSpin 18s linear infinite;
}
.whatsapp-float-ring text {
  fill: var(--orange);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.whatsapp-float:hover {
  transform: translateY(-5px) scale(1.06);
  box-shadow: 0 18px 38px rgba(0, 90, 47, 0.4);
}
@keyframes whatsappFloat {
  0%,
  100% {
    transform: translateY(0) scale(1);
    box-shadow: 0 12px 30px rgba(0, 90, 47, 0.3);
  }
  50% {
    transform: translateY(-7px) scale(1.04);
    box-shadow: 0 18px 38px rgba(0, 90, 47, 0.42);
  }
}
@keyframes whatsappPulse {
  0% {
    transform: scale(0.72);
    opacity: 0.8;
  }
  70%,
  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}
@keyframes whatsappRingSpin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@media (max-width: 720px) {
  .whatsapp-float {
    right: 28px;
    bottom: 28px;
    width: 56px;
    height: 56px;
  }
  .whatsapp-float-ring {
    width: 104px;
    height: 104px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .whatsapp-float,
  .whatsapp-float::before,
  .whatsapp-float-ring {
    animation: none;
  }
}
.form-card[data-calculator] .form-grid {
  gap: 12px;
}
.form-card[data-calculator] .field select {
  min-height: 46px;
  border: 1px solid #c9ddec;
  border-radius: 10px;
  background: linear-gradient(135deg, #f9fcff, #eef7ff);
  color: var(--ink);
  padding: 0 12px;
  box-shadow: 0 5px 14px rgba(7, 45, 98, 0.04);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}
.form-card[data-calculator] .field select:focus {
  border-color: var(--royal);
  box-shadow: 0 0 0 3px rgba(22, 137, 231, 0.12);
  outline: none;
  transform: translateY(-1px);
}
.service-upload {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 16px;
  padding: 12px 13px;
  border: 1px dashed #a9c8e5;
  border-radius: 12px;
  background: #f7fbff;
  color: #315e91;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
}
.service-upload:hover,
.service-upload:focus-within {
  border-color: var(--royal);
  background: #eef7ff;
  transform: translateY(-2px);
}
.service-upload input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.service-upload-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: #e1f0ff;
  color: var(--royal);
  font-size: 19px;
  font-weight: 800;
}
.service-upload span:not(.service-upload-icon) {
  display: grid;
  gap: 2px;
  min-width: 0;
}
.service-upload b {
  color: #183b66;
  font-size: 12px;
}
.service-upload small {
  color: #8091a6;
  font-size: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.service-upload strong {
  margin-left: auto;
  padding: 7px 10px;
  border: 1px solid #c9ddec;
  border-radius: 8px;
  background: #fff;
  color: var(--royal);
  font-size: 10px;
}
.service-reviews {
  background: linear-gradient(125deg, #eef8ff 0%, #f8fbff 52%, #fff4ed 100%);
}
.service-review-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}
.service-review-heading .section-title {
  max-width: 650px;
  margin-bottom: 0;
}
.service-review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 30px;
}
.service-review-card {
  padding: 22px;
  border: 1px solid #d8e7f5;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-sm);
}
.service-review-stars {
  color: #f2a11a;
  letter-spacing: 0.08em;
  font-size: 13px;
}
.service-review-card p {
  min-height: 78px;
  margin: 14px 0 18px;
  color: #365572;
  font-family: Georgia, serif;
  font-size: 16px;
  line-height: 1.5;
}
.service-review-card strong,
.service-review-card small {
  display: block;
}
.service-review-card strong {
  color: var(--navy);
  font-size: 12px;
}
.service-review-card small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 10px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 38px;
}
.footer-brand img {
  width: 175px;
}
.footer-brand p {
  font-size: 11px;
  color: #77879b;
  max-width: 330px;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-col h3 {
  font-size: 12px;
  margin: 0 0 7px;
}
.footer-col a,
.footer-col span {
  font-size: 11px;
  color: #718197;
}
.footer-bottom {
  margin-top: 35px;
  padding-top: 18px;
  border-top: 1px solid #e2eaf2;
  display: flex;
  justify-content: space-between;
  color: #8b99aa;
  font-size: 10px;
}
.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translate(-50%, 20px);
  opacity: 0;
  pointer-events: none;
  z-index: 200;
  background: #06255a;
  color: #fff;
  padding: 13px 18px;
  border-radius: 10px;
  box-shadow: 0 16px 36px rgba(2, 27, 68, 0.24);
  font-size: 12px;
  transition: 0.3s;
}
.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.75s ease,
    transform 0.75s cubic-bezier(0.2, 0.72, 0.2, 1);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: 0.75s;
}
.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: 0.75s;
}
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: none;
}
.stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: 0.6s;
}
.stagger.visible > * {
  opacity: 1;
  transform: none;
}
.stagger.visible > *:nth-child(2) {
  transition-delay: 0.08s;
}
.stagger.visible > *:nth-child(3) {
  transition-delay: 0.16s;
}
.stagger.visible > *:nth-child(4) {
  transition-delay: 0.24s;
}
.stagger.visible > *:nth-child(5) {
  transition-delay: 0.32s;
}
.stagger.visible > *:nth-child(6) {
  transition-delay: 0.4s;
}
@keyframes floatBlob {
  to {
    transform: translate(-20px, 25px) scale(1.12);
  }
}
@keyframes ctaSweep {
  0%,
  60% {
    transform: translateX(-130%);
  }
  85%,
  100% {
    transform: translateX(130%);
  }
}
@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@media (max-width: 1000px) {
  .nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 78px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: #fff;
    border: 1px solid #dbe6f2;
    border-radius: 14px;
    padding: 12px 18px;
    box-shadow: var(--shadow);
  }
  .nav.open {
    display: flex;
  }
  .nav a,
  .nav-services {
    width: 100%;
    padding: 0;
  }
  .nav a {
    padding: 12px 0;
  }
  .nav a:after {
    display: none;
  }
  .nav-services-trigger {
    width: 100%;
    padding: 12px 0;
    text-align: left;
  }
  .services-dropdown {
    position: static;
    width: 100%;
    padding: 0 0 5px;
    border: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
  }
  .nav-services.open .services-dropdown,
  .nav-services:focus-within .services-dropdown {
    display: block;
  }
  .services-dropdown a {
    padding: 9px 10px;
  }
  .menu-toggle {
    display: block;
    margin-left: auto;
  }
  .nav-actions .btn-outline {
    display: none;
  }
  .hero-grid,
  .price-shell,
  .split,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .card-grid,
  .sample-grid,
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .feature-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .profile-layout {
    grid-template-columns: 1fr;
  }
  .profile-card {
    position: static;
    max-width: 420px;
  }
  .wizard {
    grid-template-columns: 1fr;
  }
  .wizard-nav {
    position: static;
    grid-template-columns: repeat(5, 1fr);
    overflow: auto;
  }
  .wizard-step-tab {
    justify-content: center;
  }
  .wizard-step-tab b {
    display: none;
  }
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
  .footer-col:last-child {
    display: none;
  }
  .stat-belt {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-belt div:nth-child(2) {
    border-right: 0;
  }
  .stat-belt div:nth-child(-n + 2) {
    border-bottom: 1px solid #dbe6f2;
  }
}
@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, 1180px);
  }
  .section {
    padding: 72px 0;
  }
  .nav-shell {
    height: 70px;
  }
  .brand img {
    width: 138px;
  }
  .nav {
    top: 70px;
    left: 14px;
    right: 14px;
  }
  .nav-actions {
    display: none;
  }
  .page-hero {
    padding: 66px 0 58px;
  }
  .page-hero h1 {
    font-size: 48px;
  }
  .hero-metrics,
  .form-grid {
    grid-template-columns: 1fr;
  }
  .card-grid,
  .sample-grid,
  .blog-grid,
  .feature-row {
    grid-template-columns: 1fr;
  }
  .filter-bar {
    display: grid;
  }
  .filter-bar input {
    min-width: 0;
    width: 100%;
  }
  .price-total {
    flex-direction: column;
    align-items: flex-start;
  }
  .wizard-nav {
    grid-template-columns: repeat(5, 52px);
    justify-content: start;
  }
  .wizard-step-tab {
    padding: 8px;
  }
  .wizard-actions {
    flex-direction: column-reverse;
  }
  .wizard-actions .btn {
    width: 100%;
  }
  .split {
    gap: 30px;
  }
  .photo-frame img {
    height: 380px;
  }
  .stat-belt {
    grid-template-columns: 1fr;
  }
  .stat-belt div {
    border-right: 0 !important;
    border-bottom: 1px solid #dbe6f2;
  }
  .cta-panel {
    grid-template-columns: 1fr;
    padding: 28px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1/-1;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }
  .service-review-heading {
    display: grid;
    align-items: start;
  }
  .service-review-heading .btn {
    width: max-content;
  }
  .service-review-grid {
    grid-template-columns: 1fr;
  }
  .service-review-card p {
    min-height: 0;
  }
  .service-upload strong {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto;
  }
  .reveal,
  .reveal-left,
  .reveal-right,
  .stagger > * {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero-panel:after,
  .cta-panel:after {
    animation: none;
  }
}

/* Currency toggle on price calculators (৳ BDT / $ USD …) */
.currency-switch {
  display: flex;
  width: max-content;
  max-width: 100%;
  flex-wrap: wrap;
  gap: 4px;
  margin: 6px 0 8px;
  padding: 3px;
  border: 1px solid var(--line, #dbe6f2);
  border-radius: 999px;
  background: #fff;
}
.currency-switch button {
  border: 0;
  border-radius: 999px;
  padding: 5px 11px;
  background: transparent;
  color: var(--navy, #06265f);
  font: inherit;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.currency-switch button:hover {
  background: var(--sky, #eaf5ff);
}
.currency-switch button.active {
  background: var(--navy, #06265f);
  color: #fff;
}
.currency-switch button:focus-visible {
  outline: 2px solid var(--royal, #0d64d8);
  outline-offset: 2px;
}
.wizard-panel .currency-switch {
  margin: 0 0 14px;
}

/* === mobile-responsive:start (generated) === */
/* Phones and tablets: lift tiny text to a readable size (desktop sizes unchanged). */
@media (max-width:1024px){
  .metric span{font-size:11.5px}
  .card .meta{font-size:11.5px}
  .tag{font-size:11px}
  .availability{font-size:11.5px}
  .price-shell .field label{font-size:11.5px}
  .price-table th{font-size:11.5px}
  .stat-belt span{font-size:11.5px}
  .whatsapp-float-ring text{font-size:11px}
  .service-upload small{font-size:11.5px}
  .service-upload strong{font-size:11.5px}
  .service-review-card small{font-size:11.5px}
  .footer-bottom{font-size:11.5px}
  [style*="font-size:9px"],[style*="font-size: 9px"]{font-size:11px!important}
  [style*="font-size:10px"],[style*="font-size: 10px"]{font-size:11.5px!important}
}
html,body{overflow-x:clip}
@media (max-width:720px){
  input,select,textarea{font-size:16px!important} /* below 16px iOS zooms the page on focus */
  .whatsapp-float{right:22px;bottom:22px;width:52px;height:52px;border-width:3px}
  .whatsapp-float>svg:not(.whatsapp-float-ring){width:28px;height:28px}
  .whatsapp-float-ring{width:92px;height:92px}
  .currency-switch button{padding:8px 13px;font-size:12px}
  .dot{position:relative}
  .dot::after{content:"";position:absolute;inset:-14px -6px}
  .menu-toggle{min-width:44px;min-height:44px}
}
/* === mobile-responsive:end === */
