:root {
  --green-dark:#14532d;
  --green:#1f7a5c;
  --green-light:#2ec27e;
  --blue:#2563eb;
  --blue-light:#eff6ff;
  --dark:#0f172a;
  --gray:#64748b;
  --border:#e2e8f0;
}

html {
  scroll-behavior: smooth;
}

*{box-sizing:border-box;margin:0;padding:0;}
body{
  font-family:'Inter',sans-serif;
  line-height:1.6;
  color:var(--dark);
  background:white;
}

.section{padding:100px 20px;}
.container{max-width:1150px;margin:0 auto;}
h1,h2,h3{line-height:1.2;}
h2{text-align:center;margin-bottom:20px;font-size:2.2rem;}
.section-intro{text-align:center;color:var(--gray);max-width:750px;margin:0 auto 60px;}

/* HERO */
.hero{
  background:linear-gradient(135deg,var(--green-dark),var(--green-light));
  color:white;
  padding: 50px 20px;
}
.hero-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
  max-width:1150px;
  margin:0 auto;
}
.hero p a {
  color: #fff;
}
.hero-logo-mobile{display:none;text-align:center;margin-bottom:30px;}
.hero-logo-mobile img{width: 100%;max-width:420px;}
.hero h1{font-size:3rem;font-weight:800;margin-bottom:20px;}
.hero p{opacity:.95;margin-bottom:30px;font-size:1.1rem;}
.button-primary{
  background:white;
  color:var(--green-dark);
  padding:16px 34px;
  border-radius:10px;
  font-weight:600;
  text-decoration:none;
  display:inline-block;
  transition:.3s ease;
}
.button-primary:hover{background:#f1f5f9;transform:translateY(-3px);}
.hero-image img{
  max-width:430px;
  animation:float 5s ease-in-out infinite;
}
@keyframes float{
  0%{transform:translateY(0);}
  50%{transform:translateY(-12px);}
  100%{transform:translateY(0);}
}

/* FEATURE GRID */
.feature-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:30px;
}
.feature-card{
  border:1px solid var(--border);
  border-radius:16px;
  padding:28px;
  transition:.3s ease;
}
.feature-card:hover{
  transform:translateY(-6px);
  box-shadow:0 20px 40px rgba(0,0,0,.06);
}
.feature-card i{
  font-size:26px;
  color:var(--blue);
  margin-bottom:12px;
}

/* BLUE SECTION */
.blue-section{
  background:var(--blue-light);
}
.blue-section h2{
  color:var(--blue);
}

/* CTA */
.cta-section{
  background:linear-gradient(135deg,var(--green-dark),var(--green));
  color:white;
  text-align:center;
  padding:120px 20px;
}
.cta-section h2{font-size:2.4rem;margin-bottom:20px;}
form{max-width:500px;margin:40px auto 0;}
input{
  width:100%;
  padding:14px;
  margin-bottom:18px;
  border-radius:10px;
  border:none;
  font-size:1rem;
}
.submit-btn{
  font-size: 16px;
  width:100%;
  padding:16px;
  border-radius:10px;
  border:none;
  background:white;
  color:var(--green-dark);
  font-weight:600;
  cursor:pointer;
  transition:.3s ease;
}
.submit-btn:hover{background:#f2f047;transition:.3s ease;}

/* PSPINC Footer – 2 Column Layout */

.pspinc-footer {
  background: #f9fafb;
  border-top: 1px solid #e5e7eb;
  padding: 40px 20px;
  font-size: 0.9rem;
  color: #374151;
}

.footer-container {
  max-width: 1150px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 40px;
}

/* LEFT COLUMN */

.footer-left {
  text-align: left;
}

.footer-legal {
  margin-bottom: 10px;
}

.footer-legal a {
  color: #6b7280;
  text-decoration: none;
  margin-right: 6px;
}

.footer-legal a:hover {
  text-decoration: underline;
}

.footer-copy {
  color: #6b7280;
}

/* RIGHT COLUMN */

.footer-right {
  text-align: right;
}

.footer-contact div {
  margin-bottom: 4px;
}

.footer-social {
  margin-top: 12px;
}

.footer-contact a {
  color: #6b7280;
  text-decoration: none;
}

.footer-social a {
  margin-left: 12px;
  color: #374151;
  font-size: 1.1rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-social a:hover {
  color: #2563eb;
}

/* MOBILE STACK */

@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-left,
  .footer-right {
    text-align: center;
  }

  .footer-social a {
    margin: 0 8px;
  }
}

/* MOBILE */
@media(max-width:900px){
  .hero-grid{grid-template-columns:1fr;text-align:center;}
  .hero-logo-mobile{display:block;}
  .hero-image{display:none;}
  .hero h1{font-size:2.2rem;}
}
/* PSPINC SECTION */

.pspinc-grid {
  display:grid;
  grid-template-columns:1fr 2fr;
  gap:60px;
  align-items:center;
}

.pspinc-content p {
  margin-top:18px;
  color:var(--gray);
}

.pspinc-content p a {
  color:var(--gray);
}

.pspinc-image {
  text-align: center;
}

.pspinc-button {
  background:white;
  color:#000;
  padding:14px 28px;
  border-radius:10px;
  font-weight:600;
  text-decoration:none;
  display:inline-block;
  border:2px solid #000;
  transition:.3s ease;
  @media(max-width:900px){
    width: 100%;
    text-align: center;
  }
}

.pspinc-button:hover {
  background:#000;
  color:white;
}

/* Subtle Reveal Animation */
.reveal {
  opacity:0;
  transform:translateY(30px);
  transition:all .8s ease;
}

.reveal.active {
  opacity:1;
  transform:translateY(0);
}

/* Responsive */

@media(max-width:900px){
  .pspinc-grid {
    grid-template-columns:1fr;
  }
}

.features-toggle {
  color: var(--gray);
  text-decoration: none;
  cursor: pointer;
  transition: .2s ease;
}

.features-toggle:hover {
  text-decoration: underline;
}

.feature-accordion {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s ease, opacity 0.4s ease;
  opacity: 0;
}

.feature-accordion.open {
  max-height: 2000px;
  opacity: 1;
  margin-top: 20px;
}

.feature-accordion h3 {
  margin-top: 25px;
}

.feature-accordion ul {
  margin-top: 10px;
  padding-left: 20px;
  color: var(--gray);
}

.feature-accordion p {
  color: var(--gray);
}

/* Compact Hero for Policy Pages */

.hero-compact {
  padding: 0 20px;
}

.policy-logo {
  max-width: 200px;
}

.policy-title {
  font-size: 1.8rem;
  font-weight: 700;
}

/* Policy Page Spacing Adjustments */

.policy-content {
  max-width: 850px;
}

.policy-intro {
  margin-top: 20px;
  margin-bottom: 35px;
  color: var(--gray);
}

.policy-content h2 {
  text-align: left;
  margin-top: 35px;
  margin-bottom: 10px;   /* reduced */
  font-size: 1.5rem;
}

.policy-content h3 {
  margin-top: 20px;
  margin-bottom: 6px;    /* reduced */
  font-size: 1.1rem;
}

.policy-content p,
.policy-content ul {
  margin-top: 10px;      /* tighter */
  color: var(--gray);
}

.policy-content ul {
  padding-left: 20px;
}

/* CTA Layout Improvements */

.cta-container {
  max-width: 700px;
  margin: 0 auto;
}

.cta-subtext {
  margin-bottom: 35px;
  opacity: .9;
}

.terms-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 25px;
  text-align: left;
}

.terms-wrapper input[type="checkbox"] {
  width: inherit;
  margin-top: 4px;
  flex-shrink: 0;
}

.terms-wrapper label {
  font-size: .85rem;
  line-height: 1.5;
  cursor: pointer;
}

.terms-wrapper a {
  color: white;
  text-decoration: underline;
}

.submit-btn:disabled {
  opacity: .5;
  cursor: not-allowed;
}