:root {
  --primary: #130339;
  --primary-2: #24104d;
  --purple: #584684;
  --purple-2: #7a64b6;
  --gold: #e0c9a3;
  --text: #6e6585;
  --muted: #dedae9;
  --surface: #ffffff;
  --bg: #f8f8f8;
  --line: rgba(19, 3, 57, 0.1);
  --shadow: 0 24px 70px rgba(19, 3, 57, 0.08);
  --shadow-lg: 0 34px 90px rgba(19, 3, 57, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.7;
}

.site-header,
main,
.site-footer {
  max-width: 100%;
  overflow-x: clip;
}

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

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

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  color: var(--primary);
  letter-spacing: -0.04em;
  line-height: 1.12;
}

p {
  margin-bottom: 0;
}

.shell {
  width: min(1170px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: relative;
  overflow: hidden;
  color: var(--surface);
  background: #4E3B7D;
}

.site-header:before,
.site-header:after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
}

.site-header:before {
  width: 620px;
  height: 620px;
  right: -250px;
  top: 120px;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.site-header:after {
  width: 340px;
  height: 340px;
  left: -130px;
  bottom: 70px;
  background: rgba(224, 201, 163, 0.11);
}

.nav-bar {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 92px;
  gap: 28px;
}

.brand img {
  max-height: 62px;
  filter: drop-shadow(0 16px 24px rgba(0, 0, 0, 0.18));
}

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

.nav-links a {
  color: rgba(255, 255, 255, 0.88);
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-links a:hover,
.nav-links .active {
  background: rgba(224, 201, 163, 0.17);
  color: var(--gold);
}

.menu-toggle {
  display: none;
  border: 0;
  border-radius: 999px;
  background: var(--gold);
  color: var(--primary);
  padding: 10px 18px;
  font: inherit;
  font-weight: 700;
}

.hero {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
  align-items: center;
  gap: 60px;
  min-height: 760px;
  padding: 70px 0 110px;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.5;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 820px;
  margin-bottom: 24px;
  color: var(--surface);
  font-size: clamp(42px, 5.7vw, 72px);
  font-weight: 700;
}

.hero .eyebrow,
.cta-panel .eyebrow,
.section-heading.dark .eyebrow {
  color: var(--surface);
}

.hero h1 span {
  color: var(--gold);
}

.hero-text {
  max-width: 650px;
  color: var(--muted);
  font-size: 17px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  padding: 12px 25px;
  font-weight: 600;
  line-height: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-gold {
  background: var(--gold);
  color: var(--primary);
}

.button-gold:hover {
  background: var(--surface);
  box-shadow: 0 16px 34px rgba(224, 201, 163, 0.18);
}

.button-ghost {
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: var(--surface);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
}

.button-purple {
  background: var(--purple);
  color: var(--surface);
}

.button-purple:hover {
  background: var(--primary);
  box-shadow: 0 18px 36px rgba(88, 70, 132, 0.24);
}

.hero-visual {
  position: relative;
  min-height: 530px;
}

.phone-card {
  position: absolute;
  inset: 20px 38px 0 auto;
  width: min(390px, 92%);
  aspect-ratio: 1 / 1;
  border-radius: 38px;
  filter: drop-shadow(0 44px 70px rgba(0, 0, 0, 0.25));
}

.phone-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.floating-card {
  position: absolute;
  z-index: 2;
  min-width: 180px;
  border-radius: 24px;
  background: var(--gold);
  color: var(--primary);
  padding: 20px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

.floating-card strong,
.floating-card span {
  display: block;
}

.floating-card strong {
  font-size: 34px;
  line-height: 1;
}

.floating-card span {
  margin-top: 8px;
  font-size: 13px;
  font-weight: 600;
}

.card-left {
  left: 0;
  top: 140px;
}

.card-right {
  right: 0;
  bottom: 70px;
  background: var(--surface);
}

.trusted-strip {
  background: var(--surface);
  padding: 34px 0;
  text-align: center;
  box-shadow: 0 1px 0 var(--line);
}

.trusted-strip p {
  color: var(--primary);
  font-size: 18px;
  font-weight: 600;
}

.inner-header {
  background: #4E3B7D;
}

.inner-hero {
  position: relative;
  z-index: 2;
  max-width: 840px;
  margin: 0 auto;
  padding: 86px 0 112px;
  text-align: center;
}

.inner-hero h1 {
  margin-bottom: 18px;
  color: var(--surface);
  font-size: clamp(38px, 5vw, 64px);
}

.inner-hero p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
}

.inner-hero .eyebrow {
  color: var(--surface);
}

.section {
  padding: 96px 0;
}

.section-heading {
  max-width: 790px;
  margin-bottom: 48px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2 {
  margin-bottom: 16px;
  font-size: clamp(32px, 4.2vw, 50px);
  font-weight: 700;
}

.section-heading p:not(.eyebrow) {
  font-size: 16px;
}

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

.feature-card,
.price-card,
.example-card,
.testimonial-card,
.stat-card,
.whatsapp-support-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.feature-card {
  min-height: 280px;
  padding: 32px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover,
.price-card:hover,
.example-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin-bottom: 24px;
  border-radius: 20px;
  background: rgba(122, 100, 182, 0.13);
  color: var(--purple-2);
  font-weight: 800;
}

.icon-badge i {
  font-size: 27px;
  line-height: 1;
}

.feature-card h3 {
  margin-bottom: 12px;
  font-size: 21px;
}

.feature-detail-section {
  background: var(--bg);
}

.feature-showcase {
  display: grid;
  gap: 34px;
}

.feature-row-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  align-items: center;
  gap: 56px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--surface);
  padding: 34px;
  box-shadow: var(--shadow);
}

.feature-row-detail.reverse {
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1fr);
}

.feature-row-detail.reverse .feature-text {
  order: 2;
}

.feature-row-detail.reverse .feature-media {
  order: 1;
}

.feature-text h3 {
  margin: 4px 0 14px;
  font-size: clamp(25px, 3vw, 34px);
}

.feature-text p {
  text-align: justify;
}

.feature-media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 310px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(122, 100, 182, 0.12), rgba(224, 201, 163, 0.18));
  overflow: hidden;
}

.feature-media img {
  max-width: 92%;
  max-height: 300px;
  object-fit: contain;
}

.workflow-section {
  background: var(--bg);
}

.workflow-section.alternate {
  background: var(--surface);
}

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

.workflow-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
  padding: 24px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.workflow-section.alternate .workflow-card {
  background: var(--bg);
}

.workflow-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  border-radius: 17px;
  background: rgba(122, 100, 182, 0.13);
  color: var(--purple-2);
  font-weight: 800;
}

.workflow-card h3 {
  min-height: 54px;
  margin-bottom: 16px;
  font-size: 20px;
  letter-spacing: -0.03em;
}

.workflow-card img {
  width: 100%;
  height: 285px;
  margin-bottom: 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(122, 100, 182, 0.12), rgba(224, 201, 163, 0.18));
  object-fit: contain;
}

.workflow-card > p {
  min-height: 78px;
  margin-bottom: 16px;
  font-size: 14px;
}

.workflow-card details {
  margin-top: auto;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.workflow-card summary {
  color: var(--primary);
  cursor: pointer;
  font-weight: 700;
}

.workflow-card details p {
  margin-top: 12px;
  color: var(--text);
  font-size: 14px;
  text-align: justify;
}

.contact-page-section {
  background: var(--bg);
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 900px;
  margin: 0 auto 46px;
}

.contact-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
  padding: 30px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.contact-card h3 {
  margin: 8px 0 8px;
  font-size: 22px;
}

.contact-card p {
  margin-bottom: 20px;
}

.contact-form-wrapper {
  max-width: 720px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--surface);
  padding: 42px;
  box-shadow: var(--shadow);
}

.contact-form-wrapper .section-heading {
  margin-bottom: 30px;
}

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

.form-group {
  display: grid;
  gap: 8px;
}

.contact-form label {
  color: var(--primary);
  font-size: 14px;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(19, 3, 57, 0.14);
  border-radius: 14px;
  background: #ffffff;
  color: var(--primary);
  padding: 13px 15px;
  font: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input,
.contact-form select {
  min-height: 48px;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--purple-2);
  box-shadow: 0 0 0 4px rgba(122, 100, 182, 0.12);
}

.phone-group,
.captcha-box {
  display: flex;
  gap: 12px;
}

.isd-code {
  max-width: 210px;
}

.captcha-box {
  align-items: center;
}

.captcha-box img {
  height: 48px;
  width: auto;
  border: 1px solid rgba(19, 3, 57, 0.14);
  border-radius: 12px;
}

.captcha-refresh {
  border: 0;
  border-radius: 999px;
  background: var(--purple);
  color: var(--surface);
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  min-height: 48px;
  padding: 0 16px;
  white-space: nowrap;
}

.captcha-refresh:hover {
  background: var(--primary);
}

.submit-btn {
  width: 100%;
  border: 0;
  cursor: pointer;
  font: inherit;
}

.submit-btn:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.contact-form-status {
  display: none;
  border-radius: 16px;
  padding: 13px 15px;
  font-size: 14px;
  font-weight: 600;
}

.contact-form-status.success,
.contact-form-status.error {
  display: block;
}

.contact-form-status.success {
  background: rgba(16, 185, 129, 0.12);
  color: #047857;
}

.contact-form-status.error {
  background: rgba(239, 68, 68, 0.12);
  color: #b91c1c;
}

.about-page-section {
  background: var(--surface);
}

.about-intro {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
}

.about-story-card,
.about-copy-block,
.about-list-card,
.about-privacy-card {
  border: 1px solid rgba(19, 3, 57, 0.1);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.about-story-card {
  max-width: 980px;
  margin: 0 auto 34px;
  padding: 34px;
}

.about-story-card p + p {
  margin-top: 14px;
}

.about-split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 26px;
  margin-bottom: 34px;
}

.about-split-grid.reverse {
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
}

.about-copy-block,
.about-list-card,
.about-privacy-card {
  padding: 30px;
}

.about-copy-block h3,
.about-list-card h3,
.about-highlight-panel h3,
.about-privacy-card h3 {
  margin: 16px 0 12px;
  font-size: 24px;
}

.about-list-card h3 {
  margin-top: 0;
}

.about-list-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-list-card li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--body);
}

.about-list-card i {
  margin-top: 3px;
  color: var(--gold);
}

.about-highlight-panel {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 34px;
  border-radius: 28px;
  background: #4E3B7D;
  color: var(--surface);
  padding: 34px;
  box-shadow: var(--shadow-lg);
}

.about-highlight-panel h3,
.about-highlight-panel p,
.about-cta-panel h2,
.about-cta-panel p,
.about-cta-panel .eyebrow {
  color: var(--surface);
}

.about-highlight-panel .icon-badge {
  background: rgba(255, 255, 255, 0.12);
  color: var(--gold);
}

.about-privacy-card {
  margin-bottom: 34px;
}

.about-cta-panel {
  border-radius: 28px;
  background: #4E3B7D;
  color: var(--surface);
  padding: 46px 34px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.about-cta-panel h2 {
  margin-bottom: 12px;
}

.about-cta-panel p {
  max-width: 620px;
  margin: 0 auto 24px;
}

.legal-page-section {
  background: var(--surface);
}

.legal-card {
  max-width: 1040px;
  margin: 0 auto;
  border: 1px solid rgba(19, 3, 57, 0.1);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  padding: 34px;
}

.legal-header {
  margin-bottom: 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(19, 3, 57, 0.1);
}

.legal-header h2 {
  margin-bottom: 16px;
}

.legal-meta-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.legal-content {
  color: var(--body);
  line-height: 1.8;
}

.legal-content h1,
.legal-content h2,
.legal-content h3,
.legal-content h4 {
  margin: 28px 0 12px;
  color: var(--ink);
}

.legal-content h1 {
  font-size: 30px;
}

.legal-content h2 {
  font-size: 24px;
}

.legal-content h3,
.legal-content h4 {
  font-size: 20px;
}

.legal-content p,
.legal-content ul,
.legal-content ol {
  margin-bottom: 16px;
}

.legal-content ul,
.legal-content ol {
  padding-left: 22px;
}

.legal-content li {
  margin-bottom: 8px;
}

.legal-content a {
  color: var(--purple);
  font-weight: 700;
}

.blog-page-section {
  background: var(--surface);
}

.blog-listing-heading {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.blog-card {
  overflow: hidden;
  border: 1px solid rgba(19, 3, 57, 0.1);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.blog-card-image {
  display: block;
  background: #f7f4ff;
}

.blog-card-image img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.blog-content {
  padding: 24px;
}

.blog-meta,
.blog-post-meta {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.blog-content h3 {
  margin: 10px 0 12px;
  font-size: 21px;
  line-height: 1.35;
}

.blog-content h3 a {
  color: var(--ink);
}

.read-more {
  display: inline-flex;
  margin-top: 6px;
  color: var(--purple);
  font-weight: 800;
}

.blog-entry-card {
  max-width: 1040px;
  margin: 0 auto;
  border: 1px solid rgba(19, 3, 57, 0.1);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  padding: 34px;
}

.blog-entry-header {
  margin-bottom: 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(19, 3, 57, 0.1);
}

.blog-entry-header h2 {
  margin: 12px 0;
}

.blog-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--primary);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  padding: 13px 18px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.blog-back-link:hover {
  background: var(--surface);
  box-shadow: 0 16px 34px rgba(224, 201, 163, 0.18);
  transform: translateY(-2px);
}

.blog-entry-content {
  color: var(--body);
  line-height: 1.8;
}

.blog-entry-content h1,
.blog-entry-content h2,
.blog-entry-content h3,
.blog-entry-content h4 {
  margin: 28px 0 12px;
  color: var(--ink);
}

.blog-entry-content p,
.blog-entry-content ul,
.blog-entry-content ol {
  margin-bottom: 16px;
}

.blog-entry-content ul,
.blog-entry-content ol {
  padding-left: 22px;
}

.blog-entry-content li {
  margin-bottom: 8px;
}

.blog-entry-content img {
  max-width: 100%;
  height: auto;
  border-radius: 18px;
}

.blog-entry-content a {
  color: var(--purple);
  font-weight: 700;
}

.pricing-new-section,
.pricing-faq-section {
  background: var(--surface);
}

.pricing-switch-wrap {
  display: grid;
  justify-items: center;
  gap: 16px;
  margin-bottom: 34px;
}

.plan-toggle {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  border: 1px solid rgba(19, 3, 57, 0.1);
  border-radius: 999px;
  background: #f7f4ff;
  padding: 6px;
  gap: 6px;
}

.plan-toggle a {
  border-radius: 999px;
  color: var(--text);
  font-size: 15px;
  font-weight: 700;
  padding: 10px 22px;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.plan-toggle a:hover,
.plan-toggle a.active {
  background: var(--surface);
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.pricing-tenure-toggle {
  background: rgba(224, 201, 163, 0.18);
}

.pricing-plan-section {
  margin-top: 20px;
}

.pricing-plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 28px;
}

.pricing-plan-card {
  position: relative;
  overflow: hidden;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  border: 1px solid rgba(88, 70, 132, 0.16);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 248, 255, 0.98) 100%),
    var(--surface);
  box-shadow: 0 18px 50px rgba(19, 3, 57, 0.08);
  cursor: pointer;
  padding: 34px;
  text-align: left;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.pricing-plan-card:before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: linear-gradient(90deg, var(--gold), #f6e7bd, var(--purple));
}

.pricing-plan-card:after {
  content: "";
  position: absolute;
  top: -90px;
  right: -90px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(224, 201, 163, 0.2);
  pointer-events: none;
}

.pricing-plan-card:hover {
  transform: translateY(-7px);
  border-color: rgba(88, 70, 132, 0.34);
  box-shadow: 0 28px 80px rgba(19, 3, 57, 0.14);
}

.pricing-plan-card h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 10px;
  color: var(--primary);
  font-size: 27px;
  line-height: 1.15;
}

.plan-for {
  position: relative;
  z-index: 1;
  align-self: flex-start;
  border: 1px solid rgba(88, 70, 132, 0.14);
  border-radius: 999px;
  background: rgba(88, 70, 132, 0.08);
  color: var(--purple);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 7px 12px;
  text-transform: uppercase;
}

.pricing-storage {
  position: relative;
  z-index: 1;
  margin: 26px 0 20px;
  border: 1px solid rgba(19, 3, 57, 0.08);
  border-radius: 22px;
  background: var(--surface);
  padding: 20px;
  box-shadow: 0 12px 30px rgba(19, 3, 57, 0.06);
}

.pricing-storage strong {
  display: block;
  color: var(--primary);
  font-size: 42px;
  line-height: 1;
}

.pricing-storage span {
  display: block;
  margin-top: 8px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-plan-price {
  position: relative;
  z-index: 1;
  margin-bottom: 18px;
  color: var(--primary);
}

.pricing-plan-price strong {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}

.pricing-plan-price span {
  margin-left: 6px;
  color: var(--text);
  font-weight: 700;
}

.pricing-plan-price small {
  display: block;
  margin-top: 10px;
  color: var(--purple);
  font-size: 13px;
  font-weight: 700;
}

.pricing-plan-card .button {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-top: auto;
  justify-content: center;
  box-shadow: 0 16px 34px rgba(88, 70, 132, 0.22);
}

.pricing-plan-note {
  position: relative;
  z-index: 1;
  margin-top: 18px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.6;
  text-align: left;
}

.pricing-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.pricing-info-card {
  border: 1px solid rgba(19, 3, 57, 0.1);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  padding: 28px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pricing-info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.pricing-info-card h3 {
  margin-bottom: 12px;
  font-size: 20px;
}

.pricing-info-card p {
  text-align: left;
}

.pricing-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  overflow-y: auto;
  background: rgba(19, 3, 57, 0.72);
  padding: 20px;
}

.pricing-modal-overlay.show {
  display: flex;
}

.pricing-modal {
  position: relative;
  width: min(100%, 560px);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: var(--shadow-lg);
  padding: 34px;
}

.pricing-modal h2 {
  margin-bottom: 8px;
}

.pricing-modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 30px;
  line-height: 1;
}

.storage-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 22px 0;
}

.storage-card {
  border: 1px solid rgba(19, 3, 57, 0.1);
  border-radius: 18px;
  background: #f7f4ff;
  padding: 18px;
}

.storage-header {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.storage-value {
  margin-bottom: 8px;
  color: var(--primary);
  font-size: 26px;
  font-weight: 800;
}

.storage-card.cold .storage-value {
  color: var(--purple);
}

.storage-desc {
  color: var(--text);
  font-size: 13px;
  line-height: 1.55;
}

.modal-features {
  display: grid;
  gap: 10px;
  margin: 16px 0 24px;
  padding: 0;
  list-style: none;
}

.modal-features li {
  position: relative;
  padding-left: 24px;
  color: var(--body);
}

.modal-features li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
}

.modal-cta {
  width: 100%;
  border: 0;
  border-radius: 999px;
  background: var(--gold);
  color: var(--primary);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  padding: 14px 20px;
}

.register-page-section {
  max-width: 100%;
  overflow-x: clip;
  background: var(--surface);
}

html.register-new-page-root,
.register-new-page {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

.register-new-page .snaptide_terms_overlay_v1_unique {
  width: 100dvw;
  max-width: 100dvw;
  overflow-x: hidden;
}

.register-new-page .site-header,
.register-new-page main,
.register-new-page .site-footer {
  max-width: 100vw;
  overflow-x: clip;
}

.register-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.75fr);
  gap: 28px;
  align-items: start;
  max-width: 100%;
  width: 100%;
}

.register-form-card,
.register-summary-card {
  min-width: 0;
  border: 1px solid rgba(19, 3, 57, 0.1);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  padding: 32px;
}

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

.register-form .form-group {
  margin: 0;
}

.register-form label {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.register-form input,
.register-form select {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(19, 3, 57, 0.14);
  border-radius: 14px;
  background: var(--surface);
  color: var(--ink);
  padding: 12px 14px;
  font: inherit;
}

.register-form input:focus,
.register-form select:focus {
  border-color: var(--purple-2);
  box-shadow: 0 0 0 4px rgba(122, 100, 182, 0.12);
}

.register-submit-btn {
  width: 100%;
  border: 0;
  cursor: pointer;
  font: inherit;
}

.register-submit-btn:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.register-alert {
  margin-bottom: 20px;
  border-radius: 16px;
  background: rgba(239, 68, 68, 0.12);
  color: #b91c1c;
  padding: 13px 15px;
  font-size: 14px;
  font-weight: 700;
}

.register-form-status {
  display: none;
  border-radius: 16px;
  padding: 13px 15px;
  font-size: 14px;
  font-weight: 700;
}

.register-form-status.success,
.register-form-status.error {
  display: block;
}

.register-form-status.success {
  background: rgba(16, 185, 129, 0.12);
  color: #047857;
}

.register-form-status.error {
  background: rgba(239, 68, 68, 0.12);
  color: #b91c1c;
}

.input-success {
  border-color: #22c55e !important;
  background-color: #f0fdf4 !important;
}

.input-error {
  border-color: #ef4444 !important;
  background-color: #fef2f2 !important;
}

.snaptide_tos_wrapper_v1_unique {
  color: var(--text);
  font-size: 13px;
}

.snaptide_tos_label_v1_unique {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

.snaptide_tos_label_v1_unique input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin-top: 3px;
  accent-color: var(--purple);
}

.snaptide_tos_label_v1_unique a {
  color: var(--purple);
  font-weight: 800;
}

.register-summary-card {
  position: sticky;
  top: 24px;
}

.register-summary-card h3 {
  margin-bottom: 20px;
  font-size: 22px;
}

.summary-item,
.summary-total {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.summary-item {
  margin-bottom: 12px;
  color: var(--text);
  font-size: 15px;
}

.summary-item strong {
  color: var(--ink);
}

.summary-divider {
  height: 1px;
  background: rgba(19, 3, 57, 0.1);
  margin: 18px 0;
}

.coupon-box {
  display: flex;
  gap: 8px;
  margin: 16px 0;
}

.coupon-input {
  min-width: 0;
  flex: 1;
  border: 1px solid rgba(19, 3, 57, 0.14);
  border-radius: 14px;
  padding: 12px 14px;
  font: inherit;
}

.coupon-input.applied {
  color: #047857;
  font-weight: 800;
}

.coupon-btn {
  border: 0;
  border-radius: 999px;
  background: var(--gold);
  color: var(--primary);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  padding: 12px 16px;
}

.summary-item.discount strong {
  color: #047857;
}

.summary-total {
  align-items: center;
  color: var(--ink);
  font-size: 19px;
  font-weight: 800;
}

.summary-note {
  margin-top: 16px;
  color: var(--muted);
  font-size: 13px;
}

.snaptide_terms_overlay_v1_unique {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  background: rgba(19, 3, 57, 0.72);
  opacity: 0;
  padding: 20px;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.snaptide_terms_overlay_v1_unique.snaptide_active_v1_unique {
  visibility: visible;
  opacity: 1;
}

.snaptide_terms_container_v1_unique {
  position: relative;
  display: flex;
  width: min(100%, 860px);
  height: min(82vh, 760px);
  max-height: calc(100vh - 40px);
  flex-direction: column;
  border-radius: 24px;
  background: var(--surface);
  box-shadow: var(--shadow-lg);
  padding: 28px;
}

.snaptide_terms_title_v1_unique {
  margin-bottom: 14px;
  text-align: center;
  font-size: 24px;
}

.snaptide_terms_content_v1_unique {
  overflow-y: auto;
  color: var(--body);
  line-height: 1.7;
  padding-right: 8px;
}

.snaptide_terms_iframe_v1_unique {
  width: 100%;
  flex: 1;
  min-height: 420px;
  border: 0;
}

.snaptide_terms_content_v1_unique h2,
.snaptide_terms_content_v1_unique h3 {
  margin: 22px 0 10px;
  font-size: 20px;
}

.snaptide_terms_content_v1_unique p,
.snaptide_terms_content_v1_unique ul,
.snaptide_terms_content_v1_unique ol {
  margin-bottom: 14px;
}

.snaptide_terms_footer_v1_unique {
  margin-top: 18px;
  text-align: right;
}

.snaptide_terms_btn_primary_v1_unique,
.snaptide_terms_close_v1_unique {
  border: 0;
  cursor: pointer;
}

.snaptide_terms_btn_primary_v1_unique {
  border-radius: 999px;
  background: var(--gold);
  color: var(--primary);
  font: inherit;
  font-weight: 800;
  padding: 12px 22px;
}

.snaptide_terms_close_v1_unique {
  position: absolute;
  top: 14px;
  right: 16px;
  background: transparent;
  color: var(--ink);
  font-size: 28px;
  line-height: 1;
}

.login-new-section {
  background: var(--surface);
}

html.login-new-page-root,
.login-new-page {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

.login-new-page .site-header,
.login-new-page main,
.login-new-page .site-footer {
  width: 100%;
  max-width: 100vw;
  overflow-x: clip;
}

.login-new-page .site-header .shell,
.login-new-page .site-footer .shell,
.login-new-page main .shell {
  margin-right: auto;
  margin-left: auto;
}

.login-card {
  max-width: 560px;
  margin: 0 auto;
  border: 1px solid rgba(19, 3, 57, 0.1);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  padding: 34px;
}

.login-heading {
  margin-bottom: 26px;
}

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

.login-form-new label {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.login-form-new input[type="text"],
.login-form-new input[type="password"] {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(19, 3, 57, 0.14);
  border-radius: 14px;
  background: var(--surface);
  color: var(--ink);
  padding: 12px 14px;
  font: inherit;
}

.login-form-new input:focus {
  border-color: var(--purple-2);
  box-shadow: 0 0 0 4px rgba(122, 100, 182, 0.12);
  outline: none;
}

.login-options-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--text);
  font-size: 14px;
}

.login-options-row .remember {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.forgot-link,
.login-footer-new a {
  color: var(--purple);
  font-weight: 800;
}

.login-submit-btn {
  width: 100%;
  border: 0;
  cursor: pointer;
  font: inherit;
}

.login-footer-new {
  margin-top: 26px;
  text-align: center;
}

.status-message {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 16px;
  border-left: 4px solid transparent;
  border-radius: 14px;
  padding: 13px 15px;
  font-size: 14px;
  line-height: 1.45;
}

.status-message strong {
  white-space: nowrap;
}

.status-message.success {
  border-left-color: #10b981;
  background: rgba(16, 185, 129, 0.12);
  color: #047857;
}

.status-message.error {
  border-left-color: #ef4444;
  background: rgba(239, 68, 68, 0.12);
  color: #b91c1c;
}

.status-message.warning {
  border-left-color: var(--gold);
  background: rgba(224, 201, 163, 0.2);
  color: var(--primary);
}

.st-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(19, 3, 57, 0.72);
  padding: 20px;
}

.st-modal-overlay.show {
  display: flex;
}

.st-modal {
  width: min(100%, 430px);
  border-radius: 24px;
  background: var(--surface);
  padding: 34px 30px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.st-icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 66px;
  height: 66px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.12);
}

.st-check-icon,
.st-error-icon {
  width: 34px;
  height: 34px;
}

.st-check-icon {
  fill: #10b981;
}

.st-error-icon-wrapper {
  background: rgba(239, 68, 68, 0.12);
}

.st-error-icon {
  fill: #ef4444;
}

.st-modal-title {
  margin-bottom: 10px;
  font-size: 24px;
}

.st-modal-text {
  margin-bottom: 24px;
}

.st-modal-btn {
  border: 0;
  border-radius: 999px;
  background: var(--purple);
  color: var(--surface);
  cursor: pointer;
  padding: 13px 28px;
  font: inherit;
  font-weight: 700;
}

.st-error-btn {
  background: #dc2626;
}

.cta-band {
  padding: 82px 0;
  background: #4E3B7D;
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-panel h2 {
  margin-bottom: 16px;
  color: var(--surface);
  font-size: clamp(31px, 4.4vw, 52px);
}

.cta-panel h2 span {
  color: var(--gold);
}

.cta-panel p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 24px;
}

.price-card {
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.price-card.featured {
  transform: translateY(-18px);
}

.price-title {
  background: var(--purple);
  color: var(--surface);
  padding: 22px 26px;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
}

.featured .price-title {
  background: var(--primary);
}

.price-body {
  display: flex;
  min-height: calc(100% - 72px);
  flex-direction: column;
  padding: 30px;
}

.description {
  color: var(--primary);
  text-align: center;
}

.price-body ul {
  display: grid;
  gap: 13px;
  margin: 18px 0 28px;
  padding: 0;
  list-style: none;
}

.price-body li {
  position: relative;
  padding-left: 26px;
  color: var(--text);
}

.price-body li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
}

.price {
  margin-top: auto;
  color: var(--primary);
  text-align: center;
}

.price span,
.price small {
  display: block;
}

.price span {
  padding: 8px 0;
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.06em;
}

.price small {
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.price-card .button {
  width: 100%;
  margin-top: 24px;
}

.offer-pill {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2px;
  margin: 4px 0 22px;
  border: 1px solid rgba(224, 201, 163, 0.55);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(224, 201, 163, 0.24), rgba(255, 255, 255, 0.82));
  padding: 13px 14px;
  text-align: center;
}

.offer-pill strong {
  color: var(--primary);
  font-size: 15px;
}

.offer-pill span {
  color: var(--text);
  font-size: 12px;
  font-weight: 600;
}

.pricing-note {
  max-width: 900px;
  margin: 12px auto 0;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  padding: 16px 18px;
  color: var(--text);
  font-size: 13px;
}

.stats-section {
  color: var(--surface);
  background: #4E3B7D;
}

.section-heading.dark h2 {
  color: var(--surface);
}

.section-heading.dark p:not(.eyebrow) {
  color: var(--muted);
}

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

.stat-card {
  border-color: rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.08);
  padding: 34px;
  text-align: center;
  box-shadow: none;
}

.stat-card strong {
  display: block;
  color: var(--surface);
  font-size: 44px;
  line-height: 1;
}

.stat-card span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.testimonial-card {
  border-color: rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
  padding: 28px;
}

.testimonial-card img {
  width: 74px;
  height: 74px;
  border: 3px solid var(--gold);
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-card h3 {
  margin: 18px 0 12px;
  color: var(--surface);
  font-size: 17px;
  letter-spacing: -0.02em;
}

.testimonial-card h3 a {
  color: var(--gold);
}

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

.examples-section {
  background: var(--bg);
}

.subheading {
  margin: 0 0 24px;
  font-size: 24px;
}

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

.example-card {
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.example-card div {
  padding: 24px;
}

.example-card h3 {
  margin-bottom: 10px;
  font-size: 21px;
}

.example-card p {
  min-height: 78px;
  font-size: 14px;
}

.example-card span {
  display: inline-block;
  margin-top: 18px;
  color: var(--purple-2);
  font-weight: 700;
}

.whatsapp-support-card {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 34px;
  padding: 24px;
}

.wa-icon {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25d366;
  color: var(--surface);
  font-size: 13px;
  font-weight: 800;
}

.wa-icon i {
  font-size: 26px;
  line-height: 1;
}

.whatsapp-support-card h4 {
  margin-bottom: 3px;
  font-size: 18px;
}

.whatsapp-support-card .button {
  margin-left: auto;
  white-space: nowrap;
}

.site-footer {
  padding: 72px 0 34px;
  color: var(--muted);
  background: #4E3B7D;
}

.footer-contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 36px;
  text-align: center;
}

.footer-contact-grid div {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 18px;
}

.footer-contact-grid strong,
.footer-contact-grid a,
.site-footer h2 {
  color: var(--surface);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1fr 1fr;
  gap: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding: 38px 0;
}

.site-footer h2 {
  margin-bottom: 16px;
  font-size: 18px;
}

.footer-grid a {
  display: block;
  margin: 8px 0;
  color: var(--muted);
}

.footer-grid a:hover,
.footer-bottom a {
  color: var(--gold);
}

.security-logos {
  display: flex;
  gap: 14px;
  margin-top: 18px;
}

.security-logos img {
  height: 78px;
  width: auto;
}

.newsletter-form {
  display: grid;
  gap: 10px;
}

.newsletter-form input {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--surface);
  padding: 13px 15px;
  font: inherit;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.62);
}

.newsletter-form button {
  border: 0;
  border-radius: 999px;
  background: var(--gold);
  color: var(--primary);
  cursor: pointer;
  padding: 13px 18px;
  font: inherit;
  font-weight: 700;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 28px;
  font-size: 13px;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.social-links a {
  color: var(--muted);
}

#back-to-top {
  display: none;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 18px 42px rgba(37, 211, 102, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 54px rgba(37, 211, 102, 0.36);
}

.whatsapp-float i {
  font-size: 28px;
  line-height: 1;
}

@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-bottom: 80px;
  }

  .hero-visual {
    min-height: 520px;
  }

  .phone-card {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }

  .feature-grid,
  .pricing-grid,
  .examples-grid,
  .stats-grid,
  .workflow-grid,
  .contact-cards,
  .blog-grid,
  .pricing-plan-grid,
  .pricing-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .price-card.featured {
    transform: none;
  }

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

  .feature-row-detail,
  .feature-row-detail.reverse {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .feature-row-detail.reverse .feature-text,
  .feature-row-detail.reverse .feature-media {
    order: initial;
  }
}

@media (max-width: 1100px) {
  .register-layout {
    grid-template-columns: 1fr;
  }

  .register-summary-card {
    position: static;
  }
}

@media (max-width: 760px) {
  .site-header {
    overflow: visible;
    z-index: 20;
  }

  .shell {
    width: min(100% - 28px, 1170px);
  }

  .nav-bar {
    min-height: 78px;
    z-index: 100;
  }

  .brand img {
    max-height: 50px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    z-index: 200;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 22px;
    background: rgba(19, 3, 57, 0.96);
    padding: 12px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 12px 14px;
  }

  .hero {
    gap: 30px;
    padding: 42px 0 58px;
  }

  .hero h1 {
    font-size: 38px;
    font-weight:500;
  }

  .hero-text {
    font-size: 15px;
  }

  .hero-actions,
  .cta-panel,
  .whatsapp-support-card,
  .footer-bottom {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-visual {
    min-height: 430px;
  }

  .phone-card {
    width: min(330px, 100%);
  }

  .floating-card {
    min-width: 145px;
    padding: 16px;
  }

  .floating-card strong {
    font-size: 26px;
  }

  .card-left {
    left: 0;
    top: 80px;
  }

  .card-right {
    right: 0;
    bottom: 20px;
  }

  .section {
    padding: 64px 0;
  }

  .inner-hero {
    padding: 58px 0 72px;
  }

  .feature-grid,
  .pricing-grid,
  .examples-grid,
  .stats-grid,
  .workflow-grid,
  .contact-cards,
  .testimonials-grid,
  .footer-contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .price-body,
  .feature-card,
  .testimonial-card,
  .feature-row-detail,
  .workflow-card {
    padding: 24px;
  }

  .workflow-card h3,
  .workflow-card > p {
    min-height: auto;
  }

  .workflow-card img {
    height: 230px;
  }

  .contact-form-wrapper {
    padding: 26px;
  }

  .phone-group,
  .captcha-box {
    flex-direction: column;
  }

  .about-split-grid,
  .about-split-grid.reverse,
  .about-highlight-panel {
    grid-template-columns: 1fr;
  }

  .legal-card {
    padding: 24px;
  }

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

  .blog-entry-card {
    padding: 24px;
  }

  .pricing-plan-grid,
  .pricing-info-grid,
  .storage-summary,
  .register-layout {
    grid-template-columns: 1fr;
  }

  .pricing-plan-card,
  .pricing-modal,
  .register-form-card,
  .register-summary-card {
    padding: 24px;
  }

  .pricing-plan-card h3 {
    font-size: 24px;
  }

  .pricing-storage strong,
  .pricing-plan-price strong {
    font-size: 38px;
  }

  .snaptide_terms_overlay_v1_unique {
    align-items: stretch;
    padding: 14px 22px;
  }

  .snaptide_terms_container_v1_unique {
    width: min(100%, 420px);
    height: calc(100vh - 28px);
    max-height: calc(100vh - 28px);
    margin: 0 auto;
    border-radius: 18px;
    padding: 22px 18px;
  }

  .snaptide_terms_iframe_v1_unique {
    min-height: 0;
  }

  .register-summary-card {
    position: static;
  }

  .coupon-box,
  .phone-group {
    flex-direction: column;
  }

  .plan-toggle {
    width: 100%;
    border-radius: 22px;
  }

  .plan-toggle a {
    flex: 1 1 auto;
    padding: 10px 12px;
    text-align: center;
  }

  .legal-meta-grid {
    display: grid;
  }

  .isd-code {
    max-width: none;
  }

  .captcha-box {
    align-items: stretch;
  }

  .captcha-box img {
    align-self: flex-start;
  }

  .captcha-refresh {
    width: 100%;
  }

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

  .feature-media img {
    max-height: 220px;
  }

  .feature-text p {
    text-align: left;
  }

  .stat-card strong,
  .price span {
    font-size: 38px;
  }

  .example-card p {
    min-height: auto;
  }

  .whatsapp-support-card .button {
    margin-left: 0;
  }
}
