*, *::before, *::after { 
  box-sizing: border-box; 
  margin: 0; 
  padding: 0; 
}


:root {
--deep: #0d0812;
--mid: #1a0d2e;
--purple: #6c2fa0;
--violet: #8b3fbf;
--glow: #a855f7;
--muted: #ffffff8c;
--white: #fff;
--btn-bg: #ffffff14;
}


html, body {
background: var(--deep);
color: var(--white);
font-family: 'Inter', sans-serif;
overflow-x: hidden;
}

/* ── NOISE TEXTURE OVERLAY ── */

body::before {
content: '';
position: fixed; inset: 0;
background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.08'/%3E%3C/svg%3E");
background-size: 200px 200px;
pointer-events: none;
z-index: 0;
}

/* ── RADIAL GLOW ── */

.hero-glow {
position: absolute;
top: -10%;
left: 50%;
transform: translateX(-50%);
width: 720px;
height: 720px;
background: radial-gradient(ellipse at center, #a855f773 0%, #6c2fa02e 45%, transparent 72%);
pointer-events: none;
z-index: 0;
}

/* ── NAVBAR ── */
.navbar {
background: transparent;
padding: 1.25rem 0;
position: relative;
z-index: 10;
}

.navbar-brand {
display: flex;
align-items: center;
gap: 0.5rem;
font-family: 'Manrope', sans-serif;
font-weight: 700;
font-size: 1.15rem;
color: var(--white) !important;
letter-spacing: -0.01em;
}

.logo-icon {
width: 36px;
height: 36px;
display: flex;
align-items: center;
justify-content: center;
}

.logo-icon svg { 
  width: 36px; 
  height: 20px; 
}

.navbar-nav .nav-link {
color: #ffffffb8 !important;
font-size: 0.92rem;
font-weight: 500;
padding: 0.25rem 1rem !important;
transition: color 0.2s;
}


.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
   color: var(--white) !important; 
  }


.navbar-nav .nav-link.active {
border-bottom: 2px solid var(--white);
padding-bottom: 2px !important;
}

.btn-contact {
background: #8a3fbf80;
border: 1px solid #a855f780;
color: var(--white);
border-radius: 50px;
padding: 0.5rem 1.4rem;
font-size: 0.9rem;
font-weight: 500;
transition: background 0.2s, border-color 0.2s;
backdrop-filter: blur(4px);
}

.btn-contact:hover {
background: #a855f78c;
border-color: var(--glow);
color: var(--white);
}

/* ── HERO ── */

.hero-section {
position: relative;
min-height: 88vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
padding: 5rem 1rem 3rem;
overflow: hidden;
}

.hero-eyebrow {
display: inline-flex;
align-items: center;
gap: 0.45rem;
font-size: 0.9rem;
font-weight: 500;
color: #ffffffbf;
margin-bottom: 1.5rem;
letter-spacing: 0.01em;
}


.hero-eyebrow .star {
color: var(--glow);
font-size: 1rem;
}


.hero-headline {
font-family: 'Manrope', sans-serif;
font-weight: 900;
font-size: clamp(2.8rem, 7vw, 5.2rem);
line-height: 1.08;
letter-spacing: -0.03em;
max-width: 820px;
margin: 0 auto 1.5rem;
}

.hero-subtext {
font-size: 1rem;
color: var(--muted);
max-width: 480px;
margin: 0 auto 2.5rem;
line-height: 1.65;
font-weight: 400;
}

/* ── BUTTONS ── */

.btn-primary-cta {
background: #8a3fbfa6;
border: 1px solid #a855f78c;
color: var(--white);
border-radius: 50px;
padding: 0.75rem 1.9rem;
font-size: 0.95rem;
font-weight: 600;
backdrop-filter: blur(8px);
transition: background 0.2s, transform 0.15s;
}

.btn-primary-cta:hover {
background: #a855f7b3;
color: var(--white);
transform: translateY(-1px);
}


.btn-secondary-cta {
background: transparent;
border: 1px solid #ffffff59;
color: var(--white);
border-radius: 50px;
padding: 0.75rem 1.9rem;
font-size: 0.95rem;
font-weight: 500;
transition: border-color 0.2s, background 0.2s, transform 0.15s;
}

.btn-secondary-cta:hover {
border-color: #ffffffb3;
background: #ffffff0f;
color: var(--white);
transform: translateY(-1px);
}


/* ── STATS BAR ── */

.stats-bar {
position: relative;
z-index: 2;
padding: 3.5rem 0 2rem;
}

.stat-item {
text-align: center;
}


.stat-number {
font-family: 'Manrope', sans-serif;
font-weight: 800;
font-size: clamp(2.2rem, 5vw, 2.8rem);
color: #a855f7d9;
letter-spacing: -0.02em;
line-height: 1.1;
}


.stat-label {
font-size: 0.9rem;
color: var(--muted);
margin-top: 0.3rem;
font-weight: 400;
}


/* Dividers between stats */

.stat-divider {
width: 1px;
height: 48px;
background: #ffffff1f;
align-self: center;
}

/* ── PHONE MOCKUP ── */

.phone-mockup-wrap {
position: absolute;
top: -2%;
left: 50%;
transform: translateX(-50%);
z-index: 1;
}


.phone-bar {
width: 120px;
height: 22px;
background: #111;
border-radius: 0 0 14px 14px;
margin: 0 auto;
}


/* Responsive */

@media (width > 768px) {
  .stat-divider {
    display: none; 
  }

  .stat-item { 
    padding: 1rem 0; 
  }

  .hero-headline { 
    font-size: 2.4rem; 
  }
}

/* ── CORE CAPABILITIES ── */
.caps-section {
  background: var(--white);
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.caps-section::before {
  content: '';
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse at center, #a855f715 0%, #6c2fa008 50%, transparent 72%);
  pointer-events: none;
}

.caps-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--glow);
  margin-bottom: 1rem;
}

.caps-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  color: var(--deep);
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.caps-subtitle {
  font-size: 0.95rem;
  color: #555;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.65;
}

.cap-card {
  background: #f5f3ff;
  border: 1px solid #ede9fe;
  border-radius: 20px;
  padding: 2rem 1.5rem 1.75rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  height: 100%;
  transition: border-color 0.25s, background 0.25s, transform 0.2s;
}

.cap-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--glow), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.cap-card:hover {
  border-color: var(--purple);
  background: #ede9fe;
  transform: translateY(-4px);
}

.cap-card:hover::before {
  opacity: 0.4;
}

.cap-number {
  position: absolute;
  top: 1rem;
  left: 1.25rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: #c4b5fd;
  letter-spacing: 0.05em;
  font-family: 'Manrope', sans-serif;
}

.cap-icon-wrap {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid #ede9fe;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.cap-icon-wrap .icon-inner {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 26px;
}

.icon-ai   { background: var(--purple); border: 1px solid var(--violet); color: var(--white); }
.icon-iot  { background: var(--mid);    border: 1px solid var(--purple); color: var(--glow);  }
.icon-rfid { background: var(--violet); border: 1px solid var(--glow);   color: var(--white); }
.icon-fin  { background: var(--purple); border: 1px solid var(--violet); color: var(--glow);  }

.cap-name {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--deep);
  margin-bottom: 0.6rem;
  letter-spacing: 0.02em;
}

.cap-desc {
  font-size: 0.83rem;
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}

.cap-tag {
  display: inline-block;
  margin-top: 1.1rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  background: var(--white);
  color: var(--glow);
  border: 1px solid var(--purple);
}

/* ── SMART CITIES ── */
.smart-section {
  background: var(--white);
  padding: 5rem 0 4rem;
  position: relative;
}

.smart-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--purple);
  letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
}

.smart-eyebrow span {
  width: 10px;
  height: 10px;
  background: var(--glow);
  border-radius: 2px;
  display: inline-block;
  transform: rotate(45deg);
}

.smart-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: clamp(1.7rem, 4vw, 2.2rem);
  color: var(--deep);
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.smart-subtitle {
  font-size: 0.92rem;
  color: #555;
  max-width: 420px;
  margin: 0 auto;
  line-height: 1.65;
}

.smart-card {
  background: var(--white);
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 2rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  transition: box-shadow 0.25s, transform 0.2s, border-color 0.25s;
}

.smart-card:hover {
  box-shadow: 0 8px 32px #6c2fa018;
  border-color: #d8b4fe;
  transform: translateY(-4px);
}

.smart-card-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #f5f3ff;
  border: 1px solid #ede9fe;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 48px;
  color: var(--purple);
}

.smart-card-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--glow);
  margin-bottom: 0.5rem;
}

.smart-card-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--deep);
  margin-bottom: 0.65rem;
  line-height: 1.3;
}

.smart-card-desc {
  font-size: 0.82rem;
  color: #6b7280;
  line-height: 1.6;
  margin: 0 0 1.5rem;
  flex: 1;
}

.btn-explore {
  background: var(--purple);
  border: none;
  color: var(--white);
  border-radius: 50px;
  padding: 0.55rem 1.6rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, transform 0.15s;
}

.btn-explore:hover {
  background: var(--violet);
  color: var(--white);
  transform: translateY(-1px);
}

/* ── TRANSFORMING INDUSTRIES ── */
.industries-section {
  background: var(--white);
  padding: 5rem 0 4rem;
}

.industries-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--purple);
  letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
}

.industries-eyebrow span {
  width: 10px;
  height: 10px;
  background: var(--glow);
  border-radius: 2px;
  display: inline-block;
  transform: rotate(45deg);
}

.industries-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: clamp(1.7rem, 4vw, 2.2rem);
  color: var(--deep);
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.industries-subtitle {
  font-size: 0.92rem;
  color: #6b7280;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.65;
}

.industries-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 768px) {
  .industries-layout { grid-template-columns: 1fr; }
  .industries-img-col { order: -1; }
}

.sector-list { display: flex; flex-direction: column; }

.sector-item {
  padding: 1.25rem 0;
  border-bottom: 1px solid #f3f4f6;
  transition: padding-left 0.2s;
  cursor: pointer;
}

.sector-item:first-child { border-top: 1px solid #f3f4f6; }
.sector-item:hover { padding-left: 6px; }

.sector-item-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--deep);
  margin-bottom: 0.3rem;
}

.sector-item-desc {
  font-size: 0.82rem;
  color: #6b7280;
  line-height: 1.55;
  margin: 0;
}

.industries-img-col {
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  min-height: 340px;
}

.industries-img-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a0d2eee 0%, #6c2fa099 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem;
}

.img-overlay-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--white);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.3;
}

.img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.img-grid-item {
  background: #ffffff15;
  border: 1px solid #ffffff20;
  border-radius: 10px;
  padding: 0.6rem 0.75rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.img-grid-item i {
  font-size: 14px;
  margin-right: 4px;
  vertical-align: -2px;
  color: var(--glow);
}

.img-overlay-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.img-tag {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--white);
  background: #ffffff20;
  border: 1px solid #ffffff30;
  border-radius: 50px;
  padding: 0.2rem 0.6rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ── VALUE DELIVERY ── */
.value-section {
  background: var(--white);
  padding: 5rem 0 4rem;
}

.value-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--purple);
  letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
}

.value-eyebrow span {
  width: 10px;
  height: 10px;
  background: var(--glow);
  border-radius: 2px;
  display: inline-block;
  transform: rotate(45deg);
}

.value-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: clamp(1.7rem, 4vw, 2.2rem);
  color: var(--deep);
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.value-subtitle {
  font-size: 0.92rem;
  color: #6b7280;
  max-width: 460px;
  margin: 0 auto;
  line-height: 1.65;
}

.value-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 768px) {
  .value-layout { grid-template-columns: 1fr; }
  .value-img-col { order: -1; }
}

.value-img-col {
  border-radius: 18px;
  overflow: hidden;
  min-height: 360px;
  background: linear-gradient(135deg, var(--mid) 0%, var(--deep) 100%);
}

.value-img-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.value-list {
  display: flex;
  flex-direction: column;
}

.value-item {
  padding: 1.4rem 0;
  border-bottom: 1px solid #f3f4f6;
  transition: padding-left 0.2s;
}

.value-item:first-child { border-top: 1px solid #f3f4f6; }
.value-item:hover { padding-left: 6px; }

.value-item-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.45rem;
}

.value-item-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #f5f3ff;
  border: 1px solid #ede9fe;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
  color: var(--purple);
}

.value-item-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--deep);
  margin: 0;
}

.value-item-desc {
  font-size: 0.83rem;
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
  padding-left: 48px;
}

/* ── iTAKANE ADVANTAGES ── */

.advantage-section {
    background: var(--white);
    padding: 5rem 0;
}

.adv-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--purple);
    letter-spacing: 0.04em;
    margin-bottom: 1rem;
}

.adv-eyebrow span {
    width: 10px;
    height: 10px;
    background: var(--glow);
    border-radius: 2px;
    transform: rotate(45deg);
    display: inline-block;
}

.adv-title {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--deep);
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
}

.adv-subtitle {
    font-size: 0.92rem;
    color: #6b7280;
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.65;
}

/* Cards */

.adv-card {
    background: var(--white);
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    height: 100%;

    box-shadow: 0 8px 24px #0000000f;

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}

.adv-card:hover {
    transform: translateY(-6px);

    border-color: #d8b4fe;

    box-shadow:
        0 15px 40px #6c2fa026;
}

/* Icon */

.adv-icon {
    width: 110px;
    height: 110px;
    margin: 0 auto 1.5rem;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--deep);
    font-size: 4rem;
}

.adv-card-title {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--deep);
    margin-bottom: 0.85rem;
}

.adv-card-desc {
    font-size: 0.83rem;
    color: #6b7280;
    line-height: 1.65;
    margin: 0;
    max-width: 230px;
    margin-inline: auto;
}

.adv-icon i {
    font-size: 5rem;
    color: var(--purple);
}

/* ── OUR PLANNING ───────────────────── */

.planning-section {
    background: var(--white);
    padding: 5rem 0;
}

.planning-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--purple);
    letter-spacing: 0.04em;
    margin-bottom: 1rem;
}

.planning-eyebrow span {
    width: 10px;
    height: 10px;
    background: var(--glow);
    border-radius: 2px;
    transform: rotate(45deg);
    display: inline-block;
}

.planning-title {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--deep);
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
}

.planning-subtitle {
    font-size: 0.92rem;
    color: #6b7280;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.65;
}

/* Main Card */

.planning-card {
    background: var(--white);
    border: 1px solid #d1d5db;
    border-radius: 3rem;
    padding: 4rem 3rem;
    max-width: 1050px;
    margin: 0 auto;
}

/* Content */

.planning-content {
    padding: 0 2rem;
}

.planning-heading {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--deep);
    margin-bottom: 2rem;
}

.planning-text {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.8;
    margin: 0;
    max-width: 320px;
}

/* Divider */

.planning-divider {
    width: 1px;
    height: 170px;
    background: #d1d5db;
}

/* Mobile */

@media (width > 768px) {

    .planning-card {
        border-radius: 2rem;
        padding: 2rem;
    }

    .planning-content {
        text-align: center;
        padding: 1rem 0;
    }

    .planning-heading {
        margin-bottom: 1rem;
        font-size: 1.4rem;
    }

    .planning-text {
        max-width: 100%;
    }
}

/* ===== FOOTER ===== */
.footer { background: #070612; }
 
.footer-brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 12px;
}
 
.footer-tagline { color: #fff6; font-size: 0.88rem; line-height: 1.65; }
 
.social-links { display: flex; gap: 10px; flex-wrap: wrap; }
 
.social-link {
  width: 38px;
  height: 38px;
  background: #ffffff0f;
  border: 1px solid #ffffff1a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff80;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all var(--transition);
}
 
.social-link:hover {
  background: #00c9b126;
  border-color: var(--clr-teal);
  color: var(--clr-teal);
}
 
.footer-heading {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ffffff80;
  margin-bottom: 16px;
}
 
.footer-links { 
    list-style: none; 
    padding: 0; 
    margin: 0; 
}
 
.footer-links li { 
    margin-bottom: 10px; 
}
 
.footer-links a {
  color: #ffffff80;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color var(--transition);
}
 
.footer-links a:hover { 
  color: var(--clr-teal); 
}
 
.footer-divider { 
  border-color: #ffffff0f; 
}
 
.footer-copy { 
  color: #ffffff40; 
  font-size: 0.82rem; 
  margin-bottom: 0; 
}
 
.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    font-size: .82rem;
    font-weight: 600;
    color: var(--purple);
    letter-spacing: .04em;
}

.section-eyebrow span {
    width: 10px;
    height: 10px;
    background: var(--glow);
    border-radius: 2px;
    transform: rotate(45deg);
}

.section-title {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    color: var(--deep);
    letter-spacing: -0.02em;
    line-height: 1.15;
}

