/* styles.css
   Minimal, modern responsive layout for the Momentum landing page.
   Customize the --accent color and font sizes below.
*/

:root{
  --bg: #ffffff;
  --surface: #f7f8fb;
  --text: #1f2933;
  --muted: #6b7280;
  --accent: #03b3a9; /* teal-ish accent */
  --accent-700: #029589;
  --radius: 12px;
  --container: 1100px;
  --shadow: 0 6px 18px rgba(31,41,51,0.06);
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  line-height:1.45;
  font-size:16px;
}


main {
    background: var(--surface);
    padding-bottom: 200px;
}

/* container */
.container{
  max-width:var(--container);
  margin:0 auto;
  padding:0 20px;
}

/* header */
.site-header{
  border-bottom:1px solid #eef2f4;
  background:linear-gradient(180deg, rgba(255,255,255,0.9), rgba(255,255,255,0.7));
  position:sticky;
  height: 90px;
  top:0;
  z-index:50;
}
.header-inner{
  display:flex;
  align-items:center;
  gap:20px;
  padding-top: 20px;
  height:72px;
  justify-content:space-between;
}
.brand{display:flex;align-items:center;gap:12px;text-decoration:none;color:var(--text)}
.brand-logo{width: 70px;height:70px;display:block}
.brand-name{font-weight:600;font-size:25px}

.nav{
  display:
  flex; gap:20px;
  align-items:center
}

.nav a{
  color:var(--muted);
  text-decoration:none;
  font-weight:500
}
.actions .btn-ghost{padding:8px 12px;border-radius:8px;border:1px solid #e6e9ec}

.nav a.current-page {
  position: relative;
  font-weight: 600;
}

.nav a.current-page::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background-color: var(--accent);
  border-radius: 1px;
  transition: transform 0.3s ease;
  transform: scaleX(1); 
  transform-origin: left;
}

/* hero */
.hero{
  padding: 25px 0 40px;
  background:var(--surface);
  height: 800px;
}
.hero-grid{
  padding-top: 200px;
  display:grid;
  grid-template-columns: 1fr 420px;
  gap:30px;
  align-items:center;
}
.hero-content h1{
  font-size: 75px;
  margin:0 0 12px;
  line-height:1.02;
}

@media screen and (max-width: 900px) {
  .hero-content h1{
    font-size: 60px;
   line-height: 0.9;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;                  
    padding-top: 100px;    
  }

  .hero-content,
  .hero-art {
    width: 100%;
  }

  .hero-art {
    margin-top: 50px;
  }
}


.tagline{
  color:var(--muted);
  margin:0 0 22px;
  font-size:18px
}

.btn{
  display:inline-block;
  text-decoration:none;
  padding: 14px 22px;
  border-radius:10px;
  font-weight:600;
  box-shadow:none;
}
.btn-primary{
  background:var(--accent);
  color:white;
  border:0;
}
.btn-outline{
  background:white;
  color:var(--accent);
  border:2px solid var(--accent);
  padding: 12px 18px;
}

/* hero art - simple checklist card */

.hero-art {
    background-color: #ffff;
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);

}

.card-checklist{
  width: 100%;
  max-width: 500px;
  background:white;
  padding:26px;
  border-radius:22px;
  box-shadow:var(--shadow);
  border-left: 50px;
}

.check-row{
    display:flex;
    align-items:center;
    gap: 14px;
    padding:10px 0}

.check-row .box, .check-row .tick{
  width: 200px;
  height: 200px;
  border-radius:8px;
  border: 2px solid #dfe6ea;
  display:flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: white;
}
.check-row .box{
    background:white}
.check-row.checked .box,.check-row.checked .tick{
    background:var(--accent);
    border-color:var(--accent)}

.check-row .line{
    height: 25px;
    margin-left: 20px;
}
.check-row .line.dim{
    background:#f2f4f6}

/* feature section */

/* Perfect edge-to-edge mountain layout like reference */
.section.feature {
    padding: 0;
    margin: 0;
    overflow: hidden;
    position: relative;
    background: var(--surface);
    min-height: 350px;
}

/* Full width container for this section */
.section.feature .container {
    max-width: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.feature-grid {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 0;
    align-items: stretch;
    min-height: 350px;
    position: relative;
}

/* Image container - extends to very edge */
.feature-image-wrap {
    position: relative;
    overflow: hidden;
    /* Diagonal cut that goes into the content area */
    clip-path: polygon(0 0, 100% 0, 70% 100%, 0 100%);
}

.feature-image {
    width: 100%;
    height: 100%;
    min-height: 350px;
    object-fit: cover;
    border-radius: 0;
    display: block;
}

/* Content area - positioned exactly like reference */
.feature-content {
    padding: 60px 60px 60px 30px;
    background: var(--surface);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1;
}

/* Brand section styling - exactly like reference */
.feature-content .mini-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 32px;
}

.mini-logo {
    width: 50px;
    height: 50px;
}

.mini-text {
    color: var(--accent);
    font-size: 36px;
    font-weight: 700;
    margin: 0;
}

/* Main heading - matches reference exactly */
.feature-content h2 {
    color: var(--text);
    font-size: 42px;
    font-weight: 700;
    margin: 0 0 24px 0;
    line-height: 1.1;
    max-width: 500px;
}

/* Paragraph styling - matches reference */
.feature-content p {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.6;
    margin: 0 0 40px 0;
    max-width: 480px;
}

/* Button styling - exactly like reference */
.feature-content .btn-outline {
    background: var(--accent);
    color: white;
    padding: 18px 40px;
    border-radius: 30px;
    border: none;
    font-size: 18px;
    font-weight: 600;
    align-self: flex-start;
    transition: all 0.3s ease;
}

.feature-content .btn-outline:hover {
    background: var(--accent-700);
    transform: translateY(-2px);
}

/* Responsive design */
@media (max-width: 980px) {
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .feature-image-wrap {
        clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
        min-height: 350px;
        margin-bottom: -30px;
        z-index: 2;
    }
    
    .feature-image {
        min-height: 350px;
    }
    
    .feature-content {
        padding: 50px 30px;
        background: var(--surface);
        border-radius: 25px 25px 0 0;
        z-index: 3;
    }
    
    .feature-content h2 {
        font-size: 36px;
        max-width: none;
    }
    
    .feature-content p {
        max-width: none;
    }
    
    .mini-text {
        font-size: 28px;
    }
}


/* testimonials */
.testimonials .section-title{
  font-size:35px;
  margin:0 0 8px;
  display: flex;
  flex-direction: row;
  align-items: center; 
  justify-content: center;
  padding-top: 100px;
  padding-bottom: 50px;
}

.section-sub {
    color: var(--muted);
    margin: 6px 0 20px;
    display: flex;
    flex-direction: row;
    align-items: center; 
    justify-content: center;
    width: 600px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 25px;
  gap: 20px;
  background-color: var(--accent);
  border-radius: 20px; 
}

.testimonial-card{
  background:linear-gradient(180deg,#ffffff,#fcfeff);
  border-radius:14px;
  padding:18px;
  box-shadow:var(--shadow);
  padding-top: 50px;
}

@media screen and (max-width: 900px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
    margin: 0;
    max-width: 515px;
    align-items: center;
    justify-content: center;
  }

  .testimonial-card {
    margin: 0 auto;       
    max-width: 500px;    
  }
}

.testimonial-header{
    display:flex;
    gap: 12px;
    align-items:
    center;
    margin-bottom:8px
}

strong {
    font-size: 30px;
}

.avatar{
    width:100px;
    height:100px;
    border-radius:8px;
    object-fit:cover
}

blockquote{
    margin:0;
    color:var(--muted);
    font-size:18px}

.muted{
    color:var(--muted);
    font-size:15px
}

.btn {
  display: inline-block;
  text-decoration: none;
  padding: 14px 22px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease;
  user-select: none; /* prevents accidental text highlight */
  
}



/* Primary button */
.btn-primary {
  background: var(--accent);
  color: white;
  border: 0;
}
.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 14px rgba(3,179,169,0.35);
}
.btn-primary:active {
  transform: scale(0.95);
  box-shadow: 0 3px 8px rgba(3,179,169,0.25);
}

/* Outline button */
.btn-outline {
  background: white;
  color: var(--accent);
  border: 2px solid var(--accent);
  padding: 12px 18px;
}
.btn-outline:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 14px rgba(3,179,169,0.2);
}
.btn-outline:active {
  transform: scale(0.95);
  box-shadow: 0 3px 8px rgba(3,179,169,0.15);
}

/* Ghost button (like "Sign in") */
.btn-ghost {
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid #e6e9ec;
  color: var(--text);
  background: white;
}
.btn-ghost:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}
.btn-ghost:active {
  transform: scale(0.95);
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}



.check-row .box {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 2px solid #dfe6ea;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
}

.check-row.checked .box {
  background: var(--accent);
  border-color: var(--accent);
}

.tick-img {
  width: 18px;   /* adjust as needed */
  height: 18px;
  object-fit: contain;
  display: block;
}
.check-row .box {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 2px solid #dfe6ea;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
}

.check-row.checked .box {
  background: var(--accent);
  border-color: var(--accent);
}

.tick-img {
  width: 18px;   /* adjust as needed */
  height: 18px;
  object-fit: contain;
  display: block;
}


/* Box default */
.box {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 2px solid #dfe6ea;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
}

/* Hover effect */
.box:hover {
  transform: scale(1.05);
  box-shadow: 0 0 6px rgba(3,179,169,0.4);
}

/* Checked state */
.box.checked {
  background: var(--accent);
  border-color: var(--accent);
}

/* Tick image */
.tick-img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  display: block;
}


/* footer */
.site-footer{
  background:var(--accent);
  color:white;
  padding:28px 0 14px;
  padding-top: 50px;
  justify-content: center;
  align-items: center;
  text-align: center;

}

.footer-title {
    color: var(--text);
    font-weight: bold;
    font-size: 55px;
}

.footer-subtitle {
    color: var(--text);
    font-weight: lighter;
    font-size: 25px;
}

.footer-div {
    margin-top: 50px;
    margin-bottom: 70px;
}

.footer-div2 {
    margin-top: 50px;
    margin-bottom: 20px;
}