:root {
	--bg: #fdfaf6;
	--card: #ffffff;
	--border: #d9cfc6;
	--primary: #1a1a1a;
	--text-muted: #4b5563;
	--focus: #0f6fff;
}

* {
	box-sizing: border-box;
}

.badge {
	background: #fcece0;
	color: #9a4c00;
	padding: 4px 12px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: bold;
}
h1, h2, h3, h4, h5, h6, p{
  margin: 0;
  line-height: 1.7;
}
h1 {
	font-size: 64px;
	line-height: 1.1;
	margin: 20px 0;
}

.ada-container {
	text-align: center;
}

.input-box {
	position: relative;
	background: white;
	padding: 10px;
	border-radius: 50px;
	display: flex;
	align-items: center;
	box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
	margin: 30px 0;
}

input {
	border: 1px solid var(--border);
	padding: 15px 20px;
	flex: 1;
	outline: none;
	font-size: 16px;
	border-radius: 999px;
}

#audit-form button {
	position: absolute;
	right: 10px;
	top: 10px;
	bottom: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #000000;
	color: white;
	padding: 15px 30px;
	border-radius: 50px;
	cursor: pointer;
  transition: background 0.3s;
  font-size: 14px;
  border: none;
}
#audit-form button:hover {
  background: #ffffff;
  border: 1px solid #000000;
  color: #000000;
}
.grid-heading {
	margin: 0;
	font-size: 40px;
	line-height: 1.15;
	font-weight: 800;
	color: var(--primary);
	letter-spacing: 0;
}

.grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	margin-top: 40px;
	text-align: left;
}

.card {
	background: white;
	padding: 25px;
	border-radius: 16px;
	border: 1px solid var(--border);
}

#loader {
	display: none;
	position: fixed;
	inset: 0;
	background: #fdfaf6;
	z-index: 999;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.spinner {
	width: 50px;
	height: 50px;
	border: 5px solid var(--border);
	border-top: 5px solid #c76a00;
	border-radius: 50%;
	animation: spin 1s linear infinite;
	margin-bottom: 20px;
}

@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

body {
	background: var(--bg);
	font-family: 'Segoe UI', Arial, sans-serif;
	color: var(--primary);
	line-height: 1.5;
  margin: 0;
}

.site-header {
	margin: 0 auto 24px;
	padding: 16px 20px;
	background: #fff;
	border-bottom: 1px solid var(--border);
	box-shadow: 0 8px 24px rgba(26, 26, 26, 0.06);
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-brand {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 1.05rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	color: var(--primary);
	text-decoration: none;
}

.site-logo {
	height: 36px;
	width: auto;
	display: block;
}

.site-nav {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
  flex: 1;
  justify-content: center;
}

.site-nav a,
.logout-link {
	color: var(--primary);
	text-decoration: none;
	font-weight: 600;
	padding: 8px 12px;
	border-radius: 999px;
  transition: text-decoration 1s;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.active,
.logout-link:hover,
.logout-link:focus-visible {
	text-decoration: underline;
  text-underline-offset: 4px;
}

.user-pill {
	padding: 6px 10px;
	border-radius: 999px;
	background: #f5efe9;
	color: #4b5563;
	font-size: 0.92rem;
}

.skip-link {
	position: absolute;
	left: -999px;
	top: 0;
	background: var(--primary);
	color: white;
	padding: 10px 16px;
	z-index: 1000;
	border-radius: 0 0 8px 8px;
}

.skip-link:focus {
	left: 16px;
}

.container {
	max-width: 1200px;
	margin: 40px auto;
}
.header-inner{
  margin: 0 auto !important;
  display: flex;
	align-items: center;
	gap: 16px;
  justify-content: space-between;
}
.section-spacing{
  padding: 50px 0;
}

.header-section {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	margin-bottom: 30px;
}

.menu-drawer {
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.drawer-nav ul {
    list-style: none;
    padding: 0;
}

.drawer-nav li {
    margin: 20px 0;
    font-size: 1.2rem;
}

/* Close Button */
.close-drawer {
    background: none;
    border: none;
    font-size: 40px;
    align-self: flex-end;
    cursor: pointer;
    position: absolute;
    top: 12px;
    right: 20px;
}
.close-drawer:hover {
    transform: rotate(90deg); /* Playful interaction */
}

.drawer-nav{
  margin-top: 60px;
}
.drawer-nav a.scroll-link {
    width: 100%;
    display: block;
    text-decoration: none;
    font-size: 18px;
    color: #000;
    margin-bottom: 10px;
}
.drawer-nav a.scroll-link.active{
    font-weight: bold;
    text-decoration: underline;
    text-underline-offset: 4px;
}
/* Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 1500;
}

/* Show Overlay when drawer is open */
.menu-drawer.open + .menu-overlay {
    visibility: visible;
    opacity: 1;
}

/* Ensure drawer stays above overlay */
.menu-drawer.open { z-index: 2000; }

.back-btn {
	padding: 10px 16px;
	border-radius: 8px;
	background: #000000;
	cursor: pointer;
	font-weight: 600;
	font-size: 1em;
	color: #ffffff;
	transition: all 0.3s;
}

.back-btn:hover {
	background: #ffffff;
	border: 1px solid #000000;
  color: #000000;
}

.header-content {
	flex: 1;
}

.header-content h1 {
	margin: 0 0 8px 0;
	font-size: 2em;
}

.audited-url {
	margin: 0 0 12px 0;
	color: var(--text-muted);
	font-size: 0.95em;
}

.audited-url a {
	color: #0047a8;
	text-decoration: underline;
	word-break: break-all;
}

.audited-url.is-empty {
	color: var(--text-muted);
}

.summary-card {
	background: var(--card);
	border-radius: 24px;
	padding: 40px;
	border: 1px solid var(--border);
	margin-bottom: 24px;
}

.status-message {
	margin-top: 10px;
	font-weight: 600;
}

.tab-nav {
	display: flex;
	gap: 10px;
	margin-top: 30px;
	overflow-x: auto;
}

.tab-btn {
	padding: 12px 24px;
	border-radius: 30px;
	border: 2px solid var(--border);
	cursor: pointer;
	background: #fff;
	font-weight: 600;
}

.tab-btn.active {
	background: #1a1a1a;
	color: white;
}

.tab-panel {
	display: none;
}

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

.issue-card {
	background: white;
	border-left: 6px solid #8e8e8e;
	padding: 25px;
	margin-bottom: 20px;
	border-radius: 12px;
	border: 1px solid var(--border);
}

.critical {
	border-left-color: #b42318;
}

.serious {
	border-left-color: #c76a00;
}

.moderate {
	border-left-color: #b78a00;
}

.detail-section {
	margin: 20px 0;
	padding: 15px;
	background: #f9f7f5;
	border-radius: 8px;
	border-left: 4px solid #d9cfc6;
}

.detail-section h4 {
	margin: 0 0 12px 0;
	font-size: 0.95em;
	color: #3f3f3f;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.detail-row {
	display: flex;
	justify-content: space-between;
	padding: 8px 0;
	gap: 12px;
}

.detail-label {
	font-weight: 600;
	color: #4b5563;
	min-width: 150px;
}

.detail-value {
	color: #1f2937;
	word-break: break-word;
	text-align: right;
}

.detail-value code {
	background: #fff;
	padding: 2px 6px;
	border-radius: 4px;
	border: 1px solid #ddd;
	font-family: 'Courier New', monospace;
	font-size: 0.85em;
}

.detail-value.success {
	color: #1f7a1f;
	font-weight: 600;
}

.detail-value.error {
	color: #b42318;
	font-weight: 600;
}

.element-path {
	display: block;
	padding: 12px;
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 6px;
	font-size: 0.85em;
	overflow-x: auto;
	color: #4b5563;
}

.color-swatch {
	display: inline-block;
	width: 20px;
	height: 20px;
	border-radius: 4px;
	border: 1px solid #ccc;
	margin-right: 8px;
	vertical-align: middle;
}

.accordion-item {
	border: 1px solid var(--border);
	margin-bottom: 10px;
	border-radius: 8px;
	overflow: hidden;
	background: white;
}

.accordion-item summary {
	padding: 15px;
	cursor: pointer;
	font-weight: bold;
	list-style: none;
}

.accordion-content {
	padding: 15px;
	background: #fdfaf6;
	border-top: 1px solid var(--border);
	font-size: 0.9em;
}

button:focus-visible,
a:focus-visible,
summary:focus-visible,
input:focus-visible {
	outline: 2px solid #000;
	outline-offset: 4px;
}

.modal-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.4);
	z-index: 1000;
	backdrop-filter: blur(4px);
}

.modal-content {
	background: #ffffff;
	padding: 40px;
	border-radius: 20px;
	width: 90%;
	max-width: 600px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	box-shadow: 0 10px 25px rgba(0,0,0,0.1);
	text-align: center;
}

.close-btn {
	position: absolute;
	top: 12px;
	right: 12px;
	border: none;
	background: transparent;
	font-size: 1.5rem;
	cursor: pointer;
	color: #4b5563;
}

.modal-content .heading {
	font-size: 30px;
	font-weight: 900;
	margin: 20px 0;
}

.modal-content p {
	margin: 0;
	font-size: 18px;
	line-height: 36px;
}

.button-container {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-top: 20px;
}

.modal-btn {
	padding: 12px 24px;
	border: none;
	cursor: pointer;
	font-weight: 600;
	margin: 10px;
	font-size: 16px;
}

.btn-skip { background: #f0f0f0; color: #333; }
.btn-plans { background: #1a1a1a; color: #fff; }

.close-btn {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    color: #999;
    transition: color 0.2s;
}

.close-btn:hover {
    color: #1a1a1a;
}

/* ADA Compliance Section Styles */

.ada-wrap {
  width: 100%;
}

.ada-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: start;
}

.ada-heading {
  margin: 0;
  font-size: 40px;
  line-height: 1.15;
  font-weight: 800;
  color: #1A1A1A;
  letter-spacing: 0	;
}

.ada-copy {
  display: flex;
  flex-direction: column;
  gap: 22px;
  text-align: left;
}

.ada-copy p {
  margin: 0;
  font-size: 17px;
  line-height: 1.65;
  font-weight: 400;
}

@media (max-width: 768px) {

  .container{
    margin: 40px 20px;
  }
  .ada-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .ada-heading {
    font-size: 30px;
    line-height: 1.05;
    letter-spacing: 0;
  }

  .ada-copy {
    gap: 28px;
  }
}
@media screen and (max-width: 1200px){
  .container{
    margin: 40px 30px;
  }
}
@media (min-width: 768px) {
  .input-box {
    width: 70%;
    margin: 20px auto;
  }
  .description {
    max-width: 70%;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .grid {
    grid-template-columns: 1fr;
  }
  .grid-heading {
    font-size: 30px;
    line-height: 1.05;
    letter-spacing: 0;
  }
  h1 {
    font-size: 32px;
  }
}


/* End of ADA Compliance Section Styles */

/* audit-workflow section Styles */

.auditor-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  margin-bottom: 48px;
}

.auditor-heading {
  margin: 0;
  font-size: 40px;
  line-height: 1.15;
  font-weight: 800;
  color: #1a1a1a;
  letter-spacing: 0;
}

.auditor-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.auditor-card {
  background: #fdfdfd;
  border: 1px solid #e6dcd2;
  border-radius: 34px;
  padding: 28px;
}

.auditor-card-top {
  display: flex;
  align-items: flex-end;
  gap: 18px;
  margin-bottom: 22px;
}

.auditor-number {
  font-size: 16px;
  font-weight: 700;
  color: #9a271d;
}

.auditor-card h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 700;
  color: #0b0b0b;
}

.auditor-card p {
  margin: 0;
  font-size: 17px;
  line-height: 1.65;
  font-weight: 400;
  text-align: left;
}

@media (max-width: 768px) {
  .auditor-top {
    grid-template-columns: 1fr;
    gap: 20px;
  }
   .auditor-heading {
	font-size: 30px;
  }
  .auditor-card-top {
    align-items: baseline;
  }

  .auditor-grid {
    grid-template-columns: 1fr;
  }

  .auditor-card {
    padding: 25px;
    border-radius: 16px;
  }

  .auditor-card h3 {
    font-size: 22px;
  }
}
/* End of audit-workflow section Styles */

/* faq section Styles */

.faq-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 48px;
  gap: 24px;
}

.faq-heading {
  margin: 0;
  font-size: 40px;
  line-height: 1.15;
  font-weight: 800;
  color: #1a1a1a;
  letter-spacing: 0;
}

.faq-tag {
  font-size: 14px;
  letter-spacing: .35em;
  text-transform: uppercase;
  white-space: nowrap;
  margin-top: 18px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  border: 1px solid #e6dcd2;
  border-radius: 20px;
  overflow: hidden;
  background: #fdfdfd;
}

.faq-trigger {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
}

.faq-trigger span:first-child {
  font-size: 17px;
  font-weight: 600;
  color: #111;
}

.faq-icon {
  transition: .3s;
}

.faq-content {
  max-height: 0;
  font-size: 17px;
  overflow: hidden;
  transition: .3s;
  padding: 0 20px;
  color: #3d3b3b;
  line-height: 1.6;
}

.faq-item.active .faq-content {
  max-height: 200px;
  padding: 0 20px 20px;
  text-align: left;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

@media (max-width: 768px) {
  .faq-top {
    flex-direction: column;
  }

  .faq-heading {
    font-size: 30px;
  }

  .faq-item.active .faq-content {
    max-height: 1000px;
  }

  .faq-trigger {
    padding: 24px;
  }
}
/* End of faq section Styles */

.auth-card {
    max-width: 450px;
    margin: 50px auto;
    padding: 40px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.auth-card input {
    width: 100%;
    padding: 12px;
    margin: 8px 0 20px 0;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-sizing: border-box; /* Ensures padding doesn't break layout */
}

.register-btn {
    width: 100%;
    padding: 14px;
    background: #3e7b55; /* Match your brand green */
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
}

.google-btn {
    width: 100%;
    padding: 12px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    cursor: pointer;
}

.divider {
    text-align: center;
    margin: 20px 0;
    color: #888;
}

.password-field { position: relative; }
.toggle-password { position: absolute; right: 10px; top: 12px; cursor: pointer; }
.forgot-link {
    display: block;
    text-align: right;
    margin-bottom: 20px;
    font-size: 0.9em;
    color: #3e7b55;
    text-decoration: none;
}

/* Ensure labels are visible */
label {
    font-weight: 500;
    color: #333;
}

.auth-container { display: flex; justify-content: center; align-items: center; min-height: 100vh; }

.auth-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 24px;
    border: 1px solid #e5e5e5;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.auth-toggle {
    display: flex;
    background: #f7f7f7;
    padding: 4px;
    border-radius: 12px;
    margin-bottom: 24px;
}

.toggle-btn {
    flex: 1;
    padding: 10px;
    text-align: center;
    border-radius: 8px;
    text-decoration: none;
    color: #666;
    font-weight: 500;
}

.toggle-btn.active { background: #000; color: #fff; }

input {
    width: 100%;
    border: 1px solid #eee;
    border-radius: 50px;
    background: #f9f9f9;
}

.submit-btn {
    width: 100%;
    padding: 14px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-weight: bold;
    cursor: pointer;
}

.divider { text-align: center; margin: 20px 0; color: #888; font-size: 12px; }

/* Specific Sage Green for Reset Button */
.update-btn {
    width: 100%;
    padding: 16px;
    background: #4E7D5B; /* The exact sage green from your screenshot */
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.update-btn:hover {
    background: #3D6247;
}

/* Floating Label Group */
.input-group {
    position: relative;
    margin-bottom: 24px;
}

.input-group label {
    position: absolute;
    left: 14px;
    top: 18px;
    color: #999;
    pointer-events: none;
    transition: 0.2s ease all;
}

.input-group input:focus + label,
.input-group input:not(:placeholder-shown) + label {
    top: 6px;
    font-size: 12px;
    color: #4E7D5B;
}

.input-group input {
    width: 100%;
    padding: 24px 14px 10px 14px;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    background: #fdfdfd;
}

.success-message.email-verification{
  font-weight: normal;
}
.email-verification a{
  width: auto;
  font-weight: normal;
  text-decoration: none;
}

.bottom-cta { text-align: center; padding: 40px 0; }
.bottom-cta button { padding: 18px 36px; border-radius: 30px; border: none; background: #1a1a1a; color: white; cursor: pointer; font-weight: 600; margin-top: 20px; }
.btn-cta-pdf {
    display: inline-block;
    padding: 12px 24px;
    background-color: #000000;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: background 0.3s;
    margin-top: 10px;
}

.btn-cta-pdf:hover {
    background-color: #ffffff;
    color: #000000;
    border: 1px solid #000000;
}
.audit-report-container .header-container{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 30px 0;
  width: 100%;
}

.menu-toggle, .menu-drawer { display: none; }

@media (max-width: 768px) {
    .site-nav { display: none; }
    .menu-toggle { display: block; background: none; border: none; cursor: pointer; }
    
    .menu-drawer {
        display: block;
        position: fixed;
        top: 0;
        right: -100%;
        width: 250px;
        height: 100%;
        background: white;
        transition: right 0.3s ease;
        box-shadow: -2px 0 5px rgba(0,0,0,0.1);
    }
    .menu-drawer.open { right: 0; }
}