:root {
  --smile-blue: #1452b8;
  --smile-blue-dark: #0c3480;
  --smile-cyan: #e9f4ff;
  --smile-gold: #f5a623;
  --smile-ink: #10203b;
}
body {
  color: var(--smile-ink);
  font-family: "Inter", sans-serif;
}
.smile-topbar {
  background: #0b1f47;
  color: #fff;
  font-size: 14px;
}
.smile-topbar a {
  color: #fff;
  text-decoration: none;
}
.smile-topbar .bar-wrap {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  flex-wrap: wrap;
}
.smile-topbar .bar-list {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.smile-header {
  background: linear-gradient(135deg, rgba(20, 82, 184, 0.96), rgba(12, 52, 128, 0.96));
  position: sticky;
  top: 0;
  z-index: 40;
  box-shadow: 0 10px 40px rgba(16, 32, 59, 0.16);
}
.smile-header .nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
}
.smile-header .brand {
  display: inline-flex;
  align-items: center;
}
.smile-header .brand img {
  height: 42px;
  width: auto;
}
.smile-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.smile-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}
.smile-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 14px 24px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.smile-btn:hover {
  transform: translateY(-2px);
}
.smile-btn-primary {
  background: var(--smile-gold);
  color: #10203b;
  box-shadow: 0 14px 30px rgba(245, 166, 35, 0.28);
}
.smile-btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.smile-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, rgba(9, 32, 79, 0.92), rgba(20, 82, 184, 0.88)), url("../../profile/6.png") center/cover no-repeat;
  color: #fff;
}
.smile-hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -140px auto;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(245,166,35,0.28), transparent 70%);
}
.smile-hero .hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
  min-height: 78vh;
  padding: 90px 0;
}
.eyebrow {
  display: inline-block;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 14px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-title {
  font-family: "Oswald", sans-serif;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.04;
  letter-spacing: 0.02em;
  margin-bottom: 18px;
  color: #fff;
}
.hero-copy {
  font-size: 18px;
  line-height: 1.8;
  max-width: 700px;
  color: rgba(255, 255, 255, 0.9);
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.hero-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 32px;
}
.hero-point {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}
.hero-point ion-icon {
  font-size: 20px;
  color: var(--smile-gold);
  margin-top: 3px;
}
.hero-card {
  background: rgba(255, 255, 255, 0.96);
  color: var(--smile-ink);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 28px 70px rgba(4, 17, 45, 0.26);
}
.hero-card img {
  width: 100%;
  border-radius: 20px;
  display: block;
}
.hero-card .mini-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}
.mini-stat {
  background: var(--smile-cyan);
  border-radius: 18px;
  padding: 16px 12px;
  text-align: center;
}
.mini-stat strong {
  display: block;
  font-size: 28px;
  line-height: 1;
  color: var(--smile-blue-dark);
}
.smile-section {
  padding: 88px 0;
}
.section-alt {
  background: #f6f9ff;
}
.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}
.section-heading h1,
.section-heading h2 {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.08;
  margin-bottom: 16px;
  color: #10203b;
}
.section-heading p {
  font-size: 18px;
  line-height: 1.8;
  color: #4b5f82;
}
.intro-grid,
.split-grid,
.cta-grid,
.contact-grid,
.gallery-intro,
.page-hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
  align-items: center;
}
.intro-card,
.panel-card,
.contact-card,
.cta-card,
.sector-card,
.service-card,
.faq-card,
.gallery-card,
.info-card,
.form-shell {
  background: #fff;
  border-radius: 26px;
  padding: 28px;
  box-shadow: 0 18px 45px rgba(14, 39, 84, 0.08);
  height: 100%;
}
.panel-card.blue,
.page-hero {
  background: linear-gradient(180deg, #1452b8, #0c3480);
  color: #fff;
}
.panel-card.blue p,
.panel-card.blue li,
.page-hero p,
.page-hero li {
  color: rgba(255, 255, 255, 0.88);
}
.panel-card h3,
.contact-card h3,
.cta-card h3,
.service-card h3,
.faq-card h3,
.gallery-card h3,
.info-card h3,
.form-shell h3 {
  font-size: 28px;
  margin-bottom: 14px;
}
.image-frame {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 55px rgba(16, 32, 59, 0.14);
}
.image-frame img,
.gallery-photo img,
.gallery-tile img {
  width: 100%;
  display: block;
}
.stat-grid,
.service-grid,
.sector-grid,
.faq-grid,
.contact-card-grid,
.gallery-grid,
.logo-grid,
.field-grid,
.gallery-tile-grid {
  display: grid;
  gap: 22px;
}
.stat-grid {
  grid-template-columns: repeat(3, 1fr);
}
.service-grid {
  grid-template-columns: repeat(3, 1fr);
}
.sector-grid {
  grid-template-columns: repeat(5, 1fr);
}
.faq-grid,
.contact-card-grid,
.field-grid {
  grid-template-columns: repeat(2, 1fr);
}
.gallery-grid {
  grid-template-columns: repeat(2, 1fr);
}
.gallery-tile-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.logo-grid {
  grid-template-columns: repeat(3, 1fr);
}
.stat-card {
  background: #fff;
  border-radius: 24px;
  padding: 26px 22px;
  box-shadow: 0 18px 45px rgba(14, 39, 84, 0.08);
  text-align: center;
}
.stat-card strong {
  display: block;
  font-size: clamp(38px, 5vw, 60px);
  line-height: 1;
  color: var(--smile-blue);
  margin-bottom: 10px;
}
.service-card ion-icon,
.contact-card ion-icon,
.info-card ion-icon,
.form-shell ion-icon {
  font-size: 28px;
  color: var(--smile-blue);
  margin-bottom: 14px;
}
.sector-card {
  padding: 22px;
  text-align: center;
  background: linear-gradient(180deg, #ffffff, #eef5ff);
  border: 1px solid #dbe7fb;
}
.sector-card h3 {
  font-size: 20px;
  margin-bottom: 0;
}
.bullet-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 14px;
}
.bullet-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  line-height: 1.7;
}
.bullet-list ion-icon {
  color: var(--smile-gold);
  font-size: 20px;
  margin-top: 4px;
  flex: 0 0 auto;
}
.cta-band {
  background: linear-gradient(120deg, #0f2e69, #1452b8);
  color: #fff;
}
.cta-band p {
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
}
.contact-card a,
.info-card a {
  color: var(--smile-blue-dark);
  text-decoration: none;
  font-weight: 600;
}
.page-hero {
  border-radius: 32px;
  padding: 42px;
}
.gallery-photo,
.gallery-tile {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(14, 39, 84, 0.12);
  background: #fff;
}
.gallery-photo .caption {
  padding: 18px 20px;
}
.gallery-tile {
  position: relative;
  cursor: pointer;
  border: 0;
  padding: 0;
}
.gallery-tile img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.gallery-tile:hover img,
.gallery-tile:focus-visible img {
  transform: scale(1.06);
}
.gallery-tile .tile-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 16px;
  color: #fff;
  font-weight: 700;
  background: linear-gradient(180deg, transparent, rgba(8, 22, 47, 0.92));
}
.logo-chip {
  background: #fff;
  border-radius: 22px;
  padding: 24px;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 18px 45px rgba(14, 39, 84, 0.08);
  font-weight: 700;
  color: var(--smile-blue-dark);
}
.form-shell p {
  color: #4b5f82;
}
.lead-form {
  display: grid;
  gap: 18px;
}
.field-group {
  display: grid;
  gap: 8px;
}
.field-group label {
  font-weight: 700;
  color: var(--smile-ink);
}
.field-group input,
.field-group select,
.field-group textarea {
  width: 100%;
  border: 1px solid #c7d8f6;
  border-radius: 16px;
  padding: 14px 16px;
  background: #fff;
  color: var(--smile-ink);
  font-size: 16px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.field-group textarea {
  min-height: 140px;
  resize: vertical;
}
.field-group input:focus,
.field-group select:focus,
.field-group textarea:focus {
  outline: none;
  border-color: var(--smile-blue);
  box-shadow: 0 0 0 4px rgba(20, 82, 184, 0.12);
}
.field-help {
  font-size: 13px;
  color: #6b7fa4;
}
.field-error {
  font-size: 13px;
  color: #c33636;
  min-height: 18px;
}
.field-group.invalid input,
.field-group.invalid select,
.field-group.invalid textarea {
  border-color: #c33636;
  box-shadow: 0 0 0 4px rgba(195, 54, 54, 0.12);
}
.form-alert {
  border-radius: 18px;
  padding: 16px 18px;
  font-weight: 600;
}
.form-alert.success {
  background: #e6f8ec;
  color: #1f6a39;
}
.form-alert.error {
  background: #fdecec;
  color: #a42d2d;
}
.is-hidden {
  display: none !important;
}
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-note {
  font-size: 14px;
  color: #6b7fa4;
}
.gallery-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(4, 13, 30, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 24px;
}
.gallery-lightbox.open {
  display: flex;
}
.lightbox-dialog {
  position: relative;
  width: min(1100px, 100%);
  background: #08162f;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.4);
}
.lightbox-media {
  background: #000;
}
.lightbox-media img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  display: block;
}
.lightbox-meta {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  padding: 18px 24px;
  color: #fff;
}
.lightbox-title {
  font-size: 18px;
  font-weight: 700;
}
.lightbox-subtitle {
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
}
.lightbox-close,
.lightbox-nav {
  border: 0;
  border-radius: 999px;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  cursor: pointer;
}
.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
}
.lightbox-nav-group {
  display: flex;
  gap: 10px;
}
.site-footer {
  background: #08162f;
  color: rgba(255, 255, 255, 0.82);
  padding: 56px 0 28px;
}
.site-footer img {
  height: 40px;
  width: auto;
  margin-bottom: 18px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1fr;
  gap: 28px;
}
.site-footer a {
  color: #fff;
  text-decoration: none;
}
.footer-nav {
  display: grid;
  gap: 12px;
}
.footer-bottom {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 14px;
}
@media (max-width: 1199px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .hero-points,
  .service-grid,
  .sector-grid,
  .faq-grid,
  .footer-grid,
  .logo-grid,
  .gallery-grid,
  .gallery-tile-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 991px) {
  .smile-hero .hero-grid,
  .intro-grid,
  .split-grid,
  .cta-grid,
  .contact-grid,
  .contact-card-grid,
  .gallery-intro,
  .page-hero-grid,
  .field-grid {
    grid-template-columns: 1fr;
  }
  .smile-nav {
    gap: 16px;
  }
}
@media (max-width: 767px) {
  .smile-topbar .bar-wrap,
  .smile-header .nav-wrap,
  .hero-actions,
  .footer-bottom,
  .lightbox-meta {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-points,
  .hero-card .mini-stat-grid,
  .stat-grid,
  .service-grid,
  .sector-grid,
  .faq-grid,
  .footer-grid,
  .contact-card-grid,
  .gallery-grid,
  .logo-grid,
  .gallery-tile-grid {
    grid-template-columns: 1fr;
  }
  .smile-hero .hero-grid {
    min-height: auto;
    padding: 72px 0;
  }
  .page-hero {
    padding: 28px;
  }
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.team-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff, #eef5ff);
  border: 1px solid #dbe7fb;
  box-shadow: 0 18px 45px rgba(14, 39, 84, 0.08);
}
.team-card-media {
  position: relative;
  min-height: 240px;
  background: linear-gradient(135deg, rgba(20,82,184,0.18), rgba(12,52,128,0.06));
}
.team-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.9) contrast(1.02);
}
.team-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(8, 22, 47, 0.82);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.06em;
}
.team-card-body {
  padding: 24px;
}
.team-role {
  display: inline-block;
  margin-bottom: 12px;
  padding: 7px 12px;
  border-radius: 999px;
  background: #dce9ff;
  color: var(--smile-blue-dark);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.team-card h3 {
  font-size: 26px;
  margin-bottom: 12px;
}
.team-card p {
  color: #4b5f82;
  line-height: 1.75;
}
.team-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--smile-blue-dark);
  text-decoration: none;
  font-weight: 700;
}
.team-link ion-icon {
  font-size: 18px;
}
.profile-hero {
  background: linear-gradient(135deg, rgba(20, 82, 184, 0.96), rgba(12, 52, 128, 0.96));
  color: #fff;
}
.profile-hero .page-hero {
  background: transparent;
  box-shadow: none;
  border: 1px solid rgba(255,255,255,0.14);
}
.profile-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 32px;
  align-items: start;
}
.profile-photo-card {
  border-radius: 28px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 18px 45px rgba(14, 39, 84, 0.08);
}
.profile-photo-card img {
  width: 100%;
  display: block;
}
.profile-photo-meta {
  padding: 24px;
}
.profile-pill {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  background: #eef5ff;
  color: var(--smile-blue-dark);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.profile-content {
  background: #fff;
  border-radius: 28px;
  padding: 30px;
  box-shadow: 0 18px 45px rgba(14, 39, 84, 0.08);
}
.profile-content h2 {
  font-size: 28px;
  margin-bottom: 14px;
}
.profile-points {
  display: grid;
  gap: 14px;
  margin: 18px 0 0;
}
.profile-point {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  line-height: 1.75;
  color: #364b70;
}
.profile-point ion-icon {
  font-size: 18px;
  color: var(--smile-gold);
  margin-top: 6px;
}
.team-nav-back {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}
@media (max-width: 1199px) {
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 991px) {
  .profile-layout {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 767px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}
