:root {
  --at-bg: #0C0C0F;
  --at-bg-alt: #161619;
  --at-bg-surface: #1E1E24;
  --at-accent: #E8540E;
  --at-accent-hover: #CC4509;
  --at-accent-soft: rgba(232, 84, 14, 0.12);
  --at-text-primary: #F0F0F0;
  --at-text-secondary: #A0A0AA;
  --at-border: #2A2A32;
  --at-gradient: linear-gradient(135deg, #E8540E 0%, #FF8C42 100%);
  --at-white: #FFFFFF;
}

*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #0C0C0F;
  color: #A0A0AA;
  margin: 0;
  padding: 0;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.page-interior { padding-top: 68px; }

a { color: #E8540E; text-decoration: none; }
a:hover { color: #CC4509; }

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4, h5, h6 { color: #F0F0F0; font-weight: 700; margin: 0 0 16px; }

h1 { font-size: 52px; line-height: 1.15; letter-spacing: -0.02em; }
h2 { font-size: 36px; line-height: 1.25; letter-spacing: -0.01em; }
h3 { font-size: 22px; line-height: 1.3; font-weight: 600; }
h4 { font-size: 18px; line-height: 1.35; font-weight: 600; }

p { margin: 0 0 16px; }

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

.c-section-header { text-align: center; margin-bottom: 52px; }
.c-section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #E8540E;
  background: rgba(232, 84, 14, 0.12);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.c-section-title { color: #F0F0F0; margin-bottom: 12px; }
.c-section-desc { color: #A0A0AA; font-size: 17px; max-width: 560px; margin: 0 auto; }

.c-btn {
  display: inline-block;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 12px 28px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}
.c-btn--primary { background: #E8540E; color: #FFFFFF; }
.c-btn--primary:hover { background: #CC4509; color: #FFFFFF; }
.c-btn--outline { background: transparent; color: #E8540E; border: 2px solid #E8540E; padding: 11px 27px; }
.c-btn--outline:hover { background: rgba(232, 84, 14, 0.1); color: #E8540E; }
.c-btn--white-outline { background: transparent; color: #FFFFFF; border: 2px solid #FFFFFF; padding: 11px 27px; }
.c-btn--white-outline:hover { background: rgba(255,255,255,0.1); color: #FFFFFF; }

.c-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  height: 68px;
}
.c-nav.scrolled, .c-nav.c-nav--solid {
  background: rgba(12, 12, 15, 0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.c-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
}
.c-nav__logo {
  font-size: 22px;
  font-weight: 800;
  color: #F0F0F0;
  text-decoration: none;
  letter-spacing: -0.02em;
}
.c-nav__logo span { color: #E8540E; }
.c-nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.c-nav__links a {
  color: #A0A0AA;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 6px;
  transition: color 0.2s ease;
}
.c-nav__links a:hover, .c-nav__links a.at-active { color: #F0F0F0; }
.c-nav__cta {
  background: #E8540E !important;
  color: #FFFFFF !important;
  padding: 9px 20px !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  margin-left: 8px;
}
.c-nav__cta:hover { background: #CC4509 !important; color: #FFFFFF !important; }
.c-nav__toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.c-nav__toggle span { display: block; width: 24px; height: 2px; background: #F0F0F0; margin: 5px 0; transition: 0.3s; }

.c-hero { background: #0C0C0F; padding: 120px 0 80px; position: relative; }
.c-hero--center { text-align: center; padding: 80px 0 60px; }
.c-hero--center .c-hero__cta { justify-content: center; }
.c-hero--split { padding: 120px 0 80px; }
.c-hero__label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #E8540E;
  background: rgba(232, 84, 14, 0.12);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.c-hero__title { color: #F0F0F0; font-size: 52px; line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 20px; }
.c-hero__title .at-gradient-text {
  background: linear-gradient(135deg, #E8540E 0%, #FF8C42 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.c-hero--center .c-hero__title { font-size: 44px; }
.c-hero__subtitle { font-size: 18px; line-height: 1.6; color: #A0A0AA; margin-bottom: 36px; max-width: 520px; }
.c-hero--center .c-hero__subtitle { max-width: 560px; margin: 0 auto 36px; }
.c-hero__cta { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.c-hero__image { border-radius: 12px; box-shadow: 0 20px 60px rgba(0,0,0,0.5); width: 100%; }

.c-stats { background: #161619; padding: 48px 0; border-top: 1px solid #2A2A32; border-bottom: 1px solid #2A2A32; }
.c-stats__grid { display: flex; justify-content: space-around; align-items: center; flex-wrap: wrap; gap: 32px; }
.c-stats__item { text-align: center; }
.c-stats__number { display: block; font-size: 36px; font-weight: 700; color: #F0F0F0; line-height: 1.1; margin-bottom: 6px; }
.c-stats__label { font-size: 14px; color: #A0A0AA; font-weight: 500; }

.c-stats--cards { background: #161619; padding: 80px 0; }
.c-stats__card {
  background: #1E1E24;
  border: 1px solid #2A2A32;
  border-radius: 12px;
  padding: 28px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(0,0,0,0.35);
}
.c-stats--cards .c-stats__number { font-size: 40px; font-weight: 700; color: #E8540E; margin-bottom: 8px; display: block; }
.c-stats--cards .c-stats__label { font-size: 15px; font-weight: 600; color: #F0F0F0; display: block; }
.c-stats--cards .c-stats__desc { font-size: 14px; color: #A0A0AA; margin: 8px 0 0; }

.c-features { background: #0C0C0F; padding: 80px 0; }
.c-features__grid--6 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.c-features__card {
  background: #1E1E24;
  border: 1px solid #2A2A32;
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.35);
  transition: all 0.2s ease;
}
.c-features__card:hover { border-color: rgba(232,84,14,0.4); transform: translateY(-2px); }
.c-features__icon { font-size: 26px; color: #E8540E; margin-bottom: 16px; }
.c-features__name { font-size: 18px; font-weight: 600; color: #F0F0F0; margin-bottom: 10px; }
.c-features__text { font-size: 15px; color: #A0A0AA; margin: 0; line-height: 1.6; }

.c-features--alternating { background: #161619; padding: 80px 0; }
.c-features__row { padding: 60px 0; border-bottom: 1px solid #2A2A32; }
.c-features__row:last-child { border-bottom: none; }
.c-features__row .c-features__name { font-size: 28px; font-weight: 700; color: #F0F0F0; margin-bottom: 16px; }
.c-features__row .c-features__text { font-size: 16px; color: #A0A0AA; line-height: 1.7; margin-bottom: 16px; }
.c-features__img { border-radius: 12px; box-shadow: 0 4px 24px rgba(0,0,0,0.35); width: 100%; }
.c-features__checklist { list-style: none; padding: 0; margin: 20px 0 0; }
.c-features__checklist li { display: flex; align-items: center; gap: 10px; font-size: 15px; color: #A0A0AA; margin-bottom: 10px; }
.c-features__checklist li i { color: #E8540E; font-size: 14px; }

.c-process { background: #0C0C0F; padding: 80px 0; }
.c-process__steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; margin-top: 52px; }
.c-process__step { position: relative; padding: 28px; background: #1E1E24; border: 1px solid #2A2A32; border-radius: 12px; }
.c-process__num { display: block; font-size: 48px; font-weight: 800; color: rgba(232,84,14,0.15); line-height: 1; margin-bottom: 16px; }
.c-process__name { font-size: 18px; font-weight: 600; color: #F0F0F0; margin-bottom: 10px; }
.c-process__text { font-size: 15px; color: #A0A0AA; margin: 0; line-height: 1.6; }

.c-process--timeline { background: #0C0C0F; padding: 80px 0; }
.c-process--timeline .c-process__steps { display: flex; flex-wrap: wrap; gap: 0; position: relative; margin-top: 52px; }
.c-process--timeline .c-process__steps::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, #E8540E 0%, rgba(232,84,14,0.2) 100%);
}
.c-process--timeline .c-process__step {
  flex: 1;
  text-align: center;
  background: transparent;
  border: none;
  padding: 0 16px;
  position: relative;
}
.c-process--timeline .c-process__step-icon {
  width: 56px; height: 56px;
  background: #1E1E24;
  border: 2px solid #E8540E;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-size: 22px;
  color: #E8540E;
  position: relative;
  z-index: 1;
}
.c-process--timeline .c-process__name { font-size: 15px; font-weight: 600; color: #F0F0F0; margin-bottom: 8px; }
.c-process--timeline .c-process__text { font-size: 13px; color: #A0A0AA; }

.c-testimonials { background: #161619; padding: 80px 0; }
.c-testimonials__card {
  background: #1E1E24;
  border: 1px solid #2A2A32;
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.35);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.c-testimonials__quote {
  font-size: 22px;
  color: #E8540E;
  margin-bottom: 16px;
  line-height: 1;
}
.c-testimonials__text { font-size: 16px; color: #F0F0F0; line-height: 1.7; font-style: italic; flex: 1; margin-bottom: 20px; }
.c-testimonials__author { font-size: 14px; color: #A0A0AA; }
.c-testimonials__author strong { color: #F0F0F0; display: block; margin-bottom: 3px; }

.c-cta { background: #E8540E; padding: 80px 0; text-align: center; }
.c-cta__title { font-size: 36px; font-weight: 700; color: #FFFFFF; margin-bottom: 14px; }
.c-cta__desc { font-size: 18px; color: rgba(255,255,255,0.85); margin-bottom: 36px; max-width: 500px; margin-left: auto; margin-right: auto; }
.c-cta__buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.c-cta--card { background: #161619; padding: 80px 0; }
.c-cta__card-inner {
  background: #1E1E24;
  border: 1px solid #2A2A32;
  border-radius: 16px;
  padding: 60px 40px;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  box-shadow: 0 4px 24px rgba(0,0,0,0.35);
}
.c-cta--card .c-cta__title { color: #F0F0F0; }
.c-cta--card .c-cta__desc { color: #A0A0AA; }

.c-footer { background: #161619; padding: 64px 0 0; border-top: 1px solid #2A2A32; }
.c-footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; padding-bottom: 48px; }
.c-footer__logo { font-size: 20px; font-weight: 800; color: #F0F0F0; text-decoration: none; letter-spacing: -0.02em; }
.c-footer__logo span { color: #E8540E; }
.c-footer__tagline { font-size: 14px; color: #A0A0AA; margin-top: 12px; line-height: 1.6; }
.c-footer__col h4 { font-size: 13px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: #F0F0F0; margin-bottom: 16px; }
.c-footer__col ul { list-style: none; padding: 0; margin: 0; }
.c-footer__col ul li { margin-bottom: 10px; }
.c-footer__col ul li a { font-size: 14px; color: #A0A0AA; text-decoration: none; transition: color 0.2s; }
.c-footer__col ul li a:hover { color: #F0F0F0; }
.c-footer__contact p { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: #A0A0AA; margin-bottom: 10px; }
.c-footer__contact p i { color: #E8540E; margin-top: 3px; flex-shrink: 0; }
.c-footer__contact a { color: #A0A0AA; text-decoration: none; }
.c-footer__contact a:hover { color: #F0F0F0; }
.c-footer__bottom {
  border-top: 1px solid #2A2A32;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.c-footer__bottom p { font-size: 13px; color: #A0A0AA; margin: 0; }
.c-footer__legal { display: flex; gap: 20px; }
.c-footer__legal a { font-size: 13px; color: #A0A0AA; text-decoration: none; }
.c-footer__legal a:hover { color: #F0F0F0; }

.c-contact { background: #0C0C0F; padding: 80px 0; }
.c-contact__title { font-size: 28px; font-weight: 700; color: #F0F0F0; margin-bottom: 28px; }
.c-contact__form input,
.c-contact__form select,
.c-contact__form textarea {
  display: block;
  width: 100%;
  background: #1E1E24;
  border: 1px solid #2A2A32;
  border-radius: 8px;
  color: #F0F0F0;
  font-size: 15px;
  padding: 12px 16px;
  margin-bottom: 16px;
  outline: none;
  transition: border-color 0.2s;
  font-family: inherit;
}
.c-contact__form input:focus,
.c-contact__form select:focus,
.c-contact__form textarea:focus { border-color: #E8540E; box-shadow: 0 0 0 3px rgba(232,84,14,0.4); }
.c-contact__form input::placeholder,
.c-contact__form textarea::placeholder { color: #A0A0AA; }
.c-contact__form select option { background: #1E1E24; }
.c-contact__info-title { font-size: 20px; font-weight: 600; color: #F0F0F0; margin-bottom: 24px; }
.c-contact__info-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; }
.c-contact__info-item i { color: #E8540E; font-size: 18px; margin-top: 2px; flex-shrink: 0; }
.c-contact__info-item a { color: #A0A0AA; text-decoration: none; }
.c-contact__info-item a:hover { color: #F0F0F0; }
.c-contact__info-item span { color: #A0A0AA; font-size: 15px; line-height: 1.6; }

.c-team { background: #0C0C0F; padding: 80px 0; }
.c-team__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.c-team__card {
  background: #1E1E24;
  border: 1px solid #2A2A32;
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(0,0,0,0.35);
}
.c-team__photo {
  width: 120px; height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
  border: 3px solid #2A2A32;
}
.c-team__name { font-size: 17px; font-weight: 600; color: #F0F0F0; margin-bottom: 6px; }
.c-team__role { font-size: 14px; color: #A0A0AA; margin: 0; }

.c-about-story { background: #0C0C0F; padding: 80px 0; }
.c-about-story__img { border-radius: 12px; box-shadow: 0 4px 24px rgba(0,0,0,0.35); width: 100%; }
.c-about-story h3 { font-size: 24px; font-weight: 700; color: #F0F0F0; margin-bottom: 16px; }
.c-about-story p { font-size: 16px; color: #A0A0AA; line-height: 1.75; }

.c-principles { background: #161619; padding: 80px 0; }
.c-principles__card {
  background: #1E1E24;
  border: 1px solid #2A2A32;
  border-radius: 12px;
  padding: 32px 28px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.35);
  height: 100%;
}
.c-principles__num { font-size: 14px; font-weight: 600; color: #E8540E; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 14px; display: block; }
.c-principles__title { font-size: 20px; font-weight: 700; color: #F0F0F0; margin-bottom: 12px; }
.c-principles__text { font-size: 15px; color: #A0A0AA; margin: 0; line-height: 1.65; }

.c-blog-grid { background: #0C0C0F; padding: 80px 0; }
.c-blog-grid__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.c-blog-grid__card {
  background: #1E1E24;
  border: 1px solid #2A2A32;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.35);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: all 0.2s ease;
}
.c-blog-grid__card:hover { border-color: rgba(232,84,14,0.4); transform: translateY(-3px); }
.c-blog-grid__thumb { width: 100%; height: 200px; object-fit: cover; }
.c-blog-grid__body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.c-blog-grid__date { font-size: 13px; color: #A0A0AA; margin-bottom: 10px; display: block; }
.c-blog-grid__title { font-size: 18px; font-weight: 600; color: #F0F0F0; margin-bottom: 10px; line-height: 1.4; }
.c-blog-grid__excerpt { font-size: 14px; color: #A0A0AA; line-height: 1.65; flex: 1; margin-bottom: 16px; }
.c-blog-grid__read { font-size: 14px; font-weight: 600; color: #E8540E; margin-top: auto; }
.c-blog-grid__card:hover .c-blog-grid__read { color: #CC4509; }

.at-page-hero { background: #0C0C0F; padding: 80px 0 60px; text-align: center; }
.at-page-hero h1 { font-size: 44px; color: #F0F0F0; margin-bottom: 14px; }
.at-page-hero p { font-size: 18px; color: #A0A0AA; max-width: 520px; margin: 0 auto; }

.at-404-section { background: #0C0C0F; padding: 100px 0; text-align: center; }
.at-404-num { font-size: 140px; font-weight: 900; color: #E8540E; line-height: 1; display: block; margin-bottom: 24px; }
.at-404-section h2 { font-size: 32px; color: #F0F0F0; margin-bottom: 16px; }
.at-404-section p { font-size: 17px; color: #A0A0AA; max-width: 480px; margin: 0 auto 36px; }

.at-legal { background: #0C0C0F; padding: 80px 0; }
.at-legal__inner { max-width: 800px; margin: 0 auto; }
.at-legal h1 { font-size: 40px; color: #F0F0F0; margin-bottom: 8px; }
.at-legal .at-legal__date { font-size: 14px; color: #A0A0AA; margin-bottom: 40px; }
.at-legal h2 { font-size: 24px; color: #F0F0F0; margin-top: 40px; margin-bottom: 14px; }
.at-legal p { font-size: 16px; color: #A0A0AA; line-height: 1.75; margin-bottom: 16px; }
.at-legal ul { padding-left: 24px; }
.at-legal ul li { font-size: 16px; color: #A0A0AA; line-height: 1.75; margin-bottom: 8px; }
.at-legal a { color: #E8540E; }

#cookie-banner {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #1E1E24;
  border-top: 1px solid #2A2A32;
  padding: 16px 24px;
  z-index: 9999;
  font-size: 14px;
  color: #A0A0AA;
}
#cookie-banner .at-cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}
#cookie-banner p { margin: 0; flex: 1; min-width: 240px; }
#cookie-banner a { color: #E8540E; }
.at-cookie-buttons { display: flex; gap: 10px; flex-shrink: 0; }
#cookie-accept { background: #E8540E; color: #FFFFFF; border: none; padding: 9px 20px; border-radius: 8px; font-size: 14px; font-weight: 600; cursor: pointer; }
#cookie-accept:hover { background: #CC4509; }
#cookie-decline { background: #2A2A32; color: #A0A0AA; border: none; padding: 9px 20px; border-radius: 8px; font-size: 14px; font-weight: 600; cursor: pointer; }
#cookie-decline:hover { background: #333340; color: #F0F0F0; }

@media (max-width: 992px) {
  h1, .c-hero__title { font-size: 40px; }
  h2 { font-size: 30px; }
  .c-features__grid--6 { grid-template-columns: repeat(2, 1fr); }
  .c-process__steps { grid-template-columns: repeat(2, 1fr); }
  .c-team__grid { grid-template-columns: repeat(2, 1fr); }
  .c-footer__grid { grid-template-columns: repeat(2, 1fr); }
  .c-process--timeline .c-process__steps::before { display: none; }
}

@media (max-width: 768px) {
  .c-nav__links { display: none; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: #0C0C0F; padding: 16px; border-top: 1px solid #2A2A32; gap: 4px; }
  .c-nav__links.open { display: flex; }
  .c-nav__toggle { display: block; }
  .c-nav__cta { margin-left: 0; }
  h1, .c-hero__title { font-size: 34px; }
  .c-hero--split { padding: 100px 0 60px; }
  .c-hero__image { margin-top: 40px; }
  .c-hero--center .c-hero__title { font-size: 34px; }
  .c-features__grid--6 { grid-template-columns: 1fr; }
  .c-process__steps { grid-template-columns: 1fr; }
  .c-team__grid { grid-template-columns: repeat(2, 1fr); }
  .c-footer__grid { grid-template-columns: 1fr; }
  .c-blog-grid__list { grid-template-columns: 1fr; }
  .c-footer__bottom { flex-direction: column; text-align: center; }
  .c-cta__buttons { flex-direction: column; align-items: center; }
  .c-stats__grid { flex-direction: column; gap: 24px; }
  #cookie-banner .at-cookie-inner { flex-direction: column; }
}
