
:root {
  --blue: #003087;
  --blue-2: #0a4fc2;
  --green: #00A651;
  --white: #ffffff;
  --light: #f5f7fa;
  --line: #dbe5f0;
  --soft-blue: #eaf4ff;
  --text: #17202a;
  --muted: #5c6b7a;
  --shadow: 0 10px 30px rgba(0, 48, 135, .08);
  --shadow-hover: 0 18px 40px rgba(0, 48, 135, .14);
  --radius: 24px;
  --radius-lg: 32px;
  --container: 1240px;
  --transition: .35s ease;
}

.akk-page,
.akk-page * {
  box-sizing: border-box;
}

.akk-page {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

.akk-page img {
  max-width: 100%;
  display: block;
}

.akk-page a {
  
  text-decoration: none;
}

.akk-container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.akk-section {
  padding: 88px 0;
}

.akk-section--soft {
  background: linear-gradient(180deg, #fff 0%, #f8fbff 100%);
}

.akk-section--light {
  background: var(--light);
}





.akk-title-wrap {
  max-width: 760px;
  margin-bottom: 30px;
}

.akk-title-wrap h2,
.akk-trust-box h2,
.akk-doc-panel h2,
.akk-seo-panel h2,
.akk-cta-copy h2 {
  margin: 16px 0 14px;
  font-size: clamp(30px, 5vw, 46px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text);
}

.akk-title-wrap p,
.akk-trust-box p,
.akk-license-box p,
.akk-doc-panel p,
.akk-seo-panel p,
.akk-card p,
.akk-faq-item p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.akk-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border: none;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
}

.akk-btn:hover {
  transform: translateY(-2px);
}

.akk-btn--primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 12px 24px rgba(0,48,135,.18);
}

.akk-btn--secondary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 12px 24px rgba(0,166,81,.16);
}

.akk-btn--ghost {
  background: rgba(255,255,255,.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(8px);
}

.akk-hero {
  position: relative;
  overflow: hidden;
  padding: 38px 0 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(255,255,255,.18) 0, transparent 30%),
    radial-gradient(circle at 84% 16%, rgba(0,166,81,.15) 0, transparent 22%),
    linear-gradient(135deg, #00286f 0%, #003087 42%, #0d57d0 100%);
}

.akk-hero::before,
.akk-hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(20px);
  opacity: .6;
  pointer-events: none;
}

.akk-hero::before {
  width: 320px;
  height: 320px;
  background: rgba(234,244,255,.16);
  top: 80px;
  right: -60px;
}

.akk-hero::after {
  width: 240px;
  height: 240px;
  background: rgba(246,239,231,.18);
  bottom: 40px;
  left: -60px;
}

.akk-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.06fr .94fr;
  align-items: center;
  gap: 40px;
  min-height: 680px;
  color: #fff;
}

.akk-hero__content h1 {
  margin: 18px 0;
  max-width: 760px;
  color: #fff;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.akk-hero__content p {
  margin: 0;
  max-width: 660px;
  font-size: 19px;
  color: rgba(255,255,255,.84);
}

.akk-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.akk-hero__trust {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
  padding-bottom: 48px;
}

.akk-trust-pill {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(12px);
}

.akk-trust-pill strong {
  display: block;
  font-size: 20px;
  margin-bottom: 2px;
  color: #fff;
}

.akk-trust-pill span {
  font-size: 14px;
  color: rgba(255,255,255,.72);
}

.akk-hero__media {
  position: relative;
  min-height: 610px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.akk-hero__photo-wrap {
  position: absolute;
  inset: 26px 20px 0;
  border-radius: 32px 32px 0 0;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.2);
  border: 1px solid rgba(255,255,255,.16);
}

.akk-hero__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.akk-floating-card {
  position: absolute;
  z-index: 2;
  width: 220px;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255,255,255,.9);
  color: var(--text);
  box-shadow: var(--shadow-hover);
  backdrop-filter: blur(8px);
}

.akk-floating-card small {
  display: block;
  color: var(--muted);
  margin-bottom: 6px;
  font-size: 13px;
}

.akk-floating-card strong {
  display: block;
  font-size: 17px;
  line-height: 1.25;
}

.akk-floating-card--top {
  top: -44px;
  left: -12px;
}

.akk-floating-card--mid {
  right: -8px;
  top: 500px;
}

.akk-floating-card--bottom {
     left: -100px;
    bottom: 208px;

}

.akk-trust-row {
  margin-top: -44px;
  position: relative;
  z-index: 2;
}

.akk-trust-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 20px;
  align-items: stretch;
}

.akk-trust-box,
.akk-license-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: var(--shadow);
  padding: 26px;
}

.akk-license-box {
  background: linear-gradient(180deg, #f9fbff 0%, #eff5ff 100%);
}

.akk-license-box h3 {
  margin: 16px 0 10px;
  font-size: 26px;
  line-height: 1.15;
}

.akk-license-box .akk-btn {
  margin-top: 18px;
}

.akk-logo-chips {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.akk-logo-chips div {
  min-height: 76px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #fff, #f8fbff);
  color: var(--blue);
  font-weight: 800;
  text-align: center;
  padding: 12px;
}

.akk-grid-3,
.akk-grid-4 {
  display: grid;
  gap: 22px;
}

.akk-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.akk-grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.akk-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  overflow: hidden;
}

.akk-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(0,48,135,.18);
}

.akk-audience-card,
.akk-feature-card,
.akk-program-card {
  padding: 24px;
  min-height: 230px;
  display: flex;
  flex-direction: column;
}

.akk-feature-card,
.akk-program-card {
  background: linear-gradient(180deg, #fff, #fbfdff);
}

.akk-icon-box {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #eef5ff, #f8fbff);
  color: var(--blue);
  margin-bottom: 18px;
  border: 1px solid #d9e6fb;
  font-size: 24px;
  font-weight: 800;
}

.akk-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.2;
}

.akk-card a,
.akk-card-link,
.akk-text-link {
  margin-top: auto;
  padding-top: 16px;
  color: var(--blue);
  font-weight: 700;
}

.akk-timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  position: relative;
}

.akk-timeline::before {
  content: "";
  position: absolute;
  top: 34px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, rgba(0,48,135,.15), rgba(0,166,81,.35), rgba(0,48,135,.15));
}

.akk-timeline-step {
  position: relative;
  z-index: 1;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 30px 24px 24px;
}

.akk-timeline-number {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  color: #fff;
  font-size: 24px;
  font-weight: 800;
  box-shadow: 0 16px 28px rgba(0,48,135,.18);
  margin-bottom: 18px;
}

.akk-timeline-step h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

.akk-timeline-step p {
  margin: 0;
  color: var(--muted);
}

.akk-docs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.akk-doc-panel,
.akk-seo-panel,
.akk-cta-panel,
.akk-faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.akk-doc-panel {
  padding: 30px;
  background: linear-gradient(180deg, #fff, #f9fbff);
}

.akk-doc-panel h3 {
  margin: 18px 0 12px;
  font-size: 28px;
  line-height: 1.12;
}

.akk-doc-list {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.akk-doc-item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
}

.akk-doc-item span {
  color: var(--muted);
  text-align: right;
}

.akk-seo-panel {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 24px;
  align-items: center;
  padding: 34px;
  background: linear-gradient(180deg, #fff, #f9fbff);
}

.akk-seo-card {
  padding: 26px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--line);
}

.akk-seo-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 22px;
}

.akk-seo-card span {
  color: var(--muted);
}

.akk-faq-list {
  max-width: 920px;
  display: grid;
  gap: 14px;
}

.akk-faq-item {
  overflow: hidden;
}

.akk-faq-item summary {
  cursor: pointer;
  padding: 22px 24px;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  list-style: none;
}

.akk-faq-item summary::-webkit-details-marker {
  display: none;
}

.akk-faq-item summary::after {
  content: "+";
  float: right;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  margin-top: -4px;
  border-radius: 50%;
  background: #eef5ff;
  color: var(--blue);
}

.akk-faq-item[open] summary::after {
  content: "−";
}

.akk-faq-item p {
  padding: 0 24px 24px;
}

.akk-cta {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #00286f 0%, #003087 48%, #0b59d7 100%);
  color: #fff;
}

.akk-cta::before,
.akk-cta::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(10px);
}

.akk-cta::before {
  width: 280px;
  height: 280px;
  background: rgba(255,255,255,.08);
  right: -40px;
  top: -30px;
}

.akk-cta::after {
  width: 220px;
  height: 220px;
  background: rgba(0,166,81,.16);
  left: -30px;
  bottom: -40px;
}

.akk-cta-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 30px;
  align-items: center;
}

.akk-cta-copy h2 {
  color: #fff;
}

.akk-cta-copy p {
  color: rgba(255,255,255,.82);
  max-width: 560px;
}

.akk-cta-panel {
  padding: 26px;
  color: var(--text);
}

.akk-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.akk-field {
  display: grid;
  gap: 8px;
}

.akk-field--full {
  grid-column: 1 / -1;
}

.akk-field label {
  font-size: 14px;
  font-weight: 700;
  color: #35516c;
}

.akk-field input,
.akk-field select,
.akk-field textarea,
.akk-cta-panel input,
.akk-cta-panel select,
.akk-cta-panel textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  min-height: 54px;
  padding: 0 16px;
  outline: none;
  background: #fff;
}

.akk-cta-panel textarea {
  min-height: 120px;
  padding: 16px;
  resize: vertical;
}

.akk-cta-panel button,
.akk-cta-panel input[type="submit"] {
  margin-top: 16px;
  min-height: 54px;
  padding: 0 24px;
  border: none;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.akk-form-note {
  margin-top: 14px;
  font-size: 13px;
  color: var(--muted);
}

@media (max-width: 1180px) {
  .akk-hero__grid,
  .akk-cta-grid,
  .akk-docs-grid,
  .akk-trust-grid,
  .akk-seo-panel {
    grid-template-columns: 1fr;
  }

  .akk-grid-4,
  .akk-timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .akk-grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .akk-hero__media {
    min-height: 520px;
  }

  .akk-trust-row {
    margin-top: 28px;
  }

  .akk-floating-card {
    display: none;
  }
}

@media (max-width: 920px) {
  .akk-hero__grid {
    min-height: unset;
    padding: 24px 0 56px;
  }

  .akk-hero__media {
    order: -1;
    min-height: 440px;
  }

  .akk-hero__photo-wrap {
    inset: 0;
    border-radius: 28px;
  }

  .akk-hero__trust,
  .akk-logo-chips,
  .akk-grid-3,
  .akk-grid-4,
  .akk-timeline,
  .akk-form-grid {
    grid-template-columns: 1fr;
  }

  .akk-timeline::before {
    display: none;
  }
}

@media (max-width: 640px) {
  .akk-section {
    padding: 64px 0;
  }

  .akk-container {
    width: min(calc(100% - 20px), var(--container));
  }

  .akk-hero {
    padding-top: 18px;
  }

  .akk-hero__content h1 {
    font-size: 34px;
  }

  .akk-hero__content p {
    font-size: 17px;
  }

  .akk-hero__actions {
    flex-direction: column;
  }

  .akk-hero__actions .akk-btn,
  .akk-cta-panel button,
  .akk-cta-panel input[type="submit"] {
    width: 100%;
  }

  .akk-hero__media {
    min-height: 340px;
  }

  .akk-trust-box,
  .akk-license-box,
  .akk-doc-panel,
  .akk-seo-panel,
  .akk-cta-panel,
  .akk-card,
  .akk-timeline-step {
    padding: 20px;
  }

  .akk-title-wrap h2,
  .akk-trust-box h2,
  .akk-doc-panel h2,
  .akk-seo-panel h2,
  .akk-cta-copy h2 {
    font-size: 30px;
  }

  .akk-doc-item {
    display: grid;
  }

  .akk-doc-item span {
    text-align: left;
  }
}


