:root {
  --blue: #163d7a;
  --blue-dark: #0f3268;
  --red: #d63d33;
  --text: #18345f;
  --muted: #657391;
  --bg: #f4f5f8;
  --white: #ffffff;
  --border: #d9deea;
  --shadow: 0 10px 30px rgba(14, 38, 77, 0.08);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
}

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

.container {
  width: min(1280px, calc(100% - 80px));
  margin: 0 auto;
}

/* HEADER */
.site-header {
  background: #f8f8fa;
  border-bottom: 1px solid rgba(16, 45, 92, 0.06);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  height: 104px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
  flex-shrink: 0;
}

.logo-main {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -1px;
}

.logo-blue {
  color: var(--blue);
}

.logo-red {
  color: var(--red);
}

.logo-sub {
  margin-top: 6px;
  font-size: 16px;
  letter-spacing: 2px;
  color: #5d6b87;
  font-weight: 600;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  flex: 1;
  justify-content: center;
}

.main-nav a {
  font-size: 16px;
  font-weight: 700;
  color: var(--blue-dark);
  white-space: nowrap;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-shrink: 0;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-dark);
  font-weight: 700;
  font-size: 16px;
}

.flag-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background:
    linear-gradient(to bottom, #e43939 0 33%, #ffffff 33% 66%, #1e58b3 66% 100%);
  display: inline-block;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.05);
}

.lang-switch .divider {
  color: #7c879d;
}

.lang-switch a.active {
  color: var(--blue-dark);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border-radius: 14px;
  transition: 0.2s ease;
  font-weight: 700;
  cursor: pointer;
}

.btn-header {
  background: var(--blue);
  color: var(--white);
  min-height: 62px;
  padding: 0 28px;
  font-size: 18px;
  box-shadow: var(--shadow);
}

.btn-header:hover {
  background: var(--blue-dark);
}

/* HERO */
.hero {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: #f4f5f8;
}

.hero-bg {
 position: absolute;
  top: 0;
  right: 0;
  width: 66%;
  height: 100%;
  background-image: url("asean-hero-4ka.png");
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: right center;
  z-index: 0;
}

.hero-fade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(244,245,248,1) 0%,
    rgba(244,245,248,0.98) 26%,
    rgba(244,245,248,0.94) 38%,
    rgba(244,245,248,0.78) 48%,
    rgba(244,245,248,0.34) 60%,
    rgba(244,245,248,0.08) 72%,
    rgba(244,245,248,0) 82%
  );
}

.hero-inner {
  position: relative;
  z-index: 2;
  min-height: 620px;
  display: flex;
  align-items: center;
}

.hero-left {
  width: 100%;
  max-width: 760px;
  padding-top: 0;
}

.hero h1 {
  font-size: 66px;
  line-height: 1.04;
  font-weight: 800;
  letter-spacing: -1.8px;
  color: var(--blue);
}

.hero h1 span {
  color: var(--red);
}

.hero-accent-text {
  margin-top: 34px;
  padding-left: 22px;
  border-left: 4px solid var(--red);
}

.hero-accent-text p {
  font-size: 22px;
  line-height: 1.45;
  color: #28497f;
  font-weight: 400;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
  padding: 18px 30px;
  min-width: 210px;
  min-height: 56px;
  font-size: 16px;
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  background: var(--blue-dark);
}

.btn-outline {
  background: rgba(255,255,255,0.88);
  color: var(--blue);
  border: 2px solid #97a5c2;
  padding: 18px 30px;
  min-width: 230px;
  min-height: 56px;
  font-size: 16px;
}

.btn-outline:hover {
  background: #ffffff;
}

.arrow {
  font-size: 20px;
  line-height: 1;
}
/* STATS */
.stats-wrap {
  position: relative;
  margin-top: -88px;
  z-index: 10;
}

.stats-card {
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(4px);
  border-radius: 18px;
  box-shadow: 0 10px 35px rgba(16, 45, 92, 0.08);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 26px 30px;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 96px;
}

.stat-icon {
  flex-shrink: 0;
  width: 52px;
  text-align: center;
  font-size: 40px;
  color: var(--blue);
  line-height: 1;
}

.stat-number {
  font-size: 28px;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 6px;
}

.stat-label {
  font-size: 16px;
  color: #657391;
  line-height: 1.3;
}

/* WHY */
.why-section {
  padding: 62px 0 0;
}

.section-head h2 {
  font-size: 58px;
  line-height: 1.1;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: -1px;
}

.section-head h2 span {
  color: var(--red);
}

.section-line {
  margin-top: 20px;
  width: 170px;
  height: 4px;
  background: var(--red);
  border-radius: 999px;
}

.benefit-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.benefit-card {
  background: rgba(255,255,255,0.96);
  border-radius: 22px;
  padding: 34px 32px 24px;
  box-shadow: 0 8px 24px rgba(16, 45, 92, 0.06);
  min-height: 240px;
}

.benefit-icon {
  font-size: 42px;
  line-height: 1;
  color: var(--blue);
  margin-bottom: 18px;
}

.benefit-icon-red {
  color: var(--red);
}

.benefit-card h3 {
  font-size: 27px;
  line-height: 1.1;
  color: var(--blue);
  font-weight: 800;
  margin-bottom: 14px;
}

.benefit-card p {
  font-size: 18px;
  line-height: 1.45;
  color: #697694;
}

/* ASEAN STRIP */
.asean-strip {
  background: linear-gradient(180deg, #0f3268 0%, #0b2855 100%);
  margin-top: -22px;
  padding: 74px 0 28px;
  color: #fff;
}

.asean-strip-inner {
  display: flex;
  align-items: center;
  gap: 38px;
}

.asean-title {
  font-size: 28px;
  font-weight: 700;
  flex-shrink: 0;
}

.country-list {
  display: grid;
  grid-template-columns: repeat(10, minmax(70px, 1fr));
  gap: 18px;
  width: 100%;
  align-items: start;
}

.country {
  text-align: center;
  color: #fff;
  font-size: 15px;
  line-height: 1.2;
}

.country-flag {
  display: block;
  font-size: 40px;
  margin-bottom: 8px;
}

/* LOWER CONTENT */
.content-section {
  padding: 56px 0 80px;
  background: #f4f5f8;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.content-box {
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 8px 24px rgba(16, 45, 92, 0.05);
}

.content-box h2 {
  font-size: 28px;
  color: var(--blue);
  margin-bottom: 14px;
}

.content-box p {
  font-size: 17px;
  line-height: 1.6;
  color: #5f6c89;
}

/* RESPONSIVE */
@media (max-width: 1280px) {
  .container {
    width: min(1200px, calc(100% - 48px));
  }

  .logo-main {
    font-size: 34px;
  }

  .logo-sub {
    font-size: 13px;
  }

  .main-nav {
    gap: 22px;
  }

  .main-nav a {
    font-size: 14px;
  }

  .hero h1 {
    font-size: 64px;
  }

  .hero-accent-text p {
    font-size: 25px;
  }

  .section-head h2 {
    font-size: 48px;
  }
}

@media (max-width: 1080px) {
  .site-header {
    position: static;
  }

  .header-inner {
    height: auto;
    padding: 18px 0;
    flex-wrap: wrap;
    justify-content: center;
  }

  .main-nav {
    order: 3;
    width: 100%;
    flex-wrap: wrap;
    gap: 14px 18px;
    margin-top: 8px;
  }

  .hero {
    min-height: auto;
    padding: 64px 0 130px;
  }

  .hero-inner {
    min-height: auto;
  }

  .hero h1 {
    font-size: 52px;
  }

  .hero-accent-text p {
    font-size: 22px;
  }

  .stats-card {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .asean-strip-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .country-list {
    grid-template-columns: repeat(5, 1fr);
  }

  .content-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .container {
    width: calc(100% - 28px);
  }

  .logo-main {
    font-size: 28px;
  }

  .logo-sub {
    font-size: 11px;
    letter-spacing: 1.5px;
  }

  .header-right {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .main-nav {
    display: none;
  }

  .hero {
    padding: 42px 0 110px;
  }

  .hero-bg {
    background-position: 72% center;
  }

  .hero-fade {
    background:
      linear-gradient(
        180deg,
        rgba(244,245,248,0.94) 0%,
        rgba(244,245,248,0.86) 26%,
        rgba(244,245,248,0.72) 44%,
        rgba(244,245,248,0.45) 58%,
        rgba(244,245,248,0.18) 72%,
        rgba(244,245,248,0) 100%
      );
  }

  .hero h1 {
    font-size: 38px;
    line-height: 1.08;
    letter-spacing: -1px;
  }

  .hero-accent-text {
    margin-top: 24px;
    padding-left: 16px;
  }

  .hero-accent-text p {
    font-size: 18px;
    line-height: 1.4;
  }

  .hero-actions {
    margin-top: 28px;
    gap: 14px;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
    min-width: 0;
    min-height: 62px;
    font-size: 17px;
    padding: 16px 20px;
  }

  .stats-wrap {
    margin-top: -56px;
  }

  .stats-card {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .stat-item {
    min-height: 72px;
  }

  .section-head h2 {
    font-size: 36px;
  }

  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .benefit-card {
    min-height: auto;
  }

  .asean-strip {
    padding-top: 52px;
  }

  .country-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .country-flag {
    font-size: 34px;
  }
}
/* MOBILE / TABLET RESPONSIVE */
@media (max-width: 1024px) {
  .container {
    width: calc(100% - 32px);
  }

  .header-inner {
    height: auto;
    padding: 16px 0;
    flex-wrap: wrap;
    gap: 14px;
  }

  .main-nav {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px 18px;
  }

  .main-nav a {
    font-size: 14px;
  }

  .header-right {
    gap: 14px;
  }

  .hero {
    min-height: auto;
    padding: 40px 0 90px;
  }

  .hero-bg {
    width: 100%;
    height: 100%;
    background-size: auto 100%;
    background-position: right center;
    opacity: 0.95;
  }

  .hero-fade {
    background: linear-gradient(
      180deg,
      rgba(244,245,248,0.96) 0%,
      rgba(244,245,248,0.90) 24%,
      rgba(244,245,248,0.78) 44%,
      rgba(244,245,248,0.46) 66%,
      rgba(244,245,248,0.10) 82%,
      rgba(244,245,248,0) 100%
    );
  }

  .hero-inner {
    min-height: auto;
    align-items: flex-start;
  }

  .hero-left {
    max-width: 100%;
  }

  .hero h1 {
    font-size: 52px;
    line-height: 1.08;
    letter-spacing: -1px;
  }

  .hero-accent-text p {
    font-size: 21px;
  }

  .hero-actions {
    gap: 14px;
  }

  .btn-primary,
  .btn-outline {
    min-width: 0;
    min-height: 56px;
    font-size: 16px;
    padding: 16px 22px;
  }

  .stats-wrap {
    margin-top: -42px;
  }

  .stats-card {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    padding: 20px;
  }

  .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .country-list {
    grid-template-columns: repeat(5, 1fr);
  }

  .content-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .site-header {
    position: static;
  }

  .container {
    width: calc(100% - 24px);
  }

  .logo-main {
    font-size: 32px;
  }

  .logo-sub {
    font-size: 12px;
    letter-spacing: 1.2px;
  }

  .main-nav {
    display: none;
  }

  .header-inner {
    justify-content: space-between;
    align-items: center;
  }

  .header-right {
    gap: 10px;
  }

  .lang-switch {
    font-size: 14px;
  }

  .btn-header {
    min-height: 48px;
    padding: 0 16px;
    font-size: 14px;
    border-radius: 12px;
  }

  .hero {
    padding: 28px 0 76px;
  }

  .hero-bg {
    width: 100%;
    background-size: cover;
    background-position: 68% center;
  }

  .hero h1 {
    font-size: 40px;
    line-height: 1.08;
  }

  .hero-accent-text {
    margin-top: 22px;
    padding-left: 14px;
  }

  .hero-accent-text p {
    font-size: 18px;
    line-height: 1.42;
  }

  .hero-actions {
    margin-top: 24px;
    flex-direction: column;
    align-items: stretch;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
  }

  .stats-wrap {
    margin-top: -26px;
  }

  .stats-card {
    grid-template-columns: 1fr;
    border-radius: 16px;
  }

  .stat-item {
    min-height: 72px;
  }

  .stat-number {
    font-size: 24px;
  }

  .stat-label {
    font-size: 14px;
  }

  .why-section {
    padding-top: 40px;
  }

  .section-head h2 {
    font-size: 36px;
    line-height: 1.1;
  }

  .section-line {
    width: 110px;
    margin-top: 14px;
  }

  .benefit-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .benefit-card {
    min-height: auto;
    padding: 24px 22px;
  }

  .benefit-card h3 {
    font-size: 28px;
  }

  .benefit-card p {
    font-size: 16px;
  }

  .asean-strip {
    padding: 48px 0 24px;
  }

  .asean-strip-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .asean-title {
    font-size: 24px;
  }

  .country-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 10px;
  }

  .country-flag {
    font-size: 34px;
  }

  .content-section {
    padding: 40px 0 60px;
  }

  .content-box {
    padding: 22px;
  }

  .content-box h2 {
    font-size: 24px;
  }

  .content-box p {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .logo-main {
    font-size: 28px;
  }

  .logo-sub {
    font-size: 10px;
  }

  .flag-dot {
    width: 18px;
    height: 18px;
  }

  .lang-switch {
    font-size: 13px;
  }

  .btn-header {
    font-size: 13px;
    min-height: 44px;
    padding: 0 14px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero-accent-text p {
    font-size: 17px;
  }

  .section-head h2 {
    font-size: 32px;
  }

  .benefit-card h3 {
    font-size: 24px;
  }
}
.contact-form {
  max-width: 700px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 12px;
  font: inherit;
  background: var(--white);
  color: var(--text);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(22, 61, 122, 0.08);
}

.contact-form button {
  width: fit-content;
  padding: 14px 24px;
  border: none;
  border-radius: 12px;
  background: var(--blue);
  color: var(--white);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s ease;
}

.contact-form button:hover {
  transform: translateY(-1px);
  background: var(--blue-dark);
}
/* EXPORT BENEFITS PAGE */

.page-hero {
  position: relative;
  width: 100%;
  min-height: 800px;
  display: flex;
  align-items: stretch;
  justify-content: center;
  overflow: hidden;
}

.export-hero {
  background: url("images/kuala-lumpur-hero-1.png") center / cover no-repeat;
}

.page-hero-overlay {
  width: 100%;
  min-height: 100%;
  display: flex;
  align-items: center;
  background: linear-gradient(
    90deg,
    rgba(8, 29, 70, 0.62) 0%,
    rgba(8, 29, 70, 0.28) 45%,
    rgba(8, 29, 70, 0.10) 100%
  );
}

.page-hero-text {
  max-width: 680px;
  color: #ffffff;
  padding: 90px 0 80px;
}

.hero-kicker {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.9;
}

.page-hero-text h1 {
  margin: 0 0 18px;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.05;
  color: #ffffff;
}

.page-hero-text p {
  margin: 0;
  max-width: 620px;
  font-size: 1.12rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.95);
}

.export-page {
  position: relative;
  padding: 0 0 80px;
  background: linear-gradient(
    to bottom,
    rgba(245, 248, 252, 0.92) 0%,
    rgba(245, 248, 252, 0.82) 60%,
    rgba(245, 248, 252, 0.72) 100%
  );
  overflow: hidden;
}
.export-page::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 700px;

  background: 
    linear-gradient(
      to top,
      rgba(245, 248, 252, 0.0) 0%,
      rgba(245, 248, 252, 0.6) 60%,
      rgba(245, 248, 252, 1) 100%
    ),
    url("images/kuala-lumpur-hero-1.png") center 25% / cover no-repeat;

  z-index: 0;
}
.export-content-wrap,
.cta-panel,
.content-card {
  position: relative;
  z-index: 1;
}

.content-card {
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  padding: 56px 54px;
  margin-bottom: 34px;
}

.content-card h2 {
  margin: 0 0 22px;
  font-size: 2.05rem;
  line-height: 1.15;
  color: var(--blue-dark);
}

.content-card h3 {
  margin: 34px 0 16px;
  font-size: 1.9rem;
  line-height: 1.2;
  color: var(--blue-dark);
}

.content-card p {
  margin: 0 0 18px;
  font-size: 1.08rem;
  line-height: 1.85;
  color: #31456b;
}

.benefits-list {
  margin: 0 0 8px 0;
  padding-left: 22px;
}

.benefits-list li {
  margin-bottom: 12px;
  font-size: 1.05rem;
  line-height: 1.75;
  color: #31456b;
}

.cta-panel {
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(14, 35, 78, 0.08);
  padding: 42px 44px;
  max-width: 980px;
  margin: 0 auto;
}

.cta-panel h3 {
  margin: 0 0 14px;
  font-size: 2rem;
  line-height: 1.2;
  color: var(--blue-dark);
}

.cta-panel p {
  margin: 0 0 24px;
  max-width: 720px;
  font-size: 1.08rem;
  line-height: 1.8;
  color: #41557a;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 14px;
  background: var(--blue);
  color: #ffffff;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 10px 24px rgba(22, 61, 122, 0.20);
}

.btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
}

.site-footer {
  padding: 20px 0 30px;
  background: transparent;
}

.site-footer p {
  margin: 0;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .page-hero,
  .page-hero-overlay {
    min-height: 340px;
  }

  .page-hero-text {
    padding: 72px 0 64px;
  }

  .export-content-wrap {
    margin-top: -40px;
  }

  .content-card {
    padding: 36px 24px;
    border-radius: 22px;
  }

  .content-card h2 {
    font-size: 1.8rem;
  }

  .content-card h3 {
    font-size: 1.45rem;
  }

  .cta-panel {
    padding: 30px 24px;
    border-radius: 20px;
  }

  .cta-panel h3 {
    font-size: 1.55rem;
  }
}

@media (max-width: 640px) {
  .page-hero,
  .page-hero-overlay {
    min-height: 290px;
  }

  .page-hero-text p,
  .content-card p,
  .benefits-list li,
  .cta-panel p {
    font-size: 1rem;
  }

  .btn-primary {
    width: 100%;
  }
}
.graf img {
  width: 100%;
  max-width: 700px; /* 👈 ovo kontrolira širinu */
  height: auto;
  margin: 0 auto;
  display: block;
}
