/* ==================================================
   Version 3.0 - SENIX X6 / Best Cordless Lawn Mowers
   Tailwind Inspired Commercial Alliance Page Styles
   ================================================== */

/* -----------------------------
   GLOBAL STYLES
----------------------------- */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f3f4f6;
    color: #1f2937;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* -----------------------------
   CONTAINER
----------------------------- */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* -----------------------------
   HERO SECTION
----------------------------- */
.hero {
    padding: 4rem 0;
    background-color: #ffffff;
}
.hero .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}
@media(min-width:768px){
    .hero .hero-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}
.hero-left {
    max-width: 600px;
}
.hero-left .badge {
    background-color: #facc15;
    color: #1f2937;
    padding: 0.5rem 1rem;
    font-weight: 600;
    border-radius: 9999px;
    text-transform: uppercase;
    font-size: 0.875rem;
}
.hero-left h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-top: 1rem;
}
@media(min-width:768px){
    .hero-left h1 {
        font-size: 3rem;
    }
}
.hero-left p {
    margin-top: 1rem;
    font-size: 1.125rem;
    color: #4b5563;
}
.cta-btn {
    display: inline-block;
    background-color: #f97316;
    color: #fff;
    font-weight: 700;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
}
.cta-btn:hover {
    background-color: #ea580c;
}

/* -----------------------------
   TRUST SIGNALS
----------------------------- */
.trust {
    padding: 3rem 0;
}
.trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    text-align: center;
}
@media(min-width:768px){
    .trust-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
.trust-card {
    background-color: #f9fafb;
    padding: 1.5rem;
    border-radius: 1rem;
    font-weight: 600;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

/* -----------------------------
   QUICK VERDICT
----------------------------- */
.verdict {
    padding: 3rem 0;
}
.verdict-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
@media(min-width:768px){
    .verdict-wrapper {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}
.verdict-text h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #111827;
}
.verdict-text p {
    margin-top: 1rem;
    font-size: 1.125rem;
    color: #4b5563;
}
.score-card {
    background-color: #f3f4f6;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
}
.score-card span {
    font-weight: 600;
    color: #374151;
}
.score-card h3 {
    font-size: 3rem;
    font-weight: 700;
    color: #f97316;
    margin-top: 0.5rem;
}

/* -----------------------------
   FEATURES / WHY WE LIKE IT
----------------------------- */
.features {
    padding: 3rem 0;
}
.features h2 {
    font-size: 2.25rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
}
.feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
@media(min-width:768px){
    .feature-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
.feature-card {
    background-color: #f9fafb;
    padding: 1.5rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}
.feature-card h3 {
    font-weight: 600;
    color: #111827;
}
.feature-card p {
    margin-top: 0.5rem;
    color: #4b5563;
}

/* -----------------------------
   PROBLEM / SOLUTION
----------------------------- */
.problem-solution {
    padding: 4rem 0;
}
.problem-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}
@media(min-width:768px){
    .problem-grid {
        grid-template-columns: 1fr 1fr;
    }
}
.problem, .solution {
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}
.problem {
    background-color: #fee2e2;
}
.solution {
    background-color: #d1fae5;
}
.problem h3, .solution h3 {
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
.problem ul, .solution ul {
    list-style: disc inside;
}

/* -----------------------------
   WHO IT'S FOR
----------------------------- */
.bg-green-50 {
    background-color: #d1fae5;
}
.bg-red-50 {
    background-color: #fee2e2;
}
.grid > ul {
    padding-left: 1rem;
}
.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

/* -----------------------------
   SPECIFICATIONS
----------------------------- */
.spec-card {
    background-color: #f9fafb;
    padding: 1.5rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}
.spec-card h3 {
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.5rem;
}
.spec-card p {
    color: #4b5563;
}

/* -----------------------------
   GALLERY
----------------------------- */
.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}
@media(min-width:768px){
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* -----------------------------
   PROS & CONS
----------------------------- */
.pros-cons h3 {
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
.pros-cons ul {
    list-style: none;
    padding-left: 0;
}
.pros-cons li {
    margin-bottom: 0.5rem;
}

/* -----------------------------
   COMPARISON TABLE
----------------------------- */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
}
.comparison-table th, .comparison-table td {
    border: 1px solid #d1d5db;
    padding: 0.75rem;
}
.comparison-table th {
    background-color: #f3f4f6;
}

/* -----------------------------
   FAQ
----------------------------- */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    margin-bottom: 1rem;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}
.faq-question {
    width: 100%;
    padding: 1rem 1.5rem;
    background-color: #f9fafb;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    outline: none;
    border: none;
}
.faq-answer {
    padding: 1rem 1.5rem;
    display: none;
    background-color: #ffffff;
}

/* -----------------------------
   CTA BUTTONS
----------------------------- */
.cta-btn {
    display: inline-block;
    background-color: #f97316;
    color: #ffffff;
    font-weight: 700;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    text-align: center;
    transition: all 0.3s ease;
}
.cta-btn:hover {
    background-color: #ea580c;
}

/* -----------------------------
   FOOTER
----------------------------- */
footer {
    background-color: #f3f4f6;
    padding: 3rem 1rem;
    text-align: center;
    font-size: 0.875rem;
    color: #6b7280;
}
footer a {
    color: #1f2937;
    margin: 0 0.5rem;
    text-decoration: underline;
}

/* -----------------------------
   RESPONSIVE GRID
----------------------------- */
@media(min-width:768px){
    .grid-cols-2 {
        grid-template-columns: repeat(2, 1fr);
    }
    .grid-cols-3 {
        grid-template-columns: repeat(3, 1fr);
    }
    .grid-cols-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* -----------------------------
   CUSTOM STYLING HELPERS
----------------------------- */
.text-center {
    text-align: center;
}
.mt-4 { margin-top: 1rem; }
.mb-4 { margin-bottom: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mb-8 { margin-bottom: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mb-10 { margin-bottom: 2.5rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 1rem; }
.shadow { box-shadow: 0 4px 6px rgba(0,0,0,0.05); }
.shadow-md { box-shadow: 0 2px 4px rgba(0,0,0,0.05); }
/* =========================
   FAQ SECTION
========================= */

.faq-section{
padding:100px 0;
background:#f8fafc;
}

.section-header{
text-align:center;
margin-bottom:60px;
}

.section-tag{
display:inline-block;
padding:8px 18px;
background:#2563eb;
color:#fff;
border-radius:999px;
font-size:13px;
font-weight:700;
letter-spacing:1px;
margin-bottom:18px;
}

.section-header h2{
font-size:42px;
font-weight:800;
margin-bottom:16px;
color:#111827;
}

.section-header p{
font-size:18px;
color:#6b7280;
}

.faq-wrapper{
max-width:900px;
margin:0 auto;
}

.faq-item{
background:#fff;
border-radius:18px;
margin-bottom:16px;
overflow:hidden;
box-shadow:0 8px 24px rgba(0,0,0,.06);
transition:.3s;
}

.faq-item:hover{
transform:translateY(-2px);
}

.faq-question{
width:100%;
padding:28px 32px;
background:none;
border:none;
cursor:pointer;
display:flex;
justify-content:space-between;
align-items:center;
font-size:20px;
font-weight:700;
color:#111827;
text-align:left;
}

.faq-icon{
font-size:28px;
font-weight:700;
color:#2563eb;
transition:.3s;
}

.faq-answer{
max-height:0;
overflow:hidden;
transition:max-height .4s ease;
}

.faq-answer p{
padding:0 32px 28px;
font-size:17px;
line-height:1.8;
color:#6b7280;
}

.faq-item.active .faq-answer{
max-height:300px;
}

.faq-item.active .faq-icon{
transform:rotate(45deg);
}
.cta-button{
  display:inline-block;
  background:#FF9900;
  color:#fff;
  font-size:18px;
  font-weight:700;
  padding:16px 36px;
  border-radius:12px;
  text-decoration:none;
  transition:all .3s ease;
  box-shadow:0 8px 20px rgba(255,153,0,.35);
}

.cta-button:hover{
  background:#e68a00;
  transform:translateY(-2px);
  box-shadow:0 12px 30px rgba(255,153,0,.45);
}