/* Base Styles */
* { 
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif; 
}

body { 
  background-color: #ffffff;
  color: #1a1a1a;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navbar */
.navbar { 
  background-color: #0a1929;
  padding: 16px 0;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.navbar .container { 
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar h2 { 
  color: white;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.navbar ul { 
  list-style: none;
  display: flex;
  gap: 32px;
  align-items: center;
}

.navbar a { 
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.navbar a:hover { 
  color: white;
}

.navbar .nav-cta {
  background-color: rgba(255,255,255,0.15);
  padding: 8px 20px;
  border-radius: 6px;
  color: white;
  transition: background-color 0.2s;
}

.navbar .nav-cta:hover {
  background-color: rgba(255,255,255,0.25);
}

/* Hero Section */
.hero { 
  background: linear-gradient(135deg, #0a1929 0%, #1a3a5c 100%);
  color: white;
  padding: 100px 20px 80px;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero h1 { 
  font-size: 3.5rem;
  margin-bottom: 24px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.35rem;
  margin-bottom: 32px;
  opacity: 0.95;
  font-weight: 400;
  line-height: 1.5;
  text-wrap: balance;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.hero-features {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.hero-features span {
  font-size: 0.95rem;
  opacity: 0.9;
  padding: 6px 0;
  position: relative;
}

.hero-features span::before {
  content: "✓";
  margin-right: 8px;
  opacity: 0.7;
}

/* Buttons */
.btn-cta { 
  background-color: #2563eb;
  color: white;
  padding: 16px 48px;
  border-radius: 8px;
  font-size: 1.1rem;
  text-decoration: none;
  display: inline-block;
  font-weight: 600;
  transition: background-color 0.2s, transform 0.1s;
  box-shadow: 0 4px 14px rgba(37,99,235,0.3);
  border: none;
  cursor: pointer;
}

.btn-cta:hover { 
  background-color: #1d4ed8;
}

.btn-cta-large {
  background-color: #2563eb;
  color: white;
  padding: 18px 56px;
  border-radius: 8px;
  font-size: 1.25rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s;
  box-shadow: 0 4px 14px rgba(37,99,235,0.3);
}

.btn-cta-large:hover {
  background-color: #1d4ed8;
}

.btn-submit {
  background-color: #0a1929;
  color: white;
  padding: 16px 40px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 600;
  width: 100%;
  transition: background-color 0.2s;
}

.btn-submit:hover {
  background-color: #051018;
}

/* Section Styles */
section {
  padding: 80px 20px;
}

section h2 {
  font-size: 2.5rem;
  color: #0a1929;
  margin-bottom: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-align: center;
}

.section-subtitle {
  text-align: center;
  font-size: 1.15rem;
  color: #64748b;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Value Proposition */
.value-proposition {
  background-color: #f8fafc;
  border-top: 1px solid #e2e8f0;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.value-item {
  background: white;
  padding: 40px 32px;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.value-item:hover {
  border-color: #cbd5e1;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.value-item h3 {
  font-size: 1.35rem;
  color: #0a1929;
  margin-bottom: 12px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.value-item p {
  color: #475569;
  line-height: 1.7;
  font-size: 1rem;
}

/* How It Works */
.how-it-works-section {
  background-color: white;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto 50px;
}

.process-step {
  text-align: center;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background-color: #2563eb;
  color: white;
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.process-step h3 {
  font-size: 1.25rem;
  color: #0a1929;
  margin-bottom: 12px;
  font-weight: 600;
}

.process-step p {
  color: #64748b;
  line-height: 1.6;
  font-size: 0.95rem;
}

.process-cta {
  text-align: center;
}

.process-cta a {
  color: #2563eb;
  font-weight: 600;
  text-decoration: none;
  font-size: 1.05rem;
  transition: opacity 0.2s;
}

.process-cta a:hover {
  opacity: 0.8;
}

/* Value Comparison Section */
.value-comparison {
  background-color: white;
  padding: 80px 20px;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto 50px;
}

.comparison-card {
  background: #f8fafc;
  padding: 28px 24px;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  transition: transform 0.2s, box-shadow 0.2s;
}

.comparison-card.advantage {
  border-left: 4px solid #2563eb;
}

.comparison-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.comparison-card h4 {
  color: #0a1929;
  font-size: 1.15rem;
  margin-bottom: 12px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.comparison-card p {
  color: #475569;
  line-height: 1.7;
  font-size: 0.95rem;
}

.comparison-summary {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  border-radius: 12px;
  border: 1px solid #cbd5e1;
}

.comparison-summary h3 {
  color: #0a1929;
  font-size: 1.8rem;
  margin-bottom: 20px;
  font-weight: 700;
  text-align: center;
}

.comparison-summary p {
  color: #475569;
  line-height: 1.8;
  font-size: 1.05rem;
  margin-bottom: 16px;
  text-align: center;
}

.comparison-summary p:last-child {
  margin-bottom: 0;
}

.summary-emphasis {
  font-weight: 600;
  color: #0a1929;
  font-size: 1.1rem;
  margin-top: 24px;
}

/* Security Section */
.security-section {
  background-color: #f8fafc;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.security-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}

.security-item {
  background: white;
  padding: 32px 28px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}

.security-item h4 {
  font-size: 1.15rem;
  color: #0a1929;
  margin-bottom: 10px;
  font-weight: 600;
}

.security-item p {
  color: #64748b;
  line-height: 1.6;
  font-size: 0.95rem;
}

.security-item a {
  color: #2563eb;
  text-decoration: none;
  font-weight: 500;
}

/* Features Detailed */
.features-detailed {
  background-color: white;
}

.analysis-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.category {
  background: #f8fafc;
  padding: 36px 32px;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
}

.category h4 {
  font-size: 1.3rem;
  color: #0a1929;
  margin-bottom: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.category ul {
  list-style: none;
  margin: 0;
}

.category li {
  color: #475569;
  padding: 10px 0;
  border-bottom: 1px solid #e2e8f0;
  font-size: 0.95rem;
  position: relative;
  padding-left: 20px;
}

.category li:last-child {
  border-bottom: none;
}

.category li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #2563eb;
  font-weight: bold;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #0a1929 0%, #1a3a5c 100%);
  color: white;
  text-align: center;
  padding: 80px 20px;
}

.cta-section h2 {
  color: white;
  margin-bottom: 16px;
  font-size: 2.5rem;
}

.cta-description {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.95;
}

.cta-details {
  margin-top: 24px;
  font-size: 0.95rem;
  opacity: 0.85;
}

.cta-disclaimer {
  margin-top: 16px;
  font-size: 0.85rem;
  opacity: 0.75;
}

.cta-disclaimer a {
  color: white;
  text-decoration: underline;
}

/* Upload Section */
.upload-section {
  background-color: #f8fafc;
  padding: 80px 20px;
}

.upload-form { 
  max-width: 700px;
  margin: 0 auto;
  background-color: white;
  padding: 48px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.upload-form h2 { 
  margin-bottom: 12px;
  color: #0a1929;
  font-size: 2rem;
  text-align: center;
  font-weight: 700;
}

.upload-instructions {
  color: #64748b;
  margin-bottom: 40px;
  font-size: 1rem;
  text-align: center;
}

.form-group {
  margin-bottom: 28px;
}

.form-group label { 
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #0a1929;
  font-size: 0.95rem;
}

.field-help {
  font-size: 0.85rem;
  color: #64748b;
  margin-top: 4px;
  margin-bottom: 8px;
}

.upload-form input[type="text"],
.upload-form input[type="file"] { 
  width: 100%;
  padding: 14px;
  border-radius: 8px;
  border: 2px solid #e2e8f0;
  font-size: 0.95rem;
  transition: border-color 0.2s, background-color 0.2s;
  background-color: #f8fafc;
}

.upload-form input[type="text"]:focus,
.upload-form input[type="file"]:focus {
  outline: none;
  border-color: #2563eb;
  background-color: white;
}

.upload-form input[type="text"]::placeholder {
  color: #94a3b8;
}

/* Disclaimer Section */
.disclaimer-section {
  background-color: #fef3c7;
  border-top: 2px solid #fbbf24;
  border-bottom: 2px solid #fbbf24;
  padding: 40px 20px;
}

.disclaimer-section h3 {
  color: #78350f;
  margin-bottom: 16px;
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
}

.disclaimer-section p {
  color: #92400e;
  line-height: 1.7;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  font-size: 0.95rem;
}

/* Footer */
footer { 
  background-color: #0a1929;
  color: rgba(255,255,255,0.8);
  padding: 60px 20px 30px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-main {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-column h4 {
  color: white;
  margin-bottom: 16px;
  font-size: 1rem;
  font-weight: 600;
}

.footer-column p {
  margin: 8px 0;
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-column a {
  display: block;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  margin: 10px 0;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-column a:hover {
  color: white;
}

.footer-bottom {
  text-align: center;
}

.footer-bottom p {
  margin: 8px 0;
  font-size: 0.85rem;
  opacity: 0.7;
}

.footer-disclaimer {
  font-size: 0.8rem;
  opacity: 0.6;
  margin-top: 12px;
}

/* Legacy Page Styles */
.page-header {
  text-align: center;
  padding: 80px 20px 60px;
  background: linear-gradient(135deg, #0a1929 0%, #1a3a5c 100%);
  color: white;
}

.page-header h1 {
  font-size: 2.8rem;
  margin-bottom: 15px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.page-header p {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto;
}

.how-it-works { 
  max-width: 1000px;
  margin: 0 auto 60px;
  padding: 0 20px;
}

.steps-compact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.step-compact {
  display: flex;
  gap: 16px;
  background: white;
  padding: 24px;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  align-items: flex-start;
}

.step-num {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: #2563eb;
  color: white;
  border-radius: 50%;
  font-size: 1.2rem;
  font-weight: 700;
}

.step-content h3 {
  color: #0a1929;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.step-content p {
  color: #64748b;
  line-height: 1.5;
  font-size: 0.9rem;
}

.step-card {
  background: white;
  padding: 40px;
  margin-bottom: 30px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border: 1px solid #e2e8f0;
  border-left: 4px solid #2563eb;
}

.step-card h2 {
  color: #0a1929;
  margin-bottom: 15px;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  text-align: left;
}

.step-card p {
  color: #475569;
  line-height: 1.8;
  font-size: 1.05rem;
}

/* Sample Report Styles */
.sample-report-container {
  margin: 50px 0;
}

.sample-report-container h2 {
  color: #0a1929;
  margin-bottom: 12px;
  font-size: 2rem;
  text-align: center;
}

.report-intro {
  text-align: center;
  color: #64748b;
  margin-bottom: 40px;
  font-size: 1.05rem;
}

.report-document {
  background: white;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  overflow: hidden;
}

.report-header {
  background: linear-gradient(135deg, #0a1929 0%, #1a3a5c 100%);
  color: white;
  padding: 32px 40px;
  border-bottom: 3px solid #2563eb;
}

.report-header h3 {
  font-size: 1.8rem;
  margin-bottom: 16px;
  font-weight: 700;
}

.report-meta {
  display: flex;
  gap: 32px;
  font-size: 0.95rem;
  opacity: 0.9;
}

.report-section {
  padding: 36px 40px;
  border-bottom: 1px solid #e2e8f0;
}

.report-section:last-child {
  border-bottom: none;
}

.report-section h4 {
  color: #0a1929;
  font-size: 1.5rem;
  margin-bottom: 24px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.overview-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.overview-item .label {
  color: #64748b;
  font-size: 0.9rem;
  font-weight: 500;
}

.overview-item .value {
  color: #0a1929;
  font-size: 1.5rem;
  font-weight: 700;
}

.finding-card {
  background: #f8fafc;
  border-left: 4px solid #cbd5e1;
  padding: 24px;
  margin-bottom: 20px;
  border-radius: 8px;
}

.finding-card:last-child {
  margin-bottom: 0;
}

.finding-card.risk-high {
  background: #fef2f2;
  border-left-color: #dc2626;
}

.finding-card.risk-medium {
  background: #fef9c3;
  border-left-color: #eab308;
}

.finding-card.risk-verified {
  background: #f0fdf4;
  border-left-color: #16a34a;
}

.finding-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
  gap: 16px;
}

.finding-header h5 {
  color: #0a1929;
  font-size: 1.15rem;
  font-weight: 600;
  flex: 1;
}

.risk-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.risk-badge.high {
  background: #dc2626;
  color: white;
}

.risk-badge.medium {
  background: #eab308;
  color: #422006;
}

.risk-badge.medium-high {
  background: #f97316;
  color: white;
}

.risk-badge.verified {
  background: #16a34a;
  color: white;
}

.finding-card p {
  color: #475569;
  line-height: 1.7;
  margin-bottom: 12px;
}

.finding-card p:last-child {
  margin-bottom: 0;
}

.finding-explanation {
  background: white;
  padding: 16px;
  border-radius: 6px;
  margin: 16px 0;
  border: 1px solid #e2e8f0;
}

.finding-explanation p {
  margin-bottom: 10px;
}

.finding-explanation p:last-child {
  margin-bottom: 0;
}

.finding-explanation ul {
  margin: 8px 0 0 20px;
  color: #475569;
}

.finding-explanation li {
  margin: 6px 0;
}

.recommendation {
  font-weight: 500;
  color: #0a1929;
}

.optimization-list {
  display: grid;
  gap: 20px;
}

.optimization-item {
  background: #f8fafc;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}

.optimization-item h5 {
  color: #0a1929;
  font-size: 1.1rem;
  margin-bottom: 12px;
  font-weight: 600;
}

.optimization-item ul {
  margin-left: 20px;
  color: #475569;
}

.optimization-item li {
  margin: 8px 0;
  line-height: 1.6;
}

.summary-section {
  background: #f8fafc;
}

.risk-summary {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding: 16px;
  background: white;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}

.risk-summary .label {
  color: #64748b;
  font-weight: 600;
  font-size: 1.05rem;
}

.action-items, .next-steps {
  margin-bottom: 24px;
}

.action-items h5, .next-steps h5 {
  color: #0a1929;
  font-size: 1.1rem;
  margin-bottom: 12px;
  font-weight: 600;
}

.action-items ol {
  margin-left: 20px;
  color: #475569;
}

.action-items li {
  margin: 12px 0;
  line-height: 1.7;
}

.next-steps ul {
  margin-left: 20px;
  color: #475569;
}

.next-steps li {
  margin: 10px 0;
  line-height: 1.7;
}

.priority {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-right: 8px;
  text-transform: uppercase;
}

.priority.high {
  background: #fef2f2;
  color: #dc2626;
  border: 1px solid #fecaca;
}

.priority.medium {
  background: #fef9c3;
  color: #854d0e;
  border: 1px solid #fef08a;
}

.priority.low {
  background: #f1f5f9;
  color: #475569;
  border: 1px solid #e2e8f0;
}

.report-footer {
  background: #f8fafc;
  padding: 32px 40px;
  border-top: 2px solid #e2e8f0;
}

.report-footer .disclaimer {
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
  padding: 16px;
  background: white;
  border-radius: 6px;
  border-left: 3px solid #eab308;
}

.report-signature {
  display: flex;
  justify-content: space-between;
  color: #94a3b8;
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 12px;
}

.report-signature p {
  margin: 0;
}

pre { 
  background-color: #f8fafc;
  padding: 30px;
  border-radius: 10px;
  overflow-x: auto;
  line-height: 1.8;
  font-size: 0.9rem;
  border: 1px solid #e2e8f0;
  font-family: 'Courier New', monospace;
}

.legal-content {
  max-width: 900px;
  margin: 0 auto 80px;
  padding: 0 20px;
}

.content-card {
  background: white;
  padding: 40px;
  margin-bottom: 25px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.content-card h2 {
  color: #0a1929;
  margin-bottom: 20px;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  border-bottom: 2px solid #f0f0f0;
  padding-bottom: 12px;
}

.content-card p {
  color: #475569;
  line-height: 1.8;
  margin-bottom: 15px;
}

.content-card ul {
  margin: 15px 0 15px 25px;
  color: #475569;
}

.content-card li {
  margin: 10px 0;
  line-height: 1.7;
}

.content-card a {
  color: #2563eb;
  text-decoration: none;
  font-weight: 600;
}

.content-card a:hover {
  text-decoration: underline;
}

.content-card strong {
  color: #0a1929;
}

/* Contact Form Styles */
.contact-form-section {
  padding: 60px 20px;
  background-color: #f8fafc;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-form label {
  font-weight: 600;
  color: #0a1929;
  font-size: 0.95rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 12px 16px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s;
  background-color: white;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form select {
  cursor: pointer;
}

/* Responsive Design */
@media (max-width: 768px) {
  /* Typography */
  .hero h1 {
    font-size: 2.2rem;
    line-height: 1.2;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .page-header h1 {
    font-size: 1.8rem;
  }
  
  section h2 {
    font-size: 1.8rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  /* Navigation */
  .navbar {
    padding: 12px 0;
  }
  
  .navbar .container {
    flex-wrap: wrap;
    gap: 12px;
  }
  
  .navbar ul {
    gap: 12px;
    font-size: 0.85rem;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }
  
  .navbar h2 {
    font-size: 1.1rem;
  }
  
  .navbar .nav-cta {
    padding: 6px 16px;
  }
  
  /* Hero Section */
  .hero {
    padding: 60px 20px 50px;
  }
  
  .hero-features {
    flex-direction: column;
    gap: 10px;
  }
  
  .hero-features span {
    font-size: 0.9rem;
  }
  
  /* Buttons */
  .btn-cta {
    padding: 14px 32px;
    font-size: 1rem;
    width: 100%;
    max-width: 100%;
    text-align: center;
  }
  
  .btn-cta-large {
    padding: 16px 40px;
    font-size: 1.1rem;
    width: 100%;
  }
  
  .btn-submit {
    padding: 14px 32px;
    font-size: 1rem;
  }
  
  /* Grid Layouts */
  .value-grid,
  .security-grid,
  .analysis-categories,
  .process-steps,
  .steps-compact,
  .comparison-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  /* Cards */
  .value-item,
  .security-item,
  .comparison-card,
  .process-step {
    padding: 24px 20px;
  }
  
  .step-compact {
    padding: 20px;
  }
  
  .category {
    padding: 28px 24px;
  }
  
  /* Sections */
  section {
    padding: 60px 20px;
  }
  
  .value-proposition,
  .how-it-works-section,
  .security-section,
  .features-detailed,
  .value-comparison {
    padding: 60px 16px;
  }
  
  .page-header {
    padding: 60px 20px 50px;
  }
  
  /* Footer */
  .footer-main {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  
  .footer-column {
    text-align: center;
  }
  
  footer {
    padding: 40px 20px 24px;
  }
  
  /* Forms */
  .upload-form {
    padding: 32px 20px;
  }
  
  .upload-section {
    padding: 60px 16px;
  }
  
  .form-group label {
    font-size: 0.9rem;
  }
  
  /* CTA Section */
  .cta-section {
    padding: 60px 20px;
  }
  
  .cta-description {
    font-size: 1.1rem;
  }
  
  /* Summary Section */
  .comparison-summary {
    padding: 32px 24px;
  }
  
  .comparison-summary h3 {
    font-size: 1.5rem;
  }
  
  .comparison-summary p {
    font-size: 1rem;
  }
  
  /* Report Styles */
  .report-header {
    padding: 24px 20px;
  }
  
  .report-header h3 {
    font-size: 1.5rem;
  }
  
  .report-meta {
    flex-direction: column;
    gap: 12px;
    font-size: 0.9rem;
  }
  
  .report-section {
    padding: 28px 20px;
  }
  
  .report-section h4 {
    font-size: 1.3rem;
  }
  
  .finding-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  
  .finding-card {
    padding: 20px;
  }
  
  .finding-explanation {
    padding: 14px;
  }
  
  .report-footer {
    padding: 24px 20px;
  }
  
  .report-signature {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
  
  /* Overview Grid */
  .overview-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .overview-item .value {
    font-size: 1.3rem;
  }
  
  /* Legal Content */
  .content-card {
    padding: 28px 20px;
  }
  
  .content-card h2 {
    font-size: 1.3rem;
  }
  
  /* Disclaimer */
  .disclaimer-section {
    padding: 32px 16px;
  }
  
  .disclaimer-section h3 {
    font-size: 1.1rem;
  }
  
  .disclaimer-section p {
    font-size: 0.9rem;
  }
  
  /* Touch Target Improvements */
  button,
  a.btn-cta,
  input[type="file"],
  .nav-cta {
    min-height: 44px; /* iOS recommended touch target */
  }
  
  /* Prevent zoom on input focus */
  input[type="file"] {
    font-size: 16px;
  }
}

/* Small Mobile (iPhone SE, etc.) */
@media (max-width: 400px) {
  .hero h1 {
    font-size: 1.9rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  section h2 {
    font-size: 1.6rem;
  }
  
  .navbar ul {
    gap: 8px;
    font-size: 0.8rem;
  }
  
  .btn-cta,
  .btn-cta-large {
    padding: 14px 24px;
    font-size: 0.95rem;
  }
  
  .report-header h3 {
    font-size: 1.3rem;
  }
  
  .finding-card {
    padding: 16px;
  }
}
