/* itonomi website styles */

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #1a1a2e;
}

a {
  color: inherit;
  text-decoration: none;
}

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

/* Container */
.container {
  max-width: 800px;
  margin: 0 auto;
}

.container--narrow {
  max-width: 600px;
}

.container--wide {
  max-width: 900px;
}

/* Hero Section */
.hero {
  position: relative;
  background: linear-gradient(135deg, #001031 0%, #0066cc 100%);
  color: white;
  padding: 40px 20px 100px;
  text-align: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.15;
  object-fit: cover;
}

.hero__logo {
  position: absolute;
  top: 18rem;
  right: 2rem;
  z-index: 2;
}

.hero__logo img {
  height: 64px;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding-top: 40px;
  text-align: left;
}

.hero__title {
  font-size: 2.75rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero__text {
  font-size: 1.35rem;
  margin-bottom: 0;
  opacity: 0.95;
  line-height: 1.7;
}

/* Sections */
.section {
  padding: 60px 20px;
}

.section--alt {
  background: #f8f9fa;
  border-left: 4px solid #0066cc;
}

.section__title {
  font-size: 2rem;
  color: #001031;
  margin-bottom: 1.5rem;
}

.section__text {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 1rem;
}

.section__text:last-child {
  margin-bottom: 0;
}

/* Diagrams & Images */
.diagram {
  width: 100%;
  height: auto;
  margin: 2rem auto;
  display: block;
}

.diagram--lg {
  max-width: 700px;
}

.diagram--md {
  max-width: 600px;
}

.diagram--sm {
  max-width: 500px;
}

/* CTA Section */
.cta {
  padding: 60px 20px;
  text-align: center;
}

.cta__headline {
  font-size: 1.25rem;
  color: #001031;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.cta__subtext {
  font-size: 1.125rem;
  color: #666;
  margin-bottom: 1.5rem;
}

.cta__button {
  display: inline-block;
  padding: 14px 28px;
  background: #001031;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.1em;
  transition: background 0.2s ease;
}

.cta__button:hover {
  background: #002050;
}

/* Footer */
.footer {
  background: #001031;
  color: white;
  padding: 2.5rem 2rem;
  margin-top: 0;
}

.footer__container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.footer__col {
  flex: 1;
}

.footer__col--left {
  text-align: left;
}

.footer__col--center {
  text-align: center;
}

.footer__col--right {
  text-align: right;
  opacity: 0.8;
}

.footer__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.7;
  margin-bottom: 0.5rem;
}

.footer__address {
  font-size: 0.9rem;
  line-height: 1.5;
}

.footer__logo {
  height: 48px;
}

/* Responsive */
@media (max-width: 768px) {
  .hero__title {
    font-size: 2rem;
  }

  .hero__text {
    font-size: 1.125rem;
  }

  .hero__logo {
    top: 1rem;
    right: 1rem;
  }

  .hero__logo img {
    height: 48px;
  }

  .section__title {
    font-size: 1.5rem;
  }

  .footer__container {
    flex-direction: column;
    text-align: center;
  }

  .footer__col--left,
  .footer__col--right {
    text-align: center;
  }
}
