:root {
}

.ac-wrap {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 40px;
}

.ac-nav {
	display: flex !important;
	align-items: center;
	justify-content: space-between;
	padding: 16px 40px;
	background: #fff;
	border-bottom: 1px solid #eee;
	position: sticky;
	top: 0;
	z-index: 100;
}

.ac-nav-logo {
	display: flex;
	align-items: center;
	gap: 10px;
	font-family: 'Open Sans', sans-serif;
	font-weight: 700;
	font-size: 20px;
	color: var(--teal);
	text-decoration: none;
}

.ac-nav-links {
	display: flex;
	align-items: center;
	gap: 28px;
}

.ac-nav-links a {
	font-size: 18px;
	color: var(--text);
	text-decoration: none;
}

.ac-nav-btn {
	background: var(--teal) !important;
	color: #fff !important;
	padding: 10px 20px !important;
	border-radius: 6px !important;
}

.ac-hero {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
	padding: 80px 0 60px;
}

.ac-hero-text h1 {
	font-family: 'Open Sans', sans-serif;
	font-size: 46px;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 20px;
}

.ac-hero-text p {
	font-size: 20px;
	color: var(--muted);
	line-height: 1.6;
	margin-bottom: 32px;
}

.ac-btn-orange {
	display: inline-block;
	background: var(--orange);
	color: #fff !important;
	font-size: 22px;
	padding: 16px 40px;
	border-radius: 8px;
	text-decoration: none !important;
}

.ac-hero-visual {
	background: linear-gradient(135deg,#E4F4F3,#F0EAF8);
	border-radius: 20px;
	height: 420px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 100px;
}

.ac-section {
	padding: 60px 0;
}

.ac-section-label {
	font-family: 'Open Sans', sans-serif;
	font-size: 56px;
	font-weight: 700;
	color: var(--purple);
	margin-bottom: 8px;
}

.ac-section-title {
	font-family: 'Open Sans', sans-serif;
	font-size: 36px;
	font-weight: 600;
	color: var(--text);
	margin-bottom: 48px;
}

.ac-cards-3 {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 28px;
}

.ac-card {
	background: #fff;
	border-radius: 14px;
	padding: 32px;
	box-shadow: 0 2px 16px rgba(0,0,0,.06);
}

.ac-card-icon {
	font-size: 44px;
	margin-bottom: 16px;
}

.ac-card h3 {
	font-family: 'Open Sans', sans-serif;
	font-size: 19px;
	font-weight: 700;
	margin-bottom: 10px;
}

.ac-card p {
	font-size: 17px;
	color: var(--muted);
	line-height: 1.6;
}

.ac-two-col {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: start;
	padding: 60px 0;
}

.ac-step-label {
	font-size: 20px;
	color: var(--purple);
	margin-bottom: 16px;
}

.ac-step-title {
	font-family: 'Open Sans', sans-serif;
	font-size: 34px;
	font-weight: 700;
	margin-bottom: 18px;
	line-height: 1.3;
}

.ac-step-desc {
	font-size: 19px;
	color: var(--muted);
	line-height: 1.6;
}

.ac-choices {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.ac-choice {
	border-radius: 14px;
	padding: 28px;
	display: flex;
	align-items: center;
	gap: 20px;
	text-decoration: none !important;
	color: inherit !important;
}

.ac-choice.teal {
	background: var(--card-teal);
}

.ac-choice.purple {
	background: var(--card-purple);
}

.ac-choice-icon {
	width: 70px;
	height: 70px;
	border-radius: 10px;
	background: rgba(0,0,0,.08);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 32px;
	flex-shrink: 0;
}

.ac-choice h3 {
	font-family: 'Open Sans', sans-serif;
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 8px;
}

.ac-choice p {
	font-size: 18px;
	color: var(--muted);
}

.ac-footer {
	background: var(--footer);
	padding: 48px 40px;
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr;
	gap: 48px;
	margin-top: 60px;
}

.ac-footer-logo {
	font-family: 'Open Sans', sans-serif;
	font-size: 22px;
	font-weight: 700;
	color: var(--teal);
	margin-bottom: 12px;
}

.ac-footer-desc {
	font-size: 17px;
	color: var(--muted);
	line-height: 1.6;
	margin-bottom: 10px;
}

.ac-footer-h {
	font-family: 'DM Sans', sans-serif;
	font-size: 17px;
	font-weight: 700;
	color: var(--teal);
	margin-bottom: 14px;
}

.ac-footer a {
	display: block;
	font-family: 'DM Sans', sans-serif;
	font-size: 17px;
	color: var(--muted);
	text-decoration: none;
	margin-bottom: 7px;
}

.ac-page-hero {
	padding: 60px 0 40px;
	text-align: center;
}

.ac-page-hero h1 {
	font-family: 'Open Sans', sans-serif;
	font-size: 48px;
	font-weight: 700;
	margin-bottom: 16px;
}

.ac-page-hero p {
	font-size: 20px;
	color: var(--muted);
	max-width: 700px;
	margin: 0 auto;
}

.ac-step-indicator {
	font-size: 20px;
	color: var(--muted);
	margin-bottom: 32px;
}

.ac-area-grid {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 24px;
	padding: 40px 0;
}

.ac-area-card {
	background: #fff;
	border-radius: 14px;
	padding: 28px;
	box-shadow: 0 2px 12px rgba(0,0,0,.06);
	border: 2px solid transparent;
	transition: .2s;
	text-decoration: none !important;
	color: inherit !important;
	display: block;
}

.ac-area-card:hover {
	border-color: var(--teal);
}

.ac-area-card h3 {
	font-family: 'Open Sans', sans-serif;
	font-size: 19px;
	font-weight: 700;
	margin-bottom: 8px;
}

.ac-area-card p {
	font-size: 16px;
	color: var(--muted);
	line-height: 1.5;
}

.ac-area-icon {
	font-size: 40px;
	margin-bottom: 12px;
}

.ac-steps-timeline {
	padding: 40px 0;
}

.ac-step-item {
	display: grid;
	grid-template-columns: 80px 1fr;
	gap: 24px;
	margin-bottom: 48px;
	align-items: start;
}

.ac-step-num {
	font-family: 'Open Sans', sans-serif;
	font-size: 48px;
	font-weight: 700;
	color: var(--teal);
}

.ac-step-content h3 {
	font-family: 'Open Sans', sans-serif;
	font-size: 32px;
	font-weight: 600;
	margin-bottom: 8px;
}

.ac-step-content>p {
	font-size: 18px;
	color: var(--muted);
	line-height: 1.6;
	margin-bottom: 20px;
}

.ac-step-sub {
	background: #fff;
	border-radius: 10px;
	padding: 20px 24px;
	margin-bottom: 12px;
	box-shadow: 0 1px 8px rgba(0,0,0,.05);
}

.ac-step-sub h4 {
	font-family: 'Open Sans', sans-serif;
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 6px;
}

.ac-step-sub p {
	font-size: 16px;
	color: var(--muted);
	line-height: 1.5;
}

.ac-about-intro {
	padding: 60px 0;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.ac-about-visual {
	background: linear-gradient(135deg,#E4F4F3,#F0EAF8);
	border-radius: 20px;
	height: 360px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 80px;
}

.ac-areas-list {
	padding: 20px 0;
}

.ac-area-item {
	display: flex;
	gap: 20px;
	padding: 24px 0;
	border-bottom: 1px solid #eee;
	align-items: flex-start;
}

.ac-area-item-icon {
	width: 48px;
	height: 48px;
	border-radius: 10px;
	background: var(--card-teal);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	flex-shrink: 0;
}

.ac-area-item h3 {
	font-family: 'Open Sans', sans-serif;
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 0;
}

.ac-sue-section {
	background: var(--card-purple);
	border-radius: 20px;
	padding: 48px;
	margin: 40px 0;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: start;
}

.ac-sue-section h2 {
	font-family: 'Open Sans', sans-serif;
	font-size: 36px;
	font-weight: 700;
	margin-bottom: 16px;
}

.ac-sue-name {
	font-family: 'Open Sans', sans-serif;
	font-size: 36px;
	font-weight: 700;
	color: var(--purple);
	margin-bottom: 4px;
}

.ac-sue-role {
	font-size: 18px;
	color: var(--muted);
	margin-bottom: 16px;
}

.ac-sue-links {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.ac-sue-link {
	background: #fff;
	border-radius: 10px;
	padding: 16px 24px;
	font-family: 'Open Sans', sans-serif;
	font-size: 18px;
	font-weight: 700;
	color: var(--purple) !important;
	text-decoration: none !important;
	text-align: center;
	display: block;
}

.ac-ask-box {
	background: #fff;
	border-radius: 14px;
	padding: 28px;
	margin-top: 24px;
}

.ac-ask-box textarea {
	width: 100%;
	border: 1px solid #ddd;
	border-radius: 8px;
	padding: 14px 16px;
	font-size: 17px;
	margin-bottom: 14px;
	font-family: 'Lato', sans-serif;
	resize: vertical;
}

.ac-ask-btn {
	background: var(--purple);
	color: #fff;
	border: none;
	border-radius: 8px;
	padding: 14px 32px;
	font-size: 18px;
	font-weight: 700;
	cursor: pointer;
}

.ac-stay-section {
	text-align: center;
	padding: 60px 0;
}

.ac-stay-section h2 {
	font-family: 'Open Sans', sans-serif;
	font-size: 40px;
	font-weight: 700;
	margin-bottom: 16px;
}

.ac-stay-section h3 {
	font-family: 'Open Sans', sans-serif;
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 16px;
}

.ac-stay-section p {
	font-size: 19px;
	color: var(--muted);
	margin-bottom: 28px;
}

.ac-btn-teal {
	display: inline-block;
	background: var(--teal);
	color: #fff !important;
	font-size: 18px;
	padding: 14px 36px;
	border-radius: 8px;
	text-decoration: none !important;
}

.ac-about-label {
	font-size: 20px;
	font-weight: 700;
	color: var(--teal);
	margin-bottom: 16px;
}

.ac-about-title {
	font-family: 'Open Sans', sans-serif;
	font-size: 44px;
	font-weight: 700;
	margin-bottom: 20px;
	line-height: 1.2;
}

.ac-about-desc {
	font-size: 19px;
	color: var(--muted);
	line-height: 1.6;
}

.ac-dash-wrap {
	display: grid;
	grid-template-columns: 260px 1fr;
	min-height: 80vh;
}

.ac-dash-sidebar {
	background: #fff;
	padding: 32px 20px;
	border-right: 1px solid #eee;
}

.ac-dash-sidebar-label {
	font-family: 'Open Sans', sans-serif;
	font-size: 12px;
	font-weight: 700;
	color: var(--muted);
	letter-spacing: .08em;
	margin-bottom: 16px;
	text-transform: uppercase;
}

.ac-dash-nav {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.ac-dash-nav a {
	display: block;
	padding: 10px 14px;
	border-radius: 8px;
	color: var(--muted);
	text-decoration: none;
	font-size: 17px;
}

.ac-dash-nav a.active {
	background: var(--card-teal);
	color: var(--teal);
	font-weight: 700;
}

.ac-dash-main {
	padding: 40px 48px;
	background: var(--bg);
}

.ac-dash-title {
	font-family: 'Open Sans', sans-serif;
	font-size: 36px;
	font-weight: 700;
	margin-bottom: 8px;
}

.ac-dash-subtitle {
	font-size: 18px;
	color: var(--muted);
	margin-bottom: 40px;
}

.ac-dash-h2 {
	font-family: 'Open Sans', sans-serif;
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 20px;
}

.ac-next-steps {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-bottom: 40px;
}

.ac-next-step {
	background: #fff;
	border-radius: 12px;
	padding: 22px 28px;
	box-shadow: 0 2px 10px rgba(0,0,0,.05);
	display: flex;
	align-items: center;
	gap: 20px;
}

.ac-next-tag {
	border-radius: 8px;
	padding: 7px 14px;
	font-size: 14px;
	font-weight: 700;
}

.ac-tag-teal {
	background: var(--card-teal);
	color: var(--teal);
}

.ac-tag-orange {
	background: #FFF3E0;
	color: var(--orange);
}

.ac-tag-purple {
	background: var(--card-purple);
	color: var(--purple);
}

.ac-progress-grid {
	display: grid;
	grid-template-columns: repeat(5,1fr);
	gap: 16px;
}

.ac-progress-card {
	background: #fff;
	border-radius: 12px;
	padding: 20px;
	text-align: center;
	box-shadow: 0 2px 8px rgba(0,0,0,.05);
}

.ac-progress-card .picon {
	font-size: 28px;
	margin-bottom: 8px;
}

.ac-progress-card .plabel {
	font-size: 14px;
	font-weight: 700;
}

.ac-progress-bar {
	background: #eee;
	border-radius: 4px;
	height: 6px;
	margin-top: 10px;
}

.ac-progress-fill {
	background: var(--teal);
	height: 6px;
	border-radius: 4px;
}