* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Inter', sans-serif;
  color: #2B2F33;
  background: #FAF9F6;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
button,
input,
textarea,
select {
  font-family: inherit;
}
button {
  cursor: pointer;
}

/* CONTAINER */
.container {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 32px;
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
}

@media (max-width: 414px) {
  .container {
    padding: 0 15px;
  }
}

/* SECTIONS PARENT CLASS */
.section {
  position: relative;
  width: 100%;
}
.section--pad {
  padding: 60px 0;
}

@media (max-width: 768px) {
  .section--pad {
    padding: 50px 0;
  }
}

@media (max-width: 414px) {
  .section--pad {
    padding: 40px 0;
  }
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 15px 26px;
  border-radius: 8px;
  border: 1.5px solid transparent;
  transition: all .25s ease;
  white-space: nowrap;
}
.btn svg {
  width: 15px;
  height: 15px;
  transition: transform .25s ease;
  flex-shrink: 0;
}
.btn:hover svg {
  transform: translateX(4px);
}
.btn--navy {
  background: #0B2341;
  color: #fff;
}
.btn--navy:hover {
  background: #132c4f;
  box-shadow: 0 10px 24px rgba(11, 35, 65, .25);
  transform: translateY(-2px);
}
.btn--outline-navy {
  background: #fff;
  color: #0B2341;
  border-color: ;
}
.btn--outline-navy:hover {
  background: #0B2341;
  color: #fff;
  border-color: #0B2341;
  transform: translateY(-2px);
}
.btn--full {
  width: 100%;
}

/* EYEBROW */
.eyebrow-plain {
  font-size:17px;
  font-weight: 700;
  text-transform: uppercase;
  color: #C6A25A;
  margin-bottom:14px;
}

/* HERO */
.demo-hero {
  background:
    radial-gradient(ellipse at 90% 20%, rgba(198, 162, 90, .12), transparent 55%),
    #FAF9F6;
  padding-top: 56px;
  padding-bottom: 46px;
}
.demo-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 44px;
}
.demo-hero h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.2;
  color: #0B2341;
  margin-bottom: 20px;
}
.demo-hero h1 .accent {
  color: #C6A25A;
  display: block;
}
.demo-hero p {
  color: #434345;
  font-size:17px;
  max-width:98%;
}
.demo-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
}
.demo-hero-image .placeholder-text {
  text-align: center;
  color: #6B7280;
  font-size: 13.5px;
  padding: 20px;
}
.demo-hero-image .placeholder-text svg {
  width: 36px;
  height: 36px;
  margin: 0 auto 10px;
  color: #aeb4bc;
}
.hero-feature-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}
.hero-feature-item {
  display: flex;
  flex-direction: column;
  gap:21px;
  padding: 0 25px;
  border-left: 1px solid #E6E8EB;
  flex: 1;
}
.hero-feature-item:first-child {
  border-left: none;
  padding-left: 0;
}
.hero-feature-icon {
  width:50px;
  height:50px;
  border-radius: 50%;
  border: 2px solid #C6A25A;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C6A25A;
}
.hero-feature-icon svg {
  width:25px;
  height:25px;
}
.hero-feature-item h4 {
  font-size: 18px;
  font-weight: 700;
  color: #0B2341;
  line-height: 1.35;
  padding-bottom: 8px;
  border-bottom: 2px solid #C6A25A;
  display: inline-block;
  max-width: fit-content;
}
.hero-feature-item p {
  font-size:17px;
  color: #6B7280;
  line-height: 1.5;
}

@media (max-width: 1000px) {
  .demo-hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-feature-row {
    flex-wrap: wrap;
  }
  .hero-feature-item {
    border-left: none;
    flex: 1 1 45%;
    padding-left: 0;
  }
}

@media (max-width: 768px) {
  .demo-hero {
    padding-top: 50px;
    padding-bottom: 40px;
  }
  .demo-hero-grid {
    gap: 40px;
  }
}

@media (max-width: 414px) {
  .demo-hero {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .demo-hero-grid {
    gap: 30px;
  }
}

/* EXPECT + FORM */
.demo-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 26px;
  align-items: flex-start;
}
.expect-card {
  background: #fff;
  border: 1px solid #E6E8EB;
  border-radius: 18px;
  padding: 32px;
}
.expect-list {
  display: flex;
  flex-direction: column;
}
.expect-row {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid #E6E8EB;
}
.expect-row:first-child {
  padding-top: 0;
}
.expect-icon {
  width:50px;
  height:50px;
  border-radius: 50%;
  border:2px solid #C6A25A;
  color: #C6A25A;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.expect-icon svg {
  width:36px;
  height:36px;
}
.expect-row h4 {
  font-size:18px;
  font-weight: 700;
  color: #0B2341;
  margin-bottom:5px;
}
.expect-row p {
  font-size:17px;
  color: #6B7280;
  line-height: 1.55;
}
.no-pressure-card {
  background: #0B2341;
  border-radius: 14px;
  padding: 22px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-top: 22px;
}
.no-pressure-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(198, 162, 90, .15);
  color: #C6A25A;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.no-pressure-icon svg {
  width: 20px;
  height: 20px;
}
.no-pressure-card h4 {
  color: #fff;
  font-size: 15px;
  margin-bottom: 6px;
}
.no-pressure-card p {
  color: rgba(255, 255, 255, .65);
  font-size: 12.5px;
  line-height: 1.55;
}

@media (max-width: 414px) {
  .expect-card {
    padding: 30px;
  }
}

/* FORM CARD */
.form-card {
  background: #fff;
  border: 1px solid #E6E8EB;
  border-radius: 18px;
  padding: 36px 40px;
}
.form-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}
.form-header-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #0b2341;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.form-header-icon svg {
  width: 22px;
  height: 22px;
}
.form-header h2 {
  font-family: 'Playfair Display', serif;
  font-size:28px;
  color: #0B2341;
  margin-bottom: 6px;
}
.form-header p {
  font-size:17px;
  color: #6B7280;
  line-height: 1.6;
}
.form-header p strong {
  color: #C6A25A;
  font-weight: 700;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap:20px;
  margin-bottom: 20px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap:8px;
}
.form-field label {
  font-size:16px;
  font-weight:600;
  color: #0B2341;
}
.form-field label .req {
  color: #C6A25A;
}
.form-field input,
.form-field select,
.form-field textarea {
  border: 1px solid #E6E8EB;
  border-radius:8px;
  padding:10px 16px;
  font-size: 14px;
  color: #2B2F33;
  background: #FAF9F6;
  transition: border-color .2s ease, box-shadow .2s ease;
  width:100%;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: #C6A25A;
  box-shadow: 0 0 0 3px rgba(198, 162, 90, .15);
}
.form-field textarea {
  resize: vertical;
  min-height: 90px;
}
.form-field.full {
  grid-column: 1 / -1;
}
.check-row {
  
  flex-wrap: wrap;
  gap:15px;
  margin-bottom: 8px;
}
.check-option {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #2B2F33;
  cursor: pointer;
}
.check-option input {
  width: 16px;
  height: 16px;
  accent-color: #C6A25A;
}
.demo-type-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.demo-type-card {
  border: 1.5px solid #E6E8EB;
  border-radius: 10px;
  padding: 18px 16px;
  text-align: center;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease;
}
.demo-type-card.selected {
  border-color: #C6A25A;
  background: rgba(198, 162, 90, .06);
}
.demo-type-icon {
  color: #0B2341;
  margin-bottom: 10px;
}
.demo-type-icon svg {
  width: 24px;
  height: 24px;
  margin: 0 auto;
}
.demo-type-card h4 {
  font-size: 13.5px;
  font-weight: 700;
  color: #0B2341;
  margin-bottom: 4px;
}
.demo-type-card span {
  font-size: 11.5px;
  color: #6B7280;
}

@media (max-width: 900px) {
  .demo-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .demo-type-grid {
    grid-template-columns: 1fr;
  }
  .form-card {
    padding: 28px 24px;
  }
}

.form-lock-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12.5px;
  color: #6B7280;
  margin-top: 14px;
}
.form-lock-note svg {
  width: 14px;
  height: 14px;
  color: #C6A25A;
}

/* GAIN BANNER */
.gain-banner {
  background: #0B2341;
  border-radius: 20px;
  padding: 44px 40px;
}
.gain-banner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 2.6vw, 28px);
  color: #fff;
  text-align: center;
  margin-bottom:45px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.gain-banner h2::before,
.gain-banner h2::after {
  content: '';
  width: 60px;
  height: 1px;
  background: rgba(198, 162, 90, .4);
}
.gain-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
.gain-item {
  text-align: center;
  padding: 0 8px;
}
.gain-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 16px;
  border-radius: 50%;
  
  /* border: 1.5px solid #C6A25A; */
  
  color: #C6A25A;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gain-icon svg {
  width:50px;
  height:50px;
}
.gain-item h4 {
  color: #fff;
  font-size:20px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.3;
}
.gain-item p {
  color: rgba(255, 255, 255, .6);
  font-size:17px;
  line-height: 1.6;
}

@media (max-width: 1000px) {
  .gain-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .gain-grid {
    grid-template-columns: 1fr;
  }
}

/* HOW DEMO WORKS */
.section-head {
  text-align: center;
  max-width:700px;
  margin: 0 auto 44px;
}
.section-head h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(30px, 2.8vw, 30px);
  color: #0B2341;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.section-head h2::before,
.section-head h2::after {
  content: '';
  width: 56px;
  height: 1px;
  background: #C6A25A;
}
.works-steps {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 6px;
}
.works-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width:250px;
  transition: transform .25s ease;

}
.works-step:hover {
  transform: translateY(-6px);
}
.works-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.works-num {
  width:28px;
  height:28px;
  border-radius: 50%;
  background:#C6A25A;
  color: #ffffff;
  font-size:18px;
  font-weight:600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.works-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1.5px solid #C6A25A;
  color: #0B2341;
  display: flex;
  align-items: center;
  justify-content: center;
}
.works-icon svg {
  width:35px;
  height:35px;
}
.works-step h4 {
  font-size:17px;
  font-weight:600;
  color: #0B2341;
  margin-bottom: 8px;
}
.works-step p {
  font-size:17px;
  color: #6B7280;
  line-height: 1.55;
}
.works-arrow {
  display: flex;
  align-items: center;
  padding-top: 28px;
  color: #C6A25A;
  flex-shrink: 0;
}
.works-arrow svg {
  width:28px;
  height:28px;
  margin-top:-10px;
}

@media (max-width: 1100px) {
  .works-steps {
    flex-wrap: wrap;
    justify-content: center;
    gap: 26px;
  }
  .works-arrow {
    display: none;
  }
}

/* CONTACT PREFERENCE BARS */
.prefer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.prefer-card {
  background: #f6f6f6;
  border: 1px solid #E6E8EB;
  border-radius: 16px;
  padding: 28px 30px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.prefer-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #0B2341;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.prefer-icon svg {
  width:34px;
  height:34px;
}
.prefer-text {
  flex: 1;
  min-width: 180px;
}
.prefer-text h4 {
  font-size:21px;
  font-weight:600;
  color: #0B2341;
  margin-bottom: 4px;
}
.prefer-text p {
  font-size:18px;
  color: #6B7280;
}

@media (max-width: 800px) {
  .prefer-grid {
    grid-template-columns: 1fr;
  }
}



.form-padding-bottom
{
	padding-bottom:15pt;
}