/* ════════════════════════════════════════════════════════════════
   SA CONSULTING - MODERN MINIMAL DESIGN (SA-Consulting Colors)
   Professional, Clean, Elegant
   ════════════════════════════════════════════════════════════════ */

:root {
  --navy: #1a5c6d;
  --navy-dark: #0d2e37;
  --blue: #245968;
  --teal-accent: #4fbac3;
  --teal-hover: #3fa0a9;
  --white: #ffffff;
  --bg-light: #f0f7f8;
  --bg-gray: #eef2f7;
  --text-dark: #1a1a1a;
  --text-gray: #6c757d;
  --border: #e9ecef;
  --shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
*::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-dark);
  line-height: 1.8;
  background: var(--white);
  font-size: 16px;
}

h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.3;
  margin-bottom: 1.2rem;
  color: var(--navy);
}

h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 700; }
h3 { font-size: clamp(1.3rem, 3vw, 1.8rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

p {
  margin-bottom: 1.2rem;
  color: var(--text-gray);
  line-height: 1.9;
  max-width: 680px;
}

a { color: var(--teal-accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--teal-hover); }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }
.text-white { color: var(--white); }

/* ════════════════════════════════════════════════════════════════
   HEADER & NAVIGATION
   ════════════════════════════════════════════════════════════════ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--navy);
  border-bottom: 1px solid rgba(79, 186, 195, 0.2);
  box-shadow: var(--shadow);
  transition: all var(--transition);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.5px;
}

.logo span {
  color: var(--teal-accent);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
  margin: 0;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  transition: all var(--transition);
  position: relative;
  padding: 8px 0;
}

.nav-links a:hover {
  color: var(--teal-accent);
}

.nav-links a.active {
  color: var(--white);
  font-weight: 600;
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--teal-accent);
}

.nav-cta {
  background: var(--teal-accent) !important;
  color: var(--navy) !important;
  padding: 10px 24px !important;
  border-radius: 6px;
  font-weight: 600 !important;
  box-shadow: 0 2px 8px rgba(79, 186, 195, 0.25);
  transition: all var(--transition);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(79, 186, 195, 0.35);
  background: var(--teal-hover) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--white);
  transition: all var(--transition);
  border-radius: 2px;
}

/* ════════════════════════════════════════════════════════════════
   BUTTONS
   ════════════════════════════════════════════════════════════════ */

.btn {
  display: inline-block;
  padding: 16px 36px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  text-align: center;
  transition: all var(--transition);
  cursor: pointer;
}

.btn-primary {
  background: var(--teal-accent);
  color: var(--navy);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  background: var(--teal-hover);
}

.btn-secondary {
  background: transparent;
  color: var(--teal-accent);
  border: 2px solid var(--teal-accent);
}

.btn-secondary:hover {
  background: rgba(79, 186, 195, 0.1);
}

/* ════════════════════════════════════════════════════════════════
   HERO SECTION
   ════════════════════════════════════════════════════════════════ */

.hero {
  margin-top: 72px;
  padding: 120px 0 100px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 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");
  opacity: 1;
}

.hero .container { position: relative; z-index: 2; max-width: 800px; }

/* Hero content per pagine interne (soc-1, etc.) */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Breadcrumb dentro .hero — allineato con il contenuto */
.hero > .breadcrumb {
  max-width: 940px;
  margin: 0 auto;
  padding-left: 40px;
  padding-right: 40px;
}

.hero-badge {
  display: inline-block;
  background: rgba(79, 186, 195, 0.15);
  color: var(--teal-accent);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(79, 186, 195, 0.3);
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.4rem;
  line-height: 1.25;
}

.hero p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 100%;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

/* ════════════════════════════════════════════════════════════════
   SECTIONS
   ════════════════════════════════════════════════════════════════ */

.section {
  padding: 100px 0;
}

.section:nth-child(even) {
  background: var(--bg-light);
}

.section-title {
  text-align: center;
  margin-bottom: 1rem;
  color: var(--navy);
}

.section-subtitle {
  text-align: center;
  color: var(--text-gray);
  font-size: 1.1rem;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ════════════════════════════════════════════════════════════════
   STATS SECTION
   ════════════════════════════════════════════════════════════════ */

.stats {
  background: var(--bg-light);
  padding: 100px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-item h3 {
  font-size: 3rem;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.95rem;
  color: var(--text-gray);
  margin: 0;
}

@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
}

@media (max-width: 640px) {
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item h3 { font-size: 2.4rem; }
}

/* ════════════════════════════════════════════════════════════════
   SERVICES / CARDS
   ════════════════════════════════════════════════════════════════ */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 3rem;
}

.service-card {
  background: var(--white);
  border-radius: 12px;
  padding: 40px 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--teal-accent), var(--navy));
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--teal-accent);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(79, 186, 195, 0.1), rgba(26, 92, 109, 0.1));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--teal-accent);
  font-size: 1.8rem;
}

.service-card h3 {
  margin-bottom: 1rem;
  color: var(--navy);
}

.service-card p {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--navy);
  font-size: 0.95rem;
  transition: gap var(--transition);
}

.card-link:hover {
  gap: 12px;
  color: var(--teal-accent);
}

@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════════════════════
   TWO COLUMN LAYOUT
   ════════════════════════════════════════════════════════════════ */

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.two-col h2 { margin-bottom: 1.5rem; }

.features-list {
  list-style: none;
  margin: 0;
}

.features-list li {
  padding: 14px 0 14px 40px;
  position: relative;
  color: var(--text-gray);
  font-size: 0.95rem;
  border-bottom: 1px solid var(--border);
}

.features-list li:last-child {
  border-bottom: none;
}

.features-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--teal-accent);
  font-weight: 700;
  font-size: 1.2rem;
}

@media (max-width: 1024px) {
  .two-col { grid-template-columns: 1fr; gap: 40px; }
}

/* ════════════════════════════════════════════════════════════════
   FAQ ACCORDION
   ════════════════════════════════════════════════════════════════ */

.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item {
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--white);
  transition: all var(--transition);
}

.faq-item:hover {
  border-color: var(--teal-accent);
  box-shadow: var(--shadow);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: var(--white);
  border: none;
  padding: 20px 24px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  position: relative;
  transition: all var(--transition);
  font-family: 'Inter', sans-serif;
}

.faq-question:hover {
  background: var(--bg-light);
  color: var(--teal-accent);
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.6rem;
  color: var(--teal-accent);
  transition: transform var(--transition);
  font-weight: 300;
}

.faq-item.open .faq-question {
  background: var(--bg-light);
  color: var(--teal-hover);
}

.faq-item.open .faq-question::after {
  content: '−';
  transform: translateY(-50%);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 0.95rem;
  color: var(--text-gray);
  line-height: 1.8;
}

/* ════════════════════════════════════════════════════════════════
   CTA BANNER
   ════════════════════════════════════════════════════════════════ */

.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  padding: 100px 0;
  text-align: center;
  color: var(--white);
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 1.2rem;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
}

/* ════════════════════════════════════════════════════════════════
   CONTACT SECTION
   ════════════════════════════════════════════════════════════════ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.form-group { margin-bottom: 24px; }

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: var(--navy);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  transition: all var(--transition);
  background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--teal-accent);
  box-shadow: 0 0 0 3px rgba(79, 186, 195, 0.08);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-info-card {
  background: var(--bg-light);
  border-radius: 12px;
  padding: 40px;
  border: 1px solid var(--border);
}

.contact-info-item {
  display: flex;
  gap: 20px;
  margin-bottom: 28px;
  align-items: flex-start;
}

.contact-info-item .icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--teal-accent), var(--teal-hover));
  color: var(--white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  font-weight: 600;
}

.contact-info-item h4 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.contact-info-item p {
  font-size: 0.9rem;
  margin: 0;
}

@media (max-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ════════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════════ */

.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-brand .logo {
  color: var(--white);
  margin-bottom: 1.2rem;
}

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  max-width: 100%;
}

.footer-col h4 {
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 12px;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; }
  .site-footer { padding: 60px 0 20px; }
}

/* ════════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px 24px;
    gap: 12px;
    box-shadow: var(--shadow-lg);
    border-bottom: 1px solid var(--border);
  }

  .nav-links.active { display: flex; }
  .hamburger { display: flex; }
  .hero { padding: 100px 0 80px; margin-top: 72px; }
  .hero h1 { font-size: 2rem; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; }
  .section { padding: 60px 0; }
  .service-card { padding: 32px 24px; }
}

@media print {
  .site-header, .site-footer, .cta-banner { display: none; }
}

/* ════════════════════════════════════════════════════════════════
   SERVICE PAGES — CONTENT SECTIONS
   ════════════════════════════════════════════════════════════════ */

/* Generic hero for inner pages */
.hero-section {
  margin-top: 72px;
  padding: 90px 0 70px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  color: var(--white);
}
.hero-section .container { max-width: 860px; }
.hero-title { color: var(--white); margin-bottom: 1rem; }
.hero-subtitle { color: rgba(255,255,255,0.85); font-size: 1.15rem; max-width: 100%; }

/* SOC 2 hero variant */
.hero-soc2 { margin-top: 72px; }

/* Shared section wrapper for service pages */
.content-narrow,
.main-content .content-intro,
.main-content .criteria-section,
.main-content .comparison-section,
.main-content .target-section,
.main-content .importance-section,
.main-content .consulting-advantages,
.main-content .faq-section,
.content-section {
  padding: 80px 0;
}

.content-narrow { background: var(--white); }
.content-narrow:nth-of-type(even) { background: var(--bg-light); }

/* Content blocks inside narrow sections */
.content-block {
  max-width: 860px;
  margin: 0 auto 3rem;
  padding: 0 24px;
}
.content-block:last-child { margin-bottom: 0; }
.content-block h2 { margin-bottom: 1.2rem; }

.content-list {
  list-style: none;
  margin: 1.5rem 0;
  padding: 0;
}
.content-list li {
  padding: 10px 0 10px 32px;
  position: relative;
  border-bottom: 1px solid var(--border);
  color: var(--text-gray);
  font-size: 0.95rem;
}
.content-list li:last-child { border-bottom: none; }
.content-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--teal-accent);
  font-weight: 700;
}

/* Methodology two-column layout (SOC 1) */
.methodology-section {
  padding: 80px 0;
  background: var(--bg-light);
}
.methodology-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.methodology-text h2 { margin-bottom: 1.4rem; }
.methodology-text p { max-width: 100%; }

/* Benefits list (SOC 1 methodology panel) */
.benefits { list-style: none; padding: 0; margin: 0; }
.benefit-item {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.benefit-item:last-child { border-bottom: none; }
.benefit-item h4 {
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.benefit-item p { font-size: 0.92rem; margin: 0; max-width: 100%; }

@media (max-width: 1024px) {
  .methodology-container { grid-template-columns: 1fr; gap: 40px; }
}

/* FAQ section (SOC 1 style — h3 headers not <details>) */
.faq-section { padding: 80px 0; background: var(--white); }
.faq-container { max-width: 860px; margin: 0 auto; padding: 0 24px; }
.faq-container h2 { margin-bottom: 2.5rem; }
.faq-items { display: flex; flex-direction: column; gap: 16px; }
.faq-item {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px 28px;
  transition: border-color var(--transition);
}
.faq-item:hover { border-color: var(--teal-accent); }
.faq-item h3 {
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 0.8rem;
}
.faq-item p { font-size: 0.95rem; margin: 0; max-width: 100%; }

/* FAQ with <details> (ISAE 3402) */
.faq-container details.faq-item {
  padding: 0;
  cursor: pointer;
}
.faq-container details summary {
  padding: 20px 28px;
  font-weight: 600;
  color: var(--navy);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-container details summary::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--teal-accent);
  flex-shrink: 0;
}
.faq-container details[open] summary::after { content: '−'; }
.faq-content { padding: 0 28px 20px; }
.faq-content p { font-size: 0.95rem; margin: 0; max-width: 100%; }

/* Trust Services Criteria grid (SOC 2) */
.criteria-section { background: var(--bg-light); }
.criteria-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 2rem;
}
.criteria-card {
  background: var(--white);
  border-radius: 12px;
  padding: 32px 28px;
  border: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.criteria-card:hover { box-shadow: var(--shadow-md); }
.criteria-card .icon { font-size: 2rem; margin-bottom: 1rem; }
.criteria-card h3 { font-size: 1.1rem; margin-bottom: 0.8rem; }
.criteria-card p { font-size: 0.9rem; margin: 0; max-width: 100%; }
@media (max-width: 1024px) { .criteria-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 640px) { .criteria-grid { grid-template-columns: 1fr; } }

/* Comparison grid (SOC 2) */
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin: 2rem 0;
}
.comparison-item {
  background: var(--bg-light);
  border-radius: 12px;
  padding: 32px;
  border: 2px solid var(--border);
}
.comparison-item h3 { color: var(--navy); margin-bottom: 1.2rem; }
.comparison-item ul { list-style: none; padding: 0; }
.comparison-item li {
  padding: 8px 0 8px 24px;
  position: relative;
  color: var(--text-gray);
  font-size: 0.93rem;
  border-bottom: 1px solid var(--border);
}
.comparison-item li:last-child { border-bottom: none; }
.comparison-item li::before { content: '✓'; position: absolute; left: 0; color: var(--teal-accent); font-weight: 700; }
.comparison-note { font-size: 0.9rem; color: var(--text-gray); margin-top: 1rem; font-style: italic; }
@media (max-width: 768px) { .comparison-grid { grid-template-columns: 1fr; } }

/* Target / importance sections (SOC 2) */
.target-list { list-style: none; padding: 0; margin: 1.5rem 0; }
.target-list li { padding: 12px 0 12px 28px; position: relative; border-bottom: 1px solid var(--border); color: var(--text-gray); font-size: 0.95rem; }
.target-list li:last-child { border-bottom: none; }
.target-list li::before { content: '▸'; position: absolute; left: 0; color: var(--teal-accent); }

.importance-section { background: var(--bg-light); }
.importance-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 2rem;
}
.point {
  background: var(--white);
  border-radius: 10px;
  padding: 28px;
  border: 1px solid var(--border);
}
.point h4 { color: var(--navy); margin-bottom: 0.6rem; }
.point p { font-size: 0.93rem; margin: 0; max-width: 100%; }
@media (max-width: 768px) { .importance-points { grid-template-columns: 1fr; } }

/* Two-column consulting section (SOC 2) */
.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 2rem;
}
.column h3 { margin-bottom: 1rem; }
.column p { max-width: 100%; }
@media (max-width: 768px) { .two-column { grid-template-columns: 1fr; } }

/* Benefits grid (ISAE 3402) */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 2rem;
}
.benefit-card {
  background: var(--bg-light);
  border-radius: 10px;
  padding: 28px;
  border-left: 4px solid var(--teal-accent);
}
.benefit-card h3 { font-size: 1.05rem; color: var(--navy); margin-bottom: 0.6rem; }
.benefit-card p { font-size: 0.93rem; margin: 0; max-width: 100%; }
@media (max-width: 768px) { .benefits-grid { grid-template-columns: 1fr; } }

/* Comparison table (ISAE 3402) */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: 0.93rem;
}
.comparison-table th {
  background: var(--navy);
  color: var(--white);
  padding: 14px 20px;
  text-align: left;
  font-family: 'Inter', sans-serif;
}
.comparison-table td { padding: 12px 20px; border-bottom: 1px solid var(--border); color: var(--text-gray); }
.comparison-table tr:nth-child(even) td { background: var(--bg-light); }
.table-note { font-size: 0.88rem; color: var(--text-gray); font-style: italic; }

/* Highlights (ISAE 3402 Type I/II) */
.highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 2rem 0;
}
.highlight-item {
  background: var(--bg-light);
  border-radius: 10px;
  padding: 28px;
  border: 1px solid var(--border);
}
.highlight-item h3 { font-size: 1.05rem; margin-bottom: 0.8rem; }
.highlight-item p { font-size: 0.93rem; margin: 0; max-width: 100%; }
@media (max-width: 768px) { .highlights { grid-template-columns: 1fr; } }

/* Content section wrapper (ISAE 3402 / generic) */
.content-section { padding: 80px 0; }
.content-section:nth-of-type(even) { background: var(--bg-light); }
.content-section h2 { margin-bottom: 1.4rem; }
.content-section h3 { margin-top: 2rem; margin-bottom: 1rem; }
.content-section p { max-width: 100%; }
.content-section ul { list-style: none; padding: 0; margin: 1rem 0; }
.content-section li { padding: 8px 0 8px 28px; position: relative; color: var(--text-gray); font-size: 0.95rem; border-bottom: 1px solid var(--border); }
.content-section li:last-child { border-bottom: none; }
.content-section li::before { content: '→'; position: absolute; left: 0; color: var(--teal-accent); font-weight: 700; }

/* Breadcrumb */
.breadcrumb {
  padding: 14px 24px;
  background: rgba(255,255,255,0.08);
  font-size: 0.85rem;
  margin-bottom: 2.5rem;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb .separator { color: rgba(255,255,255,0.4); }
.breadcrumb .current { color: var(--teal-accent); }

/* Section intro text */
.section-intro { color: var(--text-gray); margin-bottom: 2rem; font-size: 1rem; }
