@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@400;600;800;900&family=Permanent+Marker&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

:root {
  --bg-color: #050505;
  --text-primary: #fcfcfc;
  --text-secondary: #a3a3a3;
  --accent-color: #ffffff;
  --accent-glow: rgba(255, 255, 255, 0.1);
  --accent-silver: #c0c0c0;
  --surface-color: rgba(255, 255, 255, 0.03);
  --surface-border: rgba(255, 255, 255, 0.08);
  
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
  scroll-padding-top: 100px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-color);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

section {
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

/* Snap sections need dynamic viewport height and careful padding on mobile so they fit the screen */
.snap-section {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: 1rem 1rem;
}

@media (min-width: 768px) {
  .snap-section {
    padding: 4rem 1rem;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  letter-spacing: -0.02em;
}

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

button, input, textarea {
  font-family: inherit;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-padding {
  padding: 8rem 0;
}

@media (max-width: 768px) {
  .section-padding {
    padding: 4rem 0;
  }
  .container {
    padding: 0 1rem;
  }
}

/* Utilities */
.glass {
  background: var(--surface-color);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--surface-border);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
}

.text-gradient {
  background: linear-gradient(135deg, #171717 0%, #737373 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-accent {
  background: linear-gradient(135deg, #e0e0e0 0%, #ffffff 50%, #a0a0a0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Scroll Animations — Premium Reveals */

/* Blur-up: starts blurred, scaled down, and offset — sharpens into place */
.fade-up {
  opacity: 0;
  filter: blur(10px);
  transform: translateY(50px) scale(0.97);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              filter 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

/* 3D swing from left — rotates in from a perspective tilt */
.fade-left {
  opacity: 0;
  filter: blur(6px);
  transform: perspective(800px) rotateY(8deg) translateX(-60px);
  transform-origin: left center;
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              filter 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

/* 3D swing from right */
.fade-right {
  opacity: 0;
  filter: blur(6px);
  transform: perspective(800px) rotateY(-8deg) translateX(60px);
  transform-origin: right center;
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              filter 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Blur dissolve — ghostly emergence */
.fade-in {
  opacity: 0;
  filter: blur(16px);
  transform: scale(1.04);
  transition: opacity 1.2s ease-out,
              filter 1.4s ease-out,
              transform 1.4s ease-out;
}

.in-view {
  opacity: 1 !important;
  transform: none !important;
  filter: blur(0) !important;
}

/* Simple fade in for heavy elements (prevents crashing on complex gradients) */
.fade-in-simple {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* Scroll Reveal Text Animation */
.reveal-word {
  display: inline-block;
  opacity: 0.1;
  filter: blur(4px);
  transform: rotate(3deg) translateY(5px);
  transition: opacity 0.4s ease-out, filter 0.4s ease-out, transform 0.4s ease-out;
  white-space: pre-wrap;
  will-change: opacity, filter, transform;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-color);
}
::-webkit-scrollbar-thumb {
  background: #222;
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: #333;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(18, 15, 23, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 1rem 2rem;
  color: #f8f8f8;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: inherit;
}

/* Integrated Dock Navigation */
.dock-container {
  display: flex;
  align-items: center;
}

.dock-panel {
  display: flex;
  align-items: flex-end;
  gap: 0.25rem;
  padding: 0.6rem 0.75rem;
  background: rgba(20, 20, 20, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.dock-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-secondary);
  text-decoration: none;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1),
              width 0.2s cubic-bezier(0.16, 1, 0.3, 1),
              height 0.2s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.2s ease,
              color 0.2s ease;
  will-change: transform, width, height;
  cursor: pointer;
}

.dock-item svg {
  width: 22px;
  height: 22px;
  transition: width 0.2s cubic-bezier(0.16, 1, 0.3, 1),
              height 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
}

.dock-item:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--text-primary);
}

/* Tooltip label */
.dock-item::after {
  content: attr(data-label);
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: rgba(20, 20, 20, 0.9);
  backdrop-filter: blur(12px);
  color: var(--text-primary);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 0.35rem 0.75rem;
  border-radius: 8px;
  white-space: nowrap;
  border: 1px solid rgba(255, 255, 255, 0.08);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.dock-item:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Active dot indicator */
.dock-item.active::before {
  content: '';
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background: var(--text-primary);
  border-radius: 50%;
}

@media (max-width: 768px) {
  .navbar {
    padding: 0.75rem 1rem;
  }
  .dock-panel {
    padding: 0.4rem 0.5rem;
    gap: 0.2rem;
  }
  .dock-item {
    width: 36px !important;
    height: 36px !important;
    border-radius: 10px;
  }
  .dock-item svg {
    width: 18px !important;
    height: 18px !important;
  }
}

@media (max-width: 768px) {
  .dock-panel {
    padding: 0.5rem 0.6rem;
    gap: 0.2rem;
    border-radius: 16px;
  }

  .dock-item {
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }

  .dock-item svg {
    width: 20px;
    height: 20px;
  }
}

/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 6rem;
  overflow: hidden;
  background-color: var(--bg-color);
}

/* Card Swap Mobile Adjustments */
@media (max-width: 768px) {
  html {
    scroll-snap-type: none !important;
  }
  section {
    scroll-snap-align: none !important;
  }
  .snap-section {
    min-height: auto !important;
    padding: 6rem 1rem 4rem 1rem !important;
  }
  #transparency .fade-up {
    gap: 1.5rem !important;
  }
  .card-swap-container {
    height: 300px !important;
  }
  .swap-card {
    padding: 1.5rem !important;
    height: calc(100% - 40px) !important;
  }
  .duration-toggle {
    width: 100% !important;
    justify-content: space-between !important;
  }
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  .btn-primary, .btn-glass {
    width: 100%;
    text-align: center;
  }
  #about .scroll-reveal-box {
    height: 60vh !important;
    padding: 1.5rem 1rem !important;
  }
  #about .scroll-reveal-text {
    padding-top: 60px !important;
    padding-bottom: 120px !important;
  }
}

.hero-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-2deg);
  font-family: 'Permanent Marker', cursive;
  font-size: clamp(5rem, 25vw, 30rem);
  color: var(--surface-border);
  white-space: nowrap;
  line-height: 0.8;
  text-align: center;
  z-index: 1;
  pointer-events: none;
  user-select: none;
  opacity: 0.05;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
}

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: clamp(3rem, 5vw + 1rem, 5rem);
  font-weight: 800;
  line-height: 1.1;
  font-family: var(--font-heading);
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}

/* Trust Metrics Banner */
@media (min-width: 769px) {
  .trust-middle-column {
    border-left: 1px solid rgba(255,255,255,0.05);
    border-right: 1px solid rgba(255,255,255,0.05);
  }
}

@media (max-width: 768px) {
  .trust-middle-column {
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 2rem 1rem !important;
  }
}

.hero-desc {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--accent-color);
  color: #050505;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.2s;
  box-shadow: 0 0 20px var(--accent-glow);
  border: none;
  cursor: pointer;
  display: inline-block;
}

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

.btn-glass {
  background: var(--surface-color);
  color: white;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.2s;
  border: 1px solid var(--surface-border);
  backdrop-filter: blur(20px);
  cursor: pointer;
  display: inline-block;
}

.btn-glass:hover {
  background: rgba(255,255,255,0.08);
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.plan-card {
  padding: 2.5rem;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  border: 1px solid var(--surface-border);
  transition: transform 0.3s ease;
}

.plan-card.recommended {
  transform: scale(1.05);
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

@media (max-width: 768px) {
  .plan-card.recommended {
    transform: scale(1);
  }
}

.duration-toggle {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  background: var(--surface-border);
  padding: 0.4rem;
  border-radius: 100px;
  gap: 0.2rem;
  max-width: fit-content;
  margin: 0 auto;
}

.duration-toggle::-webkit-scrollbar {
  display: none;
}

.duration-toggle button {
  padding: 0.8rem 1.5rem;
  border-radius: 100px;
  border: none;
  background: transparent;
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  white-space: nowrap;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .duration-toggle {
    justify-content: space-between;
    padding: 0.3rem;
  }
  .duration-toggle button {
    padding: 0.5rem 0.2rem !important;
    font-size: 0.75rem !important;
    flex: 1;
    text-align: center;
  }
}

.duration-toggle button.active {
  background: var(--bg-color);
  color: var(--text-primary);
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.plan-price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
}

/* Portfolio Circular Gallery */
.circular-gallery {
  width: 100%;
  height: 600px;
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  cursor: grab;
}

.circular-gallery:active {
  cursor: grabbing;
}

@media (max-width: 768px) {
  .circular-gallery {
    height: 400px;
  }
}
.swap-card {
  height: calc(100% - 40px);
}

/* Contact Form */
.contact-form input, .contact-form textarea {
  background: rgba(0,0,0,0.03);
  border: 1px solid var(--surface-border);
  padding: 1rem;
  border-radius: 8px;
  color: inherit;
  width: 100%;
  outline: none;
  transition: border-color 0.3s ease;
}

.contact-form input:focus, .contact-form textarea:focus {
  border-color: rgba(255, 255, 255, 0.3);
}

.contact-form label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  display: block;
  margin-bottom: 0.5rem;
}

/* ═══════════════════════════════════════════════
   SHINY TEXT EFFECT
   ═══════════════════════════════════════════════ */

@keyframes shinyTextSweep {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.shiny-text {
  background: linear-gradient(
    120deg,
    #b5b5b5 0%,
    #b5b5b5 35%,
    #ffffff 50%,
    #b5b5b5 65%,
    #b5b5b5 100%
  );
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shinyTextSweep 2s linear infinite;
}

/* Override for the signature label — keep gold tones */
.signature-label.shiny-text {
  background: linear-gradient(
    120deg,
    #c9a227 0%,
    #c9a227 35%,
    #f5e6a3 50%,
    #c9a227 65%,
    #c9a227 100%
  );
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shinyTextSweep 2s linear infinite;
}

/* Override for the signature title — warm cream/gold shine */
.signature-title.shiny-text {
  background: linear-gradient(
    120deg,
    #f8f4e8 0%,
    #f8f4e8 35%,
    #ffffff 50%,
    #f8f4e8 65%,
    #f8f4e8 100%
  );
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shinyTextSweep 2s linear infinite;
}

.signature-title.shiny-text em {
  -webkit-text-fill-color: transparent;
  background: linear-gradient(
    120deg,
    #c9a227 0%,
    #c9a227 35%,
    #f5e6a3 50%,
    #c9a227 65%,
    #c9a227 100%
  );
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  animation: shinyTextSweep 2s linear infinite;
  animation-delay: 0.3s;
}

/* ═══════════════════════════════════════════════
   THE SIGNATURE BUILD — A Different Category
   ═══════════════════════════════════════════════ */

@keyframes signatureBorderRotate {
  0%   { --border-angle: 0deg; }
  100% { --border-angle: 360deg; }
}

@keyframes signatureGlow {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50%      { opacity: 0.6; transform: scale(1.05); }
}

@keyframes signatureShimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@property --border-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

.signature-card {
  grid-column: 1 / -1;
  margin-top: 2rem;
  position: relative;
  border-radius: 28px;
  padding: 2px;
  background: conic-gradient(
    from var(--border-angle, 0deg),
    #c9a227 0%,
    #f5d778 15%,
    #c9a227 30%,
    #8b6914 50%,
    #c9a227 70%,
    #f5d778 85%,
    #c9a227 100%
  );
  animation: signatureBorderRotate 6s linear infinite;
  overflow: hidden;
}

.signature-card-inner {
  background: linear-gradient(165deg, #0a0a0a 0%, #111 40%, #0d0b08 100%);
  border-radius: 26px;
  padding: 3.5rem;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto 1.2fr;
  grid-template-rows: auto auto;
  gap: 2.5rem 3rem;
  align-items: center;
}

.signature-glow {
  position: absolute;
  top: -30%;
  right: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.12) 0%, transparent 70%);
  animation: signatureGlow 5s ease-in-out infinite;
  pointer-events: none;
}

/* Header */
.signature-header {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
}

.signature-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #c9a227;
  margin-bottom: 1rem;
  position: relative;
}

.signature-label::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 30px;
  height: 1px;
  background: #c9a227;
}

.signature-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 800;
  color: #f8f4e8;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.signature-title em {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-style: italic;
  font-weight: 400;
  color: #c9a227;
  display: inline-block;
}

.signature-tagline {
  font-size: 1.05rem;
  color: #8a8578;
  line-height: 1.6;
  max-width: 400px;
}

/* Divider */
.signature-divider {
  grid-column: 2 / 3;
  grid-row: 1 / 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  color: #c9a227;
  opacity: 0.4;
  align-self: stretch;
}

.signature-divider span {
  flex: 1;
  width: 1px;
  background: linear-gradient(to bottom, transparent, #c9a227, transparent);
}

/* Features */
.signature-features {
  grid-column: 3 / 4;
  grid-row: 1 / 2;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.signature-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.signature-feature-icon {
  color: #c9a227;
  font-size: 0.85rem;
  margin-top: 3px;
  flex-shrink: 0;
  opacity: 0.7;
}

.signature-feature strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: #e8e0cc;
  margin-bottom: 0.3rem;
}

.signature-feature p {
  font-size: 0.85rem;
  color: #7a7568;
  line-height: 1.5;
  margin: 0;
}

/* Footer */
.signature-footer {
  grid-column: 1 / -1;
  grid-row: 2 / 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid rgba(201, 162, 39, 0.1);
}

.signature-price-area {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.signature-price-label {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: #f8f4e8;
  letter-spacing: -0.01em;
}

.signature-price-sub {
  font-size: 0.85rem;
  color: #6b6558;
}

.signature-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  border: 1px solid #c9a227;
  border-radius: 8px;
  color: #c9a227;
  font-weight: 600;
  font-size: 1.05rem;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  background: transparent;
  cursor: pointer;
}

.signature-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.15), rgba(201, 162, 39, 0.05));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.signature-cta:hover {
  color: #0a0a0a;
  border-color: #c9a227;
  background: #c9a227;
  box-shadow: 0 0 30px rgba(201, 162, 39, 0.3);
  transform: translateY(-2px);
}

.signature-cta:hover::before {
  opacity: 1;
}

.signature-cta svg {
  transition: transform 0.3s ease;
}

.signature-cta:hover svg {
  transform: translateX(4px);
  stroke: #0a0a0a;
}

/* Responsive — stack on mobile */
@media (max-width: 900px) {
  .signature-card-inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto;
    padding: 2.5rem 2rem;
    gap: 2rem;
  }

  .signature-header {
    grid-column: 1;
    grid-row: 1;
  }

  .signature-divider {
    grid-column: 1;
    grid-row: 2;
    flex-direction: row;
    align-self: auto;
  }

  .signature-divider span {
    flex: 1;
    height: 1px;
    width: auto;
    background: linear-gradient(to right, transparent, #c9a227, transparent);
  }

  .signature-features {
    grid-column: 1;
    grid-row: 3;
  }

  .signature-footer {
    grid-column: 1;
    grid-row: 4;
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  .signature-price-area {
    align-items: center;
  }

  .signature-cta {
    width: 100%;
    justify-content: center;
  }

  .signature-tagline {
    max-width: 100%;
  }
}

