/* ============================================
   ArtSilk Digital — Main Stylesheet
   Replicating dark theme from Wix site
   ============================================ */

/* === Reset & Base === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  background-color: #000;
  color: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul, ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* === Typography === */
h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 300;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 400;
  line-height: 1.4;
}

p {
  font-size: 1rem;
  line-height: 1.7;
  color: #ccc;
}

.tagline {
  font-size: 1.1rem;
  font-style: italic;
  color: #bbb;
  max-width: 700px;
}

/* === Layout === */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 80px 0;
}

/* === Header / Navigation === */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 20px 0;
  transition: padding 0.3s ease;
}

.header.scrolled {
  padding: 12px 0;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-text-img {
  height: 18px;
  width: auto;
  display: inline-block;
}

.logo-text {
  font-size: 1.4rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.logo-icon {
  height: 42px;
  width: auto;
  display: inline-block;
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav a {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #e0e0e0;
  transition: color 0.3s ease;
  position: relative;
}

.nav a:hover,
.nav a.active {
  color: #fff;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: #fff;
  transition: width 0.3s ease;
}

.nav a:hover::after,
.nav a.active::after {
  width: 100%;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}

/* === Hero Section === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  top: -10%;
  left: -10%;
  width: 120%;
  height: 120%;
  background: url('../img/bg_hero.png') center/cover no-repeat;
  animation: heroBgPan 30s ease-in-out infinite alternate;
  z-index: 0;
}

@keyframes heroBgPan {
  0% {
    transform: scale(1) translate(0, 0);
  }
  25% {
    transform: scale(1.05) translate(-1%, -1%);
  }
  50% {
    transform: scale(1.08) translate(1%, -0.5%);
  }
  75% {
    transform: scale(1.04) translate(-0.5%, 1%);
  }
  100% {
    transform: scale(1.02) translate(0.5%, 0.5%);
  }
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.75) 70%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
}

/* === Analytics Page Background === */
.hero--analytics::after {
  background: url('../img/bg_analytics.png') center top/cover no-repeat;
}

.hero--analytics .hero-content {
  max-width: 1100px;
  align-self: center;
  padding-top: 20px;
  text-align: center;
}

.hero--analytics .hero-content .tagline {
  max-width: 900px;
  margin: 0 auto;
}

/* === Design Page Background === */
.hero--design::after {
  background: url('../img/bg_design.png') center top/cover no-repeat;
  top: -50%;
  height: 170%;
}

.hero--design .hero-content {
  max-width: 1100px;
  align-self: center;
  text-align: center;
}

.hero--design .hero-content h1 {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.hero--design .hero-content .tagline {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-style: italic;
}

.hero--design .hero-subtitle {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: #ddd;
  margin-top: 20px;
  font-weight: 300;
}

/* === Four-card Grid (2x2) === */
.hero-services--four {
  grid-template-columns: repeat(2, 1fr) !important;
  max-width: 900px !important;
  gap: 32px !important;
}

/* === Two-card Grid (Management) === */
.hero-services--two {
  grid-template-columns: repeat(2, 1fr) !important;
  max-width: 900px !important;
  gap: 32px !important;
}

/* === Management Page Background === */
.hero--management::after {
  background: url('../img/bg_management.png') center top/cover no-repeat;
  top: -30%;
  height: 150%;
}

.hero--management::before {
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.8) 70%);
}

.hero--management .hero-content {
  max-width: 1100px;
  align-self: center;
  text-align: center;
}

.hero--management .hero-content h1 {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.hero--management .hero-content .tagline {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-style: italic;
  max-width: 650px;
  margin: 0 auto;
}

/* === Full-page hero (hero + cards in one section) === */
.hero--full {
  min-height: auto;
  padding: 160px 24px 80px;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.hero-content--top {
  margin-bottom: 0;
}

.hero-services {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  width: 100%;
  max-width: 1100px;
  margin-top: 80px;
  padding-bottom: 40px;
}

.glass-card--service {
  text-align: center;
  padding: 48px 28px 40px;
}

.glass-card--service .service-icon-box {
  margin: 0 auto 24px;
  width: 80px;
  height: 80px;
  padding: 18px;
  background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
  border-radius: 16px;
  animation: iconFloat 4s ease-in-out infinite;
}

.service-icon-box--fa {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.service-icon-box--fa i {
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.8);
}

/* === Three-column Glass Cards === */
.glass-cards--three {
  grid-template-columns: repeat(3, 1fr);
}

.hero h1 {
  margin-bottom: 24px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
}

.hero .tagline {
  margin: 0 auto;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.9);
}

/* === Page Hero (shorter for inner pages) === */
.page-hero {
  padding: 160px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: url('../img/bg_page_hero.png') center/cover no-repeat;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.65) 70%);
  z-index: 1;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.page-hero h1 {
  margin-bottom: 24px;
}

.page-hero .tagline {
  margin: 0 auto;
}

/* === Section Headers === */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  margin-bottom: 16px;
}

/* === Glass Cards (Mission/Vision) === */
.glass-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 80px;
  width: 100%;
  max-width: 900px;
}

.glass-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 40px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s ease, transform 0.3s ease, background 0.4s ease;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(100, 180, 255, 0.6), transparent);
  border-radius: 2px;
}

.glass-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-4px);
}

.glass-card h3 {
  font-family: 'Rajdhani', 'Helvetica Neue', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: #fff;
}

.glass-card p {
  font-style: italic;
  color: #bbb;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* === Service Rows (Analytics-style layout) === */
.service-rows {
  padding: 0;
}

.service-rows .container {
  max-width: 1000px;
}

.service-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 40px;
  align-items: start;
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.service-row:last-child {
  border-bottom: none;
}

.service-icon-box {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #c0605a, #a04848);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  color: #fff;
  position: relative;
  overflow: hidden;
  animation: iconFloat 4s ease-in-out infinite;
  box-shadow: 0 8px 32px rgba(192, 96, 90, 0.2);
}

.service-icon-box::after {
  content: '';
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 2px;
}

.service-icon-box svg {
  width: 100%;
  height: 100%;
}

@keyframes iconFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

/* Service row entrance animation */
.service-row {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.service-row.visible {
  opacity: 1;
  transform: translateX(0);
}

.service-row:nth-child(2) {
  transition-delay: 0.2s;
}

.service-row:nth-child(3) {
  transition-delay: 0.4s;
}

.service-row-content h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: #fff;
}

.service-row-content p {
  color: #aaa;
  font-size: 1rem;
  line-height: 1.8;
}

/* === Tablet Breakpoint === */
@media (max-width: 1024px) and (min-width: 769px) {
  .hero-services {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-services--four {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 768px) {
  .service-row {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }

  .service-icon-box {
    margin: 0 auto;
  }
}

/* === Service Cards === */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  padding: 40px 0;
}

.service-card {
  padding: 40px 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.3s ease, background 0.3s ease;
}

.service-card:hover {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.04);
}

.service-card h3 {
  margin-bottom: 16px;
  color: #fff;
}

.service-card p {
  font-size: 0.95rem;
  color: #aaa;
}

/* === Mission / Vision Blocks === */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
  padding: 60px 0;
}

.value-block {
  text-align: center;
}

.value-block h3 {
  margin-bottom: 16px;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.value-block p {
  font-style: italic;
  color: #bbb;
}

/* === Contact Form === */
.contact-section {
  padding: 80px 0;
}

.contact-intro {
  text-align: center;
  margin-bottom: 48px;
}

.contact-methods {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-bottom: 48px;
}

.contact-method {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  color: #fff;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.contact-method:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.05);
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  color: #fff;
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #666;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.4);
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form button {
  align-self: flex-start;
  padding: 14px 40px;
  background: #fff;
  color: #000;
  border: none;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.contact-form button:hover {
  background: #e0e0e0;
  transform: translateY(-1px);
}

/* === Footer === */
.footer {
  padding: 40px 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.footer-symbol {
  height: 50px;
  width: auto;
}

.footer-text {
  height: 16px;
  width: auto;
}

.footer p {
  font-size: 0.85rem;
  color: #666;
}

/* === NFC Contact Card === */
.nfc-card {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
}

.nfc-card-content {
  text-align: center;
  max-width: 400px;
  width: 100%;
}

.nfc-card-content .logo {
  justify-content: center;
  margin-bottom: 48px;
}

.nfc-card-content h2 {
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #888;
  margin-bottom: 24px;
}

.nfc-card-content h1 {
  font-size: 2rem;
  margin-bottom: 32px;
}

.nfc-info {
  text-align: left;
  margin-bottom: 40px;
}

.nfc-info-row {
  display: flex;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nfc-info-label {
  width: 80px;
  font-size: 0.85rem;
  color: #888;
  text-transform: capitalize;
}

.nfc-info-value {
  flex: 1;
  color: #fff;
  font-size: 0.95rem;
}

.nfc-info-value a {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.3);
}

.nfc-info-value a:hover {
  text-decoration-color: #fff;
}

.save-contact-btn {
  display: inline-block;
  padding: 14px 32px;
  background: #fff;
  color: #000;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: background 0.3s ease, transform 0.2s ease;
}

.save-contact-btn:hover {
  background: #e0e0e0;
  transform: translateY(-1px);
}

/* === Responsive === */
@media (max-width: 768px) {
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .nav.open {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    min-height: 80vh;
    padding: 100px 24px 60px;
  }

  .page-hero {
    padding: 120px 24px 60px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .glass-cards {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 60px;
  }

  .glass-cards--three {
    grid-template-columns: 1fr;
  }

  .hero-services {
    grid-template-columns: 1fr;
    margin-top: 60px;
  }

  .hero-services--two {
    grid-template-columns: 1fr !important;
  }

  .hero-services--four {
    grid-template-columns: 1fr !important;
  }

  .contact-methods {
    flex-direction: column;
    align-items: center;
  }

  .contact-form-wrapper {
    padding: 32px 20px;
    margin-top: 40px;
  }

  section {
    padding: 60px 0;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.8rem;
  }

  .service-card {
    padding: 28px 20px;
  }

  .glass-card--service {
    padding: 32px 20px 28px;
  }

  .hero--full {
    padding: 120px 16px 60px;
  }

  .btn-submit {
    width: 100%;
    margin: 24px 0 0 0;
  }
}

/* === Contact Page === */
.hero--contact::after {
  background: url('../img/bg_contact.png') center center/cover no-repeat;
  top: -20%;
  height: 140%;
}

.hero--contact::before {
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.8) 70%);
}

.hero--contact .hero-content h1 {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.hero--contact .hero-content .tagline {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-style: italic;
  max-width: 600px;
  margin: 0 auto;
}

/* Contact method buttons */
.contact-methods {
  position: relative;
  z-index: 3;
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-top: 48px;
}

.contact-method-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50px;
  color: #fff;
  font-size: 1rem;
  font-weight: 400;
  transition: all 0.3s ease;
}

.contact-method-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.contact-method-btn i {
  font-size: 1.4rem;
}

/* Contact form */
.contact-form-wrapper {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 800px;
  margin-top: 60px;
  padding: 48px 40px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
}

.contact-form-wrapper h2 {
  font-family: 'Sora', sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  margin-bottom: 32px;
  text-align: center;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1.5fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  color: #aaa;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  color: #fff;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-submit {
  display: block;
  margin: 24px 0 0 auto;
  padding: 14px 48px;
  background: linear-gradient(135deg, #e06060, #c04848);
  border: none;
  border-radius: 50px;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(224, 96, 96, 0.3);
}

/* === Clickable Glass Cards === */
.glass-card--link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  display: block;
}

/* === Pricing Badge === */
.pricing-badge {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
  padding: 16px 36px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.pricing-amount {
  font-family: 'Sora', sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: #fff;
}

.pricing-amount small {
  font-size: 0.9rem;
  font-weight: 300;
  color: #aaa;
}

.pricing-divider {
  font-size: 0.85rem;
  color: #666;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* === CTA Button === */
.btn-cta {
  position: relative;
  z-index: 3;
  display: inline-block;
  margin-top: 48px;
  padding: 16px 48px;
  background: linear-gradient(135deg, #4070c8, #1a1a5e);
  border-radius: 50px;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(64, 112, 200, 0.35);
}

/* === Contact Form Mobile Fix === */
@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr !important;
    gap: 12px;
  }
}
