:root {
  --primary-color: #1e3a8a; /* Deep strong blue for headings/buttons */
  --primary-hover: #1e40af;
  --text-main: #334155;
  --text-dark: #0f172a;
  --text-light: #64748b;
  --bg-main: #fcfcfc;
  --bg-alt: #f1f5f9;
  --white: #ffffff;
  --card-bg: #f8fafc;
  --card-border: #e2e8f0;

  --font-heading: "Playfair Display", serif;
  --font-body: "Inter", sans-serif;
  --font-accent: "Plus Jakarta Sans", sans-serif;

  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md:
    0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg:
    0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl:
    0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background-color: var(--bg-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
.font-heading {
  font-family: var(--font-accent);
  color: var(--text-dark);
  line-height: 1.2;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  max-width: 800px;
}

.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-white {
  color: var(--white) !important;
}
.highlight {
  color: var(--primary-color);
}
.mt-4 {
  margin-top: 2rem;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    #3b82f6,
    var(--primary-color)
  );
  background-size: 200% auto;
  color: var(--white);
  padding: 16px 36px;
  width: 100%;
  max-width: 450px;
  border-radius: 8px;
  font-size: 1.125rem;
  font-weight: 600;
  font-family: var(--font-accent);
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  animation:
    gradientMove 4s ease infinite,
    shakeLeftRight 1.6s ease-in-out infinite;
}

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

.btn-large {
  font-size: 1.25rem;
  padding: 20px 48px;
}

.cta-pulse {
  animation: pulse 2.5s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(30, 58, 138, 0.7);
  }
  70% {
    transform: scale(1.02);
    box-shadow: 0 0 0 10px rgba(30, 58, 138, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(30, 58, 138, 0);
  }
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes shakeLeftRight {
  0%,
  100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-5px);
  }
  75% {
    transform: translateX(5px);
  }
}

/* Sections */
.section {
  padding: 40px 0;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-align: center;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.section-badge {
  display: inline-block;
  background: var(--bg-alt);
  color: var(--primary-color);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  margin-left: auto;
  margin-right: auto;
  display: table;
}

/* Hero Section */
.hero-section {
  position: relative;
  padding: 60px 0 60px;
  background-color: var(--bg-main);
  overflow: hidden;
}

/* Faint geometric background pattern similar to image */
.hero-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.3;
  background-image:
    linear-gradient(135deg, var(--card-border) 25%, transparent 25%),
    linear-gradient(225deg, var(--card-border) 25%, transparent 25%),
    linear-gradient(45deg, var(--card-border) 25%, transparent 25%),
    linear-gradient(315deg, var(--card-border) 25%, var(--bg-main) 25%);
  background-position:
    10px 0,
    10px 0,
    0 0,
    0 0;
  background-size: 40px 40px;
  background-repeat: repeat;
  pointer-events: none;
  z-index: 0;
}
.hero-bg-pattern::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at center,
    transparent 30%,
    var(--bg-main) 80%
  );
}

.hero-container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pre-headline-wrapper {
  margin-bottom: 1.5rem;
}

.pre-headline-pill {
  background-color: var(--card-bg);
  border: 1px solid var(--card-border);
  padding: 8px 84px;
  border-radius: 50px;
  box-shadow: var(--shadow-sm);
}

.pill-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
}

.main-headline {
  font-size: 2.8rem;
  text-align: center;
  max-width: 900px;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-subtext {
  font-size: 1.15rem;
  color: var(--text-light);
  text-align: center;
  max-width: 800px;
  margin-bottom: 2rem;
}

.hero-details-box {
  display: flex;
  width: 100%;
  max-width: 1000px;
  gap: 2rem;
  margin-bottom: 1.5rem;
  align-items: center;
}

.image-box {
  flex: 1;
  border-radius: 16px;
  border: 1px solid var(--card-border);
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.info-side {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.info-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.icon-wrap {
  background: #1d376c;
  padding: 8px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.icon-wrap i {
  font-size: 20px;
  color: white;
}

.info-text {
  display: flex;
  flex-direction: column;
}

.info-label {
  font-size: 0.75rem;
  color: var(--text-light);
  font-weight: 600;
}

.info-value {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-dark);
}

.countdown-wrapper {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 0.5rem;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 80px;
  padding: 10px 44px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 50px;
}

.countdown-item .count {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary-color);
  font-family: var(--font-heading);
  line-height: 1;
}

.countdown-item .label {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 4px;
}

.hero-cta-section {
  text-align: center;
  margin-top: 2rem;
}

.hero-cta-section .support-text {
  margin-top: 1rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
}
.hero-cta-section .small-text {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-light);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Why Section */
.why-azure .benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-top: 3rem;
}

.benefit-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--card-border);
  transition: transform 0.3s;
}

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

.benefit-icon {
  width: 60px;
  height: 60px;
  background: #eff6ff; /* Light blue */
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.benefit-icon i {
  font-size: 32px;
  color: var(--primary-color);
}

.benefit-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.benefit-card p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* Deliverables Section */
.bg-light {
  background-color: var(--card-bg);
}

.deliverables-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 3rem;
}

.deliverable-item {
  display: flex;
  gap: 1.5rem;
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--card-border);
}

.check-icon i {
  font-size: 36px;
  color: #10b981; /* Emerald green */
}

.deliverable-content h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.deliverable-content p {
  color: var(--text-light);
}

/* Audience Section */
.audience-section {
  background-color: var(--bg-alt);
  padding: 50px 0;
}

.border-container {
  max-width: 900px;
}

.audience-centered-card {
  background: var(--white);
  padding: 4rem 3rem;
  border-radius: 20px;
  text-align: center;
  border: 1px solid var(--card-border);
  position: relative;
  overflow: hidden;
}

.audience-icon-large {
  width: 80px;
  height: 80px;
  background: #eff6ff;
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  margin: 0 auto 2rem;
}

.audience-centered-card .section-title {
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
}

.audience-lead {
  font-size: 1.25rem;
  color: var(--text-main);
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
}

.audience-lead strong {
  color: var(--primary-color);
  font-weight: 600;
}

.decorative-line {
  width: 60px;
  height: 4px;
  background: var(--primary-color);
  margin: 2.5rem auto 0;
  border-radius: 2px;
}

/* Final CTA */
.final-cta-section {
  text-align: center;
}

.final-cta-wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
}

.final-cta-wrapper h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.final-cta-wrapper p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 2.5rem;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.urgency-text {
  font-size: 0.9rem;
  color: #ef4444; /* red */
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.sticky-footer-layout {
  display: flex;
  justify-content: center;
}
/* Footer */
.footer {
  padding: 1rem 0;
  border-top: 1px solid var(--card-border);
  background-color: var(--white);
  position: sticky;
  bottom: 0;
  z-index: 1000;
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.05);
}

.sf-btn {
  padding: 12px 40px;
  width: auto !important;
  min-width: unset;
  border-radius: 8px;
   min-width: 350px;
}

/* Modal Styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-container {
  background: var(--white);
  width: 90%;
  max-width: 500px;
  border-radius: 16px;
  padding: 3rem 2rem;
  position: relative;
  box-shadow: var(--shadow-xl);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.modal-overlay.active .modal-container {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 28px;
  color: var(--text-light);
  cursor: pointer;
  line-height: 1;
}

.modal-close:hover {
  color: var(--text-dark);
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: left;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-main);
}

.form-group input {
  padding: 12px 16px;
  border: 1px solid var(--card-border);
  border-radius: 8px;
  font-size: 1rem;
  font-family: var(--font-body);
  transition: border-color 0.2s;
}

.form-group input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

.w-100 {
  width: 100%;
  max-width: 100% !important;
}

.mt-2 {
  margin-top: 1rem;
}

/* Responsive */
@media (max-width: 968px) {
  .main-headline {
    font-size: 2.8rem;
  }
  .hero-details-box {
    flex-direction: column;
  }
  .audience-centered-card {
    padding: 3rem 2rem;
  }
  .final-cta-wrapper {
    padding: 3rem 2rem;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 30px 0 30px;
  }
  .main-headline {
    font-size: 2.2rem;
  }
  .hero-subtext {
    font-size: 0.85rem;
  }
  .countdown-item {
    padding: 10px 16px;
    min-width: 65px;
  }
  .countdown-item .count {
    font-size: 1.5rem;
  }
  .section {
    padding: 60px 0;
  }
  .section-title {
    font-size: 2rem;
  }
  .audience-lead {
    font-size: 1.1rem;
  }
  .final-cta-wrapper h2 {
    font-size: 2rem;
  }
  .pre-headline-pill {
    padding: 8px 32px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  .section {
    padding: 20px 0;
  }
  .main-headline {
    font-size: 1.55rem;
  }
  .pre-headline-pill {
    padding: 6px 60px;
    display: flex;
    justify-content: center;
  }
  .pill-text {
    font-size: 0.8rem;
    text-align: center;
  }
  .hero-details-box {
    gap: 1.5rem;
  }
  .countdown-wrapper {
    gap: 0.5rem;
    width: 100%;
  }
  .countdown-item {
    padding: 8px 12px;
    min-width: unset;
    flex: 1;
  }
  .countdown-item .count {
    font-size: 1.25rem;
  }
  .countdown-item .label {
    font-size: 0.7rem;
  }
  .section-title {
    font-size: 1.4rem;
  }
  .section-subtitle {
    font-size: 0.9rem;
  }
  .btn-primary {
    padding: 14px 24px;
    font-size: 1rem;
    width: 100%;
  }
  .btn-large {
    padding: 20px 24px;
    font-size: 1.1rem;
  }
  .audience-centered-card {
    padding: 2rem 1.5rem;
  }
  .final-cta-wrapper {
    padding: 0rem 0rem;
  }
  .deliverable-item {
    padding: 14px 10px;
    gap: 10px;
  }
  .check-icon i {
    font-size: 20px;
    color: #10b981; /* Emerald green */
  }

  .deliverable-content h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }
  .deliverable-content p {
    font-size: 0.85rem;
  }

  .benefit-card {
    padding: 1.5rem;
  }
  .benefit-card h3 {
    font-size: 1rem;
  }
  .benefit-card p {
    font-size: 0.85rem;
  }

  .benefit-icon {
    width: 50px;
    height: 50px;

    margin-bottom: 1rem;
  }

  .benefit-icon i {
    font-size: 22px;
    color: var(--primary-color);
  }
  .audience-icon-large {
    width: 60px;
    height: 60px;

    font-size: 30px;
  }
  .audience-centered-card .section-title {
    margin-bottom: 1rem;
    font-size: 1.4rem;
  }
  .audience-lead {
    font-size: 1rem;

    line-height: 1.4;
    max-width: 700px;
  }
  .final-cta-wrapper h2 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
  }

  .final-cta-wrapper p {
    font-size: 1rem;
  }

  .sf-btn {
    padding: 14px 16px;
    font-size: 0.9rem;
    width: 100% !important;
  }
  .audience-centered-card {
    padding: 2rem 1rem;
  }
  .modal-container {
    padding: 2rem 1.5rem;
  }
  .modal-container h2 {
    font-size: 1.5rem;
  }
  .cta-actions {
    width: 100%;
  }
}
