/* 
  Vibrant Palette: 
  Deep Blue: #0B2545
  Dark Slate: #13315C
  Ice Blue: #8DA9C4
  Bright Orange: #FF6B35
  White: #FFFFFF
  Off-White: #F4F7F6
*/

:root {
  --col-deep-blue: #0B2545;
  --col-slate: #13315C;
  --col-ice: #8DA9C4;
  --col-orange: #FF6B35;
  --col-orange-hover: #e55b29;
  --col-white: #FFFFFF;
  --col-bg: #F4F7F6;
  --font-main: 'Manrope', sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-main);
  background-color: var(--col-bg);
  color: var(--col-deep-blue);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

/* Header */
.aero-site-header {
  position: sticky;
  top: 0;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 100;
  border-bottom: 1px solid rgba(141, 169, 196, 0.3);
  padding: 1rem 5%;
}

.aero-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.aero-brand-mark {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--col-deep-blue);
}

.aero-primary-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-weight: 600;
  font-size: 0.95rem;
}

.aero-primary-nav a:not(.aero-btn-nav) {
  color: var(--col-slate);
}

.aero-primary-nav a:not(.aero-btn-nav):hover {
  color: var(--col-orange);
}

.aero-btn-nav {
  background-color: var(--col-orange);
  color: var(--col-white) !important;
  padding: 0.5rem 1.25rem;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.aero-btn-nav:hover {
  background-color: var(--col-orange-hover);
}

/* Hero Split Layout */
.aero-hero-split {
  display: flex;
  min-height: 85vh;
  background-color: var(--col-deep-blue);
  color: var(--col-white);
}

.aero-hero-content {
  flex: 1;
  padding: 8% 5% 8% 8%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.aero-hero-badge {
  display: inline-block;
  background-color: rgba(141, 169, 196, 0.2);
  color: var(--col-ice);
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  align-self: flex-start;
}

.aero-hero-title {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  font-weight: 800;
}

.aero-hero-desc {
  font-size: 1.15rem;
  color: var(--col-ice);
  margin-bottom: 2.5rem;
  max-width: 90%;
}

.aero-hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.aero-btn-primary {
  background-color: var(--col-orange);
  color: var(--col-white);
  padding: 0.8rem 2rem;
  font-weight: 600;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.aero-btn-primary:hover {
  background-color: var(--col-orange-hover);
}

.aero-btn-secondary {
  background-color: transparent;
  color: var(--col-white);
  padding: 0.8rem 2rem;
  font-weight: 600;
  border-radius: 4px;
  border: 2px solid var(--col-ice);
  transition: all 0.3s ease;
}

.aero-btn-secondary:hover {
  background-color: var(--col-ice);
  color: var(--col-deep-blue);
}

.transit-disclaimer {
  font-size: 0.75rem;
  color: rgba(141, 169, 196, 0.6);
  max-width: 80%;
}

.aero-hero-visual {
  flex: 1;
}

.aero-hero-visual img {
  height: 100%;
}

/* Capabilities */
.aero-capabilities-module {
  padding: 6rem 5%;
  max-width: 1200px;
  margin: 0 auto;
}

.aero-module-header {
  text-align: center;
  margin-bottom: 4rem;
}

.aero-module-header h2 {
  font-size: 2.5rem;
  color: var(--col-slate);
  margin-bottom: 1rem;
}

.aero-module-header p {
  color: #555;
  font-size: 1.1rem;
}

.aero-capability-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.aero-cap-card {
  background: var(--col-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(11, 37, 69, 0.05);
  transition: transform 0.3s ease;
}

.aero-cap-card:hover {
  transform: translateY(-5px);
}

.aero-cap-card img {
  height: 200px;
}

.aero-cap-card h3 {
  padding: 1.5rem 1.5rem 0.5rem;
  color: var(--col-slate);
  font-size: 1.25rem;
}

.aero-cap-card p {
  padding: 0 1.5rem 1.5rem;
  color: #666;
  font-size: 0.95rem;
}

/* Deep Profile (About) */
.aero-deep-profile {
  display: flex;
  align-items: center;
  background-color: var(--col-white);
  padding: 6rem 5%;
  gap: 4rem;
}

.aero-profile-text {
  flex: 1;
  max-width: 600px;
  margin-left: auto;
}

.aero-profile-text h2 {
  font-size: 2.5rem;
  color: var(--col-slate);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.aero-profile-text p {
  margin-bottom: 1.5rem;
  color: #444;
  font-size: 1.05rem;
}

.aero-profile-text a {
  color: var(--col-orange);
  text-decoration: underline;
}

.aero-data-metrics {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
  border-top: 1px solid #eee;
  padding-top: 2rem;
}

.aero-metric {
  display: flex;
  flex-direction: column;
}

.aero-metric .aero-counter,
.aero-metric span:nth-child(2) {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--col-orange);
  line-height: 1;
}

.aero-metric span:nth-child(2) {
  display: inline-block;
  margin-bottom: 0.5rem;
}

.aero-metric-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--col-ice);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.aero-profile-image {
  flex: 1;
  max-width: 500px;
  margin-right: auto;
}

.aero-profile-image img {
  border-radius: 8px;
  box-shadow: 20px 20px 0 var(--col-ice);
}

/* Advantages */
.aero-adv-zone {
  padding: 6rem 5%;
  background-color: var(--col-slate);
  color: var(--col-white);
  text-align: center;
}

.aero-adv-zone h2 {
  font-size: 2.5rem;
  margin-bottom: 4rem;
}

.aero-adv-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.aero-adv-item {
  padding: 2rem;
  border: 1px solid rgba(141, 169, 196, 0.3);
  border-radius: 8px;
  background: rgba(11, 37, 69, 0.4);
}

.aero-adv-item h4 {
  color: var(--col-orange);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.aero-adv-item p {
  font-size: 0.95rem;
  color: var(--col-ice);
}

/* Feedback */
.aero-feedback-zone {
  padding: 6rem 5%;
  background-color: var(--col-bg);
  max-width: 1000px;
  margin: 0 auto;
}

.aero-feedback-zone h2 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--col-slate);
  margin-bottom: 3rem;
}

.aero-feedback-layout {
  display: flex;
  gap: 3rem;
}

.aero-testimonial {
  flex: 1;
  background: var(--col-white);
  padding: 2.5rem;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.03);
  position: relative;
}

.aero-testimonial::before {
  content: '"';
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  font-size: 4rem;
  color: rgba(255, 107, 53, 0.2);
  font-family: serif;
  line-height: 1;
}

.aero-testimonial p {
  font-style: italic;
  color: #555;
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}

.aero-client-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.aero-client-meta img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.aero-client-meta strong {
  display: block;
  color: var(--col-slate);
  font-size: 1rem;
}

.aero-client-meta span {
  font-size: 0.85rem;
  color: #888;
}

/* Contact Module */
.aero-contact-module {
  padding: 6rem 5%;
  background-color: var(--col-white);
  border-top: 1px solid #eee;
}

.aero-contact-inner {
  max-width: 700px;
  margin: 0 auto;
}

.aero-contact-inner h2 {
  font-size: 2.5rem;
  color: var(--col-slate);
  margin-bottom: 1rem;
}

.aero-contact-inner p {
  color: #666;
  margin-bottom: 2.5rem;
}

.aero-form-row {
  display: flex;
  gap: 1.5rem;
}

.aero-form-row .aero-form-group {
  flex: 1;
}

.aero-form-group {
  margin-bottom: 1.5rem;
}

.aero-form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--col-slate);
}

.aero-form-group input,
.aero-form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  background-color: #fafafa;
}

.aero-form-group input:focus,
.aero-form-group textarea:focus {
  outline: none;
  border-color: var(--col-orange);
  background-color: var(--col-white);
}

.aero-submit-btn {
  width: 100%;
  padding: 1rem;
  font-size: 1.1rem;
}

/* Footer */
.aero-site-footer {
  background-color: var(--col-deep-blue);
  color: var(--col-ice);
  padding: 4rem 5% 2rem;
}

.aero-footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.aero-footer-col h4 {
  color: var(--col-white);
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.aero-footer-col p {
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.aero-footer-col a {
  color: var(--col-ice);
}

.aero-footer-col a:hover {
  color: var(--col-orange);
}

.aero-footer-links a {
  display: block;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.aero-footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(141, 169, 196, 0.2);
  padding-top: 2rem;
  font-size: 0.85rem;
}

/* Responsive Leakage */
@media (max-width: 1024px) {
  .aero-hero-split {
    flex-direction: column;
  }
  .aero-hero-content {
    padding: 10% 5%;
  }
  .aero-deep-profile {
    flex-direction: column;
    gap: 3rem;
  }
  .aero-profile-text, .aero-profile-image {
    max-width: 100%;
    margin: 0;
  }
  .aero-profile-image img {
    box-shadow: 10px 10px 0 var(--col-ice);
  }
}

@media (max-width: 768px) {
  .aero-primary-nav {
    display: none; /* Simplification for small screens */
  }
  .aero-hero-title {
    font-size: 2.5rem;
  }
  .aero-feedback-layout {
    flex-direction: column;
  }
  .aero-form-row {
    flex-direction: column;
    gap: 0;
  }
}
