/* =========================================
ENVISION TALK — HEADER CSS
========================================= */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Inter',sans-serif;
  background:#FFFFFF;
  color:#101828;
}

/* =========================================
CONTAINER
========================================= */

.et-container{
  width:100%;
  max-width:1440px;
  margin:auto;
  padding:0 40px;
}

/* =========================================
HEADER
========================================= */

.et-header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:999;
  background:rgba(255,255,255,0.82);
  backdrop-filter:blur(18px);
  border-bottom:1px solid #E4E7EC;
}

/* HEADER INNER */

.et-header .et-container{
  height:84px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

/* =========================================
LOGO
========================================= */

.et-logo-wrap{
  display:flex;
  align-items:center;
  text-decoration:none;
}

.et-logo{
  height:46px;
  width:auto;
  object-fit:contain;
}

/* =========================================
NAVIGATION
========================================= */

.et-nav{
  display:flex;
  align-items:center;
  gap:34px;
}

.et-nav-link{
  position:relative;
  text-decoration:none;
  color:#667085;
  font-size:15px;
  font-weight:500;
  transition:0.3s ease;
}

/* ACTIVE */

.et-nav-link.active{
  color:#0057FF;
  font-weight:600;
}

/* HOVER */

.et-nav-link:hover{
  color:#0057FF;
}

/* UNDERLINE */

.et-nav-link::after{
  content:'';
  position:absolute;
  left:0;
  bottom:-8px;
  width:0%;
  height:2px;
  border-radius:10px;
  background:#0057FF;
  transition:0.3s ease;
}

.et-nav-link:hover::after{
  width:100%;
}

/* =========================================
RIGHT SIDE
========================================= */

.et-header-right{
  display:flex;
  align-items:center;
  gap:18px;
}

/* =========================================
SOCIALS
========================================= */

.et-socials{
  display:flex;
  align-items:center;
  gap:10px;
}

.et-social-link{
  width:42px;
  height:42px;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  color:#101828;
  background:#FFFFFF;
  border:1px solid #E4E7EC;
  transition:0.3s ease;
}

.et-social-link:hover{
  border-color:#0057FF;
  color:#0057FF;
  transform:translateY(-2px);
}

/* =========================================
BUTTON
========================================= */

.et-header-btn{
  height:48px;
  padding:0 24px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  background:#0057FF;
  color:#FFFFFF;
  font-size:14px;
  font-weight:600;
  transition:0.3s ease;
}

.et-header-btn:hover{
  background:#0047D4;
  transform:translateY(-2px);
}

/* =========================================
MENU BUTTON
========================================= */

.et-menu-btn{
  width:48px;
  height:48px;
  display:none;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  gap:5px;
  border:none;
  background:transparent;
  cursor:pointer;
}

.et-menu-btn span{
  width:24px;
  height:2px;
  background:#101828;
  border-radius:10px;
  transition:0.3s ease;
}

/* =========================================
MOBILE MENU
========================================= */

.et-mobile-menu{
  position:fixed;
  top:84px;
  left:0;
  width:100%;
  height:calc(100vh - 84px);
  background:#FFFFFF;
  z-index:998;
  transform:translateX(100%);
  transition:0.4s ease;
}

.et-mobile-menu.active{
  transform:translateX(0%);
}

/* INNER */

.et-mobile-inner{
  width:100%;
  height:100%;
  padding:40px 24px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}

/* NAV */

.et-mobile-nav{
  display:flex;
  flex-direction:column;
  gap:28px;
}

.et-mobile-nav a{
  text-decoration:none;
  color:#101828;
  font-size:28px;
  font-weight:600;
}

/* SOCIALS */

.et-mobile-socials{
  display:flex;
  align-items:center;
  gap:12px;
}

.et-mobile-socials a{
  width:48px;
  height:48px;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#F7F9FC;
  border:1px solid #E4E7EC;
  text-decoration:none;
  color:#101828;
}

/* BUTTON */

.et-mobile-btn{
  width:100%;
  height:54px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  background:#0057FF;
  color:#FFFFFF;
  font-weight:600;
}

/* =========================================
RESPONSIVE
========================================= */

@media(max-width:1200px){

  .et-nav{
    display:none;
  }

  .et-socials{
    display:none;
  }

  .et-header-btn{
    display:none;
  }

  .et-menu-btn{
    display:flex;
  }

}

@media(max-width:768px){

  .et-container{
    padding:0 20px;
  }

  .et-header .et-container{
    height:76px;
  }

  .et-logo{
    height:42px;
  }

  .et-mobile-menu{
    top:76px;
    height:calc(100vh - 76px);
  }

  .et-mobile-nav a{
    font-size:24px;
  }

}
/* =========================================
UPDATED HEADER IMPROVEMENTS
Clean Modern Media Style
========================================= */

/* HEADER HEIGHT */

.et-header .et-container{
  height:78px;
}

/* =========================================
NAVIGATION
========================================= */

.et-nav{
  display:flex;
  align-items:center;
  gap:26px;
}

/* NAV LINKS */

.et-nav-link{
  position:relative;
  text-decoration:none;
  color:#667085;
  font-size:15px;
  font-weight:500;
  letter-spacing:-0.2px;
  transition:0.3s ease;
  padding-bottom:4px;
}

/* ACTIVE */

.et-nav-link.active{
  color:#0057FF;
  font-weight:600;
}

/* HOVER */

.et-nav-link:hover{
  color:#101828;
}

/* CLEAN UNDERLINE */

.et-nav-link::after{
  content:'';
  position:absolute;
  left:0;
  bottom:-6px;
  width:0%;
  height:2px;
  border-radius:20px;
  background:#0057FF;
  transition:0.3s ease;
}

.et-nav-link:hover::after{
  width:100%;
}

/* =========================================
RIGHT SECTION
========================================= */

.et-header-right{
  display:flex;
  align-items:center;
  gap:14px;
}

/* =========================================
SOCIALS
========================================= */

.et-socials{
  display:flex;
  align-items:center;
  gap:8px;
}

.et-social-link{
  width:40px;
  height:40px;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  color:#344054;
  background:#FFFFFF;
  border:1px solid #E4E7EC;
  transition:0.3s ease;
}

.et-social-link i{
  font-size:16px;
}

.et-social-link:hover{
  color:#0057FF;
  border-color:#B9D3FF;
  background:#F5F9FF;
  transform:translateY(-2px);
}

/* =========================================
CTA BUTTON
========================================= */

.et-header-btn{
  height:46px;
  padding:0 18px 0 22px;
  border-radius:14px;
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  background:#0057FF;
  color:#FFFFFF;
  font-size:14px;
  font-weight:600;
  transition:0.3s ease;
}

/* ARROW ICON */

.et-header-btn i{
  width:22px;
  height:22px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(255,255,255,0.16);
  font-size:12px;
  transition:0.3s ease;
}

/* HOVER */

.et-header-btn:hover{
  background:#0047D4;
  transform:translateY(-2px);
}

.et-header-btn:hover i{
  transform:translateX(2px);
}

/* =========================================
MENU BUTTON
========================================= */

.et-menu-btn{
  width:46px;
  height:46px;
  border-radius:12px;
  border:1px solid #E4E7EC;
  background:#FFFFFF;
  display:none;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  gap:5px;
  cursor:pointer;
  transition:0.3s ease;
}

.et-menu-btn:hover{
  border-color:#B9D3FF;
  background:#F5F9FF;
}

.et-menu-btn span{
  width:20px;
  height:2px;
  border-radius:10px;
  background:#101828;
  transition:0.3s ease;
}

/* =========================================
MOBILE MENU
========================================= */

.et-mobile-menu{
  position:fixed;
  top:78px;
  left:0;
  width:100%;
  height:calc(100vh - 78px);
  background:#FFFFFF;
  z-index:999;
  transform:translateX(100%);
  transition:0.45s ease;
}

/* ACTIVE */

.et-mobile-menu.active{
  transform:translateX(0%);
}

/* INNER */

.et-mobile-inner{
  width:100%;
  height:100%;
  padding:32px 24px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}

/* MOBILE NAV */

.et-mobile-nav{
  display:flex;
  flex-direction:column;
  gap:8px;
}

/* MOBILE LINKS */

.et-mobile-nav a{
  width:100%;
  height:58px;
  padding:0 18px;
  border-radius:16px;
  display:flex;
  align-items:center;
  text-decoration:none;
  color:#101828;
  font-size:17px;
  font-weight:600;
  transition:0.3s ease;
}

/* MOBILE HOVER */

.et-mobile-nav a:hover{
  background:#F5F9FF;
  color:#0057FF;
}

/* MOBILE SOCIALS */

.et-mobile-socials{
  display:flex;
  align-items:center;
  gap:10px;
}

.et-mobile-socials a{
  width:46px;
  height:46px;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  background:#F8FAFC;
  border:1px solid #E4E7EC;
  color:#344054;
  transition:0.3s ease;
}

.et-mobile-socials a:hover{
  color:#0057FF;
  background:#F5F9FF;
}

/* MOBILE BUTTON */

.et-mobile-btn{
  width:100%;
  height:104px;
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  text-decoration:none;
  background:#0057FF;
  color:#FFFFFF;
  font-weight:600;
  transition:0.3s ease;
}

.et-mobile-btn i{
  font-size:13px;
}

.et-mobile-btn:hover{
  background:#0047D4;
}

/* =========================================
RESPONSIVE
========================================= */

@media(max-width:1200px){

  .et-nav{
    display:none;
  }

  .et-socials{
    display:none;
  }

  .et-header-btn{
    display:none;
  }

  .et-menu-btn{
    display:flex;
  }

}

@media(max-width:768px){

  .et-container{
    padding:0 18px;
  }

  .et-logo{
    height:40px;
  }

}



/* =========================================
HERO SECTION
========================================= */

.et-hero{
  width:100%;
  padding:150px 0 90px;
  background:
  linear-gradient(
    to bottom,
    #FFFFFF,
    #F8FAFC
  );
  overflow:hidden;
}

/* WRAPPER */

.et-hero-wrapper{
  display:grid;
  grid-template-columns:1fr 1.08fr;
  gap:70px;
  align-items:center;
}

/* =========================================
LEFT CONTENT
========================================= */

.et-hero-content{
  width:100%;
}

/* LABEL */

.et-hero-label{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:34px;
  padding:0 16px;
  border-radius:999px;
  background:#EFF6FF;
  color:#0057FF;
  font-size:12px;
  font-weight:700;
  letter-spacing:1.2px;
  margin-bottom:24px;
}

/* TITLE */

.et-hero-title{
  font-size:68px;
  line-height:1.02;
  font-weight:800;
  letter-spacing:-3px;
  color:#3b4a64;
  margin-bottom:26px;
  max-width:720px;
}

/* DESCRIPTION */

.et-hero-description{
  font-size:18px;
  line-height:1.8;
  color:#1b212d;
  max-width:620px;
  margin-bottom:38px;
}

/* =========================================
BUTTONS
========================================= */

.et-hero-buttons{
  display:flex;
  align-items:center;
  gap:16px;
  margin-bottom:38px;
}

/* PRIMARY BUTTON */

.et-primary-btn{
  height:54px;
  padding:0 24px;
  border-radius:16px;
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
  background:#0057FF;
  color:#FFFFFF;
  font-size:15px;
  font-weight:600;
  transition:0.3s ease;
}

.et-primary-btn i{
  font-size:13px;
}

.et-primary-btn:hover{
  background:#0047D4;
  transform:translateY(-2px);
}

/* SECONDARY BUTTON */

.et-secondary-btn{
  height:54px;
  padding:0 24px;
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  background:#FFFFFF;
  border:1px solid #E4E7EC;
  color:#101828;
  font-size:15px;
  font-weight:600;
  transition:0.3s ease;
}

.et-secondary-btn:hover{
  border-color:#B9D3FF;
  color:#0057FF;
  background:#F8FBFF;
}

/* =========================================
TAGS
========================================= */

.et-hero-tags{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

.et-hero-tags span{
  height:42px;
  padding:0 18px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#FFFFFF;
  border:1px solid #E4E7EC;
  color:#344054;
  font-size:14px;
  font-weight:500;
  transition:0.3s ease;
}

.et-hero-tags span:hover{
  border-color:#B9D3FF;
  color:#0057FF;
  background:#F8FBFF;
}

/* =========================================
RIGHT VISUAL
========================================= */

.et-hero-visual{
  width:100%;
}

/* IMAGE WRAP */

.et-hero-image-wrap{
  position:relative;
  width:100%;
  border-radius:32px;
  overflow:hidden;
  background:#000000;
  box-shadow:
  0 20px 60px rgba(16,24,40,0.08);
}

/* IMAGE */

.et-hero-image{
  width:100%;
  height:680px;
  object-fit:cover;
  display:block;
}

/* OVERLAY */

.et-hero-overlay{
  position:absolute;
  inset:0;
  background:
  linear-gradient(
    to top,
    rgba(0,0,0,0.45),
    rgba(0,0,0,0.02)
  );
}

/* =========================================
PLAY BUTTON
========================================= */

.et-hero-play{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  width:78px;
  height:78px;
  border-radius:50%;
  border:none;
  background:#FFFFFF;
  color:#0057FF;
  font-size:20px;
  cursor:pointer;
  transition:0.3s ease;
}

.et-hero-play:hover{
  transform:
  translate(-50%,-50%)
  scale(1.06);
}

/* =========================================
TOP INFO
========================================= */

.et-hero-top-info{
  position:absolute;
  top:24px;
  left:24px;
  right:24px;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

/* BADGE */

.et-info-badge{
  height:40px;
  padding:0 16px;
  border-radius:14px;
  display:flex;
  align-items:center;
  background:rgba(255,255,255,0.9);
  color:#101828;
  font-size:14px;
  font-weight:600;
  backdrop-filter:blur(12px);
}

/* TIME */

.et-info-time{
  height:40px;
  padding:0 16px;
  border-radius:14px;
  display:flex;
  align-items:center;
  background:rgba(255,255,255,0.9);
  color:#101828;
  font-size:14px;
  font-weight:600;
}

/* =========================================
BOTTOM PLAYER
========================================= */

.et-hero-bottom{
  position:absolute;
  left:24px;
  right:24px;
  bottom:22px;
}

/* PROGRESS */

.et-progress-line{
  width:100%;
  height:4px;
  border-radius:999px;
  background:rgba(255,255,255,0.25);
  overflow:hidden;
  margin-bottom:12px;
}

.et-progress-line span{
  width:42%;
  height:100%;
  display:block;
  background:#FFFFFF;
}

/* META */

.et-bottom-meta{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.et-bottom-meta span{
  color:#FFFFFF;
  font-size:13px;
  font-weight:500;
}

/* =========================================
RESPONSIVE
========================================= */

@media(max-width:1200px){

  .et-hero-wrapper{
    grid-template-columns:1fr;
    gap:50px;
  }

  .et-hero-title{
    font-size:58px;
  }

  .et-hero-image{
    height:620px;
  }

}

@media(max-width:768px){

  .et-hero{
    padding:120px 0 70px;
  }

  .et-container{
    padding:0 20px;
  }

  .et-hero-title{
    font-size:42px;
    line-height:1.08;
    letter-spacing:-2px;
  }

  .et-hero-description{
    font-size:16px;
    line-height:1.7;
  }

  .et-hero-buttons{
    flex-direction:column;
    align-items:stretch;
  }

  .et-primary-btn,
  .et-secondary-btn{
    width:100%;
    justify-content:center;
  }

  .et-hero-tags{
    gap:10px;
  }

  .et-hero-tags span{
    height:38px;
    padding:0 14px;
    font-size:13px;
  }

  .et-hero-image{
    height:420px;
  }

  .et-hero-play{
    width:64px;
    height:64px;
    font-size:16px;
  }

  .et-info-badge,
  .et-info-time{
    height:36px;
    padding:0 14px;
    font-size:12px;
  }

}

/* =========================================
CATEGORIES SECTION
========================================= */

.et-categories-section{
  width:100%;
  padding:90px 0;
  background:#FFFFFF;
}

/* =========================================
SECTION TOP
========================================= */

.et-section-top{
  width:100%;
  margin-bottom:42px;
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:30px;
}

/* LABEL */

.et-section-label{
  display:inline-block;
  margin-bottom:14px;
  color:#0057FF;
  font-size:12px;
  font-weight:700;
  letter-spacing:1.2px;
}

/* TITLE */

.et-section-title{
  font-size:44px;
  line-height:1.12;
  letter-spacing:-2px;
  font-weight:800;
  color:#101828;
  max-width:720px;
}

/* LINK */

.et-section-link{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  color:#0057FF;
  font-size:15px;
  font-weight:600;
  transition:0.3s ease;
  white-space:nowrap;
}

.et-section-link i{
  font-size:13px;
  transition:0.3s ease;
}

.et-section-link:hover i{
  transform:translateX(3px);
}

/* =========================================
GRID
========================================= */

.et-categories-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}

/* =========================================
CARD
========================================= */

.et-category-card{
  width:100%;
  background:#FFFFFF;
  border:1px solid #E4E7EC;
  border-radius:26px;
  overflow:hidden;
  text-decoration:none;
  transition:0.35s ease;
}

/* HOVER */

.et-category-card:hover{
  transform:translateY(-6px);
  border-color:#B9D3FF;
  box-shadow:
  0 18px 40px rgba(16,24,40,0.08);
}

/* =========================================
IMAGE
========================================= */

.et-category-image-wrap{
  width:100%;
  height:240px;
  overflow:hidden;
}

.et-category-image{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:0.45s ease;
}

.et-category-card:hover .et-category-image{
  transform:scale(1.06);
}

/* =========================================
CONTENT
========================================= */

.et-category-content{
  padding:24px;
}

/* TITLE */

.et-category-content h3{
  color:#101828;
  font-size:22px;
  line-height:1.2;
  font-weight:700;
  margin-bottom:12px;
  letter-spacing:-0.8px;
}

/* DESCRIPTION */

.et-category-content p{
  color:#667085;
  font-size:15px;
  line-height:1.7;
}

/* =========================================
RESPONSIVE
========================================= */

@media(max-width:1200px){

  .et-categories-grid{
    grid-template-columns:repeat(2,1fr);
  }

}

@media(max-width:768px){

  .et-categories-section{
    padding:70px 0;
  }

  .et-section-top{
    flex-direction:column;
    align-items:flex-start;
    margin-bottom:32px;
  }

  .et-section-title{
    font-size:34px;
    letter-spacing:-1.5px;
  }

  .et-categories-grid{
    grid-template-columns:1fr;
    gap:20px;
  }

  .et-category-image-wrap{
    height:220px;
  }

  .et-category-content{
    padding:22px;
  }

  .et-category-content h3{
    font-size:20px;
  }

}

/* =========================================
FEATURED CONVERSATIONS SECTION
========================================= */

.et-featured-conversations-section{
  width:100%;
  padding:100px 0;
  background:
  linear-gradient(
    180deg,
    #5e77ab 0%,
    #1e2638 100%
  );
}

/* =========================================
TOPBAR
========================================= */

.et-featured-topbar{
  width:100%;
  margin-bottom:54px;
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:30px;
}

/* LABEL */

.et-featured-label{
  display:block;
  margin-bottom:16px;
  color:rgba(255,255,255,0.72);
  font-size:12px;
  font-weight:700;
  letter-spacing:1.4px;
}

/* TITLE */

.et-featured-title{
  color:#FFFFFF;
  font-size:56px;
  line-height:1.02;
  letter-spacing:-2px;
  font-weight:800;
  max-width:700px;
}

/* =========================================
NAVIGATION
========================================= */

.et-featured-navigation{
  display:flex;
  align-items:center;
  gap:12px;
}

/* BUTTON */

.et-featured-arrow-btn{
  width:54px;
  height:54px;
  border:none;
  border-radius:18px;
  background:rgba(255,255,255,0.12);
  backdrop-filter:blur(12px);
  color:#FFFFFF;
  cursor:pointer;
  transition:0.3s ease;
}

.et-featured-arrow-btn:hover{
  background:#FFFFFF;
  color:#0057FF;
}

/* =========================================
SLIDER
========================================= */

.et-featured-slider-wrapper{
  width:100%;
  overflow-x:auto;
  overflow-y:hidden;
  scroll-behavior:smooth;
  scrollbar-width:none;
}

.et-featured-slider-wrapper::-webkit-scrollbar{
  display:none;
}

/* TRACK */

.et-featured-slider-track{
  display:flex;
  gap:26px;
  width:max-content;
}

/* =========================================
CARD
========================================= */

.et-featured-story-card{
  width:520px;
  flex-shrink:0;
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.12);
  backdrop-filter:blur(12px);
  border-radius:30px;
  padding:20px;
  display:flex;
  align-items:center;
  gap:22px;
  text-decoration:none;
  transition:0.3s ease;
}

/* HOVER */

.et-featured-story-card:hover{
  transform:translateY(-4px);
  background:rgba(255,255,255,0.14);
}

/* =========================================
IMAGE
========================================= */

.et-featured-story-image{
  width:180px;
  height:180px;
  border-radius:22px;
  overflow:hidden;
  flex-shrink:0;
  background:rgba(255,255,255,0.08);
}

.et-featured-story-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

/* =========================================
CONTENT
========================================= */

.et-featured-story-content span{
  display:block;
  margin-bottom:14px;
  color:rgba(255,255,255,0.72);
  font-size:13px;
  font-weight:500;
}

/* TITLE */

.et-featured-story-content h3{
  color:#FFFFFF;
  font-size:30px;
  line-height:1.2;
  letter-spacing:-1px;
  font-weight:700;
}

/* =========================================
RESPONSIVE
========================================= */

@media(max-width:768px){

  .et-featured-conversations-section{
    padding:70px 0;
  }

  .et-featured-topbar{
    flex-direction:column;
    align-items:flex-start;
    margin-bottom:36px;
  }

  .et-featured-title{
    font-size:38px;
    line-height:1.08;
  }

  .et-featured-navigation{
    display:none;
  }

  .et-featured-story-card{
    width:88vw;
    flex-direction:column;
    align-items:flex-start;
  }

  .et-featured-story-image{
    width:100%;
    height:220px;
  }

  .et-featured-story-content h3{
    font-size:24px;
  }

}

/* =========================================
ABOUT PLATFORM SECTION
========================================= */

.et-about-platform-section{
  width:100%;
  padding:110px 0;
  background:#FFFFFF;
}

/* =========================================
WRAPPER
========================================= */

.et-about-platform-wrapper{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:center;
}

/* =========================================
CONTENT
========================================= */

.et-about-platform-content{
  width:100%;
}

/* LABEL */

.et-about-platform-label{
  display:inline-block;
  margin-bottom:18px;
  color:#0057FF;
  font-size:12px;
  font-weight:700;
  letter-spacing:1.4px;
}

/* TITLE */

.et-about-platform-title{
  color:#101828;
  font-size:58px;
  line-height:1.04;
  letter-spacing:-2.5px;
  font-weight:800;
  margin-bottom:28px;
}

/* DESCRIPTION */

.et-about-platform-description{
  color:#667085;
  font-size:17px;
  line-height:1.9;
  margin-bottom:22px;
  max-width:620px;
}

/* =========================================
BUTTONS
========================================= */

.et-about-platform-buttons{
  display:flex;
  align-items:center;
  gap:16px;
  margin-top:36px;
}

/* PRIMARY */

.et-about-primary-btn{
  height:54px;
  padding:0 24px;
  border-radius:16px;
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
  background:#0057FF;
  color:#FFFFFF;
  font-size:15px;
  font-weight:600;
  transition:0.3s ease;
}

.et-about-primary-btn:hover{
  background:#0047D4;
  transform:translateY(-2px);
}

/* SECONDARY */

.et-about-secondary-btn{
  height:54px;
  padding:0 24px;
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  border:1px solid #E4E7EC;
  background:#FFFFFF;
  color:#101828;
  font-size:15px;
  font-weight:600;
  transition:0.3s ease;
}

.et-about-secondary-btn:hover{
  border-color:#B9D3FF;
  color:#0057FF;
  background:#F8FBFF;
}

/* =========================================
VISUAL
========================================= */

.et-about-platform-visual{
  position:relative;
}

/* IMAGE WRAP */

.et-about-platform-image-wrap{
  width:100%;
  height:720px;
  border-radius:34px;
  overflow:hidden;
  background:#F3F4F6;
}

/* IMAGE */

.et-about-platform-image-wrap img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

/* =========================================
FLOATING CARDS
========================================= */

.et-about-floating-card{
  position:absolute;
  padding:26px 28px;
  border-radius:24px;
  background:rgba(255,255,255,0.92);
  backdrop-filter:blur(14px);
  box-shadow:
  0 20px 40px rgba(16,24,40,0.08);
}

/* CARD TITLE */

.et-about-floating-card h3{
  color:#101828;
  font-size:38px;
  line-height:1;
  font-weight:800;
  margin-bottom:10px;
  letter-spacing:-1.5px;
}

/* CARD TEXT */

.et-about-floating-card span{
  color:#667085;
  font-size:14px;
  line-height:1.6;
  font-weight:500;
}

/* POSITION */

.et-about-card-one{
  left:-40px;
  bottom:80px;
}

.et-about-card-two{
  right:-40px;
  top:80px;
}

/* =========================================
RESPONSIVE
========================================= */

@media(max-width:1200px){

  .et-about-platform-wrapper{
    grid-template-columns:1fr;
    gap:60px;
  }

  .et-about-platform-title{
    font-size:50px;
  }

}

@media(max-width:768px){

  .et-about-platform-section{
    padding:80px 0;
  }

  .et-about-platform-title{
    font-size:38px;
    line-height:1.08;
    letter-spacing:-1.5px;
  }

  .et-about-platform-description{
    font-size:16px;
    line-height:1.8;
  }

  .et-about-platform-buttons{
    flex-direction:column;
    align-items:stretch;
  }

  .et-about-primary-btn,
  .et-about-secondary-btn{
    width:100%;
    justify-content:center;
  }

  .et-about-platform-image-wrap{
    height:460px;
  }

  .et-about-floating-card{
    position:relative;
    left:auto;
    right:auto;
    top:auto;
    bottom:auto;
    margin-top:18px;
  }

  .et-about-floating-card h3{
    font-size:30px;
  }

}

/* =========================================
FEATURE YOUR BUSINESS SECTION
========================================= */

.et-business-feature-section{
  width:100%;
  padding:110px 0;
  background:#ecf2fc;
  overflow:hidden;
}

/* =========================================
WRAPPER
========================================= */

.et-business-feature-wrapper{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:center;
}

/* =========================================
CONTENT
========================================= */

.et-business-feature-content{
  width:100%;
}

/* LABEL */

.et-business-feature-label{
  display:inline-block;
  margin-bottom:18px;
  color:#0057FF;
  font-size:12px;
  font-weight:700;
  letter-spacing:1.4px;
}

/* TITLE */

.et-business-feature-title{
  color:#101828;
  font-size:58px;
  line-height:1.04;
  letter-spacing:-2.5px;
  font-weight:800;
  margin-bottom:28px;
}

/* DESCRIPTION */

.et-business-feature-description{
  color:#667085;
  font-size:17px;
  line-height:1.9;
  margin-bottom:22px;
  max-width:620px;
}

/* =========================================
FEATURE POINTS
========================================= */

.et-business-feature-points{
  margin-top:34px;
  margin-bottom:38px;
  display:flex;
  flex-direction:column;
  gap:18px;
}

/* POINT */

.et-business-point{
  display:flex;
  align-items:center;
  gap:14px;
}

/* ICON */

.et-business-point-icon{
  width:28px;
  height:28px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#EAF2FF;
  color:#0057FF;
  font-size:13px;
  flex-shrink:0;
}

/* TEXT */

.et-business-point span{
  color:#344054;
  font-size:16px;
  font-weight:600;
}

/* =========================================
BUTTONS
========================================= */

.et-business-feature-buttons{
  display:flex;
  align-items:center;
  gap:16px;
}

/* PRIMARY */

.et-business-primary-btn{
  height:56px;
  padding:0 26px;
  border-radius:16px;
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
  background:#0057FF;
  color:#FFFFFF;
  font-size:15px;
  font-weight:600;
  transition:0.3s ease;
}

.et-business-primary-btn:hover{
  background:#0047D4;
  transform:translateY(-2px);
}

/* SECONDARY */

.et-business-secondary-btn{
  height:56px;
  padding:0 24px;
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  border:1px solid #D0D5DD;
  background:#FFFFFF;
  color:#101828;
  font-size:15px;
  font-weight:600;
  transition:0.3s ease;
}

.et-business-secondary-btn:hover{
  border-color:#B9D3FF;
  color:#0057FF;
  background:#F8FBFF;
}

/* =========================================
VISUAL
========================================= */

.et-business-feature-visual{
  position:relative;
}

/* IMAGE */

.et-business-image-wrap{
  width:100%;
  height:720px;
  border-radius:34px;
  overflow:hidden;
  background:#EAECEF;
}

/* IMAGE */

.et-business-image-wrap img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

/* =========================================
FLOATING BOX
========================================= */

.et-business-floating-box{
  position:absolute;
  left:-30px;
  bottom:50px;
  width:340px;
  padding:28px;
  border-radius:28px;
  background:rgba(255,255,255,0.92);
  backdrop-filter:blur(14px);
  box-shadow:
  0 20px 40px rgba(16,24,40,0.08);
}

/* LABEL */

.et-business-floating-box span{
  display:inline-block;
  margin-bottom:14px;
  color:#0057FF;
  font-size:13px;
  font-weight:700;
}

/* TITLE */

.et-business-floating-box h3{
  color:#101828;
  font-size:28px;
  line-height:1.3;
  letter-spacing:-1px;
  font-weight:700;
}

/* =========================================
RESPONSIVE
========================================= */

@media(max-width:1200px){

  .et-business-feature-wrapper{
    grid-template-columns:1fr;
    gap:60px;
  }

  .et-business-feature-title{
    font-size:50px;
  }

}

@media(max-width:768px){

  .et-business-feature-section{
    padding:80px 0;
  }

  .et-business-feature-title{
    font-size:38px;
    line-height:1.08;
    letter-spacing:-1.5px;
  }

  .et-business-feature-description{
    font-size:16px;
    line-height:1.8;
  }

  .et-business-feature-buttons{
    flex-direction:column;
    align-items:stretch;
  }

  .et-business-primary-btn,
  .et-business-secondary-btn{
    width:100%;
    justify-content:center;
  }

  .et-business-image-wrap{
    height:460px;
  }

  .et-business-floating-box{
    position:relative;
    left:auto;
    bottom:auto;
    width:100%;
    margin-top:18px;
  }

  .et-business-floating-box h3{
    font-size:24px;
  }

}

/* =========================================
BECOME A GUEST SECTION
========================================= */

.et-guest-section{
  width:100%;
  padding:110px 0;
  background:#FFFFFF;
}

/* =========================================
WRAPPER
========================================= */

.et-guest-wrapper{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:start;
}

/* =========================================
LEFT CONTENT
========================================= */

.et-guest-content{
  width:100%;
}

/* LABEL */

.et-guest-label{
  display:inline-block;
  margin-bottom:18px;
  color:#0057FF;
  font-size:12px;
  font-weight:700;
  letter-spacing:1.4px;
}

/* TITLE */

.et-guest-title{
  color:#101828;
  font-size:58px;
  line-height:1.04;
  letter-spacing:-2.5px;
  font-weight:800;
  margin-bottom:28px;
}

/* DESCRIPTION */

.et-guest-description{
  color:#667085;
  font-size:17px;
  line-height:1.9;
  margin-bottom:22px;
  max-width:620px;
}

/* =========================================
FEATURES
========================================= */

.et-guest-features{
  margin-top:42px;
  display:flex;
  flex-direction:column;
  gap:24px;
}

/* ITEM */

.et-guest-feature-item{
  display:flex;
  align-items:flex-start;
  gap:18px;
}

/* ICON */

.et-guest-feature-icon{
  width:58px;
  height:58px;
  border-radius:18px;
  background:#EEF4FF;
  color:#0057FF;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:22px;
  flex-shrink:0;
}

/* TEXT */

.et-guest-feature-text h4{
  color:#101828;
  font-size:22px;
  line-height:1.2;
  font-weight:700;
  margin-bottom:8px;
  letter-spacing:-0.6px;
}

.et-guest-feature-text p{
  color:#667085;
  font-size:15px;
  line-height:1.8;
}

/* =========================================
FORM BOX
========================================= */

.et-guest-form-box{
  width:100%;
  padding:42px;
  border-radius:34px;
  background:#e6eefb;
  border:1px solid #7dadff;
}

/* TOP */

.et-guest-form-top{
  margin-bottom:34px;
}

/* LABEL */

.et-guest-form-top span{
  display:inline-block;
  margin-bottom:14px;
  color:#0057FF;
  font-size:13px;
  font-weight:700;
}

/* TITLE */

.et-guest-form-top h3{
  color:#101828;
  font-size:42px;
  line-height:1.08;
  letter-spacing:-1.5px;
  font-weight:800;
}

/* =========================================
FORM
========================================= */

.et-guest-form{
  width:100%;
}

/* ROW */

.et-guest-input-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}

/* GROUP */

.et-guest-input-group{
  width:100%;
  margin-bottom:22px;
}

/* LABEL */

.et-guest-input-group label{
  display:block;
  margin-bottom:10px;
  color:#344054;
  font-size:14px;
  font-weight:600;
}

/* INPUT */

.et-guest-input-group input,
.et-guest-input-group textarea{
  width:100%;
  border:none;
  outline:none;
  background:#FFFFFF;
  border:1px solid #D0D5DD;
  border-radius:16px;
  padding:18px 18px;
  color:#101828;
  font-size:15px;
  font-family:'Inter',sans-serif;
  transition:0.3s ease;
}

/* TEXTAREA */

.et-guest-input-group textarea{
  height:160px;
  resize:none;
}

/* FOCUS */

.et-guest-input-group input:focus,
.et-guest-input-group textarea:focus{
  border-color:#0057FF;
  box-shadow:
  0 0 0 4px rgba(0,87,255,0.08);
}

/* BUTTON */

.et-guest-submit-btn{
  width:100%;
  height:58px;
  border:none;
  border-radius:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  background:#0057FF;
  color:#FFFFFF;
  font-size:15px;
  font-weight:600;
  cursor:pointer;
  transition:0.3s ease;
}

.et-guest-submit-btn:hover{
  background:#0047D4;
  transform:translateY(-2px);
}

/* =========================================
RESPONSIVE
========================================= */

@media(max-width:1200px){

  .et-guest-wrapper{
    grid-template-columns:1fr;
    gap:60px;
  }

  .et-guest-title{
    font-size:50px;
  }

}

@media(max-width:768px){

  .et-guest-section{
    padding:80px 0;
  }

  .et-guest-title{
    font-size:38px;
    line-height:1.08;
    letter-spacing:-1.5px;
  }

  .et-guest-description{
    font-size:16px;
    line-height:1.8;
  }

  .et-guest-form-box{
    padding:26px;
    border-radius:26px;
  }

  .et-guest-form-top h3{
    font-size:32px;
  }

  .et-guest-input-row{
    grid-template-columns:1fr;
    gap:0;
  }

  .et-guest-feature-item{
    gap:14px;
  }

  .et-guest-feature-icon{
    width:50px;
    height:50px;
    border-radius:16px;
    font-size:18px;
  }

  .et-guest-feature-text h4{
    font-size:19px;
  }

}

/* =========================================
BRAND PARTNERSHIP SECTION
========================================= */

.et-brand-partnership-section{
  width:100%;
  padding:110px 0;
  background:
  linear-gradient(
    180deg,
    #0745c0 0%,
    #031e55 100%
  );
  overflow:hidden;
}

/* =========================================
TOP
========================================= */

.et-brand-top{
  width:100%;
  margin-bottom:60px;
  max-width:760px;
}

/* LABEL */

.et-brand-label{
  display:inline-block;
  margin-bottom:18px;
  color:rgba(255,255,255,0.72);
  font-size:12px;
  font-weight:700;
  letter-spacing:1.4px;
}

/* TITLE */

.et-brand-title{
  color:#FFFFFF;
  font-size:58px;
  line-height:1.04;
  letter-spacing:-2.5px;
  font-weight:800;
  margin-bottom:24px;
}

/* DESCRIPTION */

.et-brand-description{
  color:rgba(255,255,255,0.78);
  font-size:17px;
  line-height:1.9;
}

/* =========================================
GRID
========================================= */

.et-brand-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:26px;
  margin-bottom:54px;
}

/* =========================================
CARD
========================================= */

.et-brand-card{
  padding:34px;
  border-radius:30px;
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.12);
  backdrop-filter:blur(14px);
  transition:0.3s ease;
}

/* HOVER */

.et-brand-card:hover{
  transform:translateY(-5px);
  background:rgba(255,255,255,0.12);
}

/* ICON */

.et-brand-card-icon{
  width:64px;
  height:64px;
  border-radius:20px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(255,255,255,0.12);
  color:#FFFFFF;
  font-size:24px;
  margin-bottom:26px;
}

/* TITLE */

.et-brand-card h3{
  color:#FFFFFF;
  font-size:30px;
  line-height:1.2;
  letter-spacing:-1px;
  font-weight:700;
  margin-bottom:16px;
}

/* DESCRIPTION */

.et-brand-card p{
  color:rgba(255,255,255,0.78);
  font-size:15px;
  line-height:1.8;
}

/* =========================================
BOTTOM CTA
========================================= */

.et-brand-cta-box{
  width:100%;
  padding:34px 38px;
  border-radius:32px;
  background:#FFFFFF;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
}

/* CONTENT */

.et-brand-cta-content span{
  display:inline-block;
  margin-bottom:12px;
  color:#0057FF;
  font-size:13px;
  font-weight:700;
}

/* TITLE */

.et-brand-cta-content h3{
  color:#101828;
  font-size:36px;
  line-height:1.2;
  letter-spacing:-1.2px;
  font-weight:800;
  max-width:620px;
}

/* BUTTON */

.et-brand-cta-btn{
  height:58px;
  padding:0 26px;
  border-radius:18px;
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
  background:#0057FF;
  color:#FFFFFF;
  font-size:15px;
  font-weight:600;
  white-space:nowrap;
  transition:0.3s ease;
}

.et-brand-cta-btn:hover{
  background:#0047D4;
  transform:translateY(-2px);
}

/* =========================================
RESPONSIVE
========================================= */

@media(max-width:1200px){

  .et-brand-title{
    font-size:50px;
  }

  .et-brand-cta-box{
    flex-direction:column;
    align-items:flex-start;
  }

}

@media(max-width:768px){

  .et-brand-partnership-section{
    padding:80px 0;
  }

  .et-brand-title{
    font-size:38px;
    line-height:1.08;
    letter-spacing:-1.5px;
  }

  .et-brand-description{
    font-size:16px;
    line-height:1.8;
  }

  .et-brand-grid{
    grid-template-columns:1fr;
    gap:20px;
  }

  .et-brand-card{
    padding:28px;
    border-radius:24px;
  }

  .et-brand-card h3{
    font-size:24px;
  }

  .et-brand-cta-box{
    padding:28px;
    border-radius:26px;
  }

  .et-brand-cta-content h3{
    font-size:28px;
  }

  .et-brand-cta-btn{
    width:100%;
    justify-content:center;
  }

}


/* =========================================
COMMUNITY SECTION
BLACK & WHITE EDITORIAL THEME
========================================= */

.et-community-section{
  width:100%;
  padding:110px 0;
  background:#0A0A0A;
  overflow:hidden;
}

/* =========================================
WRAPPER
========================================= */

.et-community-wrapper{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:start;
}

/* =========================================
LEFT CONTENT
========================================= */

.et-community-content{
  width:100%;
}

/* LABEL */

.et-community-label{
  display:inline-block;
  margin-bottom:18px;
  color:rgba(255,255,255,0.58);
  font-size:12px;
  font-weight:700;
  letter-spacing:1.4px;
}

/* TITLE */

.et-community-title{
  color:#FFFFFF;
  font-size:58px;
  line-height:1.04;
  letter-spacing:-2.5px;
  font-weight:800;
  margin-bottom:28px;
}

/* DESCRIPTION */

.et-community-description{
  color:rgba(255,255,255,0.68);
  font-size:17px;
  line-height:1.9;
  margin-bottom:42px;
  max-width:620px;
}

/* =========================================
STATS
========================================= */

.et-community-stats{
  display:flex;
  flex-wrap:wrap;
  gap:18px;
}

/* ITEM */

.et-community-stat-item{
  min-width:180px;
  padding:28px;
  border-radius:26px;
  background:#111111;
  border:1px solid rgba(255,255,255,0.08);
  transition:0.3s ease;
}

/* HOVER */

.et-community-stat-item:hover{
  transform:translateY(-4px);
  border-color:rgba(255,255,255,0.14);
  background:#151515;
}

/* NUMBER */

.et-community-stat-item h3{
  color:#FFFFFF;
  font-size:40px;
  line-height:1;
  font-weight:800;
  margin-bottom:12px;
  letter-spacing:-1.5px;
}

/* TEXT */

.et-community-stat-item span{
  color:rgba(255,255,255,0.62);
  font-size:14px;
  line-height:1.7;
}

/* =========================================
RIGHT SIDE
========================================= */

.et-community-box{
  width:100%;
}

/* =========================================
SOCIAL GRID
========================================= */

.et-community-social-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
  margin-bottom:28px;
}

/* CARD */

.et-community-social-card{
  padding:28px;
  border-radius:28px;
  background:#111111;
  border:1px solid rgba(255,255,255,0.08);
  display:flex;
  align-items:center;
  gap:18px;
  text-decoration:none;
  transition:0.3s ease;
}

/* HOVER */

.et-community-social-card:hover{
  transform:translateY(-4px);
  background:#151515;
  border-color:rgba(255,255,255,0.14);
}

/* ICON */

.et-community-social-icon{
  width:62px;
  height:62px;
  border-radius:20px;
  background:#1B1B1B;
  color:#FFFFFF;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:24px;
  flex-shrink:0;
  transition:0.3s ease;
}

.et-community-social-card:hover
.et-community-social-icon{
  background:#FFFFFF;
  color:#000000;
}

/* TEXT */

.et-community-social-text h4{
  color:#FFFFFF;
  font-size:22px;
  line-height:1.2;
  font-weight:700;
  margin-bottom:8px;
  letter-spacing:-0.6px;
}

.et-community-social-text span{
  color:rgba(255,255,255,0.62);
  font-size:14px;
  line-height:1.7;
}

/* =========================================
NEWSLETTER
========================================= */

.et-community-newsletter{
  padding:36px;
  border-radius:30px;
  background:#FFFFFF;
}

/* TOP */

.et-community-newsletter-top{
  margin-bottom:28px;
}

/* LABEL */

.et-community-newsletter-top span{
  display:inline-block;
  margin-bottom:14px;
  color:#667085;
  font-size:13px;
  font-weight:700;
}

/* TITLE */

.et-community-newsletter-top h3{
  color:#101828;
  font-size:38px;
  line-height:1.12;
  letter-spacing:-1.2px;
  font-weight:800;
}

/* FORM */

.et-community-newsletter-form{
  display:flex;
  gap:14px;
}

/* INPUT */

.et-community-newsletter-form input{
  flex:1;
  height:58px;
  border:none;
  outline:none;
  border-radius:18px;
  padding:0 20px;
  background:#F5F5F5;
  color:#101828;
  font-size:15px;
  font-family:'Inter',sans-serif;
}

/* BUTTON */

.et-community-newsletter-form button{
  height:58px;
  padding:0 26px;
  border:none;
  border-radius:18px;
  background:#101828;
  color:#FFFFFF;
  font-size:15px;
  font-weight:600;
  cursor:pointer;
  transition:0.3s ease;
}

.et-community-newsletter-form button:hover{
  background:#000000;
}

/* =========================================
RESPONSIVE
========================================= */

@media(max-width:1200px){

  .et-community-wrapper{
    grid-template-columns:1fr;
    gap:60px;
  }

  .et-community-title{
    font-size:50px;
  }

}

@media(max-width:768px){

  .et-community-section{
    padding:80px 0;
  }

  .et-community-title{
    font-size:38px;
    line-height:1.08;
    letter-spacing:-1.5px;
  }

  .et-community-description{
    font-size:16px;
    line-height:1.8;
  }

  .et-community-stats{
    flex-direction:column;
  }

  .et-community-stat-item{
    width:100%;
  }

  .et-community-social-grid{
    grid-template-columns:1fr;
  }

  .et-community-social-card{
    padding:24px;
    border-radius:24px;
  }

  .et-community-social-text h4{
    font-size:20px;
  }

  .et-community-newsletter{
    padding:28px;
    border-radius:26px;
  }

  .et-community-newsletter-top h3{
    font-size:30px;
  }

  .et-community-newsletter-form{
    flex-direction:column;
  }

  .et-community-newsletter-form button{
    width:100%;
  }

}

/* =========================================
FAQ SECTION
========================================= */

.et-faq-section{
  width:100%;
  padding:110px 0;
  background:#FFFFFF;
}

/* =========================================
TOP
========================================= */

.et-faq-top{
  width:100%;
  max-width:760px;
  margin:0 auto 60px;
  text-align:center;
}

/* LABEL */

.et-faq-label{
  display:inline-block;
  margin-bottom:18px;
  color:#0057FF;
  font-size:12px;
  font-weight:700;
  letter-spacing:1.4px;
}

/* TITLE */

.et-faq-title{
  color:#101828;
  font-size:58px;
  line-height:1.04;
  letter-spacing:-2.5px;
  font-weight:800;
  margin-bottom:24px;
}

/* DESCRIPTION */

.et-faq-description{
  color:#667085;
  font-size:17px;
  line-height:1.9;
}

/* =========================================
FAQ LIST
========================================= */

.et-faq-list{
  max-width:920px;
  margin:0 auto;
  display:flex;
  flex-direction:column;
  gap:18px;
}

/* =========================================
ITEM
========================================= */

.et-faq-item{
  width:100%;
  border:1px solid #E4E7EC;
  border-radius:28px;
  overflow:hidden;
  background:#FFFFFF;
  transition:0.3s ease;
}

/* ACTIVE */

.et-faq-item.active{
  border-color:#B9D3FF;
  background:#F8FBFF;
}

/* =========================================
QUESTION
========================================= */

.et-faq-question{
  width:100%;
  padding:28px 32px;
  border:none;
  background:none;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  text-align:left;
  cursor:pointer;
}

/* TEXT */

.et-faq-question span{
  color:#101828;
  font-size:24px;
  line-height:1.3;
  letter-spacing:-0.8px;
  font-weight:700;
}

/* ICON */

.et-faq-icon{
  width:48px;
  height:48px;
  border-radius:16px;
  background:#EEF4FF;
  color:#0057FF;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:16px;
  flex-shrink:0;
  transition:0.3s ease;
}

/* ACTIVE ROTATION */

.et-faq-item.active .et-faq-icon{
  transform:rotate(45deg);
}

/* =========================================
ANSWER
========================================= */

.et-faq-answer{
  max-height:0;
  overflow:hidden;
  transition:max-height 0.4s ease;
}

/* ACTIVE */

.et-faq-item.active .et-faq-answer{
  max-height:300px;
}

/* PARAGRAPH */

.et-faq-answer p{
  padding:0 32px 32px;
  color:#667085;
  font-size:16px;
  line-height:1.9;
  max-width:760px;
}

/* =========================================
RESPONSIVE
========================================= */

@media(max-width:1200px){

  .et-faq-title{
    font-size:50px;
  }

}

@media(max-width:768px){

  .et-faq-section{
    padding:80px 0;
  }

  .et-faq-title{
    font-size:38px;
    line-height:1.08;
    letter-spacing:-1.5px;
  }

  .et-faq-description{
    font-size:16px;
    line-height:1.8;
  }

  .et-faq-question{
    padding:22px 22px;
  }

  .et-faq-question span{
    font-size:20px;
    line-height:1.4;
  }

  .et-faq-icon{
    width:42px;
    height:42px;
    border-radius:14px;
    font-size:14px;
  }

  .et-faq-answer p{
    padding:0 22px 24px;
    font-size:15px;
  }

}

/* =========================================
FINAL CTA SECTION
========================================= */

.et-final-cta-section{
  width:100%;
  padding:110px 0;
  background:#FFFFFF;
  overflow:hidden;
}

/* =========================================
BOX
========================================= */

.et-final-cta-box{
  position:relative;
  width:100%;
  padding:100px 80px;
  border-radius:42px;
  overflow:hidden;
  background:
  linear-gradient(
    180deg,
    #0057FF 0%,
    #0047D4 100%
  );
}

/* =========================================
GLOW
========================================= */

.et-final-cta-glow{
  position:absolute;
  border-radius:50%;
  filter:blur(80px);
  opacity:0.24;
}

/* GLOW ONE */

.et-final-glow-one{
  width:320px;
  height:320px;
  background:#8BB8FF;
  top:-80px;
  left:-80px;
}

/* GLOW TWO */

.et-final-glow-two{
  width:280px;
  height:280px;
  background:#FFFFFF;
  bottom:-100px;
  right:-60px;
  opacity:0.12;
}

/* =========================================
CONTENT
========================================= */

.et-final-cta-content{
  position:relative;
  z-index:2;
  max-width:820px;
}

/* LABEL */

.et-final-cta-label{
  display:inline-block;
  margin-bottom:18px;
  color:rgba(255,255,255,0.72);
  font-size:12px;
  font-weight:700;
  letter-spacing:1.4px;
}

/* TITLE */

.et-final-cta-title{
  color:#FFFFFF;
  font-size:72px;
  line-height:0.98;
  letter-spacing:-3px;
  font-weight:800;
  margin-bottom:28px;
}

/* DESCRIPTION */

.et-final-cta-description{
  color:rgba(255,255,255,0.82);
  font-size:18px;
  line-height:1.9;
  max-width:700px;
  margin-bottom:42px;
}

/* =========================================
BUTTONS
========================================= */

.et-final-cta-buttons{
  display:flex;
  align-items:center;
  gap:16px;
}

/* PRIMARY BUTTON */

.et-final-primary-btn{
  height:58px;
  padding:0 28px;
  border-radius:18px;
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
  background:#FFFFFF;
  color:#0057FF;
  font-size:15px;
  font-weight:700;
  transition:0.3s ease;
}

.et-final-primary-btn:hover{
  transform:translateY(-3px);
}

/* SECONDARY BUTTON */

.et-final-secondary-btn{
  height:58px;
  padding:0 28px;
  border-radius:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  border:1px solid rgba(255,255,255,0.18);
  background:rgba(255,255,255,0.08);
  backdrop-filter:blur(12px);
  color:#FFFFFF;
  font-size:15px;
  font-weight:600;
  transition:0.3s ease;
}

.et-final-secondary-btn:hover{
  background:rgba(255,255,255,0.14);
}

/* =========================================
RESPONSIVE
========================================= */

@media(max-width:1200px){

  .et-final-cta-title{
    font-size:58px;
  }

}

@media(max-width:768px){

  .et-final-cta-section{
    padding:80px 0;
  }

  .et-final-cta-box{
    padding:70px 28px;
    border-radius:30px;
  }

  .et-final-cta-title{
    font-size:42px;
    line-height:1.05;
    letter-spacing:-2px;
  }

  .et-final-cta-description{
    font-size:16px;
    line-height:1.8;
  }

  .et-final-cta-buttons{
    flex-direction:column;
    align-items:stretch;
  }

  .et-final-primary-btn,
  .et-final-secondary-btn{
    width:100%;
    justify-content:center;
  }

}

/* =========================================
FOOTER SECTION
========================================= */

.et-footer-section{
  width:100%;
  padding:90px 0 34px;
  background:#0A0A0A;
  overflow:hidden;
}

/* =========================================
TOP
========================================= */

.et-footer-top{
  width:100%;
  padding-bottom:60px;
  margin-bottom:34px;
  border-bottom:1px solid rgba(255,255,255,0.08);
  display:grid;
  grid-template-columns:1.2fr 1fr;
  gap:80px;
  align-items:start;
}

/* =========================================
BRAND
========================================= */

.et-footer-brand{
  width:100%;
}

/* LOGO */

.et-footer-logo{
  display:inline-flex;
  margin-bottom:26px;
}

.et-footer-logo img{
  height:42px;
  width:auto;
  display:block;
}

/* TEXT */

.et-footer-brand-text{
  color:rgba(255,255,255,0.66);
  font-size:16px;
  line-height:1.9;
  max-width:520px;
  margin-bottom:34px;
}

/* =========================================
SOCIALS
========================================= */

.et-footer-socials{
  display:flex;
  align-items:center;
  gap:14px;
}

/* LINK */

.et-footer-social-link{
  width:52px;
  height:52px;
  border-radius:18px;
  background:#141414;
  border:1px solid rgba(255,255,255,0.08);
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  color:#FFFFFF;
  font-size:18px;
  transition:0.3s ease;
}

/* HOVER */

.et-footer-social-link:hover{
  transform:translateY(-3px);
  background:#FFFFFF;
  color:#000000;
}

/* =========================================
LINKS
========================================= */

.et-footer-links-wrapper{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:40px;
}

/* COLUMN */

.et-footer-links-column h4{
  color:#FFFFFF;
  font-size:18px;
  font-weight:700;
  margin-bottom:24px;
  letter-spacing:-0.4px;
}

/* LIST */

.et-footer-links-column ul{
  list-style:none;
}

/* ITEM */

.et-footer-links-column ul li{
  margin-bottom:16px;
}

/* LINK */

.et-footer-links-column ul li a{
  color:rgba(255,255,255,0.62);
  text-decoration:none;
  font-size:15px;
  transition:0.3s ease;
}

/* HOVER */

.et-footer-links-column ul li a:hover{
  color:#FFFFFF;
}

/* =========================================
BOTTOM
========================================= */

.et-footer-bottom{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}

/* TEXT */

.et-footer-bottom p,
.et-footer-bottom span{
  color:rgba(255,255,255,0.52);
  font-size:14px;
  line-height:1.7;
}

/* =========================================
RESPONSIVE
========================================= */

@media(max-width:1200px){

  .et-footer-top{
    grid-template-columns:1fr;
    gap:60px;
  }

}

@media(max-width:768px){

  .et-footer-section{
    padding:70px 0 26px;
  }

  .et-footer-top{
    padding-bottom:42px;
    margin-bottom:26px;
  }

  .et-footer-links-wrapper{
    grid-template-columns:1fr;
    gap:34px;
  }

  .et-footer-brand-text{
    font-size:15px;
    line-height:1.8;
  }

  .et-footer-social-link{
    width:48px;
    height:48px;
    border-radius:16px;
    font-size:17px;
  }

  .et-footer-bottom{
    flex-direction:column;
    align-items:flex-start;
  }

}

/* =========================================
BECOME A GUEST HERO
========================================= */

.et-guest-hero-section{
  width:100%;
  padding:170px 0 110px;
  background:#FFFFFF;
  overflow:hidden;
}

/* =========================================
WRAPPER
========================================= */

.et-guest-hero-wrapper{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:center;
}

/* =========================================
CONTENT
========================================= */

.et-guest-hero-content{
  width:100%;
}

/* =========================================
BREADCRUMB
========================================= */

.et-guest-breadcrumb{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:28px;
}

/* LINK */

.et-guest-breadcrumb a{
  color:#667085;
  text-decoration:none;
  font-size:14px;
  transition:0.3s ease;
}

.et-guest-breadcrumb a:hover{
  color:#0057FF;
}

/* TEXT */

.et-guest-breadcrumb span,
.et-guest-breadcrumb p{
  color:#98A2B3;
  font-size:14px;
}

/* =========================================
LABEL
========================================= */

.et-guest-hero-label{
  display:inline-block;
  margin-bottom:20px;
  color:#0057FF;
  font-size:12px;
  font-weight:700;
  letter-spacing:1.4px;
}

/* =========================================
TITLE
========================================= */

.et-guest-hero-title{
  color:#101828;
  font-size:76px;
  line-height:0.98;
  letter-spacing:-3px;
  font-weight:800;
  margin-bottom:30px;
}

/* =========================================
DESCRIPTION
========================================= */

.et-guest-hero-description{
  color:#667085;
  font-size:18px;
  line-height:1.9;
  max-width:640px;
  margin-bottom:40px;
}

/* =========================================
TAGS
========================================= */

.et-guest-hero-tags{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
}

/* TAG */

.et-guest-hero-tags span{
  height:44px;
  padding:0 18px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#F7F9FC;
  border:1px solid #E4E7EC;
  color:#344054;
  font-size:14px;
  font-weight:500;
}

/* =========================================
VISUAL
========================================= */

.et-guest-hero-visual{
  position:relative;
}

/* IMAGE */

.et-guest-hero-image-wrap{
  width:100%;
  height:760px;
  border-radius:36px;
  overflow:hidden;
  background:#F2F4F7;
}

/* IMAGE */

.et-guest-hero-image-wrap img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

/* =========================================
FLOATING CARD
========================================= */

.et-guest-floating-box{
  position:absolute;
  right:-30px;
  bottom:50px;
  width:340px;
  padding:30px;
  border-radius:30px;
  background:rgba(255,255,255,0.92);
  backdrop-filter:blur(14px);
  box-shadow:
  0 20px 50px rgba(16,24,40,0.08);
}

/* LABEL */

.et-guest-floating-box span{
  display:inline-block;
  margin-bottom:14px;
  color:#0057FF;
  font-size:13px;
  font-weight:700;
}

/* TITLE */

.et-guest-floating-box h3{
  color:#101828;
  font-size:30px;
  line-height:1.25;
  letter-spacing:-1px;
  font-weight:700;
}

/* =========================================
RESPONSIVE
========================================= */

@media(max-width:1200px){

  .et-guest-hero-wrapper{
    grid-template-columns:1fr;
    gap:60px;
  }

  .et-guest-hero-title{
    font-size:62px;
  }

}

@media(max-width:768px){

  .et-guest-hero-section{
    padding:140px 0 80px;
  }

  .et-guest-hero-title{
    font-size:46px;
    line-height:1.04;
    letter-spacing:-2px;
  }

  .et-guest-hero-description{
    font-size:16px;
    line-height:1.8;
  }

  .et-guest-hero-tags{
    gap:10px;
  }

  .et-guest-hero-tags span{
    height:40px;
    padding:0 14px;
    font-size:13px;
  }

  .et-guest-hero-image-wrap{
    height:460px;
    border-radius:28px;
  }

  .et-guest-floating-box{
    position:relative;
    right:auto;
    bottom:auto;
    width:100%;
    margin-top:18px;
    border-radius:24px;
  }

  .et-guest-floating-box h3{
    font-size:24px;
  }

}


/* =========================================
GUEST PROCESS SECTION
========================================= */

.et-guest-process-section{
  position:relative;
  width:100%;
  padding:130px 0;
  background:#0a092c;
  overflow:hidden;
}

/* =========================================
BACKGROUND CIRCLE
========================================= */

.et-process-bg-circle{
  position:absolute;
  width:700px;
  height:700px;
  border-radius:50%;
  background:
  radial-gradient(
    circle,
    rgba(0,87,255,0.14) 0%,
    transparent 70%
  );
  top:-180px;
  right:-180px;
}

/* =========================================
TOP
========================================= */

.et-guest-process-top{
  position:relative;
  z-index:2;
  max-width:760px;
  margin-bottom:90px;
}

/* LABEL */

.et-guest-process-label{
  display:inline-block;
  margin-bottom:18px;
  color:rgba(255,255,255,0.62);
  font-size:12px;
  font-weight:700;
  letter-spacing:1.4px;
}

/* TITLE */

.et-guest-process-title{
  color:#FFFFFF;
  font-size:68px;
  line-height:0.98;
  letter-spacing:-3px;
  font-weight:800;
  margin-bottom:28px;
}

/* DESCRIPTION */

.et-guest-process-description{
  color:rgba(255,255,255,0.68);
  font-size:18px;
  line-height:1.9;
  max-width:680px;
}

/* =========================================
FLOW
========================================= */

.et-guest-process-flow{
  position:relative;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
  align-items:start;
}

/* =========================================
CARD
========================================= */

.et-process-card{
  position:relative;
  z-index:2;
  padding:36px;
  border-radius:34px;
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.08);
  backdrop-filter:blur(14px);
  transition:0.3s ease;
}

/* DIFFERENT ANGLES */

.et-process-card-one{
  transform:rotate(-2deg);
}

.et-process-card-two{
  margin-top:80px;
  transform:rotate(2deg);
}

.et-process-card-three{
  margin-top:20px;
  transform:rotate(-2deg);
}

.et-process-card-four{
  margin-top:100px;
  transform:rotate(2deg);
}

/* HOVER */

.et-process-card:hover{
  transform:translateY(-8px) rotate(0deg);
  background:rgba(255,255,255,0.08);
}

/* NUMBER */

.et-process-number{
  color:#0057FF;
  font-size:64px;
  line-height:1;
  font-weight:800;
  letter-spacing:-3px;
  margin-bottom:26px;
}

/* TITLE */

.et-process-card h3{
  color:#FFFFFF;
  font-size:28px;
  line-height:1.2;
  letter-spacing:-1px;
  font-weight:700;
  margin-bottom:18px;
}

/* TEXT */

.et-process-card p{
  color:rgba(255,255,255,0.66);
  font-size:15px;
  line-height:1.9;
}

/* =========================================
LINES
========================================= */

.et-process-line{
  position:absolute;
  height:2px;
  background:
  linear-gradient(
    90deg,
    rgba(255,255,255,0.06),
    rgba(0,87,255,0.4)
  );
}

/* POSITIONS */

.et-process-line-one{
  width:180px;
  top:110px;
  left:23%;
  transform:rotate(12deg);
}

.et-process-line-two{
  width:180px;
  top:220px;
  left:48%;
  transform:rotate(-10deg);
}

.et-process-line-three{
  width:180px;
  top:160px;
  left:73%;
  transform:rotate(14deg);
}

/* =========================================
RESPONSIVE
========================================= */

@media(max-width:1200px){

  .et-guest-process-flow{
    grid-template-columns:repeat(2,1fr);
  }

  .et-process-line{
    display:none;
  }

  .et-process-card-two,
  .et-process-card-three,
  .et-process-card-four{
    margin-top:0;
  }

}

@media(max-width:768px){

  .et-guest-process-section{
    padding:90px 0;
  }

  .et-guest-process-top{
    margin-bottom:50px;
  }

  .et-guest-process-title{
    font-size:42px;
    line-height:1.05;
    letter-spacing:-2px;
  }

  .et-guest-process-description{
    font-size:16px;
    line-height:1.8;
  }

  .et-guest-process-flow{
    grid-template-columns:1fr;
    gap:22px;
  }

  .et-process-card{
    padding:28px;
    transform:none !important;
  }

  .et-process-number{
    font-size:48px;
  }

  .et-process-card h3{
    font-size:24px;
  }

}


/* =========================================
WHO WE LOOK FOR
UPDATED IMAGE MOSAIC SECTION
========================================= */

.et-guest-voices-section{
  width:100%;
  padding:130px 0;
  background:#F7F9FC;
  overflow:hidden;
}

/* =========================================
TOP
========================================= */

.et-guest-voices-top{
  max-width:760px;
  margin-bottom:70px;
}

/* LABEL */

.et-guest-voices-label{
  display:inline-block;
  margin-bottom:18px;
  color:#0057FF;
  font-size:12px;
  font-weight:700;
  letter-spacing:1.5px;
}

/* TITLE */

.et-guest-voices-title{
  color:#101828;
  font-size:68px;
  line-height:0.98;
  letter-spacing:-3px;
  font-weight:800;
  margin-bottom:28px;
}

/* DESCRIPTION */

.et-guest-voices-description{
  color:#667085;
  font-size:18px;
  line-height:1.9;
  max-width:700px;
}

/* =========================================
GRID
========================================= */

.et-guest-voices-grid{
  display:grid;
  grid-template-columns:repeat(12,1fr);
  grid-auto-rows:120px;
  gap:26px;
}

/* =========================================
CARD
========================================= */

.et-voice-card{
  position:relative;
  overflow:hidden;
  border-radius:36px;
  text-decoration:none;
  display:flex;
  align-items:flex-end;
  padding:38px;
  transition:0.4s ease;
}

/* HOVER */

.et-voice-card:hover{
  transform:translateY(-8px);
}

/* =========================================
IMAGE
========================================= */

.et-voice-card-image{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
}

/* IMAGE */

.et-voice-card-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:0.8s ease;
}

/* HOVER */

.et-voice-card:hover
.et-voice-card-image img{
  transform:scale(1.08);
}

/* =========================================
OVERLAY
========================================= */

.et-voice-overlay{
  position:absolute;
  inset:0;

  background:
  linear-gradient(
    180deg,
    rgba(0,0,0,0.08) 0%,
    rgba(0,0,0,0.72) 100%
  );

  z-index:1;
}

/* =========================================
CONTENT
========================================= */

.et-voice-content{
  position:relative;
  z-index:2;
}

/* LABEL */

.et-voice-content span{
  display:inline-block;
  margin-bottom:18px;
  color:rgba(255,255,255,0.76);
  font-size:12px;
  font-weight:700;
  letter-spacing:1.3px;
}

/* TITLE */

.et-voice-content h3{
  color:#FFFFFF;
  font-size:34px;
  line-height:1.12;
  letter-spacing:-1.4px;
  font-weight:800;
  max-width:520px;
}

/* =========================================
GRID SIZES
========================================= */

/* LARGE */

.et-voice-large-card{
  grid-column:span 7;
  grid-row:span 4;
}

/* SMALL */

.et-voice-small-card{
  grid-column:span 5;
  grid-row:span 2;
}

/* TALL */

.et-voice-tall-card{
  grid-column:span 5;
  grid-row:span 4;
}

/* WIDE */

.et-voice-wide-card{
  grid-column:span 7;
  grid-row:span 2;
}

/* SMALL TWO */

.et-voice-small-card-two{
  grid-column:span 5;
  grid-row:span 2;
}

/* =========================================
SPECIAL DIFFERENT UI FEEL
========================================= */

.et-voice-large-card{
  transform:rotate(-1deg);
}

.et-voice-tall-card{
  transform:rotate(1deg);
}

.et-voice-wide-card{
  transform:rotate(-1deg);
}

/* HOVER RESET */

.et-voice-large-card:hover,
.et-voice-tall-card:hover,
.et-voice-wide-card:hover{
  transform:translateY(-8px) rotate(0deg);
}

/* =========================================
RESPONSIVE
========================================= */

@media(max-width:1200px){

  .et-guest-voices-grid{
    grid-template-columns:repeat(2,1fr);
    grid-auto-rows:auto;
  }

  .et-voice-large-card,
  .et-voice-small-card,
  .et-voice-tall-card,
  .et-voice-wide-card,
  .et-voice-small-card-two{
    grid-column:span 1;
    grid-row:auto;
    min-height:360px;
    transform:none;
  }

}

@media(max-width:768px){

  .et-guest-voices-section{
    padding:90px 0;
  }

  .et-guest-voices-top{
    margin-bottom:46px;
  }

  .et-guest-voices-title{
    font-size:42px;
    line-height:1.05;
    letter-spacing:-2px;
  }

  .et-guest-voices-description{
    font-size:16px;
    line-height:1.8;
  }

  .et-guest-voices-grid{
    grid-template-columns:1fr;
    gap:20px;
  }

  .et-voice-card{
    min-height:300px;
    padding:28px;
    border-radius:28px;
  }

  .et-voice-content h3{
    font-size:28px;
    line-height:1.16;
  }

}

/* =========================================
GUEST APPLY SECTION
========================================= */

.et-guest-apply-section{
  width:100%;
  padding:130px 0;
  background:#FFFFFF;
  overflow:hidden;
}

/* =========================================
WRAPPER
========================================= */

.et-guest-apply-wrapper{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:center;
}

/* =========================================
VISUAL
========================================= */

.et-guest-apply-visual{
  position:relative;
  width:100%;
  height:760px;
  border-radius:38px;
  overflow:hidden;
}

/* IMAGE */

.et-guest-apply-visual img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

/* =========================================
FLOATING CARD
========================================= */

.et-guest-apply-floating-card{
  position:absolute;
  left:30px;
  bottom:30px;
  width:300px;
  padding:28px;
  border-radius:28px;

  background:
  rgba(255,255,255,0.92);

  backdrop-filter:blur(14px);

  box-shadow:
  0 20px 50px rgba(16,24,40,0.10);
}

/* LABEL */

.et-guest-apply-floating-card span{
  display:inline-block;
  margin-bottom:14px;
  color:#0057FF;
  font-size:13px;
  font-weight:700;
}

/* TITLE */

.et-guest-apply-floating-card h4{
  color:#101828;
  font-size:30px;
  line-height:1.18;
  letter-spacing:-1px;
  font-weight:800;
}

/* =========================================
CONTENT
========================================= */

.et-guest-apply-content{
  width:100%;
}

/* LABEL */

.et-guest-apply-label{
  display:inline-block;
  margin-bottom:18px;
  color:#0057FF;
  font-size:12px;
  font-weight:700;
  letter-spacing:1.4px;
}

/* TITLE */

.et-guest-apply-title{
  color:#101828;
  font-size:68px;
  line-height:0.98;
  letter-spacing:-3px;
  font-weight:800;
  margin-bottom:28px;
}

/* DESCRIPTION */

.et-guest-apply-description{
  color:#667085;
  font-size:18px;
  line-height:1.9;
  margin-bottom:42px;
  max-width:650px;
}

/* =========================================
FEATURES
========================================= */

.et-guest-apply-features{
  display:flex;
  flex-direction:column;
  gap:20px;
  margin-bottom:42px;
}

/* ITEM */

.et-guest-feature-item{
  display:flex;
  align-items:flex-start;
  gap:20px;
}

/* ICON */

.et-guest-feature-icon{
  width:62px;
  height:62px;
  border-radius:20px;
  background:#EEF4FF;
  color:#0057FF;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:22px;
  flex-shrink:0;
}

/* TEXT */

.et-guest-feature-text h4{
  color:#101828;
  font-size:24px;
  line-height:1.2;
  letter-spacing:-0.8px;
  font-weight:700;
  margin-bottom:8px;
}

.et-guest-feature-text p{
  color:#667085;
  font-size:15px;
  line-height:1.8;
}

/* =========================================
BUTTON
========================================= */

.et-guest-apply-btn{
  width:max-content;
  height:60px;
  padding:0 28px;
  border-radius:18px;

  background:
  linear-gradient(
    90deg,
    #0057FF 0%,
    #0047D4 100%
  );

  color:#FFFFFF;
  text-decoration:none;

  display:flex;
  align-items:center;
  gap:12px;

  font-size:15px;
  font-weight:700;

  transition:0.3s ease;
}

/* HOVER */

.et-guest-apply-btn:hover{
  transform:translateY(-3px);
}

/* =========================================
RESPONSIVE
========================================= */

@media(max-width:1200px){

  .et-guest-apply-wrapper{
    grid-template-columns:1fr;
    gap:60px;
  }

  .et-guest-apply-title{
    font-size:56px;
  }

}

@media(max-width:768px){

  .et-guest-apply-section{
    padding:90px 0;
  }

  .et-guest-apply-visual{
    height:480px;
    border-radius:28px;
  }

  .et-guest-apply-floating-card{
    width:240px;
    padding:22px;
    border-radius:22px;
  }

  .et-guest-apply-floating-card h4{
    font-size:24px;
  }

  .et-guest-apply-title{
    font-size:42px;
    line-height:1.04;
    letter-spacing:-2px;
  }

  .et-guest-apply-description{
    font-size:16px;
    line-height:1.8;
  }

  .et-guest-feature-item{
    gap:16px;
  }

  .et-guest-feature-icon{
    width:54px;
    height:54px;
    border-radius:18px;
    font-size:20px;
  }

  .et-guest-feature-text h4{
    font-size:20px;
  }

  .et-guest-apply-btn{
    width:100%;
    justify-content:center;
  }

}

/* =========================================
GUEST FORM SECTION
========================================= */

.et-guest-form-section{
  position:relative;
  width:100%;
  padding:140px 0;
  background:#0A0A0A;
  overflow:hidden;
}

/* =========================================
BACKGROUND BLURS
========================================= */

.et-guest-form-blur{
  position:absolute;
  border-radius:50%;
  filter:blur(100px);
  opacity:0.16;
}

/* ONE */

.et-guest-form-blur-one{
  width:420px;
  height:420px;
  background:#0057FF;
  top:-120px;
  left:-120px;
}

/* TWO */

.et-guest-form-blur-two{
  width:360px;
  height:360px;
  background:#FFFFFF;
  bottom:-140px;
  right:-120px;
  opacity:0.08;
}

/* =========================================
WRAPPER
========================================= */

.et-guest-form-wrapper{
  position:relative;
  z-index:2;

  display:grid;
  grid-template-columns:0.9fr 1.1fr;
  gap:80px;
  align-items:start;
}

/* =========================================
LEFT CONTENT
========================================= */

.et-guest-form-content{
  width:100%;
  position:sticky;
  top:120px;
}

/* LABEL */

.et-guest-form-label{
  display:inline-block;
  margin-bottom:18px;
  color:rgba(255,255,255,0.62);
  font-size:12px;
  font-weight:700;
  letter-spacing:1.4px;
}

/* TITLE */

.et-guest-form-title{
  color:#FFFFFF;
  font-size:72px;
  line-height:0.98;
  letter-spacing:-3px;
  font-weight:800;
  margin-bottom:28px;
}

/* DESCRIPTION */

.et-guest-form-description{
  color:rgba(255,255,255,0.68);
  font-size:18px;
  line-height:1.9;
  margin-bottom:50px;
  max-width:560px;
}

/* =========================================
STEPS
========================================= */

.et-guest-form-steps{
  display:flex;
  flex-direction:column;
  gap:22px;
}

/* ITEM */

.et-guest-step-item{
  display:flex;
  align-items:flex-start;
  gap:18px;
}

/* NUMBER */

.et-guest-step-number{
  width:54px;
  height:54px;
  border-radius:18px;

  background:
  rgba(255,255,255,0.08);

  border:
  1px solid rgba(255,255,255,0.08);

  color:#FFFFFF;

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:15px;
  font-weight:700;

  flex-shrink:0;
}

/* TEXT */

.et-guest-step-text h4{
  color:#FFFFFF;
  font-size:22px;
  line-height:1.2;
  letter-spacing:-0.8px;
  font-weight:700;
  margin-bottom:8px;
}

.et-guest-step-text p{
  color:rgba(255,255,255,0.62);
  font-size:15px;
  line-height:1.8;
}

/* =========================================
FORM BOX
========================================= */

.et-guest-form-box{
  position:relative;

  padding:40px;
  border-radius:38px;

  background:
  rgba(255,255,255,0.06);

  border:
  1px solid rgba(255,255,255,0.08);

  backdrop-filter:blur(16px);
}

/* =========================================
FORM
========================================= */

.et-guest-application-form{
  display:flex;
  flex-direction:column;
  gap:24px;
}

/* GROUP */

.et-guest-input-group{
  width:100%;
}

/* LABEL */

.et-guest-input-group label{
  display:block;
  margin-bottom:12px;

  color:#FFFFFF;
  font-size:14px;
  font-weight:600;
}

/* INPUT */

.et-guest-input-group input,
.et-guest-input-group textarea{
  width:100%;

  border:none;
  outline:none;

  padding:0 22px;

  background:#141414;

  border:
  1px solid rgba(255,255,255,0.08);

  border-radius:20px;

  color:#FFFFFF;

  font-size:15px;
  font-family:'Inter',sans-serif;

  transition:0.3s ease;
}

/* INPUT HEIGHT */

.et-guest-input-group input{
  height:60px;
}

/* TEXTAREA */

.et-guest-input-group textarea{
  height:180px;
  resize:none;
  padding-top:22px;
}

/* FOCUS */

.et-guest-input-group input:focus,
.et-guest-input-group textarea:focus{
  border-color:#0057FF;
}

/* PLACEHOLDER */

.et-guest-input-group input::placeholder,
.et-guest-input-group textarea::placeholder{
  color:#667085;
}

/* =========================================
BUTTON
========================================= */

.et-guest-submit-btn{
  width:100%;
  height:64px;

  border:none;
  border-radius:20px;

  background:
  linear-gradient(
    90deg,
    #0057FF 0%,
    #0047D4 100%
  );

  color:#FFFFFF;

  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;

  font-size:15px;
  font-weight:700;

  cursor:pointer;
  transition:0.3s ease;

  margin-top:10px;
}

/* HOVER */

.et-guest-submit-btn:hover{
  transform:translateY(-3px);
}

/* =========================================
RESPONSIVE
========================================= */

@media(max-width:1200px){

  .et-guest-form-wrapper{
    grid-template-columns:1fr;
  }

  .et-guest-form-content{
    position:relative;
    top:auto;
  }

  .et-guest-form-title{
    font-size:58px;
  }

}

@media(max-width:768px){

  .et-guest-form-section{
    padding:90px 0;
  }

  .et-guest-form-title{
    font-size:42px;
    line-height:1.04;
    letter-spacing:-2px;
  }

  .et-guest-form-description{
    font-size:16px;
    line-height:1.8;
  }

  .et-guest-form-box{
    padding:26px;
    border-radius:28px;
  }

  .et-guest-step-text h4{
    font-size:20px;
  }

  .et-guest-input-group input{
    height:56px;
    border-radius:18px;
  }

  .et-guest-input-group textarea{
    border-radius:18px;
  }

}

/* =========================================
VIDEO TESTIMONIAL SECTION
========================================= */

.et-guest-video-testimonial-section{
  width:100%;
  padding:130px 0;
  background:#F7F9FC;
  overflow:hidden;
}

/* =========================================
TOP
========================================= */

.et-guest-video-top{
  max-width:760px;
  margin-bottom:70px;
}

/* LABEL */

.et-guest-video-label{
  display:inline-block;
  margin-bottom:18px;
  color:#0057FF;
  font-size:12px;
  font-weight:700;
  letter-spacing:1.4px;
}

/* TITLE */

.et-guest-video-title{
  color:#101828;
  font-size:68px;
  line-height:0.98;
  letter-spacing:-3px;
  font-weight:800;
  margin-bottom:26px;
}

/* DESCRIPTION */

.et-guest-video-description{
  color:#667085;
  font-size:18px;
  line-height:1.9;
  max-width:680px;
}

/* =========================================
GRID
========================================= */

.et-guest-video-grid{
  display:grid;
  grid-template-columns:1.2fr 0.8fr 0.8fr;
  gap:24px;
}

/* =========================================
CARD
========================================= */

.et-video-card{
  position:relative;
  height:620px;
  border-radius:36px;
  overflow:hidden;
  background:#101828;
}

/* LARGE */

.et-video-large-card{
  height:620px;
}

/* =========================================
VIDEO
========================================= */

.et-video-card video{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

/* =========================================
OVERLAY
========================================= */

.et-video-overlay{
  position:absolute;
  inset:0;

  background:
  linear-gradient(
    180deg,
    rgba(0,0,0,0.08) 0%,
    rgba(0,0,0,0.72) 100%
  );
}

/* =========================================
PLAY BUTTON
========================================= */

.et-video-play-btn{
  position:absolute;
  top:24px;
  right:24px;

  width:62px;
  height:62px;

  border:none;
  border-radius:50%;

  background:
  rgba(255,255,255,0.18);

  backdrop-filter:blur(14px);

  color:#FFFFFF;

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:18px;
  cursor:pointer;

  z-index:3;

  transition:0.3s ease;
}

/* HOVER */

.et-video-play-btn:hover{
  transform:scale(1.08);
}

/* =========================================
CONTENT
========================================= */

.et-video-content{
  position:absolute;
  left:0;
  bottom:0;

  width:100%;

  padding:34px;

  z-index:2;
}

/* LABEL */

.et-video-content span{
  display:inline-block;
  margin-bottom:16px;

  color:rgba(255,255,255,0.76);

  font-size:12px;
  font-weight:700;
  letter-spacing:1.3px;
}

/* TITLE */

.et-video-content h3{
  color:#FFFFFF;
  font-size:34px;
  line-height:1.18;
  letter-spacing:-1.2px;
  font-weight:800;

  margin-bottom:18px;
}

/* SMALL TEXT */

.et-video-content p{
  color:rgba(255,255,255,0.74);
  font-size:15px;
  line-height:1.7;
}

/* =========================================
RESPONSIVE
========================================= */

@media(max-width:1200px){

  .et-guest-video-grid{
    grid-template-columns:1fr 1fr;
  }

  .et-video-large-card{
    grid-column:span 2;
  }

}

@media(max-width:768px){

  .et-guest-video-testimonial-section{
    padding:90px 0;
  }

  .et-guest-video-top{
    margin-bottom:46px;
  }

  .et-guest-video-title{
    font-size:42px;
    line-height:1.04;
    letter-spacing:-2px;
  }

  .et-guest-video-description{
    font-size:16px;
    line-height:1.8;
  }

  .et-guest-video-grid{
    grid-template-columns:1fr;
    gap:20px;
  }

  .et-video-large-card{
    grid-column:auto;
  }

  .et-video-card{
    height:500px;
    border-radius:28px;
  }

  .et-video-content{
    padding:26px;
  }

  .et-video-content h3{
    font-size:28px;
  }

  .et-video-play-btn{
    width:54px;
    height:54px;
    font-size:16px;
  }

}

/* =========================================
FINAL CTA SECTION
========================================= */

.et-guest-final-section{
  position:relative;
  width:100%;
  padding:150px 0;
  overflow:hidden;

  background:
  linear-gradient(
    180deg,
    #0057FF 0%,
    #003FC2 100%
  );
}

/* =========================================
BACKGROUND GRADIENT
========================================= */

.et-guest-final-gradient{
  position:absolute;
  width:700px;
  height:700px;
  border-radius:50%;

  background:
  radial-gradient(
    circle,
    rgba(255,255,255,0.18) 0%,
    transparent 70%
  );

  top:-260px;
  right:-240px;
}

/* =========================================
GRID TEXTURE
========================================= */

.et-guest-final-grid{
  position:absolute;
  inset:0;

  background-image:
  linear-gradient(
    rgba(255,255,255,0.04) 1px,
    transparent 1px
  ),
  linear-gradient(
    90deg,
    rgba(255,255,255,0.04) 1px,
    transparent 1px
  );

  background-size:60px 60px;
}

/* =========================================
WRAPPER
========================================= */

.et-guest-final-wrapper{
  position:relative;
  z-index:2;

  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:80px;
}

/* =========================================
CONTENT
========================================= */

.et-guest-final-content{
  max-width:760px;
}

/* LABEL */

.et-guest-final-label{
  display:inline-block;
  margin-bottom:20px;

  color:rgba(255,255,255,0.72);

  font-size:12px;
  font-weight:700;
  letter-spacing:1.4px;
}

/* TITLE */

.et-guest-final-title{
  color:#FFFFFF;

  font-size:82px;
  line-height:0.96;
  letter-spacing:-4px;
  font-weight:800;

  margin-bottom:30px;
}

/* DESCRIPTION */

.et-guest-final-description{
  color:rgba(255,255,255,0.82);

  font-size:18px;
  line-height:1.9;

  max-width:680px;

  margin-bottom:44px;
}

/* =========================================
BUTTONS
========================================= */

.et-guest-final-buttons{
  display:flex;
  align-items:center;
  gap:16px;
}

/* PRIMARY */

.et-guest-final-primary-btn{
  height:60px;
  padding:0 30px;

  border-radius:18px;

  background:#FFFFFF;

  color:#0057FF;
  text-decoration:none;

  display:flex;
  align-items:center;
  gap:12px;

  font-size:15px;
  font-weight:700;

  transition:0.3s ease;
}

/* HOVER */

.et-guest-final-primary-btn:hover{
  transform:translateY(-3px);
}

/* SECONDARY */

.et-guest-final-secondary-btn{
  height:60px;
  padding:0 28px;

  border-radius:18px;

  background:
  rgba(255,255,255,0.10);

  border:
  1px solid rgba(255,255,255,0.14);

  backdrop-filter:blur(14px);

  color:#FFFFFF;
  text-decoration:none;

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:15px;
  font-weight:600;

  transition:0.3s ease;
}

/* HOVER */

.et-guest-final-secondary-btn:hover{
  background:
  rgba(255,255,255,0.16);
}

/* =========================================
FLOATING CARDS
========================================= */

.et-guest-final-floating-wrap{
  position:relative;
  width:360px;
  height:420px;
}

/* CARD */

.et-final-floating-card{
  position:absolute;

  width:260px;

  padding:24px 26px;

  border-radius:26px;

  background:
  rgba(255,255,255,0.12);

  border:
  1px solid rgba(255,255,255,0.14);

  backdrop-filter:blur(16px);

  box-shadow:
  0 20px 40px rgba(0,0,0,0.10);
}

/* POSITIONS */

.et-card-one{
  top:0;
  left:0;
  transform:rotate(-4deg);
}

.et-card-two{
  top:130px;
  right:0;
  transform:rotate(3deg);
}

.et-card-three{
  bottom:0;
  left:40px;
  transform:rotate(-2deg);
}

/* LABEL */

.et-final-floating-card span{
  display:inline-block;
  margin-bottom:12px;

  color:rgba(255,255,255,0.72);

  font-size:12px;
  font-weight:700;
  letter-spacing:1.2px;
}

/* TITLE */

.et-final-floating-card h4{
  color:#FFFFFF;

  font-size:28px;
  line-height:1.2;
  letter-spacing:-1px;
  font-weight:700;
}

/* =========================================
RESPONSIVE
========================================= */

@media(max-width:1200px){

  .et-guest-final-wrapper{
    flex-direction:column;
    align-items:flex-start;
  }

  .et-guest-final-title{
    font-size:64px;
  }

}

@media(max-width:768px){

  .et-guest-final-section{
    padding:100px 0;
  }

  .et-guest-final-title{
    font-size:46px;
    line-height:1.04;
    letter-spacing:-2px;
  }

  .et-guest-final-description{
    font-size:16px;
    line-height:1.8;
  }

  .et-guest-final-buttons{
    flex-direction:column;
    align-items:stretch;
  }

  .et-guest-final-primary-btn,
  .et-guest-final-secondary-btn{
    width:100%;
    justify-content:center;
  }

  .et-guest-final-floating-wrap{
    width:100%;
    height:auto;

    display:flex;
    flex-direction:column;
    gap:18px;
  }

  .et-final-floating-card{
    position:relative;
    width:100%;
    transform:none !important;
  }

  .et-final-floating-card h4{
    font-size:24px;
  }

}

