:root {
  --primary: #23436b;
  --primary-light: #3a5b8a;
  --primary-dark: #15263f;
  --accent: #f59e0b;
  --accent-soft: #f4b77a;
  --bg: #f9f4ef;
  --bg-soft: #f2e9e4;
  --text: #1e2933;
  --text-light: #4a5563;
  --muted: #6c757d;
  --card-bg: #ffffff;
  --card-tint: rgba(255, 255, 255, 0.85);
  --border: rgba(35, 67, 107, 0.12);
  --shadow-soft: 0 18px 36px rgba(21, 38, 63, 0.12);
  --shadow-strong: 0 30px 60px rgba(21, 38, 63, 0.18);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top left, var(--bg), var(--bg-soft));
  color: var(--text);
  line-height: 1.65;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

header.site-header {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #f8fafc;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-strong);
  position: sticky;
  top: 0;
  z-index: 8;
  backdrop-filter: blur(16px);
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 0;
  gap: 1.25rem;
  flex-wrap: wrap;
  position: relative;
}

.site-header-inner::after {
  content: "";
  position: absolute;
  inset: -28% -14% auto -14%;
  height: 160%;
  background: radial-gradient(circle at center, rgba(245, 174, 62, 0.18), transparent 65%);
  z-index: -1;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: inherit;
  flex-shrink: 0;
}

.logo-image {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  object-fit: contain;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(244, 183, 122, 0.12));
  padding: 0.4rem;
  box-shadow: 0 16px 38px rgba(17, 24, 39, 0.32);
}

.logo-text-group {
  display: flex;
  flex-direction: column;
}

.logo-text-main {
  text-transform: uppercase;
  font-size: 1rem;
  color: #fdfcfb;
  letter-spacing: 0.08em;
}

.logo-text-sub {
  font-size: 0.78rem;
  color: rgba(246, 220, 186, 0.85);
  letter-spacing: 0.04em;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-left: auto;
  flex-wrap: wrap;
}

.header-nav-link {
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(248, 250, 252, 0.86);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: background 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.header-nav-link:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}

.header-nav-link.active {
  background: linear-gradient(135deg, #ffb860, #ffe29f);
  color: var(--primary-dark);
  border-color: transparent;
}

.header-info {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.3rem;
  text-align: right;
  margin-left: 1.25rem;
}


.header-cta {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.82rem;
  color: rgba(229, 231, 235, 0.85);
}

.header-cta-label {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.4);
}


.header-phone {
  font-size: 1.05rem;
  font-weight: 700;
  color: #f6b352;
  transition: color 0.2s ease, transform 0.2s ease;
}

.header-phone:hover {
  color: #ffd8a9;
  transform: translateY(-1px);
}

.header-cta-caption {
  font-size: 0.76rem;
  color: rgba(246, 220, 186, 0.7);
}

.header-btn {
  background: linear-gradient(135deg, var(--accent), #ff9f43);
  color: #1d1b16;
  padding: 0.72rem 1.7rem;
  box-shadow: 0 15px 32px rgba(245, 158, 11, 0.35);
  margin-left: 0.75rem;
}

.header-btn:hover {
  background: linear-gradient(135deg, #ffb860, #ffe29f);
  transform: translateY(-1px);
}


.hero {
  background: radial-gradient(circle at top right, rgba(255, 211, 150, 0.24), transparent 55%),
              linear-gradient(135deg, var(--primary-dark), #1a2b42 45%, rgba(21, 38, 63, 0.92));
  color: #f8fafc;
  padding: 3.8rem 0 3.4rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-strong);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.2), transparent 65%);
  filter: blur(0px);
  z-index: 0;
}

.hero::before {
  top: -140px;
  left: -90px;
}

.hero::after {
  bottom: -180px;
  right: -120px;
  background: radial-gradient(circle, rgba(255, 220, 160, 0.18), transparent 70%);
}

.hero-inner {
  position: relative;
  z-index: 1;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.5fr);
  gap: 2rem;
  align-items: center;
}


.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(250, 240, 230, 0.85);
  margin-bottom: 0.9rem;
}

.hero-tag-pill {
  background: rgba(245, 158, 11, 0.28);
  border-radius: 999px;
  padding: 0.22rem 0.75rem;
  font-weight: 600;
  color: rgba(30, 32, 45, 0.9);
}

.hero h1 {
  font-size: clamp(2rem, 3vw + 1rem, 2.9rem);
  line-height: 1.15;
  margin-bottom: 0.9rem;
}


.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(241, 245, 249, 0.86);
  max-width: 34rem;
  margin-bottom: 1.35rem;
}

.tagline {
  font-size: 0.88rem;
  color: rgba(255, 245, 229, 0.78);
  margin-bottom: 1.9rem;
  max-width: 28rem;
}

.hero-proof {
  font-size: 0.9rem;
  color: rgba(241, 245, 249, 0.85);
  max-width: 34rem;
  margin-bottom: 1.6rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.1s ease, box-shadow 0.1s ease, background 0.1s ease;
  white-space: nowrap;
}

.btn.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-soft));
  color: #1a202c;
  box-shadow: 0 18px 38px rgba(245, 158, 11, 0.32);
}

.btn.primary:hover {
  background: linear-gradient(135deg, #ffb04c, #ffe1b5);
  transform: translateY(-2px);
  box-shadow: 0 22px 46px rgba(245, 158, 11, 0.4);
}

.btn.secondary {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.28);
  color: rgba(248, 250, 252, 0.82);
}

.btn.secondary:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}

.hero-note {
  font-size: 0.75rem;
  color: #9ca3af;
}

.digital-hero {
  background: linear-gradient(135deg, var(--primary-dark), #142236 55%, rgba(35, 67, 107, 0.92));
}

.curiosity-section {
  padding-top: 0;
}

.curiosity-card {
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.96), rgba(244, 183, 122, 0.28));
  border-radius: 1.3rem;
  padding: 1.8rem 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.2rem;
  border: 1px solid rgba(35, 67, 107, 0.12);
  box-shadow: 0 18px 36px rgba(21, 38, 63, 0.12);
}

.curiosity-eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: rgba(35, 67, 107, 0.65);
  display: block;
  margin-bottom: 0.45rem;
}

.curiosity-copy {
  font-size: 0.95rem;
  color: var(--primary-dark);
  max-width: 32rem;
}

.curiosity-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  background: var(--primary);
  color: #f9fafb;
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: 0 16px 32px rgba(35, 67, 107, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.curiosity-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 40px rgba(35, 67, 107, 0.35);
}


.hero-card {
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.12), rgba(19, 27, 41, 0.86));
  border-radius: 1.35rem;
  padding: 1.4rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 26px 54px rgba(10, 16, 25, 0.45);
  backdrop-filter: blur(14px);
}

.hero-card-title {
  font-size: 0.96rem;
  margin-bottom: 0.7rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
}

.hero-metric-row {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
  font-size: 0.8rem;
}

.metric {
  flex: 1;
  background: rgba(13, 21, 32, 0.76);
  border-radius: 0.9rem;
  padding: 0.75rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.08);
}

.metric-label {
  font-size: 0.7rem;
  color: rgba(191, 219, 254, 0.7);
  margin-bottom: 0.25rem;
  letter-spacing: 0.08em;
}

.metric-value {
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255, 241, 230, 0.92);
}

.metric-sub {
  font-size: 0.72rem;
  color: rgba(226, 232, 240, 0.6);
}


.hero-card-list {
  list-style: none;
  margin: 0.9rem 0 0.9rem;
  padding-left: 0;
  font-size: 0.82rem;
  color: rgba(226, 232, 240, 0.85);
  display: grid;
  gap: 0.35rem;
}

.hero-card-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  margin-bottom: 0.3rem;
}

.hero-card-list span {
  color: #4ade80;
  font-size: 0.9rem;
}


.hero-card-footer {
  font-size: 0.74rem;
  color: rgba(209, 213, 219, 0.75);
  border-top: 1px dashed rgba(148, 163, 184, 0.4);
  padding-top: 0.55rem;
  margin-top: 0.6rem;
}


main {
  padding: 3rem 0 3.8rem;
}

.section {
  padding: 2.7rem 0;
  position: relative;
}

.section + .section {
  border-top: 1px solid rgba(35, 67, 107, 0.09);
}

.section-alt {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(244, 233, 228, 0.9));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), inset 0 -1px 0 rgba(35, 67, 107, 0.05);
}

.cta-section {
  background: linear-gradient(130deg, rgba(21, 38, 63, 0.82), rgba(35, 67, 107, 0.78));
  color: #f8fafc;
  box-shadow: var(--shadow-strong);
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  inset: -40% auto auto -10%;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(245, 158, 11, 0.35), transparent 65%);
  opacity: 0.7;
}

.cta-section-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.8rem;
  z-index: 1;
}

.cta-section-copy {
  max-width: 560px;
  display: grid;
  gap: 0.8rem;
}

.cta-section-copy h2 {
  font-size: clamp(1.65rem, 2.4vw + 1rem, 2.1rem);
  color: #fff7ed;
  letter-spacing: 0.04em;
}

.cta-section-copy p {
  color: rgba(15, 23, 42, 0.78);
  font-size: 0.98rem;
}

.cta-lead {
  font-size: 1.08rem;
  line-height: 1.66;
  color: #0f172a;
  margin-top: 0.65rem;
  background: rgba(255, 255, 255, 0.92);
  padding: 0.85rem 1.1rem;
  border-radius: 0.9rem;
  box-shadow: 0 18px 32px rgba(15, 23, 42, 0.28);
}

.cta-highlights {
  list-style: none;
  margin: 1.15rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.cta-highlights li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(15, 23, 42, 0.14);
  border: 1px solid rgba(15, 23, 42, 0.32);
  border-radius: 1rem;
  padding: 0.75rem 1rem;
  font-size: 0.92rem;
  color: #0f172a;
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.22);
}

.cta-highlights span {
  color: #f97316;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.cta-eyebrow {
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  color: rgba(255, 255, 255, 0.7);
}

.cta-section-btn {
  min-width: 240px;
  padding: 0.85rem 1.5rem;
  font-size: 0.92rem;
  text-align: center;
  box-shadow: 0 20px 42px rgba(245, 158, 11, 0.4);
}

.section h2 {
  font-size: 1.55rem;
  margin-bottom: 0.85rem;
  position: relative;
  display: inline-block;
  padding-bottom: 0.3rem;
  color: var(--primary);
  letter-spacing: 0.05em;
}

.section h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 62%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), rgba(255, 221, 173, 0));
  opacity: 0.7;
}

.section h3 {
  font-size: 1.12rem;
  margin-top: 1.6rem;
  margin-bottom: 0.55rem;
  color: var(--primary);
}

.digital-rights {
  background: linear-gradient(120deg, rgba(241, 245, 249, 0.9), rgba(255, 241, 230, 0.85));
}

.digital-rights-header {
  max-width: 780px;
  margin: 0 auto 2.4rem;
  text-align: center;
  display: grid;
  gap: 0.85rem;
}

.digital-rights-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(15, 23, 42, 0.6);
}

.digital-resources {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.resource-card {
  background: #fff7ed;
  border: 1px solid rgba(253, 186, 116, 0.4);
  border-radius: 1rem;
  padding: 1.1rem 1.2rem;
  box-shadow: 0 16px 32px rgba(245, 158, 11, 0.18);
  display: grid;
  gap: 0.6rem;
}

.resource-card h3 {
  margin: 0;
  color: #9a3412;
}

.resource-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  color: #b45309;
  text-decoration: none;
}

.resource-link::after {
  content: "→";
  font-size: 0.85rem;
}

.resource-link:hover {
  text-decoration: underline;
}

.digital-engagement {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.2rem;
}

.engagement-card {
  background: rgba(15, 23, 42, 0.88);
  color: #f8fafc;
  border-radius: 1.2rem;
  padding: 1.4rem;
  box-shadow: 0 24px 38px rgba(15, 23, 42, 0.36);
  border: 1px solid rgba(148, 163, 184, 0.18);
  display: grid;
  gap: 0.8rem;
}

.digital-form {
  display: grid;
  gap: 0.7rem;
}

.digital-form-field {
  display: grid;
  gap: 0.35rem;
  font-size: 0.8rem;
}

.digital-form-field input,
.digital-form-field select,
.digital-form-field textarea {
  width: 100%;
  border-radius: 0.6rem;
  border: 1px solid rgba(226, 232, 240, 0.6);
  padding: 0.55rem 0.6rem;
  font-family: inherit;
  font-size: 0.85rem;
  background: rgba(248, 250, 252, 0.95);
  color: #0f172a;
}

.digital-form-field textarea {
  resize: vertical;
}

.digital-form-field input:focus,
.digital-form-field select:focus,
.digital-form-field textarea:focus {
  outline: 2px solid rgba(251, 191, 36, 0.9);
  outline-offset: 1px;
  border-color: transparent;
}

.family-corner {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(244, 183, 122, 0.2));
  border-radius: 1.5rem;
  padding: 2.5rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(35, 67, 107, 0.08);
}

.family-corner h2 {
  text-align: center;
  margin-bottom: 1rem;
}

.family-corner p {
  max-width: 720px;
  margin: 0.6rem auto;
  text-align: center;
}

.family-ideas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.4rem;
  margin: 2.2rem 0;
}

.family-card {
  background: var(--card-bg);
  border-radius: 1rem;
  padding: 1.6rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.family-card h3 {
  font-size: 1.1rem;
  color: var(--primary);
}

.family-card ul {
  list-style: none;
  padding-left: 0;
  display: grid;
  gap: 0.4rem;
}

.family-card li::before {
  content: "•";
  color: var(--accent);
  margin-right: 0.55rem;
}

.family-tips {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.family-tip {
  background: rgba(35, 67, 107, 0.08);
  border-radius: 0.9rem;
  padding: 1rem 1.2rem;
  font-size: 0.9rem;
  color: var(--primary-dark);
  border: 1px solid rgba(35, 67, 107, 0.12);
}

.family-tip strong {
  display: block;
  margin-bottom: 0.35rem;
}

.poll-option {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  background: rgba(30, 41, 59, 0.65);
  border-radius: 0.75rem;
  padding: 0.55rem 0.65rem;
  font-size: 0.82rem;
}

.poll-option input {
  margin: 0;
}

.checkbox-inline {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.checkbox-inline input {
  width: auto;
  margin: 0;
}

.section p {
  margin-bottom: 0.65rem;
  color: var(--text-light);
}

.section-intro {
  max-width: 42rem;
  color: var(--text-light);
  font-size: 0.92rem;
}

.feature-list,
.results-list {
  padding-left: 1.2rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.feature-list li + li,
.results-list li + li {
  margin-top: 0.3rem;
}

.expectations {
  margin: 1rem 0;
  font-weight: 600;
  color: var(--primary);
}

.expectations span {
  display: block;
}

.bottom-line {
  margin-top: 1.2rem;
  font-weight: 600;
  color: var(--text);
}

#who ul {
  margin-top: 0.7rem;
  padding-left: 1.2rem;
  font-size: 0.9rem;
}

#who li {
  margin-bottom: 0.25rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1rem;
  margin-top: 1.2rem;
}

.service-card {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.92), rgba(244, 233, 228, 0.88));
  border-radius: 1.1rem;
  border: 1px solid rgba(35, 67, 107, 0.12);
  padding: 1.15rem;
  box-shadow: 0 18px 28px rgba(35, 67, 107, 0.1);
  backdrop-filter: blur(10px);
}

.service-card h3 {
  font-size: 1.02rem;
  margin-bottom: 0.4rem;
  color: var(--primary);
}

.service-card p {
  font-size: 0.86rem;
  color: rgba(35, 54, 75, 0.78);
  margin-bottom: 0.4rem;
}

.service-card ul {
  padding-left: 1.1rem;
  font-size: 0.84rem;
  color: rgba(35, 54, 75, 0.65);
}

.service-card li {
  margin-bottom: 0.22rem;
}

.plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.3rem;
  margin-top: 1.2rem;
}

.plan {
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.96), rgba(243, 229, 219, 0.9));
  border-radius: 1.15rem;
  padding: 1.2rem;
  border: 1px solid rgba(35, 67, 107, 0.14);
  box-shadow: 0 20px 34px rgba(35, 67, 107, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plan:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 44px rgba(35, 67, 107, 0.2);
}

.plan h3 {
  font-size: 1.08rem;
  margin-bottom: 0.42rem;
  color: var(--primary);
}

.price {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.45rem;
}

.plan ul {
  padding-left: 1.1rem;
  font-size: 0.86rem;
  color: rgba(35, 54, 75, 0.67);
  margin-bottom: 0.45rem;
}

.plan li {
  margin-bottom: 0.22rem;
}

.note {
  margin-top: 0.85rem;
  font-size: 0.82rem;
  color: rgba(35, 54, 75, 0.58);
}

/* === Pricing section enhancements === */
#pricing .section-intro {
  max-width: 42rem;
}

/* Plan header + tagline */
.plan-header {
  margin-bottom: 0.3rem;
}

.plan-tagline {
  font-size: 0.8rem;
  color: var(--muted);
}

/* Most popular highlight */
.plan.most-popular {
  border-color: var(--primary-light);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.16);
  transform: translateY(-4px);
  position: relative;
}

.plan-badge {
  position: absolute;
  top: 0.7rem;
  right: 0.8rem;
  background: var(--accent);
  color: #111827;
  font-size: 0.7rem;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Call-to-action buttons inside plans */
.plan-actions {
  margin-top: 0.5rem;
}

.plan-actions .btn {
  width: 100%;
  justify-content: center;
  font-size: 0.85rem;
}

/* Make pricing cards feel clickable on hover (ties into earlier hover CSS) */
.plan:hover .price {
  color: var(--primary-light);
}

#about p {
  font-size: 0.9rem;
}

.checkout-section {
  position: relative;
}

.checkout-header {
  max-width: 54rem;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.checkout-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.12);
  color: #b45309;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.checkout-grid {
  display: grid;
  gap: 1.5rem;
  align-items: flex-start;
}

@media (min-width: 960px) {
  .checkout-grid {
    grid-template-columns: 320px 1fr;
  }
}

.checkout-summary,
.checkout-form-card {
  background: #ffffff;
  border-radius: 1rem;
  border: 1px solid var(--border);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  padding: 1.5rem 1.6rem;
}

.checkout-summary h3,
.checkout-form-card h3 {
  margin-bottom: 0.4rem;
}

.checkout-summary p {
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.checkout-selected-plan {
  font-weight: 600;
  color: #0f172a;
}

.checkout-price {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
}

.checkout-pay-btn {
  margin-top: 0.6rem;
  display: inline-flex;
  width: 100%;
  justify-content: center;
}

.checkout-pay-btn.disabled,
.checkout-submit[disabled] {
  pointer-events: none;
  opacity: 0.55;
}

.checkout-note {
  margin-top: 0.75rem;
  font-size: 0.78rem;
  color: rgba(15, 23, 42, 0.6);
}

.payment-confirmation {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.82rem;
  color: #1f2937;
}

.payment-confirmation input {
  margin: 0;
}

.checkout-form-intro {
  color: rgba(15, 23, 42, 0.75);
  font-size: 0.92rem;
}

.checkout-form {
  margin-top: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.checkout-fieldset {
  display: grid;
  gap: 0.9rem;
  border: none;
  padding: 0;
  margin: 0;
}

.checkout-fieldset[disabled] {
  opacity: 0.55;
  filter: grayscale(0.15);
}

.checkout-form label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #1f2937;
}

.checkout-form input,
.checkout-form textarea,
.checkout-form select {
  width: 100%;
  padding: 0.55rem 0.65rem;
  border-radius: 0.55rem;
  border: 1px solid #cbd5e1;
  font-size: 0.86rem;
  font-family: inherit;
  background: #f8fafc;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.checkout-form input:focus,
.checkout-form textarea:focus,
.checkout-form select:focus {
  outline: 2px solid var(--primary-light);
  outline-offset: 1px;
  border-color: transparent;
  background: #fff8eb;
}

.checkout-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.checkout-form .form-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: #0f172a;
}

.checkout-form .form-hint {
  font-weight: 500;
  color: #64748b;
  font-size: 0.75rem;
  margin-left: 0.2rem;
}

.checkout-form .checkbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 0.45rem;
}

.checkout-form .checkbox-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #f8fafc;
  border: 1px solid #cbd5e1;
  border-radius: 0.65rem;
  padding: 0.55rem 0.6rem;
  font-size: 0.8rem;
  color: #1e293b;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.checkout-form .checkbox-option input {
  width: auto;
  margin: 0;
}

.checkout-form .checkbox-option:focus-within,
.checkout-form .checkbox-option:hover {
  border-color: var(--primary-light);
  background: #fff8eb;
  box-shadow: 0 0 0 2px rgba(245, 158, 11, 0.22);
}

.checkout-submit {
  align-self: flex-start;
  min-width: 220px;
}

.add-to-cart.active {
  box-shadow: 0 12px 24px rgba(245, 158, 11, 0.3);
  transform: translateY(-1px);
}

@media (max-width: 600px) {
  .checkout-summary,
  .checkout-form-card {
    padding: 1.2rem 1.1rem;
  }

  .checkout-submit {
    width: 100%;
  }
}

.footer {
  background: #020617;
  color: #9ca3af;
  padding: 1.2rem 0;
  font-size: 0.8rem;
  border-top: 1px solid #111827;
}

.footer p {
  text-align: center;
}

/* === SCROLL REVEAL BASE === */
.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.45s ease-out, transform 0.45s ease-out, box-shadow 0.25s ease-out;
}

body.reveal-ready .reveal {
  opacity: 0;
  transform: translateY(18px);
}

body.reveal-ready .reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }

/* === ZOOM TEXT / FEATURE BLOCKS === */
.zoom-text {
  transition: transform 0.25s ease-out, text-shadow 0.25s ease-out, background-color 0.25s ease-out;
  cursor: default;
}

.zoom-text:hover {
  transform: scale(1.03);
  text-shadow: 0 0 12px rgba(15, 23, 42, 0.35);
  background-color: rgba(255, 255, 255, 0.35);
  border-radius: 0.4rem;
}

.zoom-text.in-view {
  transform: scale(1.01);
}

body.reveal-ready .zoom-text.reveal.in-view {
  transform: translateY(0) scale(1.01);
}

/* === HOVER LIFT FOR CARDS === */
.service-card,
.plan {
  transition: transform 0.2s ease-out, box-shadow 0.2s ease-out, border-color 0.2s ease-out;
}

.service-card:hover,
.plan:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.14);
  border-color: rgba(37, 99, 235, 0.45);
}

@media (max-width: 768px) {
  .site-header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .logo {
    gap: 0.6rem;
  }

  .header-info {
    align-items: flex-start;
    text-align: left;
    margin-left: 0;
  }

  .header-cta {
    justify-content: flex-start;
  }

  .header-btn {
    width: 100%;
    justify-content: center;
    margin-left: 0;
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 2.5rem;
  }

  .cta-section-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-section-btn {
    width: 100%;
    justify-content: center;
  }
}
