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

body {
  font-family: 'Inter', sans-serif;
  background: #ffffff;
  color: #000000;
}

html {
  scroll-behavior: smooth;
}

.navbar {
  width: 100%;
  padding: 24px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #e5e5e5;
  position: sticky;
  top: 0;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
}

.logo {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -1px;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  text-decoration: none;
  color: #000;
  font-size: 0.95rem;
  transition: 0.3s ease;
}

.nav-links a:hover {
  opacity: 0.6;
}

.nav-btn,
.primary-btn,
.secondary-btn {
  cursor: pointer;
  border: none;
  transition: 0.3s ease;
}

.nav-btn,
.primary-btn {
  background: #000;
  color: #fff;
  padding: 14px 24px;
  border-radius: 12px;
  font-weight: 600;
}

.nav-btn:hover,
.primary-btn:hover {
  transform: translateY(-2px);
}

.secondary-btn {
  background: transparent;
  color: #000;
  border: 1px solid #000;
  padding: 14px 24px;
  border-radius: 12px;
  font-weight: 600;
}

.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 8%;
  gap: 60px;
}

.hero-left {
  flex: 1;
}

.hero-badge {
  display: inline-block;
  border: 1px solid #dcdcdc;
  padding: 10px 18px;
  border-radius: 100px;
  margin-bottom: 24px;
  font-size: 0.9rem;
}

.hero-left h1 {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -2px;
}

.hero-left h1 span {
  color: #666;
}

.hero-left p {
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 600px;
  color: #555;
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  gap: 18px;
}

.hero-right {
  flex: 1;
  display: flex;
  justify-content: center;
}

.resume-preview {
  width: 360px;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.resume-header {
  width: 100%;
  height: 70px;
  background: #000;
  border-radius: 12px;
  margin-bottom: 28px;
}

.resume-line {
  width: 100%;
  height: 12px;
  background: #d9d9d9;
  border-radius: 20px;
  margin-bottom: 14px;
}

.resume-line.long {
  width: 100%;
}

.resume-line.short {
  width: 60%;
}

.resume-section {
  width: 40%;
  height: 18px;
  background: #000;
  border-radius: 20px;
  margin: 30px 0 20px;
}

.features,
.templates,
.pricing {
  padding: 100px 8%;
}

.section-title {
  text-align: center;
  margin-bottom: 70px;
}

.section-title h2 {
  font-size: 2.8rem;
  margin-bottom: 14px;
}

.section-title p {
  color: #666;
  font-size: 1.05rem;
}

.feature-grid,
.template-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.feature-card,
.template-card {
  border: 1px solid #e5e5e5;
  border-radius: 24px;
  padding: 32px;
  transition: 0.3s ease;
}

.feature-card:hover,
.template-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

.feature-card h3,
.template-card h3 {
  margin-bottom: 18px;
  font-size: 1.3rem;
}

.feature-card p {
  line-height: 1.8;
  color: #555;
}

.template-preview {
  height: 320px;
  background: linear-gradient(to bottom, #000 15%, #f5f5f5 15%);
  border-radius: 16px;
  margin-bottom: 24px;
}

.pricing {
  padding: 100px 8%;
}

.pricing-grid {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.pricing-card {
  border: 1px solid #e5e5e5;
  border-radius: 28px;
  padding: 50px;
  text-align: center;
  width: 420px;
  transition: 0.3s ease;
  background: #fff;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

.premium-card {
  border: 1.5px solid #000;
}

.pricing-tag {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 100px;
  border: 1px solid #dcdcdc;
  font-size: 0.9rem;
  margin-bottom: 26px;
}

.premium-tag {
  background: #000;
  color: #fff;
  border: none;
}

.price {
  font-size: 5rem;
  font-weight: 700;
  margin: 24px 0;
}

.pricing-card p {
  color: #666;
  margin-bottom: 30px;
}

.pricing-card ul {
  list-style: none;
  margin-bottom: 40px;
}

.pricing-card ul li {
  margin-bottom: 14px;
}

.full-width {
  width: 100%;
}

.footer {
  border-top: 1px solid #e5e5e5;
  padding: 30px;
  text-align: center;
  color: #666;
}

@media(max-width: 900px) {

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

  .hero-buttons {
    justify-content: center;
  }

  .hero-left h1 {
    font-size: 3rem;
  }

  .nav-links {
    display: none;
  }

}

@media(max-width: 600px) {

  .hero-left h1 {
    font-size: 2.4rem;
  }

  .resume-preview {
    width: 100%;
  }

  .pricing-card {
    width: 100%;
    padding: 40px 24px;
  }

}

/* ---------------------------------builder UI--------------------------------- */

.builder-container {
  height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

.builder-left {

  padding: 60px;
  overflow-y: auto;
  border-right: 1px solid #e5e5e5;
  height: 100vh;
  background: #fff;

}

.builder-header {
  margin-bottom: 40px;
}

.builder-header h1 {
  font-size: 2.8rem;
  margin-bottom: 10px;
}

.builder-header p {
  color: #666;
}

.builder-section {
  margin-bottom: 40px;
}

.builder-section h2 {
  font-size: 1.4rem;
  margin-bottom: 24px;
}

.builder-section input,
.builder-section textarea {
  width: 100%;
  margin-bottom: 18px;
  padding: 16px;
  border: 1px solid #dcdcdc;
  border-radius: 14px;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
}

.builder-section textarea {
  min-height: 120px;
  resize: vertical;
}

.builder-section input:focus,
.builder-section textarea:focus {
  outline: none;
  border-color: #000;
}

.section-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.add-btn {
  border: none;
  background: #000;
  color: #fff;
  padding: 10px 18px;
  border-radius: 12px;
  cursor: pointer;
}

.dynamic-card {
  border: 1px solid #e5e5e5;
  border-radius: 18px;
  padding: 20px;
  margin-bottom: 20px;
}

.remove-btn {
  border: none;
  background: transparent;
  color: #ff3b30;
  cursor: pointer;
  margin-top: 10px;
}

.builder-right {
  background: #f5f5f5;
  height: 100vh;
  overflow-y: auto;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 60px;
}

.builder-section-title {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.collapse-btn {
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0;
  margin: 0;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;

}

.collapsed {

  display: none;

}

.builder-section-title h2 {

  margin: 0;
  line-height: 1.2;

}

.resume-preview-live {
  width: 210mm;
  min-height: 297mm;
  background: #fff;
  padding: 18mm;
  box-shadow: 0 20px 60px rgba(0,0,0,0.05);
  border-radius: 6px;
  overflow: hidden;
  line-height: 1.6;
  box-sizing: border-box;
}

.resume-preview-live h1 {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.preview-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
  color: #555;
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 18px;
  margin-bottom: 28px;
}

.preview-block {
  margin-bottom: 32px;
}

.preview-block h3 {
  font-size: 1.1rem;
  margin-bottom: 14px;
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 10px;
}

.preview-item {
  margin-bottom: 18px;
}

.preview-item h4 {
  margin-bottom: 6px;
}

.preview-item p {
  color: #555;
}

@media(max-width: 1000px) {

  .builder-container {
    grid-template-columns: 1fr;
    height: auto;
  }

  .builder-left {
    height: auto;
    border-right: none;
  }

  .builder-right {
    height: auto;
    padding: 30px;
  }

  .resume-preview-live {
    padding: 40px;
    min-height: auto;
  }

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

}


/*--------------------------------small changes--------------------------------*/

.preview-item {
  margin-bottom: 18px;
}

.preview-item h4 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.preview-item p {
  color: #444;
  font-size: 0.95rem;
  line-height: 1.7;
}


/*--------------------------------------------*/
.skill-tag {
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  border: 1px solid #ddd;
  border-radius: 999px;
  margin-right: 10px;
  margin-bottom: 10px;
  font-size: 0.88rem;
  background: #fafafa;
}

/* -------------------------------------- typography -------------------------------------- */

.resume-preview-live {
  line-height: 1.6;
}

.resume-preview-live h1 {
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: -1.5px;
  margin-bottom: 12px;
}

.preview-contact {
  font-size: 0.95rem;
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 20px;
}

.preview-block h3 {
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid #ddd;
}

.preview-item h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.preview-item p {
  font-size: 0.95rem;
}

.preview-block:last-child {
  margin-bottom: 0;
}

#previewSummary {
  line-height: 1.8;
  color: #444;
}


/* --------------------------------TEMPLATE SELECTOR-------------------------- */

.template-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.template-card {
  border: 1px solid #e5e5e5;
  border-radius: 22px;
  padding: 26px;
  cursor: pointer;
  transition: all 0.25s ease;
  background: #fff;
}

.template-card:hover {
  border-color: #000;
  transform: translateY(-3px);
}

.template-card h3 {
  margin-bottom: 10px;
}

.template-card p {
  color: #666;
  font-size: 0.95rem;
}

.active-template {
  background: #000;
  color: #fff;
  border-color: #000;
}

.active-template p {
  color: rgba(255,255,255,0.8);
}

/* ------------------MINIMAL TEMPLATE */

.minimal-template {
  font-family: 'Inter', sans-serif;
}


/*------------------- MODERN TEMPLATE */

.modern-template {
  font-family: 'Inter', sans-serif;

  border-left: 10px solid #000;

  padding-left: 60px;
}

.modern-template h1 {
  font-size: 3rem;
  text-transform: uppercase;
}

.modern-template .preview-block h3 {
  font-size: 1rem;
  border-bottom: 2px solid #000;
}

.modern-template .preview-item h4 {
  font-size: 1.05rem;
}

.modern-template .skill-tag {
  background: #000;
  color: #fff;
  border-color: #000;
}



/* ------------------------------ DOWNLOAD BUTTON --------------------------------------------- */

.download-btn {

  width: auto;

  margin-top: 0;

  padding: 14px 28px;

  border: none;

  background: #000;

  color: #fff;

  font-size: 1rem;

  font-weight: 600;

  border-radius: 14px;

  cursor: pointer;

  transition: all 0.25s ease;
}

.download-btn:hover {
  transform: translateY(-2px);
}



.template-actions {

  display: flex;

  align-items: center;

  gap: 12px;

}
/* PDF SAFE */

.resume-preview-live {
  overflow: hidden;
}

.preview-block,
.preview-item,
.sidebar-block {

  break-inside: avoid;

  page-break-inside: avoid;

}

.skill-tag {
  page-break-inside: avoid;
}

@media print {

  body {
    background: #fff;
  }

  .builder-left {
    display: none;
  }

  .builder-right {
    width: 100%;
    padding: 0;
    background: #fff;
  }

  .resume-preview-live {
    box-shadow: none;
    max-width: 100%;
  }
  .resume-preview-live,
  .resume-sidebar-template {

  box-shadow: none !important;

  }
}

/* ---------------button disabled state------------------ */

.download-btn:disabled {

  opacity: 0.7;

  cursor: not-allowed;

}

/* -------------------------------------------------------------*/

.secondary-btn {

  background: #fff;

  color: #000;

  border: 1px solid #ddd;

}

.secondary-btn:hover {

  border-color: #000;

}

/* TEMPLATE GALLERY PAGE */

.templates-page {

  min-height: 100vh;

  padding: 80px;

  background: #fff;

}

.templates-header {

  margin-bottom: 60px;

}

.templates-header h1 {

  font-size: 3rem;

  margin-bottom: 14px;

}

.templates-header p {

  color: #666;

}


.templates-grid {

  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));

  gap: 30px;

}


.template-preview-card {

  border: 1px solid #e5e5e5;

  border-radius: 24px;

  padding: 28px;

}


.template-preview-box {

  height: 360px;

  background: #fafafa;

  border-radius: 16px;

  margin-bottom: 24px;

  padding: 25px;

}


.preview-line {

  height: 12px;

  background: #ddd;

  margin-bottom: 16px;

  border-radius: 999px;

}

.preview-line.large {

  width: 80%;

  height: 18px;

}

.preview-line.short {

  width: 50%;

}


.sidebar-preview {

  position: relative;

}

.sidebar-demo {

  width: 90px;

  height: 100%;

  background: #eaeaea;

  border-radius: 12px;

}


.select-template-btn {

  margin-top: 20px;

  width: 100%;

  padding: 16px;

  border: none;

  border-radius: 14px;

  background: #000;

  color: #fff;

  cursor: pointer;

  font-size: 1rem;

}

/* --------------------------------------------------------Template -------------------------------------------*/

/* TEMPLATE RENDER PAGE */
.preview-item p,
.executive-item p,
.main-column p,
.resume-preview-live p {

  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;

}

.template-render-page {

  min-height: 100vh;

  background: #f5f5f5;

  padding: 50px;

}

.template-preview-title {

  text-align: center;

  font-size: 1.4rem;

  font-weight: 600;

  color: #555;

  margin-bottom: 24px;

}

.template-topbar {

  display: flex;

  justify-content: space-between;

  align-items: center;

  margin-bottom: 30px;

}


#templateRenderer {

  display: flex;

  justify-content: center;

  width: 100%;

  overflow: hidden;

}



/*------------------------------------------------------------------------------------------------------------------------*/

/* SIDEBAR RESUME TEMPLATE */

.resume-sidebar-template {
  width: 794px;
  max-width: 794px;
  min-height: 297mm;
  background: #fff;
  display: flex;
  align-items: stretch;
  overflow: visible;
  box-shadow: 0 20px 60px rgba(0,0,0,0.05);
  box-sizing: border-box;
  padding: 10mm;
}


/* SIDEBAR */

.sidebar-column {

  background: #f7f7f7;

  padding: 40px 28px;

  border-right: 1px solid #e5e5e5;

  width: 260px;

  flex-shrink: 0;

}


.sidebar-profile {

  margin-bottom: 40px;

}


.sidebar-profile h2 {

  font-size: 2rem;

  line-height: 1.2;

}


.sidebar-block {

  margin-bottom: 34px;

}


.sidebar-block h3 {

  font-size: 0.85rem;

  text-transform: uppercase;

  letter-spacing: 1.5px;

  margin-bottom: 14px;

  border-bottom: 1px solid #ccc;

  padding-bottom: 8px;

}


.sidebar-block p {

  margin-bottom: 10px;

  color: #444;

  line-height: 1.5;

}


.sidebar-skill {

  display: inline-block;

  padding: 7px 12px;

  border-radius: 999px;

  background: #000;

  color: #fff;

  font-size: 0.82rem;

  margin-right: 8px;

  margin-bottom: 8px;

}


/* MAIN COLUMN */

.main-column {

  padding: 24px;

  flex: 1;

  min-width: 0;

  overflow-wrap: break-word;
}


.main-column .preview-block {

  margin-bottom: 34px;

}


.main-column .preview-block h3 {

  text-transform: uppercase;

  letter-spacing: 1.5px;

  font-size: 0.82rem;

  border-bottom: 1px solid #ddd;

  padding-bottom: 8px;

  margin-bottom: 18px;

}

.main-column p {

  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;

}

/* -------------------------------------------Protecting section header -----------*/
/* PREVENT BAD PAGE BREAKS */

.preview-block h3,
.sidebar-block h3 {

  break-after: avoid;

  page-break-after: avoid;

}

/* PDF SAFE BLOCKS */

.pdf-safe-block {

  break-inside: avoid;

  page-break-inside: avoid;

}

.sidebar-column {

  break-inside: avoid;

  page-break-inside: avoid;

}
/* ---------------------------------- -----------------EXECUTIVE TEMPLATE PREVIEW ---------------------------------------------------------------------*/

.executive-preview {

  display: flex;

  flex-direction: column;

  justify-content: flex-start;

}


.executive-header-demo {

  height: 50px;

  width: 70%;

  background: #ddd;

  border-radius: 10px;

  margin-bottom: 30px;

}


/*--------------------------------------------------------------------------------*/
/* EXECUTIVE TEMPLATE */

.resume-executive-template {

  width: 794px;

  max-width: 794px;

  min-height: 297mm;

  background: #fff;

  padding: 20mm 18mm;

  box-sizing: border-box;

  box-shadow: 0 20px 60px rgba(0,0,0,0.05);

}


/* HEADER */

.executive-header {

  text-align: center;

  margin-bottom: 24px;

  border-bottom: 2px solid #000;

  padding-bottom: 20px;

}


.executive-header h1 {

  font-size: 2.8rem;

  margin-bottom: 14px;

  letter-spacing: -1px;

}


.executive-contact {

  display: flex;

  justify-content: center;

  flex-wrap: wrap;

  gap: 18px;

  color: #555;

  font-size: 0.95rem;

}


/* SECTIONS */

.executive-section {

  margin-bottom: 12px;

}


.executive-section h3 {

  font-size: 0.82rem;

  text-transform: uppercase;

  letter-spacing: 2px;

  margin-bottom: 12px;

  border-bottom: 1px solid #ddd;

  padding-bottom: 8px;

}


/* ITEMS */

.executive-item {

  margin-bottom: 18px;

}


.executive-row {

  display: flex;

  justify-content: space-between;

  gap: 20px;

  margin-bottom: 4px;

}


.executive-row h4 {

  font-size: 1rem;

  font-weight: 700;

}


.executive-row span {

  color: #666;

  font-size: 0.92rem;

}


.executive-company {

  font-weight: 500;

  margin-bottom: 6px;

  color: #333;

}


/* SKILLS */

.executive-skills {

  display: flex;

  flex-wrap: wrap;

  gap: 10px;

}


.executive-skill-tag {

  padding: 6px 12px;

  border: 1px solid #ccc;

  border-radius: 999px;

  font-size: 0.85rem;

}

.resume-executive-template .pdf-safe-block {

  break-inside: auto;

  page-break-inside: auto;

}

.executive-section h3 {

  break-after: avoid;

  page-break-after: avoid;

}

/* PDF RENDER STABILITY */
.resume-sidebar-template,
.resume-executive-template,
.resume-preview-live {

  overflow: visible;

}

/*---------------------------------Compact Preview Style---------------------------------*/

/* COMPACT TEMPLATE PREVIEW */

.compact-preview {

  display: flex;

  flex-direction: column;

}


.compact-header-demo {

  height: 38px;

  width: 65%;

  background: #ddd;

  border-radius: 8px;

  margin-bottom: 24px;

}


.compact-grid-demo {

  display: flex;

  flex-direction: column;

  gap: 12px;

}


.compact-line {

  height: 10px;

  background: #ddd;

  border-radius: 999px;

}


.compact-line.short {

  width: 60%;

}


/* COMPACT TEMPLATE */

.resume-compact-template {

  width: 794px;

  min-height: auto;

  background: #fff;

  padding: 16mm 16mm;

  box-sizing: border-box;

  box-shadow: 0 20px 60px rgba(0,0,0,0.05);

  overflow: hidden;

}


/* HEADER */

.compact-header {

  margin-bottom: 22px;

  border-bottom: 1px solid #ddd;

  padding-bottom: 14px;

}


.compact-header h1 {

  font-size: 2.2rem;

  margin-bottom: 10px;

  line-height: 1.1;

}


.compact-contact {

  display: flex;

  flex-wrap: wrap;

  gap: 14px;

  color: #555;

  font-size: 0.9rem;

}


/* SECTION */

.compact-section {

  margin-bottom: 18px;

}


.compact-section h3 {

  font-size: 0.75rem;

  text-transform: uppercase;

  letter-spacing: 2px;

  margin-bottom: 10px;

  color: #111;

}


/* ITEMS */

.compact-item {

  margin-bottom: 14px;

}


.compact-top-row {

  display: flex;

  justify-content: space-between;

  align-items: flex-start;

  gap: 20px;

  margin-bottom: 4px;

}


.compact-top-row h4 {

  font-size: 0.95rem;

  font-weight: 700;

}


.compact-top-row span {

  font-size: 0.82rem;

  color: #666;

  white-space: nowrap;

}


.compact-subtitle {

  font-size: 0.88rem;

  font-weight: 500;

  color: #444;

  margin-bottom: 6px;

}


.compact-item p {

  line-height: 1.5;

  font-size: 0.88rem;

}


/* FOOTER GRID */

.compact-footer-grid {

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 24px;

  margin-top: 24px;

}


/* SKILLS */

.compact-skills {

  display: flex;

  flex-wrap: wrap;

  gap: 8px;

}


.compact-skill-tag {

  padding: 5px 10px;

  border: 1px solid #ccc;

  border-radius: 999px;

  font-size: 0.8rem;

}



/*-------------------------------------------------------------------- CREATIVE TEMPLATE PREVIEW */

.creative-preview {

  position: relative;

  overflow: hidden;

}


.creative-accent {

  position: absolute;

  left: 0;

  top: 0;

  width: 10px;

  height: 100%;

  background: #000;

}


.creative-name-demo {

  width: 70%;

  height: 40px;

  background: #ddd;

  border-radius: 10px;

  margin-left: 28px;

  margin-bottom: 28px;

}


.creative-line {

  height: 12px;

  background: #ddd;

  border-radius: 999px;

  margin-left: 28px;

  margin-bottom: 14px;

}


.creative-line.short {

  width: 55%;

}


/*--------------------------------------------------------------------------------- CREATIVE TEMPLATE */

.resume-creative-template {

  width: 794px;

  min-height: 1123px;

  background: #fff;

  position: relative;

  overflow: hidden;

  box-shadow: 0 20px 60px rgba(0,0,0,0.05);

}


/* SIDE ACCENT */

.creative-side-accent {

  position: absolute;

  left: 0;

  top: 0;

  width: 14px;

  height: 100%;

  background: #000;

}


/* MAIN CONTENT */

.creative-main-content {

  padding: 22mm 20mm 22mm 32mm;

  box-sizing: border-box;

}


/* HEADER */

.creative-header {

  margin-bottom: 40px;

}


.creative-header h1 {

  font-size: 3rem;

  line-height: 1.05;

  margin-bottom: 16px;

  letter-spacing: -1.5px;

}


.creative-contact {

  display: flex;

  flex-wrap: wrap;

  gap: 18px;

  color: #666;

}


/* SECTION */

.creative-section {

  margin-bottom: 34px;

}


.creative-section h3 {

  font-size: 0.82rem;

  text-transform: uppercase;

  letter-spacing: 2px;

  margin-bottom: 16px;

  color: #111;

}


/* ITEMS */

.creative-item {

  margin-bottom: 20px;

}


.creative-top-row {

  display: flex;

  justify-content: space-between;

  gap: 20px;

  margin-bottom: 6px;

}


.creative-top-row h4 {

  font-size: 1rem;

  font-weight: 700;

}


.creative-top-row span {

  font-size: 0.88rem;

  color: #777;

}


.creative-subtitle {

  font-weight: 500;

  color: #444;

  margin-bottom: 6px;

}


.creative-item p {

  line-height: 1.7;

}


/* GRID */

.creative-grid {
  display: flex;
  gap: 40px;
}


/* SKILLS */

.creative-skills {

  display: flex;

  flex-wrap: wrap;

  gap: 10px;

}


.creative-skill-tag {

  padding: 7px 14px;

  border-radius: 999px;

  background: #f2f2f2;

  font-size: 0.85rem;

}

/* CREATIVE TEMPLATE PDF FIX */

.creative-grid,
.creative-section,
.creative-item {

  break-inside: avoid;

  page-break-inside: avoid;

}


/*---------------------------------------------------------------------------------------------- ABOUT PREVIEW */

/* ========================================
   PREMIUM ABOUT SECTION
======================================== */

.about-preview-section {

  padding: 140px 120px;

  background: #fff;

}


.about-preview-container {

  max-width: 1400px;

  margin: auto;

  display: grid;

  grid-template-columns: 1.2fr 1fr;

  gap: 100px;

  align-items: center;

}


.section-mini-tag {

  display: inline-block;

  font-size: 0.78rem;

  font-weight: 600;

  text-transform: uppercase;

  letter-spacing: 2px;

  margin-bottom: 20px;

  color: #666;

}


.about-preview-top h2 {

  font-size: 5rem;

  line-height: 0.95;

  letter-spacing: -3px;

}


.about-preview-bottom {

  max-width: 500px;

}


.about-preview-bottom p {

  font-size: 1.08rem;

  line-height: 1.9;

  color: #555;

  margin-bottom: 24px;

}



/* ========================================
   PREMIUM BLOG SECTION
======================================== */

.blog-preview-section {

  padding: 120px 120px 140px;

  background: #f7f7f7;

}


.blog-preview-header {

  text-align: center;

  max-width: 720px;

  margin: auto;

  margin-bottom: 70px;

}


.blog-preview-header h2 {

  font-size: 4rem;

  line-height: 1;

  letter-spacing: -2px;

  margin-bottom: 22px;

}


.blog-preview-header p {

  color: #666;

  font-size: 1.1rem;

  line-height: 1.8;

}


.blog-preview-grid {

  max-width: 1400px;

  margin: auto;

  display: grid;

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

  gap: 28px;

}


.blog-preview-card {

  background: #fff;

  border-radius: 28px;

  padding: 40px;

  min-height: 260px;

  display: flex;

  flex-direction: column;

  justify-content: space-between;

  transition: 0.25s ease;

}


.blog-preview-card:hover {

  transform: translateY(-6px);

}


.blog-preview-meta {

  font-size: 0.78rem;

  font-weight: 600;

  text-transform: uppercase;

  letter-spacing: 2px;

  color: #777;

  margin-bottom: 24px;

}


.blog-preview-card h3 {

  font-size: 1.7rem;

  line-height: 1.25;

  margin-bottom: 40px;

}


.blog-preview-card a {

  text-decoration: none;

  color: #000;

  font-weight: 600;

}


.blog-preview-footer {

  text-align: center;

  margin-top: 60px;

}


/* ========================================
   ABOUT PAGE
======================================== ------------------------------------------------------*/

.about-hero {

  padding: 180px 120px 120px;

  background: #fff;

}


.about-hero-content {

  max-width: 1000px;

}


.about-hero-content h1 {

  font-size: 6rem;

  line-height: 0.95;

  letter-spacing: -4px;

  margin-bottom: 28px;

}


.about-hero-content p {

  max-width: 700px;

  font-size: 1.15rem;

  line-height: 1.9;

  color: #555;

}



/* MAIN SECTION */

/* ========================================
   EDITORIAL ABOUT CONTENT
======================================== */

.about-editorial-section {

  padding: 40px 120px 140px;

  background: #fff;

}


.about-editorial-container {

  max-width: 1100px;

  margin: auto;

}


.about-editorial-block {

  margin-bottom: 120px;

}


.about-section-label {

  display: inline-block;

  font-size: 0.78rem;

  font-weight: 600;

  text-transform: uppercase;

  letter-spacing: 2px;

  margin-bottom: 18px;

  color: #777;

}


.about-editorial-block h2 {

  font-size: 4rem;

  line-height: 1;

  letter-spacing: -2px;

  margin-bottom: 30px;

}


.about-editorial-block p {

  max-width: 850px;

  font-size: 1.08rem;

  line-height: 2;

  color: #555;

  margin-bottom: 24px;

}


/* FEATURE LIST */

.about-feature-list {

  margin-top: 50px;

}


.about-feature-item {

  padding: 34px 0;

  border-top: 1px solid #eee;

}


.about-feature-item:last-child {

  border-bottom: 1px solid #eee;

}


.about-feature-item h3 {

  font-size: 1.4rem;

  margin-bottom: 14px;

}


/* TEMPLATE GRID */

.about-template-grid {

  display: grid;

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

  gap: 28px;

  margin-bottom: 120px;

}


.about-template-card {

  border: 1px solid #eee;

  border-radius: 28px;

  padding: 36px;

}


.about-template-card h3 {

  font-size: 1.4rem;

  margin-bottom: 16px;

}


.about-template-card p {

  font-size: 1rem;

  line-height: 1.8;

  color: #666;

}



/* FINAL CTA */

.about-final-cta {

  padding: 140px 120px;

  background: #f7f7f7;

}


.about-final-cta-content {

  max-width: 900px;

  margin: auto;

  text-align: center;

}


.about-final-cta-content h2 {

  font-size: 4rem;

  line-height: 1;

  letter-spacing: -2px;

  margin-bottom: 24px;

}


.about-final-cta-content p {

  font-size: 1.1rem;

  color: #666;

  margin-bottom: 34px;

}


/* ========================================
   ------------------------------------------------------------------------------------------BLOG PAGE
======================================== */

.blog-hero {

  padding: 180px 120px 120px;

  background: #fff;

}


.blog-hero-content {

  max-width: 1000px;

}


.blog-hero-content h1 {

  font-size: 5.8rem;

  line-height: 0.95;

  letter-spacing: -4px;

  margin-bottom: 30px;

}


.blog-hero-content p {

  max-width: 720px;

  font-size: 1.1rem;

  line-height: 1.9;

  color: #555;

}



/* FEATURED BLOG */

.featured-blog-section {

  padding: 0 120px 120px;

  background: #fff;

}


.featured-blog-card {

  max-width: 1400px;

  margin: auto;

  background: #f7f7f7;

  border-radius: 40px;

  padding: 70px;

  display: grid;

  grid-template-columns: 1.1fr 0.9fr;

  gap: 80px;

  align-items: center;

}


.featured-blog-tag {

  display: inline-block;

  font-size: 0.78rem;

  font-weight: 600;

  letter-spacing: 2px;

  margin-bottom: 22px;

  color: #777;

}


.featured-blog-left h2 {

  font-size: 3.4rem;

  line-height: 1;

  letter-spacing: -2px;

  margin-bottom: 28px;

}


.featured-blog-left p {

  font-size: 1.05rem;

  line-height: 1.9;

  color: #555;

  margin-bottom: 34px;

}


.featured-blog-link {

  text-decoration: none;

  font-weight: 600;

  color: #000;

}


/* PREVIEW */

.featured-blog-preview {

  background: #fff;

  border-radius: 30px;

  padding: 50px;

}


.featured-line {

  height: 14px;

  background: #eee;

  border-radius: 100px;

  margin-bottom: 16px;

}


.featured-line.long {

  width: 100%;

}


.featured-line.short {

  width: 50%;

}


.featured-line {

  width: 80%;

}


.featured-block {

  height: 120px;

  background: #f2f2f2;

  border-radius: 20px;

  margin: 30px 0;

}



/* BLOG GRID */

.blog-grid-section {

  padding: 0 120px 140px;

  background: #fff;

}


.blog-grid {

  max-width: 1400px;

  margin: auto;

  display: grid;

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

  gap: 28px;

}


.blog-article-card {

  border: 1px solid #eee;

  border-radius: 28px;

  padding: 40px;

  transition: 0.25s ease;

}


.blog-article-card:hover {

  transform: translateY(-6px);

}


.blog-article-category {

  display: inline-block;

  font-size: 0.76rem;

  font-weight: 600;

  text-transform: uppercase;

  letter-spacing: 2px;

  color: #777;

  margin-bottom: 22px;

}


.blog-article-card h3 {

  font-size: 1.8rem;

  line-height: 1.2;

  margin-bottom: 24px;

}


.blog-article-card p {

  color: #666;

  line-height: 1.8;

  margin-bottom: 28px;

}


.blog-article-card a {

  text-decoration: none;

  color: #000;

  font-weight: 600;

}



/* FINAL CTA */

.blog-final-cta {

  padding: 140px 120px;

  background: #f7f7f7;

}


.blog-final-cta-content {

  max-width: 900px;

  margin: auto;

  text-align: center;

}


.blog-final-cta-content h2 {

  font-size: 4rem;

  line-height: 1;

  letter-spacing: -2px;

  margin-bottom: 24px;

}


.blog-final-cta-content p {

  font-size: 1.1rem;

  color: #666;

  margin-bottom: 34px;

}



/* ========================================
   ---------------------------------------------------------------------------------------------------------------------ARTICLE PAGE
======================================== */

.article-hero {

  padding: 180px 120px 100px;

  background: #fff;

}


.article-hero-content {

  max-width: 1000px;

}


.article-category {

  display: inline-block;

  font-size: 0.8rem;

  font-weight: 600;

  text-transform: uppercase;

  letter-spacing: 2px;

  margin-bottom: 22px;

  color: #777;

}


.article-hero-content h1 {

  font-size: 5.5rem;

  line-height: 0.95;

  letter-spacing: -4px;

  margin-bottom: 30px;

}


.article-hero-content p {

  max-width: 760px;

  font-size: 1.1rem;

  line-height: 1.9;

  color: #555;

}



/* ARTICLE CONTENT */

.article-content-section {

  padding: 0 120px 140px;

  background: #fff;

}


.article-content-container {

  max-width: 850px;

  margin: auto;

}


.article-intro {

  font-size: 1.2rem;

  line-height: 2;

  color: #333;

  margin-bottom: 70px;

}


.article-content-container h2 {

  font-size: 3rem;

  line-height: 1.05;

  letter-spacing: -2px;

  margin-top: 90px;

  margin-bottom: 26px;

}


.article-content-container p {

  font-size: 1.08rem;

  line-height: 2;

  color: #555;

  margin-bottom: 24px;

}


.article-list {

  margin-bottom: 34px;

  padding-left: 24px;

}


.article-list li {

  margin-bottom: 14px;

  line-height: 1.9;

  color: #444;

}


/* HIGHLIGHT */

.article-highlight-box {

  margin: 70px 0;

  padding: 40px;

  background: #f7f7f7;

  border-radius: 28px;

}


.article-highlight-box h3 {

  font-size: 1.5rem;

  margin-bottom: 14px;

}



/* CTA */

.article-cta-box {

  margin-top: 100px;

  padding: 60px;

  background: #111;

  border-radius: 36px;

  text-align: center;

}


.article-cta-box h3 {

  font-size: 2.5rem;

  line-height: 1.1;

  color: #fff;

  margin-bottom: 20px;

}


.article-cta-box p {

  max-width: 650px;

  margin: auto;

  margin-bottom: 30px;

  color: rgba(255,255,255,0.7);

}

/* ARTICLE CTA BUTTON FIX */

.article-cta-box .primary-btn {

  background: #fff;

  color: #000;

}


.article-cta-box .primary-btn:hover {

  background: #eaeaea;

}


/*************************/

.wireframe {

  height: 300px;

  background: #fafafa;

  border-radius: 20px;

  padding: 20px;

  position: relative;

  overflow: hidden;

}

.wf-name {

  width: 50%;

  height: 16px;

  background: #111;

  border-radius: 8px;

  margin-bottom: 20px;

}

.wf-section {

  width: 30%;

  height: 8px;

  background: #777;

  border-radius: 4px;

  margin-top: 20px;

  margin-bottom: 12px;

}

.wf-line {

  height: 6px;

  background: #ddd;

  border-radius: 4px;

  margin-bottom: 10px;

}

.wf-line.long {

  width: 100%;

}

.wf-line.medium {

  width: 75%;

}
/*--------sidebar wireframe*/
.sidebar-wireframe {

  display: flex;

  gap: 20px;

}

.wf-sidebar {

  width: 28%;

  background: #e5e5e5;

  border-radius: 12px;

}

.wf-main {

  flex: 1;

}

/*-------------------------------executive wireframe*/

.wf-header {

  width: 100%;

  height: 30px;

  background: #111;

  border-radius: 10px;

  margin-bottom: 25px;

}

/*-------------------------------compact wireframe*/
.wf-grid {

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 12px;

  margin-top: 20px;

}

.wf-block {

  height: 70px;

  background: #e8e8e8;

  border-radius: 10px;

}

/*----------------------------------creative wireframe*/
.creative-accent {

  position: absolute;

  left: 0;

  top: 0;

  width: 8px;

  height: 100%;

  background: #111;

}

/*-------------------------------------------------------------------------------------------Contact Page -------------------------------------*/
.email-card {
  margin: 24px 0;
  padding: 20px 24px;
  border: 1px solid #e5e5e5;
  border-radius: 16px;
  width: fit-content;
}

.email-card a {
  color: #111;
  text-decoration: none;
  font-weight: 600;
}

.contact-list {
  margin-top: 20px;
  padding-left: 20px;
}

.contact-list li {
  margin-bottom: 10px;
}

.footer-legal-link {

  display: inline-block;

  margin-bottom: 12px;

  color: #666;

  text-decoration: none;

  font-size: 0.95rem;

}

.footer-legal-link:hover {

  color: #111;

}