@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {

  /* ========================================
     COLORS
  ======================================== */

  --orange: #F36A2D;
  --orange-dark: #E8561B;
  --orange-light: #FF8A57;
  --button-hover: #D94D15;

  --navy: #1E1F24;

  --footer-main: #111317;
  --footer-warm: #2A2D34;

  --bg-main: #F8F5F1;
  --bg-sec: #F3EEE8;
  --bg-section: #FCF9F5;

  --orange-tint: #FFF1E8;

  --border-main: #E8E8E8;
  --border-light: #F0F0F0;
  --border-accent: #FFD2BE;

  --text-heading: #1F2127;
  --text-body: #5F6673;
  --text-muted: #8C94A3;
  --text-white: #FFFFFF;
  --text-orange: #F36A2D;

  --icon-main: #F36A2D;
  --icon-sec: #72B043;
  --icon-dark: #1F2127;

  /* ========================================
     TYPOGRAPHY
  ======================================== */

  --font-primary: 'Manrope', sans-serif;
  --font-secondary: 'Inter', sans-serif;

  /* ========================================
     LAYOUT
  ======================================== */

  --container-width: 1200px;

  --section-padding: 80px;
  --section-padding-sm: 50px;
  --section-padding-lg: 120px;

  --content-padding: 40px;

  /* ========================================
     RADIUS
  ======================================== */

  --radius-sm: 5px;
  --radius-md: 10px;
  --radius-lg: 16px;

  /* ========================================
     SHADOWS
  ======================================== */

  --shadow-sm: 0 2px 5px rgba(0,0,0,0.05);
  --shadow-md: 0 10px 30px rgba(0,0,0,0.05);

  /* ========================================
     TRANSITIONS
  ======================================== */

  --transition: all 0.3s ease;
}

/* ========================================
   RESET
======================================== */

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

/* ========================================
   BASE STYLES
======================================== */

body {
  font-family: var(--font-primary);
  background-color: var(--bg-main);
  color: var(--text-body);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: var(--text-heading);
  transition: var(--transition);
}

ul {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--text-heading);
  line-height: 1.2;
}

/* ========================================
   LAYOUT UTILITIES
======================================== */

.container {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 10px;
}

.page-content {
  padding: var(--content-padding) 0;
}

.section {
  padding: var(--section-padding) 0;
}

.section-sm {
  padding: var(--section-padding-sm) 0;
}

.section-lg {
  padding: var(--section-padding-lg) 0;
}

.section-light {
  background-color: var(--bg-section);
}

.section-alt {
  background-color: var(--bg-sec);
}

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

/* ========================================
   FLEX UTILITIES
======================================== */

.flex {
  display: flex;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

/* ========================================
   GRID UTILITIES
======================================== */

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

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* ========================================
   BUTTONS
======================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border: none;
  border-radius: var(--radius-sm);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background-color: var(--orange);
  color: var(--text-white);
}

.btn-primary:hover {
  background-color: var(--button-hover);
  color: var(--text-white);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--orange);
  color: var(--orange);
}

.btn-outline:hover {
  background: var(--orange);
  color: var(--text-white);
}

/* ========================================
   CARD COMPONENT
======================================== */

.card {
  background: var(--text-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 30px;
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

/* ========================================
   SECTION HEADERS
======================================== */

.section-header {
  margin-bottom: 50px;
}

.section-subtitle {
  color: var(--orange);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.section-description {
  max-width: 700px;
  color: var(--text-muted);
}

/* ========================================
   TOP BAR
======================================== */
.top-bar {
  background: var(--orange);
  color: var(--text-white);
  padding: 10px 0;
  font-size: 0.85rem;
  font-family: var(--font-secondary);
}

.top-bar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top-bar-left p,
.top-bar-right p {
  display: flex;
  align-items: center;
  gap: 10px;
}

.topbar-icon {
  width: 16px;
  height: 16px;
  object-fit: contain;
}
/* ========================================
   HEADER
======================================== */

.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;

  background: var(--bg-main);

  box-shadow: none;
}

.header-container {
  display: flex;
  align-items: center;
  min-height: 92px;
  gap: 50px;
}

.header-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.header-logo img {
  height: 58px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  display: block;
}

/* ========================================
   NAVIGATION
======================================== */

.main-nav {
  flex: 1;
}

.main-nav ul {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 38px;
}

.main-nav a {
  position: relative;

  font-size: 0.96rem;
  font-weight: 700;
  color: var(--text-heading);

  transition: var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--orange);
}

.main-nav a::after {
  content: '';

  position: absolute;
  left: 0;
  bottom: -8px;

  width: 0;
  height: 2px;

  background: var(--orange);

  transition: var(--transition);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

/* ========================================
   HEADER ACTIONS
======================================== */

.header-actions {
  display: flex;
  align-items: center;
}

.header-cta {
  padding-left: 24px;
  padding-right: 24px;
}

/* ========================================
   FOOTER
======================================== */

.main-footer {
  background: var(--footer-main);
  color: rgba(255,255,255,0.75);

  width: 100%;

  padding: 50px 90px 24px;
  margin-top: 0;

  overflow: hidden;
}

/* ========================================
   FOOTER LAYOUT
======================================== */

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;

  padding-bottom: 20px;
}

.footer-brand,
.footer-links,
.footer-contact {
  flex: 1;
}

.footer-brand h3,
.footer-links h4,
.footer-contact h4 {
  color: white;
  margin-bottom: 20px;
}

/* ========================================
   FOOTER LOGO
======================================== */

.footer-logo {
  display: inline-block;
  margin-bottom: 20px;
}

.footer-logo img {
  width: 110px;
  height: auto;
  object-fit: contain;
  display: block;
}

/* ========================================
   FOOTER TEXT
======================================== */

.footer-brand p {
  line-height: 1.8;
  margin-bottom: 24px;
}

/* ========================================
   SOCIAL ICONS
======================================== */

.footer-social a:hover {
  background: var(--orange);
  border-color: var(--orange);
}

.footer-social a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border:
    1px solid rgba(255,255,255,0.12);

  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}


.footer-linkedin {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border:
    1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: transparent;
}

.footer-linkedin i {
  color: #ffffff !important;
  font-size: 18px;
  line-height: 1;
}


/* ========================================
   LINKS
======================================== */

.footer-links ul,
.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links a {
  color: rgba(255,255,255,0.72);
  transition: var(--transition);
}

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

/* ========================================
   CONTACT INFO
======================================== */

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  line-height: 1.8;
}

.footer-contact-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-contact-icon img {
  width: 16px;
  height: 16px;
}

.footer-contact a,
.footer-contact span {
  color: rgba(255,255,255,0.72);
}

/* ========================================
   FOOTER BOTTOM
======================================== */


.footer-bottom {
  width: calc(100% + 180px);

  margin-left: -90px;

  border-top:
    1px solid rgba(255,255,255,0.08);

  margin-top: 10px;

  padding:
    14px
    10px
    0;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-bottom-links a {
  color: rgba(255,255,255,0.72);
}

.footer-bottom-links a:hover {
  color: var(--orange);
}

/* ========================================
   HOME BANNER
======================================== */

.home-banner {
  position: relative;

  height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #000;
}

.home-banner-content {
  position: relative;
  z-index: 3;
  max-width: 620px;
  padding: 80px 0 70px;
}

.home-banner-title {
  font-size: 4.5rem;
  line-height: 1.02;
  color:white;
  margin-bottom: 24px;
}

.home-banner-description {
  font-size: 1rem;
  line-height: 1.8;
  color: white;
  max-width: 520px;
}

.home-banner-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
/* ========================================
   DARK OVERLAY
======================================== */

.home-banner-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(0,0,0,0.72) 0%,
      rgba(0,0,0,0.42) 45%,
      rgba(0,0,0,0.18) 100%
    );

  z-index: 1;
}

/* ========================================
   TOP HEADER BLEED EFFECT
======================================== */

.home-banner-top-fade {
  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  height: 180px;

  background:
    linear-gradient(
      180deg,
      var(--bg-main) 0%,
      rgba(248,245,241,0.92) 18%,
      rgba(248,245,241,0.55) 40%,
      rgba(248,245,241,0) 100%
    );

  z-index: 2;
}

/* ========================================
   CONTENT
======================================== */

.home-banner-subtitle {
  position: relative;
  display: inline-block;
  color: white;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 1.6px;
  margin-bottom: 20px;
  padding-bottom: 14px;
}

.home-banner-subtitle::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 42px;
  height: 3px;
  background: var(--orange);
}

.home-banner-title span {
  color: var(--orange);
}


/* ========================================
   HOME ABOUT SECTION
======================================== */

.home-about-section {
  padding: 75px 0;
  background: var(--bg-main);
  overflow: hidden;
}

.home-about-layout {
  display: grid;
  grid-template-columns: 460px 1fr;
  gap: 70px;
  align-items: center;
}

.home-about-title {
  font-size: 3.5rem;
  line-height: 1.08;
  margin-bottom: 24px;
}

.home-about-description {
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 30px;
}

.home-about-image {
  width: 100%;
  height: 430px;
  object-fit: cover;
  border-radius: 28px;
  display: block;
}

.home-about-subtitle {
  position: relative;
  display: inline-block;
  color: var(--orange);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 1.4px;
  margin-bottom: 20px;
  padding-bottom: 12px;
}

.home-about-subtitle::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 38px;
  height: 3px;
  background: var(--orange);
}


.home-about-title span {
  color: var(--orange);
}


.home-about-image-wrapper {
  width: 100%;
}

/* ========================================
   HOME PRODUCTS SECTION
======================================== */

.home-products-section {
  padding: 50px 0;
  background: #ffffff;
  overflow: hidden;
}

.home-products-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 45px;
}

.home-products-subtitle {
  position: relative;
  display: inline-block;
  color: var(--orange);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 1.4px;
  margin-bottom: 24px;
  padding-bottom: 12px;
}

.home-products-subtitle::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 38px;
  height: 3px;
  background: var(--orange);
}

.home-products-title {
  color: var(--text-heading);
  font-size: 3.5rem;
  line-height: 1.08;
  font-weight: 800;
}

.home-products-title span {
  color: var(--orange);
}

/* ========================================
   VIEW ALL BUTTON
======================================== */

.home-products-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 26px;
  border: 1px solid #d9d9d9;
  border-radius: 999px;
  color: var(--text-heading);
  font-size: 0.95rem;
  font-weight: 700;
  transition: var(--transition);
}

.home-products-btn:hover {
  border-color: var(--orange);
  color: var(--orange);
}

/* ========================================
   PRODUCTS GRID
======================================== */

.home-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* ========================================
   PRODUCT CARD
======================================== */

.home-product-card {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid #ececec;
  transition: var(--transition);
}

.home-product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.06);
}

.home-product-image {
  width: 100%;
  height: 235px;
  overflow: hidden;
}

.home-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: var(--transition);
}

.home-product-card:hover .home-product-image img {
  transform: scale(1.05);
}

/* ========================================
   PRODUCT CONTENT
======================================== */

.home-product-content {
  padding: 20px;
}

.home-product-content h3 {
  color: var(--text-heading);
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 800;

  margin-bottom: 15px;
}

.home-product-content p {
  color: var(--text-body);
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 20px;
}

.home-product-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--orange);
  font-size: 0.95rem;
  font-weight: 700;
}

.home-product-link:hover {
  color: var(--orange-dark);
}

/* ========================================
   HOME PROCESS SECTION
======================================== */

.home-process-section {
  padding: 70px 0;
  background: var(--bg-section);
  overflow: hidden;
}

.home-process-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 70px;
  align-items: center;
}

/* ========================================
   LEFT CONTENT
======================================== */

.home-process-subtitle {
  position: relative;
  display: inline-block;
  color: var(--orange);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 1.4px;
  margin-bottom: 20px;
  padding-bottom: 12px;
}

.home-process-subtitle::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 38px;
  height: 3px;
  background: var(--orange);
}

.home-process-title {
  color: var(--text-heading);
  font-size: 3.4rem;
  line-height: 1.08;
  font-weight: 800;
  margin-bottom: 20px;
}

.home-process-title span {
  color: var(--orange);
}

.home-process-description {
  color: var(--text-body);
  font-size: 1rem;
  line-height: 1.9;
  max-width: 320px;
}

/* ========================================
   PROCESS STEPS
======================================== */

.home-process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  position: relative;
}

.home-process-steps::before {
  content: '';
  position: absolute;
  top: 44px;
  left: 10%;
  width: 80%;
  height: 2px;

  background:
    repeating-linear-gradient(
      to right,
      var(--orange),
      var(--orange) 8px,
      transparent 8px,
      transparent 16px
    );

  z-index: 0;
}

/* ========================================
   SINGLE STEP
======================================== */

.home-process-step {
  position: relative;
  z-index: 1;

  text-align: center;
}

/* ========================================
   ICON
======================================== */

.home-process-icon {
  width: 88px;
  height: 88px;

  margin: 0 auto 18px;

  border-radius: 50%;

  background: #ffffff;

  border: 2px solid #efd8cb;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 2rem;

  color: var(--text-heading);
}

.home-process-number {
  color: var(--orange);

  font-size: 1.5rem;
  font-weight: 800;

  margin-bottom: 14px;
}

.home-process-step h3 {
  color: var(--text-heading);

  font-size: 1.05rem;
  line-height: 1.5;
  font-weight: 700;
}

/* ========================================
   HOME SUSTAINABILITY SECTION
======================================== */

.home-sustainability-section {
  padding: 75px 0;

  background: #ffffff;

  overflow: hidden;
}

/* ========================================
   TOP LAYOUT
======================================== */

.home-sustainability-layout {
  display: grid;
  grid-template-columns: 430px 1fr;

  gap: 70px;

  align-items: center;

  margin-bottom: 55px;
}

/* ========================================
   IMAGE
======================================== */

.home-sustainability-image {
  width: 100%;
  height: 420px;

  object-fit: cover;

  border-radius: 26px;

  display: block;
}

/* ========================================
   CONTENT
======================================== */

.home-sustainability-subtitle {
  position: relative;

  display: inline-block;

  color: var(--orange);

  font-size: 0.9rem;
  font-weight: 800;

  letter-spacing: 1.4px;

  margin-bottom: 24px;

  padding-bottom: 12px;
}

.home-sustainability-subtitle::after {
  content: '';

  position: absolute;
  left: 0;
  bottom: 0;

  width: 38px;
  height: 3px;

  background: var(--orange);
}

.home-sustainability-title {
  color: var(--text-heading);

  font-size: 3.5rem;
  line-height: 1.08;
  font-weight: 800;

  margin-bottom: 24px;
}

.home-sustainability-title span {
  color: var(--orange);
}

.home-sustainability-description {
  color: var(--text-body);

  font-size: 1rem;
  line-height: 1.9;

  max-width: 720px;

  margin-bottom: 38px;
}

/* ========================================
   FEATURES
======================================== */

.home-sustainability-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);

  gap: 26px;
}

.home-sus-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.home-sus-icon {
  flex-shrink: 0;

  color: #79a928;

  font-size: 2rem;

  margin-top: 2px;
}

.home-sus-feature h3 {
  color: var(--text-heading);

  font-size: 1rem;
  line-height: 1.4;
  font-weight: 800;

  margin-bottom: 10px;
}

.home-sus-feature p {
  color: var(--text-body);

  font-size: 0.95rem;
  line-height: 1.7;
}

/* ========================================
   STATS BAR
======================================== */

.home-stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);

  gap: 0;

  background:
    linear-gradient(
      90deg,
      #f47b45 0%,
      #f06d38 100%
    );

  border-radius: 26px;

  overflow: hidden;
}

.home-stat-item {
  display: flex;
  align-items: center;
  gap: 22px;

  padding: 34px 32px;

  position: relative;
}

.home-stat-item:not(:last-child)::after {
  content: '';

  position: absolute;
  top: 25%;
  right: 0;

  width: 1px;
  height: 50%;

  background: rgba(255,255,255,0.25);
}

/* ========================================
   STAT ICONS
======================================== */

.home-stat-icon img {
  width: 58px;
  height: 58px;

  object-fit: contain;

  display: block;

  filter:
    brightness(0)
    invert(1);
}

/* ========================================
   STAT TEXT
======================================== */

.home-stat-item h3 {
  color: white;

  font-size: 3rem;
  line-height: 1;
  font-weight: 800;

  margin-bottom: 10px;
}

.home-stat-item p {
  color: rgba(255,255,255,0.92);

  font-size: 0.98rem;
  line-height: 1.6;
  font-weight: 600;
}


/* ========================================
   ABOUT INTRO SECTION
======================================== */

.about-intro-section {
  padding: 75px 0;

  background: #ffffff;

  overflow: hidden;
}

/* ========================================
   LAYOUT
======================================== */

.about-intro-layout {
  display: grid;
  grid-template-columns: 1fr 520px;

  gap: 80px;

  align-items: center;
}

/* ========================================
   LEFT CONTENT
======================================== */

.about-intro-subtitle {
  position: relative;

  display: inline-block;

  color: var(--orange);

  font-size: 0.9rem;
  font-weight: 800;

  letter-spacing: 1.4px;

  margin-bottom: 24px;

  padding-bottom: 12px;
}

.about-intro-subtitle::after {
  content: '';

  position: absolute;
  left: 0;
  bottom: 0;

  width: 38px;
  height: 3px;

  background: var(--orange);
}

.about-intro-title {
  color: var(--text-heading);

  font-size: 4.2rem;
  line-height: 1.08;
  font-weight: 800;

  margin-bottom: 32px;
}

.about-intro-title span {
  color: var(--orange);
}

.about-intro-description {
  color: var(--text-body);

  font-size: 1.12rem;
  line-height: 1.9;

  max-width: 760px;
}

/* ========================================
   RIGHT SIDE CARDS
======================================== */

.about-intro-cards {
  background: #ffffff;

  border: 1px solid #eeeeee;
  border-radius: 24px;

  overflow: hidden;

  box-shadow: 0 8px 24px rgba(0,0,0,0.03);
}

/* ========================================
   SINGLE CARD
======================================== */

.about-info-card {
  display: flex;
  align-items: flex-start;

  gap: 22px;

  padding: 20px 30px;
}

.about-info-card:not(:last-child) {
  border-bottom: 1px solid #efefef;
}

/* ========================================
   ICON
======================================== */

.about-info-icon {
  width: 62px;
  height: 62px;

  border-radius: 18px;

  background: #fff7f2;

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;
}

.about-info-icon img {
  width: 34px;
  height: 34px;

  object-fit: contain;

  display: block;
}

/* ========================================
   CONTENT
======================================== */

.about-info-content h3 {
  color: var(--text-heading);

  font-size: 1.5rem;
  line-height: 1.2;
  font-weight: 800;

  margin-bottom: 12px;
}

.about-info-content p {
  color: var(--text-body);

  font-size: 1rem;
  line-height: 1.8;
}
/* ========================================
   ABOUT STORY SECTION
======================================== */

.about-story-section {
  position: relative;

  width: 100%;

  padding: 140px 0 120px;

  overflow: hidden;

  background:
    linear-gradient(
      180deg,
      #fff3ea 0%,
      #fff8f3 35%,
      #fffdfb 100%
    );
}

/* ========================================
   WAVY TOP
======================================== */

.about-story-wave {
  position: absolute;

  top: 0;
  left: 0;

  width: 100%;
  height: 180px;

  overflow: hidden;

  line-height: 0;

  z-index: 1;
}

.about-story-wave svg {
  position: relative;

  display: block;

  width: 100%;
  height: 100%;
}

.about-story-wave path {
  fill: #ffffff;
}

/* ========================================
   HEADING
======================================== */

.about-story-heading {
  position: relative;

  z-index: 2;
}

.about-story-subtitle {
  position: relative;

  display: inline-block;

  color: var(--orange);

  font-size: 0.92rem;
  font-weight: 800;

  letter-spacing: 1.5px;

  margin-bottom: 26px;

  padding-bottom: 12px;
}

.about-story-subtitle::after {
  content: '';

  position: absolute;

  left: 0;
  bottom: 0;

  width: 40px;
  height: 3px;

  background: var(--orange);
}

.about-story-title {
  color: var(--text-heading);

  font-size: 5rem;
  line-height: 1.02;
  font-weight: 800;
}

.about-story-title span {
  color: var(--orange);
}

/* ========================================
   STORY BACKGROUNDS
======================================== */

.about-story-backgrounds {
  position: relative;

  width: 100%;

  margin-top: 100px;
}

/* ========================================
   ROW
======================================== */

.story-bg-row {
  position: relative;

  display: flex;

  width: 100%;
  height:100%;

  margin-bottom: -120px;

  z-index: 1;
}

.story-bg-row.left {
  justify-content: flex-start;
}

.story-bg-row.right {
  justify-content: flex-end;
}

/* ========================================
   IMAGE
======================================== */

.story-bg {
  width: 52%;

  height: auto;

  display: block;

  object-fit: contain;
}

/* ========================================
   ROAD WRAPPER
======================================== */

.story-road-wrapper {
  position: absolute;

  top: 0;
  left: 50%;

  transform: translateX(-50%);

  width: 220px;
  height: 100%;

  z-index: 6;

  display: flex;
  justify-content: center;

  pointer-events: none;
}

/* ========================================
   ROAD
======================================== */

.story-road {
  position: relative;

  width: 110px;
  height: 100%;

  background:
    linear-gradient(
      180deg,
      #5f5f5f 0%,
      #444444 100%
    );

  border-radius: 100px;

  box-shadow:
    inset 0 0 18px rgba(255,255,255,0.08),
    0 10px 35px rgba(0,0,0,0.12);
}

/* ========================================
   CENTER LINE
======================================== */

.story-road-line {
  position: absolute;

  top: 0;
  left: 50%;

  transform: translateX(-50%);

  width: 5px;
  height: 100%;

  background:
    repeating-linear-gradient(
      to bottom,
      rgba(255,255,255,0.95) 0px,
      rgba(255,255,255,0.95) 24px,
      transparent 24px,
      transparent 48px
    );
}

/* ========================================
   TANKER
======================================== */

.story-tanker {
  position: absolute;

  top: 0;
  left: 50%;

  width: 320px;

  transform: translateX(-50%);

  z-index: 10;

  will-change: transform;
}

.story-tanker img {
  width: 100%;

  height: auto;

  object-fit: contain;

  display: block;

  filter:
    drop-shadow(
      0 20px 40px rgba(0,0,0,0.24)
    );
}

/* ========================================
   STORY CONTENT
======================================== */

.story-text-content {
  position: absolute;

  top: 40%;
  left: 20%;

  transform: translateY(-10%);

  width: 25%;

  z-index: 8;
}

/* ========================================
   NUMBER
======================================== */

.story-number {
  width: 74px;
  height: 74px;

  border-radius: 50%;

  background: var(--orange);

  color: white;

  font-size: 2rem;
  font-weight: 800;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 34px;

  box-shadow:
    0 10px 25px rgba(255,120,50,0.28);
}

/* ========================================
   TITLE
======================================== */

.story-title {
  color: var(--text-heading);

  font-size: 3rem;
  line-height: 1.05;
  font-weight: 800;

  margin-bottom: 24px;
}

/* ========================================
   DESCRIPTION
======================================== */

.story-description {
  color: var(--text-body);
  font-size: 1.08rem;
  line-height: 2;
}

/* ========================================
   RIGHT SIDE STORY
======================================== */

.story-text-right {
  left: auto;
  right: 20%;

  top: 28%;

  transform: translateY(-10%);

  width: 25%;
}

/* ========================================
   RIGHT NUMBER
======================================== */

.story-text-right .story-number {
  margin-left: 0;
}

/* ========================================
   THIRD STORY
======================================== */

.story-text-third {
  top: 30%;
  left: 23%;

  transform: translateY(-5%);

  width: 25%;
}

/* ========================================
   FOURTH STORY
======================================== */

.story-text-fourth {
  top: 30%;
  right: 20%;
  left: auto;

  transform: translateY(-10%);

  width: 25%;
}

/* ========================================
   FIFTH STORY
======================================== */

.story-text-fifth {
  top: 22%;
  left: 22%;

  transform: translateY(-10%);

  width: 25%;
}

/* ========================================
   SUSTAINABILITY BANNER
======================================== */

.sus-banner-section {
  position: relative;

  width: 100%;
  height: 700px;
  
  margin: 0;
  padding: 0;

  overflow: hidden;

  background: var(--bg-main);
}

/* ========================================
   BACKGROUND IMAGE
======================================== */

.sus-banner-image {
  position: absolute;

  inset: 0;

  z-index: 1;
}

.sus-banner-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  display: block;
}

/* ========================================
   LEFT OVERLAY
======================================== */

.sus-banner-overlay {
  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(250,245,239,1) 0%,
      rgba(250,245,239,0.98) 18%,
      rgba(250,245,239,0.92) 28%,
      rgba(250,245,239,0.75) 38%,
      rgba(250,245,239,0.38) 50%,
      rgba(250,245,239,0.04) 65%,
      rgba(250,245,239,0) 100%
    );
}

/* ========================================
   CONTENT
======================================== */

.sus-banner-content {
  position: relative;

  z-index: 5;

  width: 42%;

  padding-top: 120px;
}

/* ========================================
   SUBTITLE
======================================== */

.sus-banner-subtitle {
  position: relative;

  display: inline-block;

  color: var(--orange);

  font-size: 0.95rem;
  font-weight: 800;

  letter-spacing: 1.5px;

  margin-bottom: 26px;

  padding-bottom: 12px;
}

.sus-banner-subtitle::after {
  content: '';

  position: absolute;

  left: 0;
  bottom: 0;

  width: 42px;
  height: 3px;

  background: var(--orange);
}

/* ========================================
   TITLE
======================================== */

.sus-banner-title {
  color: var(--text-heading);

  font-size: 5rem;
  line-height: 1.05;
  font-weight: 800;

  margin-bottom: 34px;
}

.sus-banner-title span {
  color: var(--orange);
}

/* ========================================
   DESCRIPTION
======================================== */

.sus-banner-text {
  color: var(--text-body);

  font-size: 1.18rem;
  line-height: 2;

  max-width: 640px;
}

/* ========================================
   APPROACH SECTION
======================================== */

.approach-section {
    
    width: 100%;
    
  padding: 50px 0;

  background: #ffffff;
}

/* ========================================
   HEADING
======================================== */

.approach-heading {
  text-align: center;

  max-width: 980px;

  margin: 0 auto 80px;
}

.approach-title {
  color: var(--text-heading);

  font-size: 3.5rem;
  line-height: 1.1;
  font-weight: 800;

  margin-bottom: 24px;
}

.approach-text {
  color: var(--text-body);

  font-size: 1.12rem;
  line-height: 2;
}

/* ========================================
   GRID
======================================== */

.approach-grid {
  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  gap: 0;
}

/* ========================================
   ITEM
======================================== */

.approach-item {
  display: flex;
  align-items: flex-start;

  gap: 20px;

  padding:
    0
    34px;

  border-right:
    1px solid rgba(0,0,0,0.08);
}

.approach-item:last-child {
  border-right: none;
}

/* ========================================
   ICON
======================================== */

.approach-icon {
  width: 78px;
  height: 78px;

  object-fit: contain;

  flex-shrink: 0;

  filter:
    saturate(1.2);
}

/* ========================================
   CONTENT
======================================== */

.approach-content h3 {
  color: var(--text-heading);

  font-size: 1.7rem;
  line-height: 1.2;
  font-weight: 700;

  margin-bottom: 16px;
}

.approach-content p {
  color: var(--text-body);

  font-size: 1rem;
  line-height: 2;
}

/* ========================================
   IMPACT SECTION
======================================== */

.impact-section {
  width: 100%;

  background: #ffffff;
}

/* ========================================
   GRID
======================================== */

.impact-grid {
  display: grid;

  grid-template-columns:
    1.1fr 0.9fr;
}

/* ========================================
   LEFT / RIGHT
======================================== */

.impact-left,
.impact-right {
  padding:
    90px
    80px;

  position: relative;
}

.impact-left {
  background: #ffffff;
}

/* ========================================
   RIGHT SIDE
======================================== */

.impact-right {
  position: relative;

  overflow: hidden;

  min-height: 760px;

  padding:
    90px
    80px;
}

/* ========================================
   BACKGROUND IMAGE
======================================== */

.commitment-bg {
  position: absolute;

  inset: 0;

  z-index: 1;
}

.commitment-bg img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  display: block;
}

/* ========================================
   GREEN OVERLAY
======================================== */

.commitment-overlay {
  position: absolute;

  inset: 0;

  z-index: 2;

  background:
    linear-gradient(
      90deg,
      rgba(243,248,240,0.96) 0%,
      rgba(243,248,240,0.92) 28%,
      rgba(243,248,240,0.84) 52%,
      rgba(243,248,240,0.68) 72%,
      rgba(243,248,240,0.52) 100%
    );
}

/* ========================================
   CONTENT
======================================== */

.commitment-content {
  position: relative;

  z-index: 5;

  max-width: 620px;
}

/* ========================================
   LIST
======================================== */

.commitment-list {
  max-width: 560px;
}

/* ========================================
   HEADING
======================================== */

.impact-heading {
  margin-bottom: 60px;
}

.impact-title {
  position: relative;

  display: inline-block;

  color: var(--text-heading);

  font-size: 3rem;
  line-height: 1.1;
  font-weight: 800;

  padding-bottom: 18px;
}

.impact-title::after {
  content: '';

  position: absolute;

  left: 0;
  bottom: 0;

  width: 44px;
  height: 3px;

  background: var(--orange);
}

/* ========================================
   IMPACT ITEMS
======================================== */

.impact-items {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);
}

.impact-item {
  padding:
    0
    34px;

  border-right:
    1px solid rgba(0,0,0,0.08);
}

.impact-item.no-border {
  border-right: none;
}

/* ========================================
   ICON
======================================== */

.impact-icon {
  width: 82px;
  height: 82px;

  object-fit: contain;

  margin-bottom: 20px;
}

/* ========================================
   CONTENT
======================================== */

.impact-content h3 {
  color: var(--text-heading);

  font-size: 1.8rem;
  line-height: 1.4;
  font-weight: 700;

  margin-bottom: 18px;
}

.impact-content h3 span {
  display: block;

  color: var(--orange);

  font-size: 3rem;
  line-height: 1;

  margin-bottom: 12px;
}

.impact-content p {
  color: var(--text-body);

  font-size: 1rem;
  line-height: 2;
}

/* ========================================
   COMMITMENT LIST
======================================== */

.commitment-list {
  position: relative;

  z-index: 2;

  max-width: 560px;
}

.commitment-item {
  display: flex;
  align-items: flex-start;

  gap: 18px;

  padding:
    0
    0
    24px;

  margin-bottom: 24px;

  border-bottom:
    1px solid rgba(0,0,0,0.08);
}

.commitment-item.no-border {
  border-bottom: none;
}

/* ========================================
   ICON
======================================== */

.commitment-item i {
  color: var(--orange);

  font-size: 1.35rem;

  margin-top: 4px;

  flex-shrink: 0;
}

/* ========================================
   TEXT
======================================== */

.commitment-item p {
  color: var(--text-body);

  font-size: 1.05rem;
  line-height: 2;
}

/* ========================================
   IMAGE
======================================== */

.commitment-image {
  position: absolute;

  right: 0;
  bottom: 0;

  width: 340px;

  object-fit: contain;

  opacity: 0.95;
}

/* ========================================
   STRIP SECTION
======================================== */

.sus-strip-section {
  width: 100%;

  padding:
    42px
    90px;

  background: #ffffff;

  border-top:
    1px solid rgba(0,0,0,0.06);
}

/* ========================================
   CONTAINER
======================================== */

.sus-strip-container {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 34px;
}

/* ========================================
   ICON
======================================== */

.sus-strip-icon {
  width: 86px;
  height: 86px;

  object-fit: contain;

  flex-shrink: 0;
}

/* ========================================
   CONTENT
======================================== */

.sus-strip-content h3 {
  color: var(--text-heading);

  font-size: 2rem;
  line-height: 1.5;
  font-weight: 700;

  margin-bottom: 10px;
}

.sus-strip-content p {
  color: var(--orange);

  font-size: 1.65rem;
  line-height: 1.5;
  font-weight: 700;
}

/* ========================================
   PRODUCTS BANNER
======================================== */

.products-banner-section {
  position: relative;

  width: 100%;
  height: 620px;

  overflow: hidden;

  background: var(--bg-main);
}

/* ========================================
   BACKGROUND IMAGE
======================================== */

.products-banner-image {
  position: absolute;

  inset: 0;

  z-index: 1;
}

.products-banner-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  display: block;
}

/* ========================================
   LEFT OVERLAY
======================================== */

.products-banner-overlay {
  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(250,245,239,1) 0%,
      rgba(250,245,239,0.98) 18%,
      rgba(250,245,239,0.92) 30%,
      rgba(250,245,239,0.75) 42%,
      rgba(250,245,239,0.38) 56%,
      rgba(250,245,239,0.04) 72%,
      rgba(250,245,239,0) 100%
    );
}

/* ========================================
   CONTENT
======================================== */

.products-banner-content {
  position: relative;

  z-index: 5;

  width: 42%;

  padding-top: 120px;
  padding-left: 110px;
}

/* ========================================
   SUBTITLE
======================================== */

.products-banner-subtitle {
  position: relative;

  display: inline-block;

  color: var(--orange);

  font-size: 0.95rem;
  font-weight: 800;

  letter-spacing: 1.5px;

  margin-bottom: 26px;

  padding-bottom: 12px;
}

.products-banner-subtitle::after {
  content: '';

  position: absolute;

  left: 0;
  bottom: 0;

  width: 42px;
  height: 3px;

  background: var(--orange);
}

/* ========================================
   TITLE
======================================== */

.products-banner-title {
  color: var(--text-heading);

  font-size: 4.8rem;
  line-height: 1.05;
  font-weight: 800;

  margin-bottom: 34px;
}

.products-banner-title span {
  color: var(--orange);
}

/* ========================================
   DESCRIPTION
======================================== */

.products-banner-text {
  color: var(--text-body);
  font-size: 1.18rem;
  line-height: 2;
  max-width: 640px;
}

/* ========================================
   PRODUCTS SECTION
======================================== */

.products-main-section {
  width: 100%;
  padding:
    90px
    90px;
  background: #ffffff;
}

/* ========================================
   LAYOUT
======================================== */

.products-layout {
  display: grid;
  grid-template-columns:
    480px 1fr;
  gap: 70px;
  align-items: flex-start;
}

/* ========================================
   SIDEBAR
======================================== */

.products-sidebar {
  background: #fbf7f2;
  border-radius: 24px;
  padding:
    42px
    34px;
}

/* ========================================
   SUBTITLE
======================================== */

.products-sidebar-subtitle {
  position: relative;
  display: inline-block;
  color: var(--orange);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 1px;
  padding-bottom: 12px;
  margin-bottom: 34px;
}

.products-sidebar-subtitle::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background: var(--orange);
}

/* ========================================
   PRODUCT LIST
======================================== */

.products-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ========================================
   PRODUCT ITEM
======================================== */

.product-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding:
    22px
    22px;
  background: #ffffff;
  border-radius: 22px;
  cursor: pointer;
  transition:
    all 0.3s ease;
  border:
    1px solid rgba(0,0,0,0.05);
}

/* ========================================
   ACTIVE ITEM
======================================== */

.product-list-item.active {
  background:
    linear-gradient(
      135deg,
      #f25f2b 0%,
      #ff7a45 100%
    );

  border-color: transparent;
}

.product-list-item.active h3 {
  color: #ffffff;
}

.product-list-item.active .product-list-arrow {
  border-color: rgba(255,255,255,0.45);
  color: #ffffff;
}

/* ========================================
   LEFT SIDE
======================================== */

.product-list-left {
  display: flex;
  align-items: center;
  gap: 18px;
}

/* ========================================
   IMAGE
======================================== */

.product-list-image {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border:
    3px solid rgba(255,255,255,0.7);
}

/* ========================================
   TITLE
======================================== */

.product-list-left h3 {
  color: var(--text-heading);
  font-size: 1.5rem;
  line-height: 1.35;
  font-weight: 700;
  transition:
    color 0.3s ease;
}

/* ========================================
   ARROW
======================================== */

.product-list-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border:
    2px solid rgba(242,95,43,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
  transition:
    all 0.3s ease;
}

.product-list-arrow i {
  font-size: 1rem;
}

/* ========================================
   RIGHT COLUMN
======================================== */

.products-content {
  position: relative;
  min-height: 1200px;
  border:
    1px solid rgba(0,0,0,0.08);
  border-radius: 20px;
  padding:
    50px
    50px;
  background: #ffffff;
}

/* ========================================
   PRODUCT DETAIL
======================================== */

.product-detail {
  width: 100%;
}

/* ========================================
   PRODUCT DETAIL
======================================== */

.product-detail-title {
  color: var(--text-heading);
  font-size: 4rem;
  line-height: 1.05;
  font-weight: 800;
  margin-bottom: 12px;
}

.product-detail-subtitle {
  color: var(--orange);
  font-size: 2.2rem;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 20px;
}

.product-detail-description {
  color: var(--text-body);
  font-size: 1.08rem;
  line-height: 2;
  max-width: 100%;
  margin-bottom: 5%;
}

/* ========================================
   FEATURE LAYOUT
======================================== */

.product-feature-layout {
   display: grid;
  grid-template-columns:
    0.9fr 1.1fr;
  gap: 10px;
  align-items: stretch;
  margin-bottom: 5%;
}

/* ========================================
   SECTION TITLE
======================================== */

.product-section-heading {
  color: var(--orange);
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 20px;
}

/* ========================================
   FEATURES
======================================== */

.product-feature-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.product-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: var(--text-body);
  font-size: 1.05rem;
  line-height: 1.8;
}

.product-feature-list li i {
  color: var(--orange);
  margin-top: 5px;
}

/* ========================================
   IMAGE WRAPPER
======================================== */

.product-feature-image-wrap {
  display: grid;
  grid-template-columns:
    repeat(2, 1fr);
  gap: 22px;
  width: 100%;
}

/* ========================================
   IMAGE
======================================== */

.product-feature-image {
  width: 100%;
  height: 100%;
  min-height: 340px;
  border-radius: 22px;
  object-fit: cover;
  display: block;
}

/* ========================================
   SPECIFICATIONS
======================================== */

.product-specifications {
  margin-bottom: 60px;
}

.product-spec-grid {
  display: grid;
  grid-template-columns:
    repeat(2, 1fr);
  gap: 50px;
}

.product-spec-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding:
    16px
    0;
  border-bottom:
    1px solid rgba(0,0,0,0.08);
}

.product-spec-row span {
  color: var(--text-body);
  font-size: 1rem;
}

.product-spec-row strong {
  color: var(--text-heading);
  font-size: 1rem;
  font-weight: 700;
}

/* ========================================
   APPLICATIONS
======================================== */

.product-applications {
  margin-bottom: 60px;
}

.product-application-grid {
  display: grid;
  grid-template-columns:
    repeat(4, 1fr);
  gap: 20px;
}

.product-app-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.product-app-item i {
  color: var(--orange);
  font-size: 2rem;
  margin-top: 4px;
}

.product-app-item h5 {
  color: var(--text-heading);
  font-size: 1.05rem;
  line-height: 1.4;
  font-weight: 700;
  margin-bottom: 8px;
}

.product-app-item p {
  color: var(--text-body);
  font-size: 0.95rem;
  line-height: 1.8;
}

/* ========================================
   BOTTOM BOX
======================================== */

.product-bottom-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background: #fbf7f2;
  border-radius: 24px;
  padding:
    34px
    38px;
}

/* ========================================
   PACKAGING
======================================== */

.product-packaging {
  display: flex;
  align-items: center;
  gap: 22px;
}

.product-packaging i {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 1.9rem;
  box-shadow:
    0 6px 18px rgba(0,0,0,0.05);
}

.product-packaging h5 {
  color: var(--orange);
  font-size: 1.2rem;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 10px;
}

.product-packaging p {
  color: var(--text-body);
  font-size: 1rem;
  line-height: 1.8;
}

/* ========================================
   BUTTON
======================================== */

.product-quote-btn {
  height: 64px;
  padding:
    0
    34px;
  border-radius: 999px;
  border:
    2px solid var(--orange);
  background: transparent;
  color: var(--orange);
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  transition:
    all 0.3s ease;
}

.product-quote-btn:hover {
  background: var(--orange);
  color: #ffffff;
}

/* ========================================
   CONTACT BANNER
======================================== */

.contact-banner-section {
  position: relative;
  width: 100%;
  height: 750px;
  overflow: hidden;
  background: var(--bg-main);
}

/* ========================================
   BACKGROUND IMAGE
======================================== */

.contact-banner-image {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.contact-banner-image img {
  width: 100%;
  height: 100%;
  object-fit:contain;
  object-position: right center;
  display: block;
}

/* ========================================
   OVERLAY
======================================== */

.contact-banner-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(250,245,239,1) 0%,
      rgba(250,245,239,0.98) 18%,
      rgba(250,245,239,0.92) 30%,
      rgba(250,245,239,0.75) 42%,
      rgba(250,245,239,0.38) 56%,
      rgba(250,245,239,0.04) 72%,
      rgba(250,245,239,0) 100%
    );
}

/* ========================================
   CONTENT
======================================== */

.contact-banner-content {
  position: relative;
  z-index: 5;
  width: 42%;
  padding-top: 120px;
  padding-left: 110px;
}

/* ========================================
   SUBTITLE
======================================== */

.contact-banner-subtitle {
  position: relative;
  display: inline-block;
  color: var(--orange);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  margin-bottom: 26px;
  padding-bottom: 12px;
}

.contact-banner-subtitle::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 42px;
  height: 3px;
  background: var(--orange);
}

/* ========================================
   TITLE
======================================== */

.contact-banner-title {
  color: var(--text-heading);
  font-size: 5rem;
  line-height: 1.05;
  font-weight: 800;
  margin-bottom: 30px;
}

.contact-banner-title span {
  color: var(--orange);
}

/* ========================================
   DIVIDER
======================================== */

.contact-banner-line {
  width: 72px;
  height: 3px;
  background: rgba(0,0,0,0.12);
  margin-bottom: 34px;
}

/* ========================================
   DESCRIPTION
======================================== */

.contact-banner-text {
  color: var(--text-body);
  font-size: 1.18rem;
  line-height: 2;
  max-width: 620px;
}

/* ========================================
   CONTACT FORM SECTION
======================================== */

.contact-form-section {
  position: relative;
  z-index: 20;
  margin-top: -120px;
  padding:
    0
    90px
    110px;
}

/* ========================================
   FORM WRAPPER
======================================== */

.contact-form-wrapper {
  background: #ffffff;
  border:
    1px solid rgba(0,0,0,0.06);
  border-radius: 28px;
  padding:
    48px
    48px;
  box-shadow:
    0 12px 40px rgba(0,0,0,0.05);
}

/* ========================================
   HEADER
======================================== */

.contact-form-header {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 50px;
}

/* ========================================
   ICON
======================================== */

.contact-form-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #fff5ef;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 1.6rem;
  flex-shrink: 0;
}

/* ========================================
   HEADER TEXT
======================================== */

.contact-form-header h2 {
  color: var(--text-heading);
  font-size: 2.3rem;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 10px;
}

.contact-form-header p {
  color: var(--text-body);
  font-size: 1rem;
  line-height: 1.8;
}

/* ========================================
   GRID
======================================== */

.contact-form-grid {
  display: grid;
  grid-template-columns:
    repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 30px;
}

/* ========================================
   FIELD
======================================== */

.contact-field {
  display: flex;
  flex-direction: column;
}

.contact-field label {
  color: var(--text-heading);

  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.contact-field label span {
  color: var(--orange);
}

/* ========================================
   INPUTS
======================================== */

.contact-field input,
.contact-field textarea {
  width: 100%;
  border:
    1px solid rgba(0,0,0,0.08);
  border-radius: 14px;
  background: #ffffff;
  padding:
    18px
    20px;
  color: var(--text-heading);
  font-size: 1rem;
  outline: none;
  transition:
    all 0.3s ease;
}

.contact-field textarea {
  resize: none;
}

.contact-field input:focus,
.contact-field textarea:focus {
  border-color: var(--orange);
  box-shadow:
    0 0 0 4px rgba(242,95,43,0.08);
}

/* ========================================
   FULL WIDTH
======================================== */

.contact-field.full-width {
  margin-bottom: 34px;
}

/* ========================================
   BUTTON
======================================== */

.contact-submit-btn {
  height: 62px;
  padding:
    0
    34px;
  border: none;
  border-radius: 14px;
  background:
    linear-gradient(
      135deg,
      #f25f2b 0%,
      #ff7a45 100%
    );
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  transition:
    all 0.3s ease;
}

.contact-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 12px 28px rgba(242,95,43,0.22);
}

/* ========================================
   FOOTNOTE
======================================== */

.contact-required-note {
  color: var(--text-body);
  font-size: 0.95rem;
  margin-top: 20px;
}


/* ========================================
   TEXT
======================================== */

.privacy-block p {
  color: var(--text-body);
  font-size: 1.05rem;
  line-height: 2;
  margin-bottom: 18px;
}

/* ========================================
   LIST
======================================== */

.privacy-block ul {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-left: 24px;
}

.privacy-block li {
  color: var(--text-body);
  font-size: 1.05rem;
  line-height: 1.9;
}

/* ========================================
   CONTACT BOX
======================================== */

.privacy-contact-box {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 34px;
}

/* ========================================
   CONTACT ITEM
======================================== */

.privacy-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.privacy-contact-item i {
  color: var(--orange);
  font-size: 1.2rem;
  margin-top: 4px;
}

.privacy-contact-item span {
  color: var(--text-body);
  font-size: 1.02rem;
  line-height: 1.9;
}

/* ========================================
  margin-bottom: 24px;
}

/* ========================================
   TEXT
======================================== */

.terms-block p {
  color: var(--text-body);
  font-size: 1.05rem;
  line-height: 2;
  margin-bottom: 18px;
}

/* ========================================
   LIST
======================================== */

.terms-block ul {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-left: 24px;
}

.terms-block li {
  color: var(--text-body);
  font-size: 1.05rem;
  line-height: 1.9;
}

/* ========================================
   CONTACT BOX
======================================== */

.terms-contact-box {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 34px;
}

/* ========================================
   CONTACT ITEM
======================================== */

.terms-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.terms-contact-item i {
  color: var(--orange);
  font-size: 1.2rem;
  margin-top: 4px;
}

.terms-contact-item span {
  color: var(--text-body);
  font-size: 1.02rem;
  line-height: 1.9;
}