/* ========================= */
/* Global Styles */
/* ========================= */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Inter',sans-serif;
  background:#F7F4EF;
  color:#111111;
  overflow-x:hidden;
  position:relative;
}

/* ========================= */
/* Background Blur */
/* ========================= */

.bg-blur{
  position:fixed;
  width:350px;
  height:350px;
  border-radius:50%;
  filter:blur(120px);
  z-index:-1;
}

.blur-1{
  background:#E7D8C9;
  top:40px;
  left:-100px;
}

.blur-2{
  background:#F3D9D9;
  bottom:-100px;
  right:-100px;
}

/* ========================= */
/* Navbar */
/* ========================= */

.navbar-wrapper{
  padding:20px;
  position:sticky;
  top:0;
  z-index:1000;
}

.navbar{
  max-width:1250px;
  margin:auto;

  display:flex;
  justify-content:space-between;
  align-items:center;

  padding:14px 24px;

  background:rgba(255,255,255,0.7);

  backdrop-filter:blur(20px);

  border-radius:999px;

  border:1px solid rgba(255,255,255,0.4);

  box-shadow:
  0 10px 30px rgba(0,0,0,0.05);
}

/* Logo */

.logo-area{
  display:flex;
  align-items:center;
  gap:12px;

  text-decoration:none;
}

.logo-icon-img{
  height:42px;
  width:auto;
  object-fit:contain;
}

.logo-text{
  font-family:'Poppins',sans-serif;
  font-size:28px;
  font-weight:700;
  color:#111111;
}

/* Nav Links */

.nav-links{
  display:flex;
  align-items:center;
  gap:34px;

  list-style:none;
}

.nav-links a{
  text-decoration:none;
  color:#111111;

  font-size:15px;
  font-weight:500;

  transition:0.3s ease;
}

.nav-links a:hover{
  opacity:0.6;
}

/* Buttons */

.nav-actions{
  display:flex;
  align-items:center;
  gap:12px;
}

.login-btn{
  border:none;
  background:transparent;

  font-size:15px;
  font-weight:600;

  cursor:pointer;
}

.primary-btn{
  border:none;

  background:#111111;
  color:white;

  padding:14px 24px;

  border-radius:999px;

  font-size:14px;
  font-weight:600;

  cursor:pointer;

  transition:0.3s ease;
}

.primary-btn:hover{
  transform:translateY(-2px);

  box-shadow:
  0 15px 30px rgba(0,0,0,0.12);
}

.secondary-btn{
  border:none;

  background:white;
  color:#111111;

  padding:14px 24px;

  border-radius:999px;

  font-size:14px;
  font-weight:600;

  cursor:pointer;

  border:1px solid #ECECEC;

  transition:0.3s ease;
}

.secondary-btn:hover{
  transform:translateY(-2px);
}

/* ========================= */
/* Mobile Navbar */
/* ========================= */

.menu-toggle{
  display:none;

  flex-direction:column;
  gap:5px;

  cursor:pointer;
}

.menu-toggle span{
  width:24px;
  height:2px;

  background:#111111;

  border-radius:10px;
}

.mobile-menu{

  position:absolute;

  top:95px;
  left:20px;
  right:20px;

  background:white;

  border-radius:28px;

  padding:24px;

  display:flex;
  flex-direction:column;

  gap:18px;

  box-shadow:
  0 20px 40px rgba(0,0,0,0.08);

  opacity:0;
  visibility:hidden;

  transform:translateY(-10px);

  transition:0.3s ease;
}

.mobile-menu.active{
  opacity:1;
  visibility:visible;

  transform:translateY(0);
}
.mobile-menu *{
  position:relative;
  z-index:2;
}

.mobile-menu a:not(.mobile-cta){

  text-decoration:none;

  color:#111111;

  font-size:16px;
  font-weight:500;
}

.mobile-login{
  border:none;

  background:#F7F4EF;

  padding:16px;

  border-radius:18px;

  font-size:15px;
  font-weight:600;

  cursor:pointer;
}



/* ========================= */
/* Hero Section */
/* ========================= */

.hero-section{
  padding:
  70px 20px
  120px;
}

.hero-container{
  max-width:1250px;
  margin:auto;

  display:grid;
  grid-template-columns:1fr 1fr;

  gap:70px;

  align-items:center;
}

/* Left */

.eyebrow-text{
  text-transform:uppercase;

  letter-spacing:3px;

  color:#777777;

  font-size:13px;
  font-weight:600;

  margin-bottom:22px;
}

.hero-left h1{
  font-family:'Poppins',sans-serif;

  font-size:72px;
  line-height:1.08;

  margin-bottom:24px;
}

.hero-description{
  font-size:18px;
  line-height:1.8;

  color:#555555;

  margin-bottom:42px;

  max-width:600px;
}

/* Hero Buttons */

.hero-buttons{
  display:flex;
  gap:16px;

  margin-bottom:42px;
}

.large-btn{
  padding:18px 32px;
  font-size:15px;
}

/* Stats */

.hero-stats{
  display:flex;
  gap:18px;
}

.stat-box{
  background:white;

  padding:22px;

  border-radius:28px;

  flex:1;

  box-shadow:
  0 10px 30px rgba(0,0,0,0.05);
}

.stat-box h3{
  font-size:28px;

  margin-bottom:8px;

  font-family:'Poppins',sans-serif;
}

.stat-box p{
  color:#666666;

  font-size:14px;
}

/* Right */

.hero-right{
  position:relative;
}

.dashboard-card{
  background:white;

  border-radius:36px;

  overflow:hidden;

  box-shadow:
  0 25px 50px rgba(0,0,0,0.08);

  position:relative;
}

.dashboard-card img{
  width:100%;
  height:600px;

  object-fit:cover;
}

/* Floating Cards */

.floating-card{
  position:absolute;

  background:white;

  padding:20px 24px;

  border-radius:26px;

  box-shadow:
  0 20px 40px rgba(0,0,0,0.08);
}

.floating-card p{
  font-size:13px;

  color:#777777;

  margin-bottom:6px;
}

.floating-card h4{
  font-size:24px;
  font-weight:700;
}

.analytics-card{
  top:30px;
  left:-30px;
}

.leads-card{
  bottom:30px;
  right:-30px;
}

/* ========================= */
/* Common Section */
/* ========================= */

.section-header{
  text-align:center;

  margin-bottom:60px;
}

.section-header p{
  text-transform:uppercase;

  letter-spacing:3px;

  color:#777777;

  font-size:13px;
  font-weight:600;

  margin-bottom:14px;
}

.section-header h2{
  font-family:'Poppins',sans-serif;

  font-size:52px;

  line-height:1.2;

  max-width:850px;

  margin:auto;
}

/* ========================= */
/* Benefits */
/* ========================= */

.benefits-section{
  max-width:1250px;

  margin:auto;

  padding:
  0 20px
  120px;
}

.benefits-grid{
  display:grid;

  grid-template-columns:
  repeat(3,1fr);

  gap:24px;
}

.benefit-card{
  background:white;

  padding:36px;

  border-radius:32px;

  box-shadow:
  0 10px 30px rgba(0,0,0,0.05);

  transition:0.3s ease;
}

.benefit-card:hover{
  transform:translateY(-6px);
}

.benefit-icon{
  width:64px;
  height:64px;

  border-radius:22px;

  background:#F7F4EF;

  margin-bottom:26px;
}

.benefit-card h3{
  font-size:24px;

  margin-bottom:16px;

  font-family:'Poppins',sans-serif;
}

.benefit-card p{
  color:#666666;

  line-height:1.8;
}

/* ========================= */
/* Steps */
/* ========================= */

.steps-section{
  max-width:1250px;

  margin:auto;

  padding:
  0 20px
  120px;
}

.steps-grid{
  display:grid;

  grid-template-columns:
  repeat(3,1fr);

  gap:24px;
}

.step-card{
  background:white;

  padding:40px;

  border-radius:34px;

  box-shadow:
  0 10px 30px rgba(0,0,0,0.05);
}

.step-number{
  width:70px;
  height:70px;

  border-radius:24px;

  background:#111111;
  color:white;

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:22px;
  font-weight:700;

  margin-bottom:26px;
}

.step-card h3{
  font-size:28px;

  margin-bottom:16px;

  font-family:'Poppins',sans-serif;
}

.step-card p{
  color:#666666;

  line-height:1.8;
}

/* ========================= */
/* Pricing */
/* ========================= */

.pricing-section{
  max-width:1250px;

  margin:auto;

  padding:
  0 20px
  120px;
}

.pricing-grid{
  display:grid;

  grid-template-columns:
  repeat(3,1fr);

  gap:28px;
}

.pricing-card{
  background:white;

  padding:42px;

  border-radius:36px;

  box-shadow:
  0 10px 30px rgba(0,0,0,0.05);

  position:relative;
}

.featured-card{
  border:2px solid #111111;
}

.popular-badge{
  position:absolute;

  top:24px;
  right:24px;

  background:#111111;
  color:white;

  padding:
  8px 14px;

  border-radius:999px;

  font-size:12px;
  font-weight:600;
}

.pricing-card h3{
  font-size:26px;

  margin-bottom:16px;

  font-family:'Poppins',sans-serif;
}

.pricing-card h1{
  font-size:56px;

  margin-bottom:30px;

  font-family:'Poppins',sans-serif;
}

.pricing-card h1 span{
  font-size:18px;

  color:#777777;
}

.pricing-card ul{
  list-style:none;

  margin-bottom:34px;
}

.pricing-card ul li{
  margin-bottom:16px;

  color:#555555;
}

/* ========================= */
/* Final CTA */
/* ========================= */

.final-cta-section{
  padding:
  0 20px
  120px;
}

.final-cta-box{
  max-width:1250px;

  margin:auto;

  background:#111111;
  color:white;

  padding:
  90px 60px;

  border-radius:42px;

  text-align:center;
}

.final-cta-box p{
  text-transform:uppercase;

  letter-spacing:3px;

  color:rgba(255,255,255,0.7);

  font-size:13px;
  font-weight:600;

  margin-bottom:18px;
}

.final-cta-box h2{
  font-family:'Poppins',sans-serif;

  font-size:56px;

  line-height:1.2;

  margin-bottom:36px;
}

/* ========================= */
/* Footer */
/* ========================= */

.footer{
  padding:
  0 20px
  60px;
}

.footer-container{
  max-width:1250px;

  margin:auto;

  display:flex;
  justify-content:space-between;

  gap:60px;
}

.footer-brand h2{
  font-size:38px;

  margin-bottom:16px;

  font-family:'Poppins',sans-serif;
}

.footer-brand p{
  color:#666666;

  max-width:320px;

  line-height:1.8;
}

.footer-links{
  display:flex;
  gap:80px;
}

.footer-links h4{
  margin-bottom:18px;

  font-size:18px;
}

.footer-links a{
  display:block;

  text-decoration:none;

  color:#666666;

  margin-bottom:14px;

  transition:0.3s ease;
}

.footer-links a:hover{
  color:#111111;
}

/* ========================= */
/* Responsive */
/* ========================= */

@media(max-width:1400px){
  .hero-left h1{
    font-size:64px;
  }

  .section-header h2{
    font-size:48px;
  }

  .hero-container,
  .benefits-section,
  .steps-section,
  .pricing-section,
  .final-cta-box,
  .footer-container{
    max-width:1200px;
  }

  .final-cta-box{
    padding:80px 50px;
  }
}

@media(max-width:1200px){
  .hero-left h1{
    font-size:56px;
  }

  .section-header h2{
    font-size:44px;
  }

  .hero-container,
  .benefits-section,
  .steps-section,
  .pricing-section,
  .final-cta-box,
  .footer-container{
    max-width:100%;
  }

  .hero-section,
  .benefits-section,
  .steps-section,
  .pricing-section,
  .final-cta-section{
    padding-left:20px;
    padding-right:20px;
  }

  .dashboard-card img{
    height:520px;
  }
}

@media(max-width:1100px){

  .hero-container{
    grid-template-columns:1fr;
  }

  .benefits-grid,
  .steps-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .pricing-grid{
    grid-template-columns:1fr;
    max-width:550px;
    margin:auto;
  }

  .section-header h2{
    font-size:42px;
  }

  .hero-left h1{
    font-size:56px;
  }

}

@media(max-width:992px){
  .navbar-wrapper{
    padding:18px;
  }

  .navbar{
    padding:14px 22px;
  }

  .hero-section{
    padding:50px 20px 90px;
  }

  .hero-container{
    gap:50px;
  }

  .hero-left h1{
    font-size:48px;
  }

  .benefits-grid,
  .steps-grid{
    grid-template-columns:repeat(2,1fr);
    gap:20px;
  }

  .section-header h2{
    font-size:38px;
  }

  .steps-section,
  .benefits-section,
  .pricing-section{
    padding:0 20px 90px;
  }

  .final-cta-section{
    padding:0 20px 90px;
  }

  .footer{
    padding:0 20px 50px;
  }
}

@media(max-width:900px){

  .nav-links,
  .nav-actions{

    display:none;
  }

  .menu-toggle{
    display:flex;
  }

}

@media(max-width:768px){

  .navbar-wrapper{
    padding:16px;
  }

  .navbar{
    padding:14px 18px;
  }

  .logo-text{
    font-size:24px;
  }

  .logo-icon-img{
    height:36px;
  }

  .hero-section{
    padding:40px 16px 70px;
  }

  .hero-left h1{
    font-size:44px;
  }

  .hero-description{
    font-size:16px;
    margin-bottom:30px;
  }

  .hero-buttons{
    flex-direction:column;
  }

  .hero-buttons .large-btn{
    width:100%;
    text-align:center;
  }

  .hero-stats{
    flex-direction:column;
    gap:14px;
  }

  .stat-box{
    padding:18px;
  }

  .stat-box h3{
    font-size:24px;
  }

  .dashboard-card img{
    height:400px;
  }

  .dashboard-card{
    border-radius:28px;
  }

  .floating-card{
    position:static;

    margin-top:16px;
  }

  .section-header{
    margin-bottom:40px;
  }

  .section-header h2{
    font-size:34px;
  }

  .pricing-card h1{
    font-size:42px;
  }

  .pricing-card{
    padding:32px;
  }

  .benefit-card{
    padding:28px;
  }

  .benefit-card h3{
    font-size:22px;
  }

  .step-card{
    padding:32px;
  }

  .step-card h3{
    font-size:24px;
  }

  .final-cta-box{
    padding:70px 30px;
    border-radius:32px;
  }

  .final-cta-box h2{
    font-size:38px;
  }

  .footer-container,
  .footer-links{
    flex-direction:column;
  }

  .footer-brand h2{
    font-size:32px;
  }

  .mobile-menu{
    top:80px;
    left:16px;
    right:16px;
    padding:20px;
    border-radius:24px;
  }
}

@media(max-width:576px){
  .navbar-wrapper{
    padding:14px;
  }

  .navbar{
    padding:12px 16px;
  }

  .logo-text{
    font-size:20px;
  }

  .logo-icon-img{
    height:32px;
  }

  .logo-area{
    gap:8px;
  }

  .login-btn{
    display:none;
  }

  .hero-section{
    padding:30px 14px 60px;
  }

  .hero-container{
    gap:36px;
  }

  .hero-left h1{
    font-size:34px;
  }

  .hero-description{
    font-size:15px;
    line-height:1.7;
  }

  .hero-buttons{
    gap:12px;
  }

  .large-btn{
    padding:16px 24px;
    font-size:14px;
  }

  .eyebrow-text{
    font-size:11px;
    letter-spacing:2px;
    margin-bottom:16px;
  }

  .benefits-grid,
  .steps-grid{
    grid-template-columns:1fr;
    gap:16px;
  }

  .benefit-card,
  .step-card{
    padding:24px;
  }

  .benefit-icon{
    width:60px;
    height:60px;
    margin-bottom:20px;
  }

  .benefit-card h3{
    font-size:20px;
  }

  .step-number{
    width:56px;
    height:56px;
    font-size:18px;
  }

  .section-header h2{
    font-size:28px;
  }

  .section-header p{
    font-size:11px;
  }

  .benefits-section,
  .steps-section,
  .pricing-section{
    padding:0 14px 70px;
  }

  .pricing-grid{
    gap:20px;
  }

  .pricing-card{
    padding:28px;
  }

  .pricing-card h3{
    font-size:22px;
  }

  .pricing-card h1{
    font-size:36px;
  }

  .final-cta-section{
    padding:0 14px 70px;
  }

  .final-cta-box{
    padding:50px 24px;
  }

  .final-cta-box h2{
    font-size:28px;
  }

  .final-cta-box p{
    font-size:12px;
  }

  .footer{
    padding:0 14px 40px;
  }

  .footer-container{
    gap:36px;
  }

  .footer-brand h2{
    font-size:28px;
  }

  .footer-links{
    gap:36px;
  }

  .mobile-menu{
    top:76px;
    left:14px;
    right:14px;
    padding:18px;
    gap:14px;
  }

  .mobile-menu a:not(.mobile-cta){
    font-size:15px;
  }

  .mobile-login,
  .mobile-cta{
    padding:14px;
    font-size:14px;
  }
}

@media(max-width:420px){
  .navbar-wrapper{
    padding:10px;
  }

  .navbar{
    padding:10px 14px;
    border-radius:50px;
  }

  .logo-text{
    font-size:18px;
  }

  .logo-icon-img{
    height:28px;
  }

  .logo-area{
    gap:6px;
  }

  .menu-toggle span{
    width:20px;
    height:2px;
  }

  .hero-section{
    padding:24px 12px 50px;
  }

  .hero-container{
    gap:28px;
  }

  .hero-left h1{
    font-size:28px;
    margin-bottom:18px;
  }

  .hero-description{
    font-size:14px;
    margin-bottom:24px;
  }

  .hero-buttons{
    gap:10px;
    margin-bottom:30px;
  }

  .large-btn{
    padding:14px 20px;
    font-size:13px;
  }

  .hero-stats{
    gap:10px;
  }

  .stat-box{
    padding:14px;
  }

  .stat-box h3{
    font-size:20px;
    margin-bottom:4px;
  }

  .stat-box p{
    font-size:13px;
  }

  .dashboard-card img{
    height:280px;
  }

  .benefits-section,
  .steps-section,
  .pricing-section{
    padding:0 12px 60px;
  }

  .benefit-card,
  .step-card{
    padding:20px;
  }

  .benefit-icon{
    width:50px;
    height:50px;
    border-radius:18px;
    margin-bottom:16px;
  }

  .benefit-icon svg{
    width:26px;
    height:26px;
  }

  .benefit-card h3{
    font-size:18px;
    margin-bottom:12px;
  }

  .benefit-card p{
    font-size:14px;
  }

  .step-number{
    width:48px;
    height:48px;
    font-size:16px;
    border-radius:18px;
    margin-bottom:20px;
  }

  .step-card h3{
    font-size:20px;
  }

  .step-card p{
    font-size:14px;
  }

  .section-header h2{
    font-size:24px;
  }

  .section-header p{
    font-size:10px;
    margin-bottom:10px;
  }

  .pricing-card{
    padding:24px;
  }

  .pricing-card h1{
    font-size:32px;
  }

  .final-cta-section{
    padding:0 12px 60px;
  }

  .final-cta-box{
    padding:40px 20px;
    border-radius:28px;
  }

  .final-cta-box h2{
    font-size:24px;
  }

  .footer{
    padding:0 12px 30px;
  }

  .footer-container{
    gap:28px;
  }

  .footer-brand h2{
    font-size:24px;
  }

  .footer-brand p{
    font-size:14px;
  }

  .bg-blur{
    width:200px;
    height:200px;
    filter:blur(80px);
  }

  .blur-1{
    top:20px;
    left:-60px;
  }

  .blur-2{
    bottom:-30px;
    right:-60px;
  }

  .mobile-menu{
    top:70px;
    left:10px;
    right:10px;
    padding:16px;
    border-radius:20px;
    gap:12px;
  }

  .mobile-menu a:not(.mobile-cta){
    font-size:14px;
  }

  .mobile-login,
  .mobile-cta{
    padding:12px;
    font-size:13px;
    border-radius:16px;
  }
}
.benefit-icon{

  width:80px;
  height:80px;

  border-radius:26px;

 background:rgba(255,255,255,0.7);
 backdrop-filter:blur(10px);

  display:flex;
  align-items:center;
  justify-content:center;

  margin-bottom:28px;
}
.benefit-icon svg{

  width:32px;
  height:32px;

  stroke:#111111;

  stroke-width:2;
}
.benefit-card:hover .benefit-icon{

  transform:
  translateY(-4px);

  transition:0.3s ease;
}
.mobile-cta{

  width:100%;

  min-height:58px;

  background:#111111;

  color:#ffffff;

  padding:16px 20px;

  border-radius:18px;

  font-size:15px;
  font-weight:600;

  text-decoration:none !important;

  display:flex !important;

  align-items:center;
  justify-content:center;

  text-align:center;

  line-height:1.2;

  overflow:visible;

  white-space:nowrap;

  box-shadow:
  0 10px 25px rgba(0,0,0,0.12);
}

.mobile-cta:hover{

  color:#ffffff;

  opacity:1;
}
html{

    scroll-behavior: smooth;

}
/* ========================= */
/* FOOTER */
/* ========================= */

.footer{

    margin-top:120px;

    padding:80px 20px 30px;

    background:#fff;

}

.footer-container{

    max-width:1200px;

    margin:auto;

    display:grid;

    grid-template-columns:
    2fr 1fr 1fr 1fr;

    gap:50px;

}

.footer-brand h2{

    font-size:30px;

    margin-bottom:20px;

}

.footer-brand p{

    color:#777;

    line-height:1.8;

}

.footer-column h4{

    margin-bottom:20px;

}

.footer-column{

    display:flex;

    flex-direction:column;

}

.footer-column a{

    text-decoration:none;

    color:#777;

    margin-bottom:14px;

    transition:0.3s;

}

.footer-column a:hover{

    color:#111;

}

.footer-bottom{

    text-align:center;

    margin-top:60px;

    padding-top:25px;

    border-top:1px solid #eee;

    color:#888;

}

/* Responsive */

@media(max-width:992px){

    .footer-container{

        grid-template-columns:
        repeat(2,1fr);

    }

}

@media(max-width:768px){

    .footer-container{

        grid-template-columns:1fr;

        gap:40px;

    }

}