/* ============================================================
   Can Man Solutions – Main Stylesheet
   SEO-optimised, mobile-first, print-friendly
   ============================================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  --green:       #2e7d32;
  --green-light: #43a047;
  --green-dark:  #1b5e20;
  --accent:      #ff6f00;
  --accent-light:#ffa040;
  --white:       #ffffff;
  --off-white:   #f5f7f2;
  --gray-light:  #f0f4f0;
  --gray:        #757575;
  --gray-dark:   #333333;
  --black:       #111111;
  --font-main:   'Segoe UI', Arial, sans-serif;
  --radius:      10px;
  --shadow:      0 4px 20px rgba(0,0,0,.10);
  --transition:  .25s ease;
  --max-width:   1180px;
}

/* ---------- Reset / Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-main);
  color: var(--gray-dark);
  background: var(--white);
  line-height: 1.7;
}
img { max-width: 100%; height: auto; display: block; }
a  { color: var(--green); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--green-dark); }
ul { list-style: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.25;
  color: var(--black);
  margin-bottom: .6em;
}
h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); }
h4 { font-size: 1.1rem; }
p  { margin-bottom: 1em; }

/* ---------- Layout Helpers ---------- */
.container   { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }
.section     { padding: 70px 0; }
.section-alt { background: var(--off-white); }
.text-center { text-align: center; }
.text-white  { color: var(--white) !important; }
.flex        { display: flex; gap: 1.5rem; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.grid-2      { display: grid; grid-template-columns: repeat(2,1fr); gap: 2rem; }
.grid-3      { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.grid-4      { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 13px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-align: center;
}
.btn-primary {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn-primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(46,125,50,.35);
}
.btn-accent {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn-accent:hover {
  background: #e65100;
  border-color: #e65100;
  color: var(--white);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}
.btn-outline:hover {
  background: var(--green);
  color: var(--white);
}
.btn-lg { padding: 16px 44px; font-size: 1.05rem; }
.btn-sm { padding: 8px 20px; font-size: .85rem; }

/* ---------- Header / Navigation ---------- */
.site-header {
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
  position: sticky;
  top: 0;
  z-index: 999;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.site-logo img { height: 54px; width: auto; }
.site-logo .logo-text {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--green);
  letter-spacing: -.5px;
}
.site-logo .logo-text span { color: var(--accent); }

.main-nav ul { display: flex; gap: 1.8rem; align-items: center; }
.main-nav a {
  font-weight: 600;
  font-size: .95rem;
  color: var(--gray-dark);
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: all var(--transition);
}
.main-nav a:hover,
.main-nav a.active { color: var(--green); border-bottom-color: var(--green); }

.header-actions { display: flex; gap: 10px; align-items: center; }
.cart-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--gray-dark);
  font-size: .9rem;
}
.cart-link:hover { color: var(--green); }
.cart-count {
  background: var(--accent);
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: .7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--gray-dark);
  margin: 5px 0;
  border-radius: 3px;
  transition: all var(--transition);
}

/* ---------- Hero Section ---------- */
.hero {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 60%, var(--green-light) 100%);
  color: var(--white);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 400px; height: 400px;
  background: rgba(255,255,255,.05);
  border-radius: 50%;
}
.hero-content { position: relative; z-index: 1; }
.hero h1 { color: var(--white); font-size: clamp(2rem, 5vw, 3.2rem); margin-bottom: .5em; }
.hero .lead {
  font-size: clamp(1rem, 2vw, 1.25rem);
  opacity: .92;
  max-width: 560px;
  margin-bottom: 2rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  color: white;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
}

/* ---------- Section Headings ---------- */
.section-heading { text-align: center; margin-bottom: 3rem; }
.section-heading h2 { position: relative; display: inline-block; }
.section-heading h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--green);
  border-radius: 2px;
  margin: .5rem auto 0;
}
.section-heading p { color: var(--gray); max-width: 600px; margin: 1rem auto 0; font-size: 1.05rem; }

/* ---------- Pricing Cards ---------- */
.pricing-tabs { display: flex; justify-content: center; gap: 0; margin-bottom: 2.5rem; }
.pricing-tab {
  padding: 10px 30px;
  border: 2px solid var(--green);
  background: white;
  color: var(--green);
  font-weight: 700;
  cursor: pointer;
  font-size: .9rem;
  transition: all var(--transition);
}
.pricing-tab:first-child { border-radius: var(--radius) 0 0 var(--radius); }
.pricing-tab:last-child  { border-radius: 0 var(--radius) var(--radius) 0; }
.pricing-tab.active, .pricing-tab:hover { background: var(--green); color: white; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}
.pricing-card {
  background: var(--white);
  border: 2px solid #e0e0e0;
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
  transition: all var(--transition);
  box-shadow: var(--shadow);
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: 0 12px 35px rgba(0,0,0,.14); }
.pricing-card.featured {
  border-color: var(--green);
  transform: scale(1.03);
}
.pricing-card.featured:hover { transform: scale(1.03) translateY(-4px); }
.badge-featured {
  position: absolute;
  top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--accent);
  color: white;
  padding: 4px 18px;
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  white-space: nowrap;
}
.plan-name { font-size: 1.1rem; font-weight: 700; color: var(--green); margin-bottom: .5rem; text-transform: uppercase; letter-spacing: 1px; }
.plan-price { margin: 1rem 0; }
.plan-price .amount { font-size: 2.8rem; font-weight: 800; color: var(--black); }
.plan-price .period { font-size: .95rem; color: var(--gray); }
.plan-price .billing-note { font-size: .82rem; color: var(--gray); display: block; margin-top: .2rem; }
.plan-desc { color: var(--gray); font-size: .9rem; margin-bottom: 1.5rem; border-bottom: 1px solid #eee; padding-bottom: 1.5rem; }
.plan-features { margin-bottom: 2rem; }
.plan-features li {
  padding: 6px 0;
  font-size: .92rem;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.plan-features li::before { content: '✅'; flex-shrink: 0; }
.plan-cta { width: 100%; display: block; text-align: center; }

/* ---------- How It Works ---------- */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; }
.step-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}
.step-card:hover { transform: translateY(-4px); }
.step-icon {
  width: 70px; height: 70px;
  background: var(--green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 1.2rem;
  color: white;
}
.step-number {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--green);
  margin-bottom: .4rem;
}

/* ---------- Service Areas ---------- */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1rem;
}
.area-badge {
  background: white;
  border: 1.5px solid #c8e6c9;
  border-radius: var(--radius);
  padding: 10px 14px;
  font-size: .9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--green-dark);
  transition: all var(--transition);
}
.area-badge:hover { background: var(--green); color: white; border-color: var(--green); }
.area-badge .pin { font-size: 1rem; }

/* ---------- FAQ Accordion ---------- */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  border: 1.5px solid #e0e0e0;
  border-radius: var(--radius);
  margin-bottom: 1rem;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  text-align: left;
  background: white;
  border: none;
  padding: 1.1rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background var(--transition);
  color: var(--black);
}
.faq-question:hover { background: var(--gray-light); }
.faq-question.open { background: var(--green); color: white; }
.faq-icon { font-size: 1.3rem; transition: transform var(--transition); flex-shrink: 0; }
.faq-question.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s ease;
  background: white;
  font-size: .95rem;
  color: var(--gray-dark);
}
.faq-answer.open { max-height: 400px; padding: 1.1rem 1.5rem; }

/* ---------- Benefits / Feature Cards ---------- */
.benefit-card {
  background: white;
  border-radius: var(--radius);
  padding: 1.8rem;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--green);
  transition: transform var(--transition);
}
.benefit-card:hover { transform: translateY(-3px); }
.benefit-icon { font-size: 2.2rem; margin-bottom: .8rem; }
.benefit-card h3 { font-size: 1.05rem; margin-bottom: .5rem; }
.benefit-card p  { font-size: .9rem; color: var(--gray); margin: 0; }

/* ---------- Who We Serve ---------- */
.serve-card {
  background: white;
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--green);
  transition: transform var(--transition);
}
.serve-card:hover { transform: translateY(-4px); }
.serve-icon { font-size: 2.5rem; margin-bottom: .8rem; }

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  color: white;
  padding: 70px 0;
  text-align: center;
}
.cta-banner h2 { color: white; margin-bottom: .6rem; }
.cta-banner p  { opacity: .9; font-size: 1.1rem; max-width: 550px; margin: 0 auto 2rem; }

/* ---------- Contact Page ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 3rem; align-items: start; }
.contact-info-card {
  background: white;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.contact-info-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.contact-info-item h4 { margin-bottom: .2rem; font-size: .95rem; color: var(--gray); font-weight: 600; }
.contact-info-item p, .contact-info-item a { font-size: 1rem; color: var(--black); font-weight: 600; margin: 0; }

/* ---------- Forms ---------- */
.form-card {
  background: white;
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}
.form-group { margin-bottom: 1.3rem; }
.form-group label {
  display: block;
  font-size: .9rem;
  font-weight: 600;
  margin-bottom: .4rem;
  color: var(--gray-dark);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #d0d0d0;
  border-radius: 8px;
  font-size: .95rem;
  font-family: var(--font-main);
  color: var(--black);
  transition: border-color var(--transition);
  background: white;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(46,125,50,.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-note { font-size: .82rem; color: var(--gray); margin-top: .3rem; }
.form-divider { text-align: center; color: var(--gray); margin: 1.2rem 0; font-size: .9rem; position: relative; }
.form-divider::before, .form-divider::after { content: ''; position: absolute; top: 50%; width: 42%; height: 1px; background: #ddd; }
.form-divider::before { left: 0; }
.form-divider::after { right: 0; }

/* ---------- Product / Item Pages ---------- */
.product-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.product-badge {
  display: inline-block;
  background: var(--green);
  color: white;
  padding: 4px 14px;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.product-price-block { margin: 1.5rem 0; padding: 1.5rem; background: var(--gray-light); border-radius: var(--radius); }
.product-price-block .price { font-size: 2.5rem; font-weight: 800; color: var(--green-dark); }
.product-price-block .billing { font-size: .9rem; color: var(--gray); }
.product-features-list { margin: 1.5rem 0; }
.product-features-list li { padding: 8px 0; display: flex; align-items: center; gap: 10px; border-bottom: 1px solid #eee; font-size: .95rem; }
.product-features-list li:last-child { border-bottom: none; }
.product-img-wrap {
  background: linear-gradient(135deg, var(--green-dark), var(--green-light));
  border-radius: var(--radius);
  padding: 3rem;
  text-align: center;
  color: white;
}
.product-img-icon { font-size: 6rem; }

/* ---------- Cart / Checkout ---------- */
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th, .cart-table td { padding: 14px 12px; text-align: left; border-bottom: 1px solid #eee; }
.cart-table th { font-size: .85rem; text-transform: uppercase; letter-spacing: .5px; color: var(--gray); background: var(--gray-light); }
.cart-total-box { background: var(--gray-light); border-radius: var(--radius); padding: 2rem; }
.cart-total-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid #ddd; }
.cart-total-row.grand { font-size: 1.2rem; font-weight: 700; border-bottom: none; padding-top: 1rem; }

/* ---------- Account Pages ---------- */
.account-layout { display: grid; grid-template-columns: 240px 1fr; gap: 2.5rem; align-items: start; }
.account-nav { background: white; border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.account-nav a { display: block; padding: 13px 20px; font-weight: 600; font-size: .92rem; color: var(--gray-dark); border-left: 3px solid transparent; transition: all var(--transition); }
.account-nav a:hover, .account-nav a.active { color: var(--green); border-left-color: var(--green); background: var(--gray-light); }
.account-content { background: white; border-radius: var(--radius); box-shadow: var(--shadow); padding: 2rem; }
.account-greeting { font-size: 1.05rem; color: var(--gray-dark); margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid #eee; }

/* ---------- Thank You Page ---------- */
.thankyou-card {
  max-width: 640px;
  margin: 80px auto;
  text-align: center;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 3rem;
}
.thankyou-icon { font-size: 5rem; margin-bottom: 1.2rem; }
.thankyou-card h1 { color: var(--green); margin-bottom: .5rem; }
.order-details { background: var(--gray-light); border-radius: 8px; padding: 1.5rem; margin: 1.5rem 0; text-align: left; }
.order-details dt { font-weight: 600; font-size: .85rem; color: var(--gray); }
.order-details dd { font-size: .95rem; margin-bottom: .8rem; }

/* ---------- Legal Pages ---------- */
.legal-content { max-width: 860px; margin: 0 auto; }
.legal-content h1 { margin-bottom: .4rem; }
.legal-content .last-updated { color: var(--gray); font-size: .9rem; margin-bottom: 2rem; display: block; }
.legal-content h2 { margin-top: 2.2rem; color: var(--green-dark); }
.legal-content h3 { margin-top: 1.5rem; }
.legal-content ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1rem; }
.legal-content ul li { margin-bottom: .4rem; }

/* ---------- Unsubscribe / Simple Pages ---------- */
.simple-page-card {
  max-width: 540px;
  margin: 80px auto;
  text-align: center;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 3rem;
}
.simple-page-card h1 { color: var(--green-dark); margin-bottom: .5rem; }

/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
  color: white;
  padding: 60px 0 50px;
  text-align: center;
}
.page-hero h1 { color: white; margin-bottom: .4rem; }
.page-hero p { opacity: .9; max-width: 580px; margin: 0 auto; font-size: 1.05rem; }
.breadcrumb { font-size: .85rem; opacity: .75; margin-bottom: .8rem; }
.breadcrumb a { color: rgba(255,255,255,.8); }
.breadcrumb a:hover { color: white; }
.breadcrumb span { margin: 0 .4rem; }

/* ---------- Testimonials ---------- */
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.testimonial-card {
  background: white;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  position: relative;
}
.testimonial-card::before { content: '"'; font-size: 5rem; color: var(--green); opacity: .15; position: absolute; top: 0; left: 1rem; line-height: 1; }
.stars { color: #f9a825; font-size: 1rem; margin-bottom: .8rem; letter-spacing: 2px; }
.testimonial-text { font-style: italic; color: var(--gray-dark); margin-bottom: 1rem; font-size: .95rem; }
.testimonial-author { font-weight: 700; font-size: .9rem; }
.testimonial-location { font-size: .82rem; color: var(--gray); }

/* ---------- Stats Bar ---------- */
.stats-bar { background: var(--green-dark); color: white; padding: 50px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 2rem; text-align: center; }
.stat-item .number { font-size: 2.6rem; font-weight: 800; color: var(--accent-light); line-height: 1; }
.stat-item .label  { font-size: .9rem; opacity: .85; margin-top: .3rem; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--black);
  color: rgba(255,255,255,.75);
  padding: 60px 0 0;
}
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 3rem; padding-bottom: 3rem; }
.footer-brand p { font-size: .9rem; margin: 1rem 0 1.5rem; max-width: 280px; }
.footer-phone { font-size: 1.1rem; font-weight: 700; color: white; }
.footer-col h4 { color: white; font-size: .95rem; margin-bottom: 1.2rem; text-transform: uppercase; letter-spacing: .5px; }
.footer-col ul li { margin-bottom: .6rem; }
.footer-col ul li a { color: rgba(255,255,255,.7); font-size: .9rem; }
.footer-col ul li a:hover { color: var(--green-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .82rem;
  flex-wrap: wrap;
  gap: .5rem;
}
.footer-bottom a { color: rgba(255,255,255,.6); }
.footer-bottom a:hover { color: white; }

/* ---------- Notice / Alert ---------- */
.notice {
  padding: 14px 20px;
  border-radius: 8px;
  margin-bottom: 1rem;
  font-size: .9rem;
  font-weight: 500;
}
.notice-success { background: #e8f5e9; color: #2e7d32; border-left: 4px solid #2e7d32; }
.notice-info    { background: #e3f2fd; color: #1565c0; border-left: 4px solid #1565c0; }
.notice-warning { background: #fff8e1; color: #e65100; border-left: 4px solid #ff6f00; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .product-layout { grid-template-columns: 1fr; }
  .account-layout { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .main-nav, .header-actions .btn { display: none; }
  .nav-toggle { display: block; }
  .main-nav.open {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 8px 20px rgba(0,0,0,.1);
    padding: 1rem;
    z-index: 998;
  }
  .main-nav.open ul { flex-direction: column; gap: .5rem; }
  .main-nav.open a { padding: 10px; display: block; }
  .site-header { position: relative; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .pricing-card.featured { transform: none; }
  .hero { padding: 60px 0 50px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .section { padding: 50px 0; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .header-inner { padding: 12px 16px; }
  .pricing-card { padding: 1.5rem; }
  .btn-lg { padding: 13px 28px; font-size: .95rem; }
}

/* ---------- Print Styles ---------- */
@media print {
  .site-header, .site-footer, .nav-toggle, .btn, .hero-actions { display: none; }
  body { font-size: 12pt; color: black; }
  .hero { background: none; color: black; padding: 20px 0; }
  .hero h1 { color: black; }
  a[href]::after { content: " (" attr(href) ")"; font-size: .8em; color: #555; }
}

/* ---------- Utility ---------- */
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: absolute; top: -40px; left: 0; background: var(--green); color: white; padding: 8px 16px; border-radius: 0 0 8px 0; font-weight: 700; transition: top .2s; z-index: 10000; }
.skip-link:focus { top: 0; }