* {
  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 {
  font-family: inherit;
  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;
  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--gold {
  background: #C6A25A;
  color: #0B2341;
}
.btn--gold:hover {
  background: #d4b06e;
  box-shadow: 0 10px 24px rgba(198, 162, 90, .35);
  transform: translateY(-2px);
}
.btn--outline-gold {
  background: transparent;
  color: #C6A25A;
  border-color: #C6A25A;
}
.btn--outline-gold:hover {
  background: #C6A25A;
  color: #0B2341;
  transform: translateY(-2px);
}
.btn--outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, .4);
}
.btn--outline-white:hover {
  background: #fff;
  color: #0B2341;
  border-color: #fff;
  transform: translateY(-2px);
}
.btn--full {
  width: 100%;
  justify-content: center;
}

/* EYEBROW / SECTION HEAD */
.eyebrow-plain {
  font-size:17px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #C6A25A;
  margin-bottom: 16px;
}
.section-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
}
.section-head h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(24px, 2.8vw, 32px);
  color: #0B2341;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
  padding-bottom: 14px;
}
.section-head h2::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 44px;
  height: 2px;
  background: #C6A25A;
}
.section-head p {
  color: #6B7280;
  font-size:17px;
}

@media (max-width: 414px) {
  .section-head {
    margin: 0 auto 30px;
  }
}

/* HERO */
.portal-hero {
  background:
    radial-gradient(ellipse at 92% 15%, rgba(198, 162, 90, .10), transparent 55%),
    #FAF9F6;
  text-align: center;
  padding-top:60px;
  padding-bottom:60px;
}
.portal-hero h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.25;
  color: #0B2341;
  max-width: 800px;
  margin: 0 auto 20px;
}
.portal-hero h1 .accent {
  color: #C6A25A;
}
.portal-hero p {
  color: #6B7280;
  font-size:17px;
  max-width: 560px;
  margin: 0 auto 34px;
}
.portal-hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .portal-hero {
    padding-top: 50px;
  }
}

@media (max-width: 414px) {
  .portal-hero {
    padding-top: 40px;
  }
}

/* WHAT'S INCLUDED CARDS */
.included-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap:15px;
}
.included-card {
  background: #f8f8f8;
  border: 1px solid #E6E8EB;
  border-radius: 16px;
  padding:32px 24px;
  text-align: center;
  transition: transform .25s ease, box-shadow .25s ease;
}
.included-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 40px -18px rgba(11, 35, 65, .16);
}
.included-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: #F5F0E8;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C6A25A;
}
.included-icon svg {
  width:34px;
  height:34px;
}
.included-card h3 {
  font-size:18px;
  color: #0B2341;
  font-weight: 700;
  margin-bottom: 12px;
}
.included-card p {
  font-size:17px;
  color: #6B7280;
  line-height: 1.6;
}

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

@media (max-width: 414px) {
  .included-card {
    padding: 20px;
  }
  .included-grid {
    gap: 15px;
  }
}

/* ALREADY A CLIENT */
.already-client {
  background: #f4f4f4;
  border-radius: 20px;
  padding: 44px 40px;
  border:1px solid #ccc;
}
.already-client-head {
  text-align: center;
  margin-bottom: 36px;
}
.already-client-head h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(38px, 2.6vw, 28px);
  color: #0B2341;
  margin-bottom: 8px;
}
.already-client-head p {
  color: #6B7280;
  font-size:17px;
}
.portal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.portal-card {
  background: #fff;
  border: 1px solid #E6E8EB;
  border-radius: 16px;
  padding:15px 5px;
  display: flex;
  flex-direction: column;
  gap:15px;
}
.portal-card-top {
  /* display: flex;*/
  align-items: center;
  text-align: center;
  gap:18px;
  padding-left:10px;
}
.portal-icon {
  width:55px;
  height:55px;
  border-radius: 50%;
    color: #C6A25A;
  /* display: flex; */
  align-items: center;
  justify-content: center;
  flex-shrink:0;  
}
.portal-icon svg {
  width:65px;
  height:65px;
  background: #F5F0E8;
  border-radius: 50%;
  padding:12pt;
}
.portal-card h3 {
  font-family: 'Playfair Display', serif;
  font-size:24px;
  color: #0B2341;
}
.portal-tags {
  /* display: flex;*/ 
  flex-wrap: wrap;
  gap: 8px 20px;
  font-size: 16px;text-align: center;
  color: #6B7280;
}

@media (max-width: 900px) {
  .portal-grid {
    grid-template-columns: 1fr;
	margin-left:-22pt;
  }
}

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

/* EVERYTHING INCLUDED (DARK BANNER) */
.everything-banner {
  background: #0B2341;
  border-radius: 20px;
  padding: 44px 48px;
  display: grid;
  grid-template-columns: 1fr repeat(5, 0.5fr);
  gap:30px;
  align-items: flex-start;
}
.ei-left h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 2.6vw, 28px);
  color: #fff;
  line-height: 1.3;
  margin-bottom: 16px;
}
.ei-left h2 .accent {
  color: #C6A25A;
  display: block;
}
.ei-rule {
  width: 44px;
  height: 2px;
  background: #C6A25A;
  margin-bottom: 16px;
}
.ei-left p {
  color: rgba(255, 255, 255, .65);
  font-size:17px;
  line-height: 1.7;
  max-width: 260px;
}
.ei-item {
  text-align: center;
  border-left:1px solid #495465;
  padding-left:18px;
}
.ei-icon {
  width:56px;
  height:56px;
  margin: 0 auto 16px;
  border-radius: 50%;
  border: 1.5px solid #C6A25A;
  color: #C6A25A;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ei-icon svg {
  width:34px;
  height:34px;
}
.ei-item h4 {
  color: #fff;
  font-size:18px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.3;
}
.ei-item p {
  color: rgba(255, 255, 255, .6);
  font-size:17px;
  line-height: 1.6;
}

@media (max-width: 1100px) {
  .everything-banner {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .ei-left {
    grid-column: 1 / -1;
  }
}

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

@media (max-width: 600px) {
  .everything-banner {
    padding: 30px;
  }
}

/* MARKETING RESOURCES / ONGOING SUPPORT */
.triple-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.triple-card {
  background: #fff;
  border: 1px solid #E6E8EB;
  border-radius: 16px;
  padding: 26px 28px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.triple-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 40px -18px rgba(11, 35, 65, .16);
}
.triple-icon {
  width:56px;
  height:56px;
  border-radius: 50%;
  background: #F5F0E8;
  color: #C6A25A;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.triple-icon svg {
  width:32px;
  height:32px;
}
.triple-card h4 {
  font-size:18px;
  font-weight: 700;
  color: #0B2341;
  margin-bottom: 8px;
}
.triple-card p {
  font-size:17px;
  color: #6B7280;
  line-height: 1.6;
}

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

@media (max-width: 414px) {
  .triple-grid {
    gap: 15px;
  }
}

/* FINAL CTA */
.final-cta-banner {
  background: #0B2341;
  border-radius: 20px;
  padding: 40px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.final-cta-banner::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: #C6A25A;
}
.cta-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width:280px;
}
.cta-icon-circle {
  width:60px;
  height:60px;
  border-radius: 50%;
  border: 1.5px solid #C6A25A;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C6A25A;
  flex-shrink: 0;
}
.cta-icon-circle svg {
  width:34px;
  height:34px;
}
.cta-left h3 {
  font-family: 'Playfair Display', serif;
  font-size:30px;
  color: #ffffff;
  margin-bottom:6px;
  line-height: 1.3;
}
.cta-left p {
  color: rgba(255, 255, 255, .65);
  font-size:18px;
}
.cta-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cta-footer-row {
  display: flex;
  align-items: center;
  gap:32px;
  flex-wrap: wrap;
  margin-top:10px;
  padding-top:24px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  width: 100%;
}
.cta-footer-item {
  display: flex;
  align-items: center;
  gap:10px;
  color: #fff;
  font-size:17px;
  font-weight: 600;
}
.cta-footer-item .dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #C6A25A;
  color: #0B2341;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cta-footer-item .dot svg {
  width: 11px;
  height: 11px;
}

@media (max-width: 414px) {
  .final-cta-banner {
    padding: 30px;
    gap: 0;
  }
}