
/* RESET */
*{margin:0;padding:0;box-sizing:border-box;font-family:Arial, sans-serif;}

body{background:#f7f7f7;color:#1a1a1a;}

.container{width:100%;max-width:1250px;margin:auto;}

.att-hero{
  position:relative;
  margin-top:50px;
  min-height:520px;
  display:flex;
  align-items:center;
  overflow:hidden;
}

/* BACKGROUND */
.hero-bg{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  z-index:0;
}

.hero-bg img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:right center;
  display:block;
}
/* OVERLAY */
.hero-bg::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    to right,
    rgba(255,255,255,0.96) 30%,
    rgba(255,255,255,0.72) 52%,
    rgba(255,255,255,0.05) 78%
  );
}

/* CONTAINER */
.att-container{
  width:90%;
  max-width:1200px;
  margin:auto;
  position:relative;
  z-index:2;
}

.att-content{
  max-width:580px;
}

/* SMALL TEXT */
.att-eyebrow{
  font-size:17px;
  font-weight:600;
  margin-bottom:18px;
  color:#111;
  letter-spacing:0.5px;
}

/* TITLE */
.att-content h1{
  font-size:46px;
  line-height:1.15;
  font-weight:700;
  margin-bottom:30px;
  color:#0f172a;
}

/* SLIDER */
.att-slider{
  position:relative;
  height:95px;
  margin-bottom:35px;
  overflow:hidden;
}

/* EACH SLIDE */
.slide{
  position:absolute;
  top:0;
  left:0;
  width:100%;

  opacity:0;
  transform:translateY(35px);
  transition:all 0.7s ease;

  display:flex;
  align-items:center; /* FIX ALIGNMENT */
  gap:18px;
}

/* ACTIVE */
.slide.active{
  opacity:1;
  transform:translateY(0);
}

/* NUMBER CIRCLE */
.slide-number{
  width:50px;
  height:50px;
  min-width:50px;

  border-radius:50%;
  background:#1a2340;
  color:#fff;

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:14px;
  font-weight:700;

  flex-shrink:0;
}

/* TEXT */
.slide p{
  margin:0;
  font-size:17px;
  line-height:1.5;
  color:#1e293b;
  font-weight:500;
}

/* BUTTONS */
.att-buttons{
  display:flex;
  gap:15px;
}

/* PRIMARY BUTTON */
.btn-primary{
  background:#1a2340;
  color:#fff;
  padding:14px 28px;
  text-decoration:none;
  font-size:14px;
  font-weight:600;
  letter-spacing:0.4px;
  transition:0.3s ease;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

.btn-primary:hover{
  background:#000;
  transform:translateY(-2px);
}

/* MOBILE */
@media(max-width:900px){

  .att-hero{
    min-height:700px;
    padding:0;
    display:flex;
    align-items:flex-start;
  }

  /* FORCE BG TO FILL */
  .hero-bg{
    height:100%;
  }

  .hero-bg img{
    object-position:center center;
  }

  /* OVERLAY */
  .hero-bg::after{
    background:linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0),
      rgba(255,255,255,0.9)
    );
  }

  .att-container{
    padding-top:110px;
    padding-bottom:70px;
    width:90%;
  }

  .att-content{
    max-width:100%;
  }

  .att-content h1{
    font-size:32px;
    line-height:1.25;
    margin-bottom:25px;
  }

  .att-slider{
    height:160px;
  }

  .slide{
    gap:14px;
  }

  .slide-number{
    min-width:42px;
    height:42px;
    font-size:13px;
  }

  .slide p{
    font-size:15px;
    line-height:1.6;
  }

  .att-buttons{
    width:100%;
  }

  .btn-primary{
    width:100%;
    justify-content:center;
  }

}

/* PAIN POINTS */
.section{
  padding:60px 0;
  background: #1a2340;
}

.section h2{
  margin-bottom:30px;
  font-size:18px;
  letter-spacing:1px;
  color:hwb(0 100% 0%);
  margin-right: 50px;
}

.grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}

.card{
  background:#ff0000e4;
  padding:15px;
  border-radius:8px;
  border:1px solid #eee;
}

.card h3{
  font-size:16px;
  margin-bottom:10px;
    color:#fffbfb;
}

.card p{
  font-size:14px;
  color:hsl(0, 0%, 100%);
}

/* SPLIT SECTION */
.split{
  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:center;
  gap:30px;
  padding:60px 0;
}

.split-text h2{
  font-size:28px;
  margin-bottom:15px;
}

.split-text p{
  margin-bottom:20px;
  color:#555;
}

.split-buttons button{
  margin-right:10px;
  padding:10px 16px;
  border-radius:20px;
  border:none;
  cursor:pointer;
}

.btn-dark{background:#000;color:#fff;}
.btn-light{background:#eee;}

.split img{
  width:100%;
  border-radius:10px;
}

/* RESPONSIVE */
@media(max-width:900px){
  .grid{grid-template-columns:1fr 1fr;}
  .split{grid-template-columns:1fr;}
}

@media(max-width:600px){
  .hero{height:300px;}
  .hero h1{font-size:20px;}
  .grid{grid-template-columns:1fr;}
}


/* MOBILE */
@media(max-width:900px){

  .slide{
    align-items:flex-start;
    gap:14px;
  }

  .slide-number{
    width:42px;
    height:42px;
    min-width:42px;
    font-size:12px;
    margin-top:3px;
  }

  .slide p{
    font-size:15px;
    line-height:1.5;
  }

}




















/* =========================
   PAIN POINTS SECTION
========================= */

.pain-section{
    background: #f1f5f9;
    padding: 80px 20px;
    font-family: Arial, sans-serif;
}

/* HEADER */

.pain-header{
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.pain-header span{
    color: hsl(0, 100%, 50%);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.pain-header h2{
    color: #ff3b3b;
    font-size: 38px;
    line-height: 1.2;
    margin: 15px 0;
}

.pain-header p{
    color:#ff3b3b;
    font-size: 16px;
    line-height: 1.7;
}

/* GRID */

.pain-grid{
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* CARD */

.pain-box{
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 18px;
    padding: 24px 22px;
    position: relative;
    transition: 0.3s ease;
}

/* RED TOP LINE */

.pain-box::before{
    content: "";
    position: absolute;
    top: 0;
    left: 22px;
    width: 55px;
    height: 3px;
    background: #ff3b3b;
    border-radius: 50px;
}

/* HOVER */

.pain-box:hover{
    transform: translateY(-5px);
    border-color: rgba(255,59,59,0.4);
    box-shadow: 0 12px 30px rgba(255,59,59,0.12);
}

/* TITLE */

.pain-box h3{
    color: #ff3b3b;
    font-size: 20px;
    margin: 12px 0;
    line-height: 1.4;
}

/* TEXT */

.pain-box p{
    color: #ff3b3b;
    font-size: 14px;
    line-height: 1.7;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width: 1100px){

    .pain-grid{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 768px){

    .pain-section{
        padding: 70px 18px;
    }

    .pain-grid{
        grid-template-columns: 1fr;
    }

    .pain-header h2{
        font-size: 30px;
    }

    .pain-header p{
        font-size: 15px;
    }

    .pain-box{
        padding: 22px 20px;
    }

    .pain-box h3{
        font-size: 19px;
    }
}


































/* CENTER THE GRID */
/* =========================================
   UNIQUE PAIN POINTS SECTION
========================================= */

.mfg-pain-section{
    background:#f1f5f9;
    padding: 90px 20px;
    font-family: Arial, sans-serif;
}

/* HEADER */

.mfg-pain-header{
    text-align: center;
    margin-bottom: 55px;
}

.mfg-pain-header h2{
    color: #ff0000;
    font-size: 42px;
    font-weight: 700;
    letter-spacing: 1px;
}

/* GRID */

.mfg-pain-grid{
    max-width: 1100px;
    margin: auto;

    display: grid;

    /* CENTER THE CARDS */
    grid-template-columns: repeat(auto-fit, minmax(280px, 300px));

    justify-content: center;

    gap: 24px;
}

/* CARD */

.mfg-pain-box{
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 20px;

    padding: 28px 24px;

    position: relative;
    overflow: hidden;

    transition: 0.35s ease;
}

/* RED TOP LINE */

.mfg-pain-box::before{
    content: "";
    position: absolute;

    top: 0;
    left: 24px;

    width: 65px;
    height: 4px;

    background: #ff3b3b;
    border-radius: 50px;
}

/* RED GLOW */

.mfg-pain-box::after{
    content: "";

    position: absolute;
    top: -60px;
    right: -60px;

    width: 120px;
    height: 120px;

    background: rgba(255,59,59,0.08);
    border-radius: 50%;

    transition: 0.4s ease;
}

/* HOVER */

.mfg-pain-box:hover{
    transform: translateY(-8px);

    border-color: rgba(255,59,59,0.35);

    box-shadow: 0 18px 40px rgba(255,59,59,0.12);
}

.mfg-pain-box:hover::after{
    transform: scale(1.4);
}

/* TITLE */

.mfg-pain-box h3{
    color: #ff3b3b;

    font-size: 20px;
    line-height: 1.4;

    margin: 12px 0 14px;

    position: relative;
    z-index: 2;
}

/* TEXT */

.mfg-pain-box p{
    color: #ff0303;

    font-size: 14px;
    line-height: 1.8;

    position: relative;
    z-index: 2;
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width: 768px){

    .mfg-pain-section{
        padding: 70px 18px;
    }

    .mfg-pain-header h2{
        font-size: 30px;
    }

    .mfg-pain-grid{
        grid-template-columns: 1fr;
    }

    .mfg-pain-box{
        padding: 24px 20px;
    }

    .mfg-pain-box h3{
        font-size: 18px;
    }
}





/* =========================================
   IMPACT STATS SECTION
========================================= */

.impact-stats-section{
    background: #07111f;
    padding: 90px 20px;
    font-family: Arial, sans-serif;
}

/* HEADER */

.impact-stats-header{
    text-align: center;
    margin-bottom: 55px;
}

.impact-stats-header h2{
    color: #ffffff;
    font-size: 42px;
    font-weight: 700;
}

/* GRID */

.impact-stats-grid{
    max-width: 1100px;
    margin: auto;

    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 22px;
}

/* BOX */

.impact-stat-box{
    background: #f1f5f9;

    border-radius: 22px;

    padding: 40px 25px;

    text-align: center;

    transition: 0.35s ease;
}

.impact-stat-box:hover{
    transform: translateY(-8px);
}

/* NUMBER */

.impact-stat-box h3{
    color: #ff3b3b;

    font-size: 48px;
    font-weight: 700;

    margin-bottom: 14px;
}

/* TEXT */

.impact-stat-box p{
    color: #1e293b;

    font-size: 16px;
    line-height: 1.6;

    font-weight: 600;
}

/* =========================================
   TABLET
========================================= */

@media(max-width: 992px){

    .impact-stats-grid{
        grid-template-columns: repeat(2, 1fr);
    }
}

/* =========================================
   MOBILE
========================================= */

@media(max-width: 768px){

    .impact-stats-section{
        padding: 70px 18px;
    }

    .impact-stats-header h2{
        font-size: 30px;
    }

    .impact-stats-grid{
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    /* SQUARE BOXES */

    .impact-stat-box{
        aspect-ratio: 1 / 1;

        display: flex;
        flex-direction: column;
        justify-content: center;

        padding: 20px;
    }

    .impact-stat-box h3{
        font-size: 34px;
    }

    .impact-stat-box p{
        font-size: 14px;
    }
}














/* =========================
   IMPACT V2 SECTION
========================= */

.impactv2{
    background: #0b1220;
    padding: 90px 20px;
    font-family: Arial, sans-serif;
}

.impactv2-header{
    text-align: center;
    margin-bottom: 50px;
}

.impactv2-header h2{
    color: #ffffff;
    font-size: 42px;
    font-weight: 700;
    letter-spacing: 1px;
}

/* GRID CENTERED */
.impactv2-grid{
    max-width: 1000px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 22px;

    justify-content: center;
}

/* CARD */
.impactv2-card{
    background: #f1f5f9; /* white ash */
    border-radius: 18px;

    padding: 35px 25px;
    text-align: center;

    transition: 0.3s ease;
}

.impactv2-card:hover{
    transform: translateY(-6px);
}

/* VALUE */
.impactv2-value{
    color: #ff3b3b;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 12px;
}

/* TEXT */
.impactv2-card p{
    color: #1e293b;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.5;
}

/* MOBILE SQUARE CARDS */
@media(max-width: 768px){

    .impactv2-header h2{
        font-size: 30px;
    }

    .impactv2-card{
        aspect-ratio: 1 / 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 20px;
    }

    .impactv2-value{
        font-size: 34px;
    }
}






/* =========================
   IMPACT 3 SECTION
========================= */

.impact3{
    background: #0b1220;
    padding: 90px 20px;
    font-family: Arial, sans-serif;
}

.impact3-header{
    text-align: center;
    margin-bottom: 50px;
}

.impact3-header h2{
    color: #ffffff;
    font-size: 42px;
    font-weight: 700;
}

/* GRID CENTERED */
.impact3-grid{
    max-width: 700px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;

    justify-content: center;
}

/* CARD */
.impact3-card{
    background: #f1f5f9; /* white ash */
    border-radius: 18px;

    padding: 40px 25px;
    text-align: center;

    transition: 0.3s ease;
}

.impact3-card:hover{
    transform: translateY(-6px);
}

/* VALUE */
.impact3-value{
    color: #ff3b3b;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 12px;
}

/* TEXT */
.impact3-card p{
    color: #1e293b;
    font-size: 16px;
    font-weight: 600;
}

/* MOBILE - SQUARE CARDS */
@media(max-width: 768px){

    .impact3-grid{
        grid-template-columns: 1fr;
        max-width: 320px;
    }

    .impact3-card{
        aspect-ratio: 1 / 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 20px;
    }

    .impact3-header h2{
        font-size: 30px;
    }

    .impact3-value{
        font-size: 38px;
    }
}






/* =========================================
   FARM PAIN POINTS - CLEAN PREMIUM STYLE
   NO CONFLICTS (fp- prefix system)
========================================= */

.fp-section{
    background: #ffffff;
    padding: 90px 20px;
    font-family: Arial, sans-serif;
}

/* HEADER */

.fp-header{
    text-align: center;
    margin-bottom: 50px;
}

.fp-header h2{
    color: #ff0000;
    font-size: 42px;
    font-weight: 700;
}

/* GRID (CENTERED) */

.fp-grid{
    max-width: 900px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;

    justify-content: center;
}

/* CARD */

.fp-card{
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;

    padding: 32px 26px;

    position: relative;

    transition: 0.3s ease;
    overflow: hidden;
}

/* RED TOP ACCENT LINE */

.fp-card::before{
    content: "";
    position: absolute;
    top: 0;
    left: 26px;

    width: 60px;
    height: 4px;

    background: #ff3b3b;
    border-radius: 50px;
}

/* GLOW EFFECT */

.fp-card::after{
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;

    width: 120px;
    height: 120px;

    background: rgba(255,59,59,0.08);
    border-radius: 50%;
    transition: 0.4s ease;
}

/* HOVER */

.fp-card:hover{
    transform: translateY(-8px);
    border-color: rgb(255, 0, 0);
    box-shadow: 0 18px 40px rgba(255,59,59,0.12);
}

.fp-card:hover::after{
    transform: scale(1.3);
}

/* TITLE */

.fp-card h3{
    color: #ff3b3b;
    font-size: 20px;
    margin: 14px 0 12px;
    line-height: 1.4;
}

/* TEXT */

.fp-card p{
    color: #ff0000;
    font-size: 14px;
    line-height: 1.8;
}

/* RESPONSIVE */

@media(max-width: 768px){

    .fp-section{
        padding: 70px 18px;
    }

    .fp-header h2{
        font-size: 30px;
    }

    .fp-grid{
        grid-template-columns: 1fr;
    }

    .fp-card{
        padding: 26px 22px;
    }
}