:root {
  --black: #571E4D;
  --black-2: #571E4D;
  --dark: #571E4D;
  --red: #e51d3f;
  --red-dark: #a70f2b;
  --gold: #f6bd3a;
  --white: #fff;
  --muted: #777;
  --light: #f7f7f8;
  --border: rgba(0, 0, 0, .08);
  --shadow: 0 20px 60px rgba(0, 0, 0, .12)
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px
}

html,
body {
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: 'Times New Roman', Times, serif;
  color: #571E4D;
  background: #fff;
  overflow-x: hidden;
  padding-top: 68px;
}


a {
  text-decoration: none;
}

p {
  font-size: 1.4rem !important;
}

ul {
  font-size: 1.3rem;
}

h2 {
  font-size: 3rem;
  font-weight: 600;
}

h3 {
  font-size: 1.4rem;
  font-weight: 600;
}

img {
  max-width: 100%;
  display: block
}

.section-padding {
  padding: 80px 0
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  border-radius: 50px;
  padding: 13px 27px;
  transition: .3s ease
}

.btn-gold {
  background: var(--gold);
  border: 1px solid var(--gold);
  color: #571E4D;
  box-shadow: 0 10px 25px rgba(246, 189, 58, .2);
  font-size: 1.2rem;

}

.btn-gold:hover {
  background: #fff;
  border-color: #fff;
  color: #571E4D;
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(255, 255, 255, .15)
}

.btn-outline-light {
  border: 1px solid rgba(255, 255, 255, .55);
  color: #fff
}

.btn-outline-light:hover {
  background: #fff;
  color: #571E4D;
  border-color: #fff;
  transform: translateY(-3px)
}

/* NAVBAR */
.main-navbar {
  height: 82px;
  background: rgba(87, 30, 77, .88);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: .3s
}

.main-navbar .container {
  height: 100%
}

.navbar-brand {
  gap: 10px;
  color: #fff !important;

}

.brand-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold), #fff0b0);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #571E4D;
  font-size: 20px;
  font-weight: 800;
  box-shadow: 0 8px 25px rgba(246, 189, 58, .2)
}

.brand-name {
  font-size: 32px;


}

.navbar-nav {
  gap: 5px
}

.nav-link {
  color: rgba(255, 255, 255, .72) !important;
  font-size: 1.2rem;
  font-weight: 600;
  padding: 28px 15px !important;
  transition: .25s;
}

.nav-link:hover,
.nav-link.active {
  color: #fff !important
}

.nav-link.active {
  position: relative
}

.nav-link.active:after {
  content: "";
  position: absolute;
  height: 2px;
  background: var(--gold);
  left: 15px;
  right: 15px;
  bottom: 18px;
  border-radius: 10px
}

.nav-cta {
  margin-left: 15px
}

.nav-cta .btn {
  padding: 10px 20px
}

.navbar-toggler {
  border: 0 !important;
  box-shadow: none !important;
  padding: 8px
}

.navbar-toggler-icon {
  width: 24px;
  height: 24px
}

/* HERO */
.hero-section {
  position: relative;

  padding: 100px 0 90px;
  background: radial-gradient(circle at 85% 20%, rgba(229, 29, 63, .18), transparent 28%), radial-gradient(circle at 10% 80%, rgba(246, 189, 58, .08), transparent 25%), #571E4D;
  color: #fff;
  overflow: hidden
}

.hero-row {
  min-height: 620px
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none
}

.hero-glow-one {
  width: 300px;
  height: 300px;
  background: rgba(229, 29, 63, .16);
  top: 100px;
  right: -100px
}

.hero-glow-two {
  width: 250px;
  height: 250px;
  background: rgba(246, 189, 58, .08);
  bottom: -80px;
  left: -80px
}

.hero-ring {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 50%
}

.hero-ring-one {
  width: 500px;
  height: 500px;
  right: -220px;
  bottom: -220px
}

.hero-content {
  position: relative;
  z-index: 2
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border: 1px solid rgba(246, 189, 58, .3);
  background: rgba(246, 189, 58, .08);
  border-radius: 50px;
  color: #f7d477;

  font-weight: 700
}

.hero-label span {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: var(--gold);
  color: #571E4D;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px
}

.hero-content h1 {
  font-size: clamp(42px, 5vw, 62px);
  line-height: 1.03;
  font-weight: 800;
  margin: 25px 0 22px;
  max-width: 700px
}

.hero-content h1 span {
  background: linear-gradient(135deg, #fff, var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent
}

.hero-description {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255, 255, 255, .68);
  max-width: 650px;
  margin-bottom: 28px
}

.hero-description strong {
  color: #fff
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 13px
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 38px
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, .7);
  font-weight: 600
}

.trust-item i {
  color: var(--gold)
}

.trust-item span {
  font-size: 1.2rem;
}

.hero-visual {
  position: relative;
  z-index: 2
}

.hero-image-wrap {
  position: relative;
  max-width: 610px;
  margin: 0 auto;
  padding: 18px 30px 25px 18px
}

.hero-image-frame {
  height: 620px;
  border-radius: 34px;
  overflow: hidden;
  position: relative;
  background: #181818;
  box-shadow: 0 35px 90px rgba(0, 0, 0, .55);
  border: 1px solid rgba(255, 255, 255, .12)
}

.hero-image-frame>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center
}

.image-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, .5))
}

.hero-mini-image {
  position: absolute;
  left: -8px;
  bottom: 0;
  width: 195px;
  height: 285px;
  border: 7px solid #571E4D;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .5)
}

.hero-mini-image img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.floating-card {
  position: absolute;
  background: rgba(15, 15, 15, .88);
  border: 1px solid rgba(255, 255, 255, .12);
  backdrop-filter: blur(15px);
  border-radius: 17px;
  padding: 13px 15px;
  display: flex;
  align-items: center;
  gap: 11px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, .3)
}

.floating-card strong {
  display: block;
  color: #fff;
  font-size: 12px
}

.floating-card small {
  display: block;
  color: rgba(255, 255, 255, .55);
  font-size: 10px;
  margin-top: 3px
}

.floating-card-one {
  right: -2px;
  top: 70px
}

.floating-card-two {
  right: 20px;
  bottom: 5px
}

.floating-icon {
  width: 34px;
  height: 34px;
  background: var(--red);
  color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px
}

.online-dot {
  width: 10px;
  height: 10px;
  background: #55d98b;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(85, 217, 139, .12)
}

/* STATS */
.stats-section {
  background: #571E4D;
  padding: 0 0 45px
}

.stats-box {
  background: #571E4D;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 24px;
  padding: 28px 35px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .3)
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 13px
}

.stat-item>span {
  width: 45px;
  height: 45px;
  background: rgba(246, 189, 58, .1);
  color: var(--gold);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center
}

.stat-item strong,
.stat-item small {
  display: block
}

.stat-item strong {
  color: #fff;
  font-size: 1.3rem;
}

.stat-item small {
  color: #c0b9b9;
  font-size: 17px;
  margin-top: 3px;
}

.stat-line {
  width: 1px;
  height: 35px;
  background: rgba(255, 255, 255, .1)
}

/* COMMON */
.section-heading {
  max-width: 1060px
}

.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--red);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 2px
}

.section-eyebrow span {
  width: 24px;
  height: 2px;
  background: currentColor;
  border-radius: 5px
}

.section-eyebrow.light {
  color: var(--gold)
}

.section-heading h2 {



  margin: 16px 0
}

.section-heading h2 span {
  color: var(--red)
}

.section-heading p {
  color: #777;
  line-height: 1.6;
  margin: 0
}


/* ABOUT */
.about-section {
  background: #fff
}

.about-image {
  position: relative;
  padding: 0 30px 30px 0
}

.about-image:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  background: #f5f5f5;
  border-radius: 30px;
  z-index: 0
}

.about-image>img {
  position: relative;
  z-index: 1;
  width: 100%;

  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow)
}

.about-badge {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  background: #571E4D;
  color: #fff;
  border-radius: 18px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, .25)
}

.about-badge>i {
  width: 40px;
  height: 40px;
  background: var(--red);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center
}

.about-badge strong,
.about-badge small {
  display: block
}

.about-badge strong {
  font-size: 14px
}

.about-badge small {
  font-size: 12px;
  color: #f4eeee;
  margin-top: 3px
}

.about-section h2 {
  margin: 15px 0 20px
}

.about-section h2 span {
  color: var(--red)
}

.about-section p {
  color: #777;
  line-height: 1.8
}

.lead-text {

  color: #444 !important
}

.about-features {
  margin-top: 30px
}

.about-feature {
  display: flex;
  gap: 18px;
  margin-bottom: 22px
}

.feature-number {

  font-weight: 800;

  color: var(--red);
  padding-top: 3px
}

.about-feature h3 {

  margin: 0 0 5px;
  font-weight: 600;
}

.about-feature p {
  margin: 0
}

/* FEATURES */
.features-section {
  background: #f6f6f7
}

.feature-card {
  height: 100%;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 24px;
  padding: 30px;
  transition: .35s;
  position: relative;
  overflow: hidden
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow)
}

.feature-card.featured {
  background: #571E4D;
  color: #fff;
  border-color: #571E4D
}

.feature-icon {
  width: 58px;
  height: 58px;
  background: rgba(229, 29, 63, .1);
  color: var(--red);
  border-radius: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 25px
}

.featured .feature-icon {
  background: var(--red);
  color: #fff
}

.feature-card>span {
  font-size: 18px;
  color: #bbb;
  font-weight: 800;
  letter-spacing: 1px;
}

.feature-card h3 {

  margin: 10px 0 12px
}

.feature-card p {

  line-height: 1.6;
  color: #777;
  margin-bottom: 25px
}

.featured p {
  color: #999
}

.feature-card a {
  font-size: 20px;
  color: var(--red);
  font-weight: 800;
}

.feature-card a i {
  margin-left: 6px;
  transition: .2s
}

.feature-card a:hover i {
  margin-left: 10px
}

/* GALLERY */
.gallery-section {
  background: #fff
}

.gallery-card {
  height: 500px;
  border-radius: 25px;
  overflow: hidden;
  position: relative;
  background: #571E4D
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .6s
}

.gallery-card:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, .85))
}

.gallery-card:hover img {
  transform: scale(1.07)
}

.gallery-overlay {
  position: absolute;
  z-index: 2;
  left: 24px;
  right: 20px;
  bottom: 25px;
  color: #fff
}

.gallery-overlay span {
  font-size: 16px;
  color: var(--gold);
  font-weight: 800
}



/* PROCESS */
.process-section {
  background: #571e4de6;
  color: #fff;
  position: relative;
  overflow: hidden
}

.process-bg {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(229, 29, 63, .1);
  filter: blur(100px);
  top: -300px;
  right: -200px
}

.process-section .section-heading p {
  color: #777
}

.process-card {
  height: 100%;
  background: #151515;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 23px;
  padding: 30px;
  position: relative;
  overflow: hidden;
  transition: .3s
}

.process-card:hover {
  border-color: rgba(246, 189, 58, .35);
  transform: translateY(-7px)
}

.step {
  position: absolute;
  right: 20px;
  top: 18px;
  color: #333;

  font-weight: 800;
  font-size: 35px
}

.process-icon {
  width: 60px;
  height: 60px;
  background: rgba(246, 189, 58, .1);
  color: var(--gold);
  border-radius: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 28px
}

.process-card h3 {
  font-weight: 600;
  margin-bottom: 12px
}

.process-card p {

  line-height: 1.6;
  color: rgb(224, 213, 213);
  margin: 0
}

/* MEMBERS */
.members-section {
  background: #f7f7f8
}

.member-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 25px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 8px 30px rgba(0, 0, 0, .04);
  transition: .35s
}

.member-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow)
}

.member-photo {
  height: 600px;
  position: relative;
  overflow: hidden;
  background: #eee
}

.member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .5s
}

.member-card:hover .member-photo img {
  transform: scale(1.04)
}

.online-status {
  position: absolute;
  left: 17px;
  top: 17px;
  background: rgba(10, 10, 10, .78);
  color: #fff;
  padding: 7px 11px;
  border-radius: 50px;
  font-size: 10px;
  font-weight: 700;
  backdrop-filter: blur(8px)
}

.online-status i {
  font-size: 7px;
  color: #5cdb8c;
  margin-right: 3px
}

.member-like {
  position: absolute;
  right: 17px;
  top: 17px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 13px
}

.member-info {
  padding: 22px
}

.member-info strong {
  font-size: 1.4rem;
  margin: 0
}

.member-info h3 span {

  color: #999;
  font-weight: 500;
  margin-left: 3px
}

.verified {
  color: var(--red);
  font-size: 14px
}

.member-info p {

  color: #777;
  line-height: 1.7;
  margin: 12px 0 18px
}

.member-btn {
  height: 45px;
  border-radius: 50px;
  background: #571E4D;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 700;
  transition: .3s;
}

.member-btn:hover {
  background: var(--red);
  color: #fff
}

/* CONNECTION */
.connection-section {
  background: #fff
}

.connection-box {
  background: #571E4D;
  border-radius: 32px;
  padding: 50px;
  overflow: hidden;
  position: relative;
  color: #fff
}

.connection-box:before {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: rgba(229, 29, 63, .15);
  filter: blur(80px);
  right: -180px;
  top: -220px
}

.connection-box h2 {
  position: relative;

  line-height: 1.1;
  letter-spacing: -1.7px;
  margin: 15px 0
}

.connection-box h2 span {
  color: var(--gold)
}

.connection-box p {
  position: relative;
  color: white;
  line-height: 1.6;
  max-width: 600px
}

.connection-list {
  position: relative;
  margin: 25px 0
}

.connection-list div {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 13px;
  color: #ddd;
  font-size: 1.2rem;
}

.connection-list i {
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: rgba(246, 189, 58, .12);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.connection-image {
  height: 580px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  z-index: 1
}

.connection-image img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

/* STORIES */
.stories-section {
  background: #f6f6f7
}

.story-card {
  height: 100%;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 24px;
  padding: 32px;
  position: relative;
  transition: .3s
}

.story-card:hover,
.active-story {
  transform: translateY(-5px);
  box-shadow: var(--shadow)
}

.active-story {
  background: #571E4D;
  color: #fff;
  border-color: #571E4D
}

.quote {
  color: var(--red);
  font-size: 25px;
  margin-bottom: 17px
}

.story-card>p {
  font-size: 14px;
  line-height: 1.85;
  color: #666;
  margin-bottom: 28px
}

.active-story>p {
  color: #aaa
}

.story-user {
  display: flex;
  align-items: center;
  gap: 12px
}

.story-user img {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  object-fit: cover;
}

.story-user strong,
.story-user small {
  display: block
}

.story-user strong {
  font-size: 18px;
}

.story-user small {
  font-size: 16px;
  color: #999;
  margin-top: 3px;
}

/* CTA */
.final-cta {
  padding: 110px 0;
  background: radial-gradient(circle at 50% 0, rgba(229, 29, 63, .25), transparent 35%), #272020;
  color: #fff;
  position: relative;
  overflow: hidden
}

.cta-decoration {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, .05);
  border-radius: 50%
}

.cta-decoration-one {
  width: 600px;
  height: 600px;
  left: -300px;
  top: -300px
}

.cta-decoration-two {
  width: 450px;
  height: 450px;
  right: -220px;
  bottom: -250px
}

.cta-content {
  max-width: 850px;
  margin: auto
}

.cta-content h2 {

  line-height: 1.08;
  
  margin: 18px 0
}

.cta-content h2 span {
  color: var(--gold)
}

.cta-content p {
  max-width: 880px;
  margin: 0 auto 30px;
  color: #888;
  line-height: 1.8
}

.cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 13px
}

/* FAQ */
.faq-section {
  background: #fff
}

.premium-accordion .accordion-item {
  border: 1px solid #eee !important;
  border-radius: 15px !important;
  overflow: hidden;
  margin-bottom: 12px
}

.premium-accordion .accordion-button {

  font-size: 1.3rem;
  font-weight: 700;
  padding: 20px 23px;
  box-shadow: none !important;
  color: #571E4D;
  background: #fff
}

.premium-accordion .accordion-button:not(.collapsed) {
  color: var(--red);
  background: #fff
}

.premium-accordion .accordion-button:after {
  background-size: 14px
}

.premium-accordion .accordion-body {
  padding: 0 23px 22px;
  color: #777;
  font-size: 1.3rem;
  line-height: 1.7;
}

/* FOOTER */
.site-footer {
  background: #3c1134;
  color: #fff;
  padding: 75px 0 0
}

.footer-brand {

  font-weight: 800;
  color: #fff;
  font-size: 25px
}

.site-footer p {
  color: white;

  line-height: 1.6;
  margin-top: 15px;
  
}



.site-footer strong {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 18px;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0
}

.site-footer li {
  margin-bottom: 5px;
}

.site-footer li a {
  color: white;
  font-size: 20px;
  transition: .2s;
}

.site-footer li a:hover {
  color: #fff
}

.footer-small {
  margin-top: 0 !important;
  margin-bottom: 18px
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  margin-top: 55px;
  padding: 22px 0;
  display: flex;
  justify-content: center;
  align-items: center
}

.footer-bottom p {
  margin: 0;
  font-size: 11px
}

.footer-bottom a {
  color: #777;
  font-size: 11px
}

.footer-bottom a:hover {
  color: #fff
}

/* TABLET */
@media(max-width:1199.98px) {
  .hero-section {
    padding-top: 65px
  }

  .hero-content h1 {
    font-size: 55px
  }

  .hero-image-frame {
    height: 680px
  }

  .floating-card-two {
    right: -5px
  }

  .stats-box {
    padding: 25px 20px
  }
}

/* NAVBAR TABLET/MOBILE */
@media(max-width:991.98px) {
  .main-navbar {
    height: auto;
    min-height: 72px
  }

  .main-navbar .container {
    padding-top: 10px;
    padding-bottom: 10px
  }

  .navbar-collapse {
    background: #0d0d0d;
    margin: 10px -12px -10px;
    padding: 8px 15px 18px;
    border-top: 1px solid rgba(255, 255, 255, .07)
  }

  .navbar-nav {
    gap: 0px !important;
    text-align: center !important;
  }

  .nav-link {
    padding: 13px 10px !important
  }

  .nav-link.active:after {
    display: none
  }

  .nav-cta {
    margin: 8px 10px 0
  }

  .nav-cta .btn {
    width: 100%
  }

  .hero-section {
    padding-top: 45px
  }

  .hero-row {
    min-height: auto
  }


  .hero-label {
    margin: auto
  }

  .hero-content h1 {
    font-size: clamp(35px, 7vw, 40px);
    margin-left: auto;
    margin-right: auto
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto
  }

  .hero-buttons {
    justify-content: center
  }

  .hero-visual {
    margin-top: 55px
  }

  .hero-image-wrap {
    max-width: 640px
  }

  .stats-section {
    padding-top: 0
  }

  .stats-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px
  }

  .stat-line {
    display: none
  }

  .section-padding {
    padding: 60px 0
  }

  .about-image>img {
    height: auto
  }

  .connection-box {
    padding: 50px
  }

  h2 {
    font-size: 2.5rem;
  }
}

/* MOBILE */
@media(max-width:767.98px) {
  .section-padding {
    padding: 40px 0
  }



  .hero-content h1 {
    font-size: 35px;
    line-height: 1.08;
    margin-top: 20px
  }

  .hero-description {
    font-size: 15px;
    line-height: 1.7
  }

  .hero-buttons {
    flex-direction: column
  }

  .hero-buttons .btn {
    width: 100%
  }

  .hero-trust {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 25px;
    text-align: left;
    max-width: 260px;
    margin-left: auto;
    margin-right: auto;
    display: none !important;
  }

  .hero-visual {
    margin-top: 35px
  }

  .hero-image-wrap {
    padding: 8px 8px 22px
  }

  .hero-image-frame {
    height: 520px;
    border-radius: 25px
  }

  .hero-mini-image {
    width: 105px;
    height: 135px;
    left: -2px;
    bottom: 0;
    border-width: 5px;
    border-radius: 16px
  }

  .floating-card {
    padding: 9px 11px
  }

  .floating-card-one {
    right: -3px;
    top: 40px
  }

  .floating-card-two {
    right: -2px;
    bottom: 35px
  }

  .floating-card strong {
    font-size: 10px
  }

  .floating-card small {
    font-size: 8px
  }

  .floating-icon {
    width: 28px;
    height: 28px;
    font-size: 10px
  }

  .stats-box {
    grid-template-columns: 1fr;
    padding: 22px
  }

  .stat-item {
    justify-content: flex-start
  }



  .about-image {
    padding: 0 15px 22px 0
  }

  .about-image>img {
    height: auto;
    border-radius: 22px
  }

  .about-badge {
    right: -3px;
    padding: 12px
  }

  .about-badge>i {
    width: 34px;
    height: 34px
  }

  .about-badge strong {
    font-size: 10px
  }

  .about-badge small {
    font-size: 8px
  }



  .feature-card {
    padding: 25px
  }

  .gallery-card {
    height: auto
  }

  .process-card {
    padding: 25px
  }

  .member-photo {
    height: auto
  }

  .connection-box {
    padding: 38px 24px;
    border-radius: 25px
  }

  .connection-image {
    height: 390px
  }

  .story-card {
    padding: 25px
  }

  .final-cta {
    padding: 80px 0
  }


  .cta-buttons {
    flex-direction: column
  }

  .cta-buttons .btn {
    width: 100%
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center
  }

  h2 {
    font-size: 2rem;
  }
}

/* SMALL MOBILE */
@media(max-width:400px) {
  .brand-name {
    font-size: 18px
  }

  .brand-icon {
    width: 36px;
    height: 36px
  }

  .hero-content h1 {
    font-size: 30px
  }

  .hero-label {
    font-size: 11px
  }

  .hero-image-frame {
    height: 410px
  }

  .hero-mini-image {
    width: 90px;
    height: 120px
  }

  .floating-card-one {
    display: none;
  }

  .floating-card-two {
    display: none
  }

  h2 {
    font-size: 1.8rem;
  }

}

/* LARGE SCREENS */
@media(min-width:1600px) {
  .container {
    max-width: 1320px
  }

  .hero-section {
    min-height: 900px
  }

  .hero-image-frame {
    height: 680px
  }

  .hero-row {
    min-height: 680px
  }
}







/* ================= BACK TO TOP ================= */
.back-to-top {
  position: fixed;
  right: 25px;
  bottom: 25px;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ff2d75, #8b2cff);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all .35s ease;
  z-index: 9999;
  box-shadow: 0 10px 30px rgba(255, 45, 117, .35);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(255, 45, 117, .5);
}

@media(max-width:575.98px) {
  .back-to-top {
    right: 15px;
    bottom: 15px;
    width: 45px;
    height: 45px;
    font-size: 16px;
  }
}