:root {
	--primary: #000000;
	--accent: #FF5A5F;
	--secondary: #6B7280;
	--bg-dark: #1f2937;
	--bg-light: #F9FAFB;
	--bg-beige: #F0EBE4;
	--white: #ffffff;
	--success: #10B981;
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

ul, ol {
padding-left: 43px;
margin: 20px 0px;
}

body {
	font-family: 'Inter', sans-serif;
	line-height: 1.6;
	color: #1F2937;
	scroll-behavior: smooth;
}

img {width: 100%; height: auto; display: block; margin: 0 auto;}	
/* Navigation */
nav {
	position: sticky;
	top: 0;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	padding: 1rem 5%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	z-index: 1000;
	border-bottom: 1px solid #eee;
}

.logo {
	font-weight: 800;
	font-size: 1.25rem;
	letter-spacing: -0.5px;
}

/* Buttons */
.btn {
	padding: 0.8rem 1.5rem;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 600;
	transition: transform 0.2s, background 0.2s;
	display: inline-block;
	cursor: pointer;
	border: 2px solid var(--primary);
}

.btn-nav {
	padding: 0.8rem 1.5rem;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 600;
	transition: transform 0.2s, background 0.2s;
	display: inline-block;
	cursor: pointer;
	color: var(--primary);
}

.btn:hover {
	transform: translateY(-2px);
}

.btn-primary {
	background: var(--primary);
	color: white;
}

.btn-outline {
	background: transparent;
	border: 2px solid var(--primary);
	color: var(--primary);
}

.btn-white {
	border-color: white;
	color:white;
}

.btn-accent {
	background: var(--accent);
	border-color: var(--accent);
	color: white;
}

/* Sections */
section {
	padding: 4rem 10%;
}

.hero {
	text-align: center;
	background: var(--bg-light);
	padding: 8rem 20%;
}

.savings-badge {
	background: #E1F3EB;
	color: #065F46;
	padding: 0.5rem 1rem;
	border-radius: 50px;
	font-size: 0.9rem;
	font-weight: 600;
	display: inline-block;
	margin-bottom: 1.5rem;
}

h1 {
	font-size: 3.5rem;
	font-weight: 800;
	margin-bottom: 1.5rem;
	line-height: 1.1;
	letter-spacing: -1px;
}
h2 {
font-size: 2.4rem;
}

.subheadline {
	font-size: 1.25rem;
	color: var(--secondary);
	max-width: 900px;
	margin: 0 auto 2.5rem;
}

.trust-line {
  padding: 12px 0px;
}
/* Problem Section */
.problem {
	background: var(--white);
	text-align: center;
}

.problem-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.problem-card {
	padding: 2rem;
	background: #FFF5F5;
	border-radius: 12px;
	border: 1px solid #FED7D7;
}

/* Conection */
.connection {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  gap: 40px;
  padding-top: 0;
}
.connection > div {
  flex: 1;
}
/* Steps */
.steps {
	background: var(--bg-beige);
}

.step-container {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 2rem;
	margin-top: 3rem;
}

.step {
	flex: 1;
	min-width: 200px;
	text-align: center;
}

.step-number {
	width: 40px;
	height: 40px;
	background: var(--primary);
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1rem;
	font-weight: bold;
}

.flexbox {
  display: flex;
  align-items: center;
}

.float-list {
	list-style: none;
	padding: 40px;
	background:#fff;
	border-radius: 10px;
	box-shadow: 0px 10px 20px #0003;
	text-align: left;
	margin-left: -60px;
}
.float-list li {
	border-bottom:1px solid #ccc;
	padding-bottom: 10px;
}

/* Donation Section */
.donate {
	background: #FFF9F2;
	text-align: center;
	border: 2px dashed #FFD5A1;
	margin: 4rem 10%;
	border-radius: 20px;
}

.donation-options {
	display: flex;
	justify-content: center;
	gap: 1rem;
	margin-top: 2rem;
	flex-wrap: wrap;
}

/* FAQ */
.faq {
	max-width: 1280px;
	margin: 0 auto;
}

.faq-item {
	margin-bottom: 1.5rem;
	padding-bottom: 1.5rem;
	border-bottom: 1px solid #eee;
}

.faq-q {
	font-weight: 700;
	font-size: 1.1rem;
	margin-bottom: 0.5rem;
}

/*SEO Footer*/
.seo-text {
  background: #1f2937;
  color: var(--white);
}


/* Demo placeholder */
.demo-box {
  width: 100%;
  max-width: 1200px;
  height: auto;
  background: #8b8b8b;
  margin: 3rem auto;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  flex-direction: column;
  border: 2px solid #ccc;
  overflow: hidden;
}
footer {
	text-align: center;
	padding: 3rem;
	color: var(--secondary);
	font-size: 0.9rem;
}


.container {
display: flex;
}

/* Sidebar */
.sidebar {
width: 250px;
height: calc(100vh - 72px);
position: sticky;
top: 72px;
background: #111;
color: white;
padding: 20px;
flex-direction: column;
justify-content: flex-start;
overflow-y: auto;
}

.sidebar ul {
list-style: none;
padding: 0;
}

.sidebar a {
color: #ccc;
text-decoration: none;
display: block;
padding: 8px 0;
}

.sidebar a:hover {
color: white;
}

/* Content */
.content {
flex: 1;
padding: 40px;
}

.sidebar a.active {
color: #fff;
font-weight: bold;
}

.note-box {
background: #FFF4E5;
border: 1px solid #FFD8A8;
padding: 15px;
border-radius: 8px;
margin: 20px 0;
font-size: 0.95rem;
}

.min {font-size: 13px; font-weight: 300;}


.trust-wrapper {
  overflow: hidden;
}


.trust-wrapper {
  display: block;
}

.trust-track {
  display: block;
  margin-top: 1rem;
}

.trust-track span {
  margin: 0 1rem;
}
	
.trust-track p:nth-child(2) {
  display: none; /* hide duplicate on desktop */
}


@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Mobile Adjustments */
@media (max-width: 768px) {
	
	h1 { font-size: 2.25rem; }
	h2 {line-height: 1.2; text-align: center; font-size: 2rem;}
	section { padding: 2rem 5%; }
	.hero { padding: 5rem 5%; }
	.subheadline {font-size: 1.1rem;}

	.cta-group {
	  display: flex;
	  flex-direction: column;
	  gap: 10px;
	}

	.btn {margin: 0;}
	.btn-nav {padding: 0.5rem;}

	nav, .connection, .flexbox {flex-direction: column;}
	.connection ul {padding: 0;}

	.float-list {
	  margin-left: 0;
	}
	.donate {
	  margin: 2rem 5%;
	}

  .trust-wrapper {
    overflow: hidden;
  }

  .trust-track {
    display: flex;
    width: max-content;
    animation: scroll 12s linear infinite;
  }

  .trust-track p {
    white-space: nowrap;
    padding-right: 2rem;
  }


  .trust-track p:nth-child(2) {
    display: inline-block; /* show duplicate on mobile */
  }

}

/*Icons*/

i.fa-solid{
    margin-right:8px;
    color:#f97316; /* accent PRO brand */
}
.pro-section i.fa-solid{
    color:#ea580c;
	font-size: 32px;
}
.hero i.fa-solid{
    color:#22c55e;
}

.fa-solid.fa-check.green,
.green {
  background: var(--success);
  padding: 6px;
  color: var(--white);
  border-radius: 60px;
  width: 28px;
  height: 28px;
}

.fa-solid.fa-check.red,
.red {
  background: var(--accent);
  padding: 6px;
  color: var(--white)!important;
  border-radius: 60px;
  width: 28px;
  height: 28px;
}

/*PRO*/

.section-highlight{
    background: linear-gradient(180deg,#fff7ed 0%,#ffffff 100%);
    border-top:1px solid #fde7c3;
}

.pro-section{
    padding:5rem 1.5rem;
    text-align:center;
}

.pro-badge{
    display:inline-block;
    background:#111827;
    color:#fff;
    padding:.5rem 1rem;
    border-radius:999px;
    font-size:.85rem;
    font-weight:700;
    margin-bottom:1.5rem;
    letter-spacing:.5px;
}

.pro-section h2{
    font-size:2.5rem;
    margin-bottom:1rem;
}

.pro-subheadline{
    max-width:720px;
    margin:0 auto 3rem;
    color:#6b7280;
    font-size:1.1rem;
    line-height:1.7;
}

.pro-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
    gap:1.5rem;
    max-width:1360px;
    margin:0 auto 3rem;
}

.pro-card{
    background:#fff;
    padding:2rem;
    border-radius:20px;
    border:1px solid #f3f4f6;
    box-shadow:0 10px 30px rgba(0,0,0,.04);
    transition:.25s ease;
}

.pro-card:hover{
    transform:translateY(-5px);
    box-shadow:0 20px 40px rgba(0,0,0,.08);
}

.pro-card h3{
    margin-bottom:1rem;
    font-size:1.2rem;
}

.pro-card p{
    color:#6b7280;
    line-height:1.7;
}

.pro-cta{
    margin-top:2rem;
}

.pro-cta .btn{
    box-shadow:0 10px 30px rgba(249,115,22,.35);
}

.pro-note{
    margin-top:1rem;
    color:#6b7280;
    font-size:.95rem;
}

/*Fre vs Pro*/

.comparison{
    padding:5rem 1.5rem;
    background:#fff;
    text-align:center;
}

.comparison h2{
    margin-bottom:3rem;
    font-size:2.2rem;
}

.comparison-table-wrapper{
    overflow-x:auto;
    max-width:1000px;
    margin:0 auto;
}

.comparison-table{
    width:100%;
    border-collapse:collapse;
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.comparison-table thead{
    background: var(--bg-dark);
    color:#fff;
}

.comparison-table th,
.comparison-table td{
    padding:1.2rem;
    border-bottom:1px solid #e5ccaa;
}



.comparison-table th{
    font-size:1rem;
    font-weight:700;
}

.comparison-table td:first-child{
    text-align:left;
    font-weight:600;
}

.comparison-table td{
    text-align:center;
}

.comparison-table tbody tr:hover{
    background:#fafafa;
}

.pro-col{
    background:var(--bg-beige);
    color:#ea580c;
    font-weight:700;
}

.popular-badge{
    display:block;
    margin-top:.5rem;
    font-size:.75rem;
    background:var(--accent);
    color:#fff;
    padding:.3rem .6rem;
    border-radius:999px;
}

/* MODAL */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
}

.modal-content {
    background: #fff;
    max-width: 500px;
    margin: 8% auto;
    padding: 30px;
    border-radius: 12px;
    position: relative;
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 28px;
    cursor: pointer;
}

.modal input,
.modal textarea {
    width: 100%;
    padding: 14px;
    margin-top: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
}

.modal button {
    margin-top: 16px;
    width: 100%;
}

.success-message {
    display: none;
    margin-top: 20px;
    padding: 14px;
    border-radius: 8px;
    background: #ecfdf3;
    color: #027a48;
    font-weight: 600;
    text-align: center;
}


.toast-success {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #111827;
    color: white;
    padding: 16px 22px;
    border-radius: 10px;
    display: none;
    z-index: 99999;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}