/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4, h5, h6, .logo, .btn, .hero-badge, .price, .price-badge, .nav-list a {
  font-family: 'brandon-grotesque', 'Segoe UI', sans-serif;
}
body {
  font-family: 'acumin-pro', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  line-height: 1.7;
  background: #fff;
  -webkit-tap-highlight-color: transparent;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; transition: color .3s; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }

/* ===== HEADER ===== */
.header {
  background: #0a2540;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,.15);
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.logo {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
}
.logo span { color: #00b894; }
.nav-list {
  display: flex;
  gap: 30px;
}
.nav-list a {
  color: rgba(255,255,255,.85);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .5px;
  padding: 10px 0;
  border-bottom: 2px solid transparent;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  transition: all .3s;
}
.nav-list a:hover,
.nav-list a.active {
  color: #00b894;
  border-bottom-color: #00b894;
}
.header-phone {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}
.header-phone i { margin-right: 5px; color: #00b894; }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: ' \25BE'; font-size: 10px; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #0a2540;
  min-width: 200px;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 8px 20px rgba(0,0,0,.2);
  padding: 10px 0;
  z-index: 200;
}
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block;
  padding: 8px 20px !important;
  border-bottom: none !important;
  font-size: 13px !important;
  white-space: nowrap;
}
.dropdown-menu a:hover { background: rgba(0,184,148,.1); }

/* Mobile menu */
.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 10px; min-width: 44px; min-height: 44px; justify-content: center; align-items: center; touch-action: manipulation; }
.burger span { width: 25px; height: 2px; background: #fff; transition: .3s; display: block; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0a2540 0%, #0d3b66 100%);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .25;
}
.hero .container { position: relative; z-index: 2; }
.hero-content { max-width: 600px; }
.hero-badge {
  display: inline-block;
  background: rgba(0,184,148,.15);
  color: #00b894;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.hero h1 {
  font-size: 44px;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 700;
}
.hero h1 span { color: #00b894; }
.hero p {
  color: rgba(255,255,255,.75);
  font-size: 17px;
  margin-bottom: 30px;
  line-height: 1.8;
}
.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all .3s;
  cursor: pointer;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  min-height: 48px;
  touch-action: manipulation;
  text-decoration: none;
}
.btn-primary {
  background: #00b894;
  color: #fff;
}
.btn-primary:hover { background: #00a884; box-shadow: 0 6px 20px rgba(0,184,148,.35); }
.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.3);
  margin-left: 12px;
}
.btn-outline:hover { border-color: #00b894; color: #00b894; }

/* ===== SECTIONS ===== */
.section { padding: 80px 0; }
.section-alt { background: #f8fafb; }
.section-title {
  text-align: center;
  margin-bottom: 50px;
}
.section-title h2 {
  font-size: 34px;
  color: #0a2540;
  margin-bottom: 12px;
  font-weight: 700;
}
.section-title p {
  color: #6c757d;
  font-size: 16px;
  max-width: 560px;
  margin: 0 auto;
}
.section-title .line {
  width: 50px;
  height: 3px;
  background: #00b894;
  margin: 15px auto 0;
  border-radius: 2px;
}

/* ===== FEATURES ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.feature-card {
  background: #fff;
  border-radius: 12px;
  padding: 35px 25px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
  transition: transform .3s, box-shadow .3s;
}
.feature-card:hover { transform: translateY(-5px); box-shadow: 0 8px 30px rgba(0,0,0,.1); }
.feature-icon {
  width: 70px;
  height: 70px;
  background: rgba(0,184,148,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
  color: #00b894;
}
.feature-card h3 {
  font-size: 18px;
  color: #0a2540;
  margin-bottom: 10px;
}
.feature-card p { color: #6c757d; font-size: 14px; }

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.about-img {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,.1);
}
.about-img img { width: 100%; height: 400px; object-fit: cover; }
.about-text h2 {
  font-size: 32px;
  color: #0a2540;
  margin-bottom: 15px;
}
.about-text p { color: #555; margin-bottom: 15px; font-size: 15px; }
.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 25px;
}
.stat h3 { font-size: 36px; color: #00b894; font-weight: 700; }
.stat p { font-size: 13px; color: #6c757d; text-transform: uppercase; letter-spacing: .5px; }

/* ===== TEAM ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}
.team-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
  transition: transform .3s;
}
.team-card:hover { transform: translateY(-5px); }
.team-card img { width: 100%; height: 280px; object-fit: cover; }
.team-info {
  padding: 20px;
  text-align: center;
}
.team-info h4 { font-size: 16px; color: #0a2540; margin-bottom: 4px; }
.team-info p { font-size: 13px; color: #00b894; font-weight: 500; }

/* ===== PRICING ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.price-card {
  background: #fff;
  border-radius: 12px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
  transition: box-shadow .3s;
  position: relative;
}
.price-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,.12); }
.price-card.featured {
  background: #0a2540;
  color: #fff;
  transform: scale(1.05);
}
.price-card.featured:hover { box-shadow: 0 8px 30px rgba(0,0,0,.25); }
.price-card.featured h3 { color: #fff; }
.price-card.featured .price { color: #00b894; }
.price-card.featured ul li { color: rgba(255,255,255,.7); }
.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #00b894;
  color: #fff;
  padding: 4px 18px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}
.price-card h3 { font-size: 20px; color: #0a2540; margin-bottom: 10px; }
.price {
  font-size: 48px;
  font-weight: 700;
  color: #0a2540;
  margin: 15px 0;
}
.price span { font-size: 16px; font-weight: 400; color: #6c757d; }
.price-card ul { margin: 25px 0; }
.price-card ul li {
  padding: 8px 0;
  color: #555;
  font-size: 14px;
  border-bottom: 1px solid rgba(0,0,0,.05);
}
.price-card.featured ul li { border-bottom-color: rgba(255,255,255,.1); }

/* ===== ARTICLES ===== */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.article-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
  transition: transform .3s;
}
.article-card:hover { transform: translateY(-4px); }
.article-card img { width: 100%; height: 200px; object-fit: cover; }
.article-body {
  padding: 22px;
}
.article-date {
  font-size: 12px;
  color: #00b894;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.article-body h3 {
  font-size: 17px;
  color: #0a2540;
  margin-bottom: 10px;
  line-height: 1.4;
}
.article-body p { font-size: 14px; color: #6c757d; line-height: 1.6; }
.read-more {
  display: inline-block;
  margin-top: 12px;
  color: #00b894;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.read-more:hover { color: #0a2540; }

/* ===== ARTICLE PAGE ===== */
.page-header {
  background: linear-gradient(135deg, #0a2540 0%, #0d3b66 100%);
  padding: 60px 0 40px;
  text-align: center;
}
.page-header h1 {
  font-size: 34px;
  color: #fff;
  margin-bottom: 8px;
}
.breadcrumb {
  color: rgba(255,255,255,.6);
  font-size: 14px;
}
.breadcrumb a { color: #00b894; }
.breadcrumb a:hover { text-decoration: underline; }

.article-full {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}
.article-full h2 { font-size: 26px; color: #0a2540; margin: 30px 0 15px; }
.article-full h3 { font-size: 20px; color: #0a2540; margin: 25px 0 12px; }
.article-full p { color: #555; font-size: 15px; margin-bottom: 15px; }
.article-full a { color: #00b894; text-decoration: none; border-bottom: 1px solid rgba(0,184,148,.3); transition: border-color .3s; }
.article-full a:hover { border-bottom-color: #00b894; }
.article-full .related-card { border-bottom: none; }
.article-full .related-card:hover { border-bottom: none; }
.article-full img {
  border-radius: 10px;
  margin: 20px 0;
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
}
.article-full ul, .article-full ol {
  margin: 15px 0;
  padding-left: 25px;
}
.article-full li { color: #555; font-size: 15px; margin-bottom: 8px; list-style: disc; }
.article-full ol li { list-style: decimal; }
.article-full blockquote {
  background: #f0faf7;
  border-left: 4px solid #00b894;
  padding: 20px 25px;
  margin: 20px 0;
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: #444;
}

/* ===== RELATED ARTICLES ===== */
.related-articles { margin-top: 40px; padding-top: 30px; border-top: 2px solid #e8e8e8; }
.related-articles h2 { font-size: 22px; color: #0a2540; margin-bottom: 20px; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.related-card {
  text-decoration: none;
  background: #f9f9f9;
  border-radius: 10px;
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
  display: block;
}
.related-card:hover { transform: translateY(-3px); box-shadow: 0 6px 18px rgba(0,0,0,.1); }
.related-card img { width: 100%; height: 140px; object-fit: cover; display: block; }
.related-card h4 { padding: 14px 16px; font-size: 14px; color: #0a2540; line-height: 1.4; }
.related-card .related-tag { padding: 0 16px; font-size: 11px; color: #00b894; font-weight: 600; text-transform: uppercase; letter-spacing: .5px; }
@media (max-width: 768px) { .related-grid { grid-template-columns: 1fr; } }

/* ===== TESTIMONIALS ===== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}
.review-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
  display: flex;
  gap: 20px;
}
.review-card img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.review-text h4 { font-size: 16px; color: #0a2540; margin-bottom: 4px; }
.review-stars { color: #f4b740; font-size: 13px; margin-bottom: 10px; }
.review-text p { font-size: 14px; color: #555; line-height: 1.7; }

.review-form {
  max-width: 600px;
  margin: 50px auto 0;
  background: #fff;
  border-radius: 12px;
  padding: 35px;
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
}
.review-form h3 { font-size: 22px; color: #0a2540; margin-bottom: 20px; text-align: center; }
.form-group { margin-bottom: 15px; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 16px;
  font-family: inherit;
  transition: border-color .3s;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #fff;
  color: #333;
  min-height: 48px;
  touch-action: manipulation;
}
.form-group input:focus,
.form-group textarea:focus { border-color: #00b894; box-shadow: 0 0 0 3px rgba(0,184,148,.15); }
.form-group textarea { height: 120px; resize: vertical; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: #999; opacity: 1; }
.review-form .btn { width: 100%; }

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.contact-info h3 { font-size: 22px; color: #0a2540; margin-bottom: 20px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}
.contact-icon {
  width: 45px;
  height: 45px;
  background: rgba(0,184,148,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00b894;
  flex-shrink: 0;
  font-size: 18px;
}
.contact-item h4 { font-size: 15px; color: #0a2540; margin-bottom: 3px; }
.contact-item p { font-size: 14px; color: #6c757d; }
.contact-form { background: #fff; border-radius: 12px; padding: 30px; box-shadow: 0 4px 20px rgba(0,0,0,.06); }
.contact-form h3 { font-size: 22px; color: #0a2540; margin-bottom: 20px; }

/* ===== FOOTER ===== */
.footer {
  background: #0a2540;
  color: rgba(255,255,255,.7);
  padding: 50px 0 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer h4 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 18px;
}
.footer-about p { font-size: 14px; line-height: 1.7; }
.footer-links a {
  display: block;
  font-size: 14px;
  padding: 4px 0;
  color: rgba(255,255,255,.6);
  transition: color .3s;
}
.footer-links a:hover { color: #00b894; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
}
.footer-legal a {
  margin-left: 20px;
  color: rgba(255,255,255,.5);
}
.footer-legal a:hover { color: #00b894; }

/* ===== COOKIE NOTICE ===== */
.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #0a2540;
  color: #fff;
  padding: 18px 0;
  z-index: 999;
  display: none;
  box-shadow: 0 -4px 20px rgba(0,0,0,.2);
}
.cookie-notice.show { display: block; }
.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.cookie-inner p { font-size: 14px; color: rgba(255,255,255,.8); }
.cookie-inner a { color: #00b894; text-decoration: underline; }
.cookie-btn {
  background: #00b894;
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
  transition: background .3s;
  -webkit-appearance: none;
  appearance: none;
  min-height: 44px;
  touch-action: manipulation;
}
.cookie-btn:hover { background: #00a884; }

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .nav-list { display: none; }
  .burger { display: flex; }
  .dropdown-menu { position: static; box-shadow: none; padding-left: 15px; display: none; }
  .nav-dropdown:hover .dropdown-menu { display: block; }
  .nav-list.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: #0a2540;
    padding: 20px;
    gap: 5px;
    box-shadow: 0 8px 20px rgba(0,0,0,.2);
    z-index: 100;
  }
  .nav-list.open a {
    padding: 12px 10px;
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  .nav-list.open .dropdown-menu a {
    padding: 10px 15px;
    font-size: 13px;
  }
  .hero h1 { font-size: 32px; }
  .features-grid,
  .pricing-grid,
  .articles-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .cookie-inner { flex-direction: column; text-align: center; }
  .cookie-btn { width: 100%; }
}
@media (max-width: 576px) {
  .features-grid,
  .pricing-grid,
  .articles-grid,
  .team-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 26px; }
  .hero p { font-size: 15px; }
  .price-card.featured { transform: scale(1); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .about-stats { flex-direction: column; gap: 15px; }
  .header-phone { display: none; }
  .section { padding: 40px 0; }
  .article-full { padding: 20px 15px; }
  .article-full h2 { font-size: 22px; }
  .btn { padding: 14px 28px; width: 100%; text-align: center; }
  .hero .btn { width: auto; }
  .btn-outline { margin-left: 0; margin-top: 10px; }
  .contact-form { padding: 20px; }
  .related-card h4 { font-size: 14px; }
  .footer-links a { padding: 6px 0; min-height: 44px; display: inline-flex; align-items: center; }
}

/* ===== SAFARI / iOS FIXES ===== */
@supports (-webkit-touch-callout: none) {
  .hero { min-height: -webkit-fill-available; }
  input, textarea, select, button { font-size: 16px; }
}
a, button, input[type="submit"], .btn, .burger, .cookie-btn {
  touch-action: manipulation;
  -webkit-touch-callout: none;
}
