/* ============================================
   FreshHome Food Delivery - Global Stylesheet
   Color: Green #27AE60 | Orange #E67E22 | Blue #3498DB
   ============================================ */

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green: #27AE60;
  --green-dark: #1E8449;
  --green-light: #D5F5E3;
  --orange: #E67E22;
  --orange-dark: #CA6F1E;
  --orange-light: #FDEBD0;
  --blue: #3498DB;
  --blue-dark: #2174AE;
  --dark: #2C3E50;
  --mid: #5D6D7E;
  --light: #ECF0F1;
  --white: #FFFFFF;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
  --radius: 12px;
  --radius-sm: 6px;
  --radius-lg: 20px;
  --transition: all 0.25s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--green); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--green-dark); }
ul { list-style: none; }

h1, h2, h3, h4, h5 { line-height: 1.25; font-weight: 700; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; }

p { color: var(--mid); }
.text-dark { color: var(--dark); }

/* === UTILITY CLASSES === */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.section-alt { background: var(--light); }

.text-center { text-align: center; }
.text-green { color: var(--green); }
.text-orange { color: var(--orange); }

.badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.badge-green { background: var(--green-light); color: var(--green-dark); }
.badge-orange { background: var(--orange-light); color: var(--orange-dark); }
.badge-blue { background: #D6EAF8; color: var(--blue-dark); }

.section-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}

.section-title { margin-bottom: 16px; }
.section-subtitle { font-size: 1.1rem; max-width: 600px; }
.section-header { margin-bottom: 56px; }
.section-header.text-center .section-subtitle { margin: 0 auto; }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}

.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: var(--shadow-md);
}

.btn-secondary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-secondary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}
.btn-outline:hover {
  background: var(--green);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--dark);
}

.btn-lg { padding: 18px 36px; font-size: 1.05rem; }
.btn-sm { padding: 10px 20px; font-size: 0.875rem; }

/* === NAVBAR === */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  padding: 0 24px;
}

.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--dark);
}
.navbar-brand:hover { color: var(--dark); }
.brand-icon { font-size: 1.6rem; }
.brand-name span { color: var(--green); }

.navbar-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.navbar-links a {
  color: var(--mid);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
}
.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green);
  transition: var(--transition);
}
.navbar-links a:hover::after,
.navbar-links a.active::after { width: 100%; }
.navbar-links a:hover,
.navbar-links a.active { color: var(--green); }

.navbar-actions { display: flex; align-items: center; gap: 12px; }

/* Mobile menu always hidden by default; shown only on small screens */
.mobile-menu { display: none; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  transition: var(--transition);
  border-radius: 2px;
}

/* === HERO === */
.hero {
  background: linear-gradient(135deg, #0F4C2A 0%, #1A6B3A 40%, #27AE60 70%, #E67E22 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero .container { position: relative; z-index: 1; }

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
}

.hero-badge { margin-bottom: 24px; }
.hero-badge .badge { background: rgba(255,255,255,0.2); color: var(--white); }

.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero p { color: rgba(255,255,255,0.85); font-size: 1.15rem; margin-bottom: 36px; max-width: 500px; }

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.2);
}
.stat-item { text-align: center; }
.stat-number { font-size: 1.8rem; font-weight: 800; color: var(--white); display: block; }
.stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 0.5px; }

.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.phone-mockup {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 24px;
  padding: 24px;
  width: 280px;
  text-align: center;
}
.phone-screen { font-size: 4rem; margin-bottom: 12px; }
.phone-title { color: var(--white); font-weight: 700; font-size: 1rem; margin-bottom: 4px; }
.phone-sub { color: rgba(255,255,255,0.7); font-size: 0.85rem; }

.floating-cards { display: flex; gap: 12px; }
.float-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-md);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
  white-space: nowrap;
}

/* === FEATURES GRID === */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--green-light);
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: var(--green-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}
.feature-icon.orange { background: var(--orange-light); }
.feature-icon.blue { background: #D6EAF8; }

.feature-card h4 { color: var(--dark); margin-bottom: 8px; }

/* === PROCESS STEPS === */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  position: relative;
}

.step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 56px;
  height: 56px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 800;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}

.step-number.orange { background: var(--orange); }

.step h4 { margin-bottom: 8px; }

/* === TABS === */
.tabs { display: flex; gap: 8px; margin-bottom: 40px; flex-wrap: wrap; }
.tab-btn {
  padding: 10px 24px;
  border-radius: 30px;
  border: 2px solid var(--light);
  background: var(--white);
  color: var(--mid);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.9rem;
}
.tab-btn:hover { border-color: var(--green); color: var(--green); }
.tab-btn.active { background: var(--green); border-color: var(--green); color: var(--white); }

.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* === TESTIMONIALS === */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); }

.stars { color: #F39C12; font-size: 1.1rem; margin-bottom: 16px; }
.testimonial-text { font-style: italic; margin-bottom: 20px; color: var(--dark); font-size: 0.95rem; line-height: 1.7; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.author-avatar.orange { background: var(--orange-light); }
.author-name { font-weight: 700; color: var(--dark); font-size: 0.95rem; }
.author-role { font-size: 0.8rem; color: var(--mid); }

/* === PROCESS DETAIL === */
.process-steps { display: flex; flex-direction: column; gap: 0; }
.process-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid var(--light);
  align-items: flex-start;
}
.process-step:last-child { border-bottom: none; }

.step-badge {
  width: 56px;
  height: 56px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.step-badge.orange { background: var(--orange); }

.step-content h3 { color: var(--dark); margin-bottom: 12px; }
.step-content ul { display: flex; flex-direction: column; gap: 6px; margin-top: 12px; }
.step-content li {
  padding-left: 20px;
  position: relative;
  font-size: 0.9rem;
  color: var(--mid);
}
.step-content li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

/* === FAQ === */
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: var(--transition);
}
.faq-question:hover { background: var(--light); }
.faq-question.open { background: var(--green-light); color: var(--green-dark); }
.faq-icon { font-size: 1.1rem; font-weight: 400; flex-shrink: 0; transition: var(--transition); }
.faq-question.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  display: none;
  padding: 0 24px 20px;
  font-size: 0.9rem;
  line-height: 1.7;
}
.faq-answer.open { display: block; }

/* === ASCII DIAGRAM === */
.diagram-container {
  background: var(--dark);
  color: #00FF88;
  border-radius: var(--radius);
  padding: 32px;
  overflow-x: auto;
  margin: 24px 0;
}
.diagram-container pre {
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.8rem;
  line-height: 1.5;
  white-space: pre;
}
.diagram-title {
  color: #F39C12;
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* === TABLE === */
.table-wrapper { overflow-x: auto; border-radius: var(--radius); border: 1px solid rgba(0,0,0,0.08); }
table { width: 100%; border-collapse: collapse; }
thead { background: var(--green); color: var(--white); }
thead th { padding: 16px 20px; text-align: left; font-size: 0.9rem; font-weight: 600; }
tbody tr { border-bottom: 1px solid rgba(0,0,0,0.06); }
tbody tr:hover { background: var(--green-light); }
tbody td { padding: 14px 20px; font-size: 0.9rem; color: var(--mid); }
tbody td:first-child { font-weight: 600; color: var(--dark); }
.check { color: var(--green); font-size: 1.1rem; }
.dash { color: var(--mid); }

/* === FORM === */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 0.875rem; font-weight: 600; color: var(--dark); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 2px solid rgba(0,0,0,0.1);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--dark);
  transition: var(--transition);
  background: var(--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(39,174,96,0.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }

/* === CARDS === */
.info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: var(--shadow-sm);
}

.highlight-box {
  background: var(--green-light);
  border-left: 4px solid var(--green);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  margin: 24px 0;
}
.highlight-box.orange {
  background: var(--orange-light);
  border-left-color: var(--orange);
}
.highlight-box.blue {
  background: #D6EAF8;
  border-left-color: var(--blue);
}
.highlight-box h4 { color: var(--dark); margin-bottom: 8px; }

/* === PRICING === */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  border: 2px solid rgba(0,0,0,0.08);
  transition: var(--transition);
  text-align: center;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pricing-card.featured { border-color: var(--green); background: var(--green); color: var(--white); }
.pricing-card.featured p { color: rgba(255,255,255,0.8); }
.pricing-card.featured h3 { color: var(--white); }
.pricing-card.featured .pricing-amount { color: var(--white); }

.pricing-icon { font-size: 3rem; margin-bottom: 20px; }
.pricing-amount { font-size: 2.5rem; font-weight: 800; color: var(--green); margin: 16px 0 8px; }
.pricing-per { font-size: 0.875rem; color: var(--mid); }
.pricing-features { margin-top: 24px; display: flex; flex-direction: column; gap: 10px; }
.pricing-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  text-align: left;
}
.pricing-feature::before { content: '✓'; color: var(--green); font-weight: 700; }
.pricing-card.featured .pricing-feature::before { color: var(--white); }

/* === FOOTER === */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .navbar-brand { color: var(--white); margin-bottom: 16px; }
.footer-desc { font-size: 0.9rem; line-height: 1.7; max-width: 280px; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.social-icon {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}
.social-icon:hover { background: var(--green); color: var(--white); }

.footer-col h5 { color: var(--white); margin-bottom: 20px; font-size: 0.9rem; letter-spacing: 0.5px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: rgba(255,255,255,0.6); font-size: 0.875rem; }
.footer-col a:hover { color: var(--green); }

.newsletter-form {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}
.newsletter-form input {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.05);
  color: var(--white);
  font-size: 0.875rem;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-form input:focus { outline: none; border-color: var(--green); }

.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 0.8rem;
  flex-wrap: wrap;
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,0.5); }
.footer-bottom-links a:hover { color: var(--green); }

/* === PAGE HERO (inner pages) === */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, #1A252F 100%);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2327AE60' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .badge { margin-bottom: 16px; }
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.75); font-size: 1.1rem; max-width: 640px; }
.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 20px;
  font-size: 0.875rem;
}
.breadcrumb a { color: rgba(255,255,255,0.5); }
.breadcrumb a:hover { color: var(--green); }
.breadcrumb span { color: rgba(255,255,255,0.3); }
.breadcrumb .current { color: rgba(255,255,255,0.8); }

/* === CTA SECTION === */
.cta-section {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  padding: 80px 0;
  text-align: center;
}
.cta-section h2 { color: var(--white); margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,0.85); font-size: 1.1rem; max-width: 540px; margin: 0 auto 36px; }
.cta-buttons { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* === ICON LIST === */
.icon-list { display: flex; flex-direction: column; gap: 12px; }
.icon-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--mid);
}
.icon-item .ico { font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }

/* === TWO COLUMN LAYOUT === */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.two-col.align-center { align-items: center; }

/* === CONTACT === */
.contact-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 48px; }
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--green-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.contact-item h4 { color: var(--dark); margin-bottom: 4px; }
.contact-item p { font-size: 0.875rem; }

/* === MOBILE MOCKUP CARD === */
.app-screens-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}
.app-screen-card {
  background: var(--dark);
  border-radius: 20px;
  padding: 20px 16px;
  border: 2px solid rgba(255,255,255,0.05);
  transition: var(--transition);
}
.app-screen-card:hover { border-color: var(--green); transform: translateY(-4px); }
.app-screen-icon { font-size: 2rem; margin-bottom: 12px; }
.app-screen-card h4 { color: var(--white); font-size: 0.9rem; margin-bottom: 8px; }
.app-screen-card p { color: rgba(255,255,255,0.5); font-size: 0.8rem; }

/* === SCROLLBAR === */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--light); }
::-webkit-scrollbar-thumb { background: var(--green); border-radius: 3px; }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-grid { gap: 40px; }
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .hero { padding: 60px 0; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
  .two-col { grid-template-columns: 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .navbar-links, .navbar-actions { display: none; }
  .hamburger { display: flex; }
  .navbar-actions .btn { display: none; }

  /* Mobile menu — positioned; shown when .open is toggled by JS */
  .mobile-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    z-index: 999;
    padding: 24px;
    flex-direction: column;
    gap: 8px;
    overflow-y: auto;
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a {
    padding: 14px 16px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    border-radius: var(--radius-sm);
    border-bottom: 1px solid var(--light);
  }
  .mobile-menu a:hover { background: var(--green-light); color: var(--green); }
  .mobile-menu .btn { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .features-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .process-step { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
}

/* === PRINT === */
@media print {
  .navbar, footer, .cta-section { display: none; }
  .section { padding: 20px 0; }
}
