html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body{
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
    margin: 0 !important;
    padding: 0 !important;
}

.header {
    display: none;
}

/* Premium Loading */
.trust-badge,
.branches-hero-title,
.branches-hero-subtitle,
.value-props,
.hero-cta-group,
.sector-featured-card,
.more-sectors-block {
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.5s cubic-bezier(0.25, 0.1, 0.25, 1), transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.loaded .trust-badge { opacity: 1; transform: translateY(0); transition-delay: 0.05s; }
.loaded .branches-hero-title { opacity: 1; transform: translateY(0); transition-delay: 0.12s; }
.loaded .branches-hero-subtitle { opacity: 1; transform: translateY(0); transition-delay: 0.19s; }
.loaded .value-props { opacity: 1; transform: translateY(0); transition-delay: 0.26s; }
.loaded .hero-cta-group { opacity: 1; transform: translateY(0); transition-delay: 0.33s; }
.loaded .sector-featured-card:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0.4s; }
.loaded .sector-featured-card:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.47s; }
.loaded .sector-featured-card:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.54s; }
.loaded .more-sectors-block { opacity: 1; transform: translateY(0); transition-delay: 0.61s; }

/* Hero Section */
.branches-hero {
    position: relative;
    background:
        radial-gradient(ellipse 1000px 700px at 15% 30%, rgba(255, 140, 110, 0.5) 0%, transparent 60%),
        radial-gradient(ellipse 800px 600px at 85% 70%, rgba(255, 180, 150, 0.45) 0%, transparent 60%),
        radial-gradient(ellipse 600px 500px at 50% 50%, rgba(255, 160, 130, 0.25) 0%, transparent 70%),
        linear-gradient(135deg, #ff9b82 0%, #ffb399 35%, #ffc8b3 70%, #ffd4c4 100%);
    padding: 5rem 2rem 6rem;
    overflow: hidden;
    min-height: 75vh;
    display: flex;
    align-items: center;
    margin: 0;
}

.branches-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='40' cy='40' r='2' fill='%23ffffff' fill-opacity='0.04'/%3E%3Cpath d='M40 25l-8 8 8 8 8-8-8-8z' fill='%23ffffff' fill-opacity='0.02'/%3E%3C/svg%3E");
    background-size: 80px 80px;
    z-index: 1;
    pointer-events: none;
    opacity: 0.7;
}

.branches-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 155, 130, 0.15) 0%, rgba(255, 179, 153, 0.1) 100%);
    pointer-events: none;
}

/* Wave Decorations */
.hero-wave-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: #ffffff;
    clip-path: ellipse(100% 100% at 50% 0%);
    transform: translateY(-50%);
}

.hero-wave-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: #ffffff;
    clip-path: ellipse(100% 100% at 50% 100%);
    transform: translateY(50%);
}

/* Premium Blobs */
.premium-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.18;
    z-index: 2;
    pointer-events: none;
}

.blob-1 {
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.6) 0%, rgba(255, 240, 230, 0.3) 40%, transparent 70%);
    top: -150px;
    right: 5%;
}

.blob-2 {
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.5) 0%, rgba(255, 220, 200, 0.25) 40%, transparent 70%);
    bottom: -120px;
    left: 0%;
}

.blob-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 200, 170, 0.4) 0%, rgba(255, 180, 150, 0.2) 40%, transparent 70%);
    top: 40%;
    right: 20%;
}

/* Background Shapes */
.branches-hero .bg-shape {
    position: absolute;
    z-index: 2;
    pointer-events: none;
    color: rgba(255, 255, 255, 1);
}

.branches-hero .bg-shape svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    fill: none;
}

/* Hero Content Layout */
.branches-hero-content {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
}

.hero-left {
    max-width: 580px;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

/* Trust Badge */
.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(31, 41, 55, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.65rem 1.35rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: fit-content;
}

.badge-icon {
    width: 18px;
    height: 18px;
    stroke: #ff7a3d;
    flex-shrink: 0;
}

.trust-badge span {
    font-size: 0.85rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: -0.01em;
}

/* Value Props */
.value-props {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.value-icon {
    width: 20px;
    height: 20px;
    stroke: #1f2937;
    stroke-width: 3;
    flex-shrink: 0;
}

.value-item span {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1f2937;
    letter-spacing: -0.01em;
}

.branches-hero-title {
    font-size: 3rem;
    font-weight: 900;
    color: #1f2937;
    line-height: 1.15;
    margin: 0;
    text-shadow: none;
    letter-spacing: -0.02em;
}

.text-gradient {
    background: linear-gradient(135deg, #FF7632 0%, #FF6B2C 50%, #FF5722 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    font-weight: 900;
}

.branches-hero-subtitle {
    font-size: 1.1rem;
    color: #1f2937;
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

/* Hero CTA */
.hero-cta-group {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.btn-white-outline {
    background: rgba(31, 41, 55, 0.1);
    backdrop-filter: blur(10px);
    color: #1f2937;
    border: 2px solid rgba(31, 41, 55, 0.3);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.825rem 1.65rem;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-white-outline:hover {
    background: #1f2937;
    color: #ffffff;
    border-color: #1f2937;
    transform: translateY(-2px);
}

.btn-white-outline .icon {
    width: 18px;
    height: 18px;
}

/* Hero Right - Featured Sectors */
.hero-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
    max-width: 100%;
    justify-self: end;
}

.more-sectors-block {
    grid-column: 1 / -1;
}

/* Featured Sector Cards */
.sector-featured-card {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    border-radius: 1.1rem;
    padding: 1.15rem 1.35rem;
    box-shadow: 0 3px 16px rgba(0, 0, 0, 0.07);
    border: 2px solid rgba(255, 255, 255, 0.5);
    display: flex;
    gap: 0.9rem;
    align-items: flex-start;
    transition: all 0.3s ease;
    transform: scale(0.85);
    transform-origin: top;
}

.sector-featured-card:hover {
    transform: scale(0.85) translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    border-color: #ff7a3d;
}

.sector-featured-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #ff7a3d 0%, #ff9b82 100%);
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.sector-featured-card:hover .sector-featured-icon {
    transform: scale(1.05);
}

.sector-featured-icon svg {
    width: 22px;
    height: 22px;
    stroke: #ffffff;
    stroke-width: 2.5;
}

.sector-featured-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.sector-featured-content h3 {
    font-size: 1rem;
    font-weight: 800;
    color: #1f2937;
    margin: 0;
    letter-spacing: -0.01em;
}

.sector-featured-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.sector-featured-list li {
    font-size: 0.8rem;
    color: #6b7280;
    font-weight: 500;
    padding-left: 1rem;
    position: relative;
}

.sector-featured-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: #ff7a3d;
    border-radius: 50%;
}

.sector-featured-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: #ff7a3d;
    font-weight: 700;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 0.25rem;
}

.sector-featured-link:hover {
    gap: 0.65rem;
}

.sector-featured-link svg {
    width: 16px;
    height: 16px;
    stroke-width: 2.5;
}

/* More Sectors Block */
.more-sectors-block {
    grid-column: 1 / -1;
    background: rgba(31, 41, 55, 0.97);
    backdrop-filter: blur(10px);
    border-radius: 1.2rem;
    padding: 1.35rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.35rem;
    align-items: center;
}

.sectors-visual-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.65rem;
    padding: 0.55rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.sector-mini-box {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, rgba(255, 155, 130, 0.15) 0%, rgba(255, 122, 61, 0.1) 100%);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 155, 130, 0.2);
}

.sector-mini-box svg {
    width: 20px;
    height: 20px;
    color: #ff9b82;
    opacity: 0.8;
    stroke-width: 2;
}

.sectors-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.more-sectors-text {
    font-size: 0.88rem;
    color: #e5e7eb;
    line-height: 1.55;
    margin: 0;
}

.more-sectors-text strong {
    color: #ffffff;
    font-weight: 700;
}

.btn-more-sectors {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #ff7a3d 0%, #ff9b82 100%);
    color: #ffffff;
    padding: 0.65rem 1.2rem;
    border-radius: 0.65rem;
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-more-sectors:hover {
    background: linear-gradient(135deg, #ff6428 0%, #ff8a6b 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-more-sectors svg {
    width: 16px;
    height: 16px;
    stroke-width: 2.5;
}

/* Sectors Overview Section */
.sectors-overview {
    padding: 5rem 2rem;
    background: #ffffff !important;
}

.section-header-compact {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3.5rem;
}

.section-title-medium {
    font-size: 2.25rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    line-height: 1.25;
}

.section-subtitle-medium {
    font-size: 1.1rem;
    color: #6b7280;
    line-height: 1.6;
    font-weight: 500;
}

/* Sectors Card Grid - Image Based Cards */
.sectors-card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1280px;
    margin: 0 auto;
}

.sector-image-card {
    position: relative;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    box-shadow:
        0 1px 3px rgba(0, 0, 0, 0.05),
        0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.sector-image-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 8px 24px rgba(255, 122, 61, 0.12),
        0 16px 48px rgba(0, 0, 0, 0.1);
    border-color: rgba(255, 122, 61, 0.2);
}

.sector-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #ff7a3d;
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.4rem 0.85rem;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 3;
    box-shadow: 0 2px 8px rgba(255, 122, 61, 0.4);
}

.sector-badge-secondary {
    background: #10b981;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.4);
}

.sector-image-wrapper {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
    background: #f3f4f6;
}

.sector-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.sector-image-card:hover .sector-image-wrapper img {
    transform: scale(1.08);
}

.sector-icon-circle {
    position: absolute;
    top: 160px;
    left: 50%;
    transform: translateX(-50%);
    width: 54px;
    height: 54px;
    background: linear-gradient(145deg, #ffffff 0%, #fefefe 100%);
    border: 2px solid #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 2;
    transition: all 0.3s ease;
}

.sector-image-card:hover .sector-icon-circle {
    background: linear-gradient(145deg, #ff7a3d 0%, #ff9b82 100%);
    border-color: #ff7a3d;
    transform: translateX(-50%) scale(1.1);
}

.sector-icon-circle svg {
    width: 24px;
    height: 24px;
    stroke: #ff7a3d;
    stroke-width: 2;
    transition: stroke 0.3s ease;
}

.sector-image-card:hover .sector-icon-circle svg {
    stroke: #ffffff;
}

.sector-image-content {
    padding: 2.25rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex: 1;
}

.sector-image-content h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
    letter-spacing: -0.015em;
    line-height: 1.3;
    transition: color 0.25s ease;
}

.sector-image-card:hover .sector-image-content h3 {
    color: #ff7a3d;
}

.sector-image-content p {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
}

.sector-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.sector-tag {
    font-size: 0.7rem;
    font-weight: 600;
    color: #4b5563;
    background: #f3f4f6;
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    border: 1px solid #e5e7eb;
}

.sector-image-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #ff7a3d;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: auto;
    padding-top: 1rem;
    transition: gap 0.3s ease;
}

.sector-image-card:hover .sector-image-link {
    gap: 0.75rem;
}

.sector-image-link svg {
    width: 18px;
    height: 18px;
    stroke-width: 2.5;
    transition: transform 0.3s ease;
}

.sector-image-card:hover .sector-image-link svg {
    transform: translateX(3px);
}

/* Old Sectors Grid - Keep for backwards compatibility */
.sectors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.sector-card {
    background: linear-gradient(180deg, #ffffff 0%, #fefefe 100%);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    padding: 2rem 1.75rem 1.75rem;
    transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
    cursor: pointer;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 1px 2px rgba(0, 0, 0, 0.04),
        0 4px 12px rgba(0, 0, 0, 0.06),
        0 8px 24px rgba(0, 0, 0, 0.04);
}

.sector-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff7a3d, #ff9b82);
    transform: scaleX(0.25);
    opacity: 0.5;
    transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.sector-card:hover {
    border-color: rgba(255, 122, 61, 0.25);
    box-shadow:
        0 4px 12px rgba(255, 122, 61, 0.1),
        0 12px 32px rgba(255, 122, 61, 0.12),
        0 20px 48px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

.sector-card:hover::before {
    transform: scaleX(1);
    opacity: 1;
}

.sector-card-icon {
    width: 54px;
    height: 54px;
    background: linear-gradient(145deg, #fff0eb 0%, #ffe4db 100%);
    border: 1.5px solid rgba(255, 122, 61, 0.2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
    position: relative;
    box-shadow: 0 2px 8px rgba(255, 122, 61, 0.1);
}

.sector-card:hover .sector-card-icon {
    background: linear-gradient(145deg, #ff7a3d 0%, #ff9b82 100%);
    border-color: transparent;
    transform: scale(1.04);
    box-shadow: 0 4px 16px rgba(255, 122, 61, 0.35);
}

.sector-card-icon svg {
    width: 26px;
    height: 26px;
    stroke: #e85d2a;
    stroke-width: 2.25;
    transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.sector-card:hover .sector-card-icon svg {
    stroke: #ffffff;
}

.sector-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.sector-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #111827;
    margin: 0;
    letter-spacing: -0.015em;
    line-height: 1.35;
    transition: color 0.25s ease;
}

.sector-card:hover h3 {
    color: #0f172a;
}

.sector-card p {
    font-size: 0.875rem;
    color: #4b5563;
    line-height: 1.5;
    margin: 0;
}

.sector-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #e85d2a;
    font-weight: 600;
    font-size: 0.875rem;
    margin-top: auto;
    padding-top: 0.85rem;
    border-top: 1px solid #e5e7eb;
    transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.sector-card:hover .sector-card-cta {
    color: #d4450f;
    border-top-color: rgba(255, 122, 61, 0.2);
}

.sector-card-cta svg {
    width: 18px;
    height: 18px;
    stroke-width: 2.5;
    transition: transform 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.sector-card:hover .sector-card-cta svg {
    transform: translateX(4px);
}

/* Dark Card Variant */
.sector-card.sector-card-dark {
    background: linear-gradient(145deg, #1f2937 0%, #2d3748 100%);
    border-color: rgba(255, 255, 255, 0.06);
}

.sector-card.sector-card-dark .sector-card-icon {
    background: linear-gradient(145deg, rgba(255, 122, 61, 0.15) 0%, rgba(255, 122, 61, 0.08) 100%);
    border-color: rgba(255, 155, 130, 0.25);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.sector-card.sector-card-dark .sector-card-icon svg {
    stroke: #ff9b82;
}

.sector-card.sector-card-dark:hover .sector-card-icon {
    background: linear-gradient(145deg, #ff7a3d 0%, #ff9b82 100%);
    border-color: transparent;
    box-shadow: 0 4px 16px rgba(255, 122, 61, 0.4);
}

.sector-card.sector-card-dark:hover .sector-card-icon svg {
    stroke: #ffffff;
}

.sector-card.sector-card-dark h3 {
    color: #ffffff;
}

.sector-card.sector-card-dark:hover h3 {
    color: #ffffff;
}

.sector-card.sector-card-dark p {
    color: #9ca3af;
}

.sector-card.sector-card-dark .sector-card-cta {
    color: #ff9b82;
    border-top-color: rgba(255, 255, 255, 0.08);
}

.sector-card.sector-card-dark:hover .sector-card-cta {
    color: #ffb399;
    border-top-color: rgba(255, 155, 130, 0.2);
}

.sector-card.sector-card-dark::before {
    background: linear-gradient(90deg, #ff9b82, #ffb399);
    opacity: 0.4;
}

.sector-card.sector-card-dark:hover::before {
    opacity: 1;
}

.sector-card.sector-card-dark:hover {
    border-color: rgba(255, 155, 130, 0.15);
    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.2),
        0 12px 32px rgba(0, 0, 0, 0.25);
}

/* Featured Card - Spans 3 columns (with dark card taking 1) */
.sector-card.sector-card-featured {
    grid-column: span 3;
    flex-direction: row;
    align-items: center;
    gap: 2rem;
    padding: 2.25rem 2.5rem;
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    border-color: transparent;
}

.sector-card.sector-card-featured .sector-card-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(145deg, rgba(255, 122, 61, 0.2) 0%, rgba(255, 122, 61, 0.1) 100%);
    border-color: rgba(255, 155, 130, 0.3);
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.sector-card.sector-card-featured .sector-card-icon svg {
    width: 30px;
    height: 30px;
    stroke: #ff9b82;
}

.sector-card.sector-card-featured:hover .sector-card-icon {
    background: linear-gradient(145deg, #ff7a3d 0%, #ff9b82 100%);
    box-shadow: 0 6px 24px rgba(255, 122, 61, 0.4);
}

.sector-card.sector-card-featured:hover .sector-card-icon svg {
    stroke: #ffffff;
}

.sector-card.sector-card-featured .sector-card-content {
    flex: 1;
}

.sector-card.sector-card-featured h3 {
    color: #ffffff;
    font-size: 1.25rem;
}

.sector-card.sector-card-featured:hover h3 {
    color: #ffffff;
}

.sector-card.sector-card-featured p {
    color: #9ca3af;
    font-size: 0.9rem;
}

.sector-card.sector-card-featured .sector-card-cta {
    border-top: none;
    padding-top: 0.5rem;
    color: #ff9b82;
}

.sector-card.sector-card-featured:hover .sector-card-cta {
    color: #ffb399;
    border-top-color: transparent;
}

.sector-card.sector-card-featured::before {
    left: 2rem;
    right: 2rem;
    background: linear-gradient(90deg, #ff9b82, #ffb399);
    transform: scaleX(0.15);
    opacity: 0.6;
}

.sector-card.sector-card-featured:hover::before {
    transform: scaleX(1);
    opacity: 1;
}

.sector-card.sector-card-featured:hover {
    border-color: rgba(255, 155, 130, 0.2);
    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.3),
        0 16px 48px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
}

/* Page Intro Section */
.page-intro-section {
    padding: 4rem 2rem;
    background: #ffffff !important;
    border-bottom: 1px solid #f1f5f9;
}

.page-intro-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 3rem;
    align-items: center;
}

.page-intro-content {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.page-intro-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #fff5f2 0%, #ffe8e0 100%);
    color: #c2410c;
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    width: fit-content;
    border: 1px solid rgba(255, 122, 61, 0.15);
}

.page-intro-badge svg {
    width: 14px;
    height: 14px;
    stroke: #ea580c;
    stroke-width: 2.5;
}

.page-intro-title {
    font-size: 1.85rem;
    font-weight: 800;
    color: #1f2937;
    line-height: 1.3;
    letter-spacing: -0.02em;
    margin: 0;
}

.page-intro-text {
    font-size: 1.05rem;
    color: #4b5563;
    line-height: 1.75;
    margin: 0;
}

.page-intro-text strong {
    color: #1f2937;
    font-weight: 600;
}

.page-intro-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.page-intro-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
}

.page-intro-btn-primary {
    background: linear-gradient(135deg, #ff7a3d 0%, #ff9b82 100%);
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(255, 122, 61, 0.25);
}

.page-intro-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(255, 122, 61, 0.35);
}

.page-intro-btn-primary svg {
    width: 16px;
    height: 16px;
    stroke-width: 2.5;
    transition: transform 0.25s ease;
}

.page-intro-btn-primary:hover svg {
    transform: translateX(3px);
}

.page-intro-btn-secondary {
    background: #ffffff;
    color: #374151;
    border: 1px solid #e5e7eb;
}

.page-intro-btn-secondary:hover {
    border-color: #ff7a3d;
    color: #ff7a3d;
}

.page-intro-visual {
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    border-radius: 16px;
    padding: 1.75rem;
    color: #ffffff;
}

.page-intro-visual-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.25rem;
}

.page-intro-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.page-intro-stat {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 1.25rem 1rem;
    text-align: center;
}

.page-intro-stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ff9b82;
    line-height: 1;
}

.page-intro-stat-label {
    font-size: 0.7rem;
    color: #9ca3af;
    font-weight: 600;
    margin-top: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

/* Content Sections - All White */
.content-section {
    padding: 4.5rem 2rem;
    background: #ffffff !important;
}

.content-container {
    max-width: 1100px;
    margin: 0 auto;
}

/* Flow Layout with Floating Card */
.flow-layout {
    position: relative;
}

.flow-card-right {
    float: right;
    width: 340px;
    margin: 0 0 1.5rem 2.5rem;
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    border-radius: 16px;
    padding: 1.75rem;
    color: #ffffff;
}

.flow-card-left {
    float: left;
    width: 340px;
    margin: 0 2.5rem 1.5rem 0;
    background: linear-gradient(135deg, #fff5f2 0%, #ffe8e0 100%);
    border-radius: 16px;
    padding: 1.75rem;
    border: 1px solid rgba(255, 122, 61, 0.1);
}

.flow-card-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.flow-card-right .flow-card-title {
    color: #ffffff;
}

.flow-card-left .flow-card-title {
    color: #1f2937;
}

.flow-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.flow-stat {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.flow-stat-number {
    font-size: 1.35rem;
    font-weight: 800;
    color: #ff9b82;
    line-height: 1;
}

.flow-stat-label {
    font-size: 0.7rem;
    color: #9ca3af;
    font-weight: 600;
    margin-top: 0.35rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.flow-list {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.flow-list-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.875rem;
    color: #e5e7eb;
    font-weight: 500;
}

.flow-card-left .flow-list-item {
    color: #374151;
}

.flow-list-item svg {
    width: 16px;
    height: 16px;
    stroke: #ff9b82;
    flex-shrink: 0;
}

.flow-card-left .flow-list-item svg {
    stroke: #ff7a3d;
}

.flow-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: #1f2937;
    line-height: 1.3;
    letter-spacing: -0.02em;
    margin: 0 0 1rem;
}

.flow-text {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.75;
    margin: 0 0 1rem;
}

.flow-text:last-of-type {
    margin-bottom: 0;
}

.flow-text strong {
    color: #1f2937;
    font-weight: 600;
}

.flow-clear {
    clear: both;
}

/* Three Column Text Layout */
.three-col-section {
    padding: 4.5rem 2rem;
    background: #ffffff !important;
}

.three-col-container {
    max-width: 1200px;
    margin: 0 auto;
}

.three-col-header {
    margin-bottom: 2.5rem;
}

.three-col-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: #1f2937;
    letter-spacing: -0.02em;
    margin: 0 0 0.75rem;
}

.three-col-subtitle {
    font-size: 1.05rem;
    color: #6b7280;
    margin: 0;
}

.three-col-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.col-block {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    height: 100%;
}

.col-block-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1f2937;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.col-block-title svg {
    width: 20px;
    height: 20px;
    stroke: #ff7a3d;
}

.col-block-text {
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.7;
    flex-grow: 1;
}

.col-block-text strong {
    color: #1f2937;
    font-weight: 600;
}

/* Highlight Box inline */
.highlight-box {
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    border-radius: 12px;
    padding: 1.25rem;
    margin-top: auto;
}

.highlight-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ff9b82;
}

.highlight-label {
    font-size: 0.8rem;
    color: #d1d5db;
    font-weight: 500;
}

/* Two Column Text Layout */
.two-col-section {
    padding: 4.5rem 2rem;
    background: #ffffff !important;
    border-top: 1px solid #f3f4f6;
}

.two-col-container {
    max-width: 1100px;
    margin: 0 auto;
}

.two-col-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.two-col-left {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.two-col-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: #1f2937;
    letter-spacing: -0.02em;
    margin: 0;
    line-height: 1.3;
}

.two-col-text {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.75;
    margin: 0;
}

.two-col-text strong {
    color: #1f2937;
    font-weight: 600;
}

.two-col-right {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.two-col-card {
    background: linear-gradient(135deg, #fff5f2 0%, #ffe8e0 100%);
    border-radius: 14px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 122, 61, 0.1);
}

.two-col-card-title {
    font-size: 1rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.two-col-card-title svg {
    width: 18px;
    height: 18px;
    stroke: #ff7a3d;
}

.two-col-card-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.two-col-card-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #374151;
    font-weight: 500;
}

.two-col-card-item svg {
    width: 14px;
    height: 14px;
    stroke: #ff7a3d;
    flex-shrink: 0;
}

/* Process Section - Horizontal Timeline */
.process-section {
    padding: 5rem 2rem;
    background: #ffffff !important;
    position: relative;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e5e7eb 20%, #e5e7eb 80%, transparent);
}

.process-container {
    max-width: 1100px;
    margin: 0 auto;
}

.process-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    position: relative;
}

.process-grid::before {
    content: '';
    position: absolute;
    top: 32px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: linear-gradient(90deg, #ff7a3d, #ff9b82 50%, #e5e7eb 100%);
    z-index: 0;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(145deg, #1f2937 0%, #374151 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    position: relative;
    z-index: 2;
    box-shadow:
        0 4px 12px rgba(31, 41, 55, 0.2),
        0 8px 24px rgba(31, 41, 55, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-step:hover .process-icon {
    transform: translateY(-4px);
    box-shadow:
        0 6px 16px rgba(31, 41, 55, 0.25),
        0 12px 32px rgba(31, 41, 55, 0.15);
}

.process-icon svg {
    width: 28px;
    height: 28px;
    stroke: #ff9b82;
    stroke-width: 1.75;
    fill: none;
}

.process-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.process-text {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.55;
    max-width: 200px;
    margin: 0 auto;
}

/* Divider */
.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #e5e7eb 20%, #e5e7eb 80%, transparent);
    max-width: 800px;
    margin: 0 auto;
}

/* Editorial Section with Floating Images */
.editorial-section {
    padding: 5rem 2rem;
    background: #ffffff !important;
}

.editorial-container {
    max-width: 1000px;
    margin: 0 auto;
}

.editorial-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.editorial-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: #111827;
    letter-spacing: -0.025em;
    margin-bottom: 1rem;
}

.editorial-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.editorial-content {
    position: relative;
}

.editorial-float-left {
    float: left;
    width: 320px;
    margin: 0 2.5rem 2rem 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.08),
        0 12px 32px rgba(0, 0, 0, 0.06);
}

.editorial-float-right {
    float: right;
    width: 280px;
    margin: 0 0 2rem 2.5rem;
    border-radius: 16px;
    overflow: hidden;
    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.08),
        0 12px 32px rgba(0, 0, 0, 0.06);
}

.editorial-float-left img,
.editorial-float-right img {
    width: 100%;
    height: auto;
    display: block;
}

.editorial-text {
    font-size: 1.0625rem;
    color: #374151;
    line-height: 1.75;
}

.editorial-text p {
    margin-bottom: 1.5rem;
}

.editorial-text p:last-child {
    margin-bottom: 0;
}

.editorial-text strong {
    color: #111827;
    font-weight: 600;
}

.editorial-text .highlight {
    color: #e85d2a;
    font-weight: 600;
}

.editorial-design-block {
    clear: both;
    margin-top: 3rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: center;
}

.editorial-design-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(145deg, #1f2937 0%, #374151 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(31, 41, 55, 0.25);
}

.editorial-design-icon svg {
    width: 32px;
    height: 32px;
    stroke: #ff9b82;
    stroke-width: 2;
}

.editorial-design-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0 0.5rem;
}

.editorial-design-content p {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .sectors-card-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

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

    .sector-card.sector-card-featured {
        grid-column: span 3;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    .process-step::after {
        display: none;
    }

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

    .flow-card-right,
    .flow-card-left {
        width: 300px;
    }

    .page-intro-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .page-intro-visual {
        max-width: 400px;
    }
}

@media (max-width: 968px) {
    .branches-hero {
        padding: 3rem 1.5rem;
        min-height: auto;
    }

    .branches-hero-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

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

    .hero-right {
        max-width: 100%;
        justify-self: center;
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .sector-featured-card {
        transform: scale(1);
    }

    .sector-featured-card:hover {
        transform: scale(1) translateY(-2px);
    }

    .more-sectors-block {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.25rem;
    }

    .sectors-visual-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .branches-hero-title {
        font-size: 2.5rem;
    }

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

    .sector-image-wrapper {
        height: 160px;
    }

    .sector-icon-circle {
        top: 140px;
        width: 48px;
        height: 48px;
    }

    .sector-icon-circle svg {
        width: 22px;
        height: 22px;
    }

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

    .sector-card.sector-card-featured {
        grid-column: span 2;
    }

    .flow-card-right,
    .flow-card-left {
        float: none;
        width: 100%;
        margin: 0 0 1.5rem;
    }

    .three-col-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .two-col-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .process-grid::before {
        display: none;
    }
}

/* Related Section / Blog Cards Section */
.related-section {
    padding: 5rem 2rem;
    background: #ffffff !important;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3.5rem;
}

.section-title-large {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    line-height: 1.25;
}

.section-subtitle-large {
    font-size: 1.15rem;
    color: #6b7280;
    line-height: 1.6;
    font-weight: 500;
}

/* Card Grid */
.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Blog Cards */
.card {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    box-shadow:
        0 2px 8px rgba(0, 0, 0, 0.06),
        0 8px 24px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 8px 24px rgba(255, 122, 61, 0.15),
        0 16px 48px rgba(0, 0, 0, 0.12);
    border-color: rgba(255, 122, 61, 0.3);
}

.card-image {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card:hover .card-image img {
    transform: scale(1.08);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.5) 100%);
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.card:hover .card-overlay {
    opacity: 0.3;
}

.card-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(255, 122, 61, 0.95);
    backdrop-filter: blur(8px);
    color: #ffffff;
    padding: 0.45rem 0.95rem;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 2;
}

.card-content {
    padding: 1.75rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex: 1;
}

.card-title-large {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.35;
    letter-spacing: -0.015em;
    margin: 0;
    transition: color 0.25s ease;
}

.card:hover .card-title-large {
    color: #ff7a3d;
}

.card-text-large {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #ff7a3d;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    transition: gap 0.3s ease;
}

.card:hover .card-link {
    gap: 0.75rem;
}

.card-link .icon {
    width: 18px;
    height: 18px;
    stroke-width: 2.5;
    transition: transform 0.3s ease;
}

.card:hover .card-link .icon {
    transform: translateX(3px);
}

/* CTA Section - Removed */

.cta-box {
    position: relative;
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    border-radius: 24px;
    padding: 4rem 3rem;
    text-align: center;
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto;
}

.cta-decorations {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.08;
    pointer-events: none;
}

.circle-wave {
    position: absolute;
    border-radius: 50%;
    border: 2px solid #ffffff;
}

.wave-1 {
    width: 200px;
    height: 200px;
    top: -50px;
    right: -50px;
}

.wave-2 {
    width: 150px;
    height: 150px;
    bottom: -40px;
    left: -40px;
}

.wave-3 {
    width: 100px;
    height: 100px;
    top: 50%;
    left: 10%;
}

.wave-4 {
    width: 120px;
    height: 120px;
    bottom: 20%;
    right: 15%;
}

.floating-text {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    font-size: 5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    white-space: nowrap;
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.cta-text {
    font-size: 1.125rem;
    color: #d1d5db;
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-dark {
    background: #ffffff;
    color: #1f2937;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.btn-dark:hover {
    background: #f9fafb;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
}

.btn .icon {
    width: 18px;
    height: 18px;
    stroke-width: 2.5;
}

/* Fade on Scroll Animation */
.fade-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 968px) {
    .card-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .section-title-large {
        font-size: 2rem;
    }

    .related-section {
        padding: 4rem 1.5rem;
    }

    .cta-box {
        padding: 3rem 2rem;
    }

    .cta-title {
        font-size: 1.85rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .branches-hero {
        padding: 2.5rem 1.25rem;
    }

    .branches-hero .bg-shape {
        display: none;
    }

    .blob-1,
    .blob-2,
    .blob-3 {
        filter: blur(80px);
    }

    .branches-hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .branches-hero-subtitle {
        font-size: 1rem;
    }

    .trust-badge {
        padding: 0.55rem 1.15rem;
        font-size: 0.8rem;
    }

    .badge-icon {
        width: 16px;
        height: 16px;
    }

    .value-props {
        gap: 0.55rem;
    }

    .value-item span {
        font-size: 0.9rem;
    }

    .hero-cta-group {
        flex-direction: column;
        gap: 0.75rem;
    }

    .btn-white-outline {
        width: 100%;
        justify-content: center;
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .hero-right {
        gap: 0.85rem;
    }

    .sector-featured-card {
        padding: 1rem 1.15rem;
        gap: 0.75rem;
        border-radius: 0.85rem;
        transform: scale(1);
    }

    .sector-featured-card:hover {
        transform: scale(1) translateY(-2px);
    }

    .sector-featured-icon {
        width: 38px;
        height: 38px;
        border-radius: 9px;
    }

    .sector-featured-icon svg {
        width: 19px;
        height: 19px;
    }

    .sector-featured-content h3 {
        font-size: 0.95rem;
    }

    .sector-featured-list li {
        font-size: 0.75rem;
    }

    .more-sectors-block {
        padding: 1.15rem 1.25rem;
        gap: 0.85rem;
    }

    .sectors-visual-grid {
        padding: 0.45rem;
        gap: 0.5rem;
    }

    .sector-mini-box {
        width: 36px;
        height: 36px;
    }

    .sector-mini-box svg {
        width: 18px;
        height: 18px;
    }

    .more-sectors-text {
        font-size: 0.82rem;
    }

    .btn-more-sectors {
        padding: 0.6rem 1.1rem;
        font-size: 0.82rem;
    }

    .sectors-card-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .sector-image-wrapper {
        height: 200px;
    }

    .sector-icon-circle {
        top: 180px;
        width: 48px;
        height: 48px;
    }

    .sector-icon-circle svg {
        width: 22px;
        height: 22px;
    }

    .sector-image-content {
        padding: 2rem 1.25rem 1.25rem;
    }

    .sector-image-content h3 {
        font-size: 1.05rem;
    }

    .sector-image-content p {
        font-size: 0.85rem;
    }

    .sector-tag {
        font-size: 0.675rem;
        padding: 0.3rem 0.65rem;
    }

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

    .sector-card {
        padding: 1.75rem 1.5rem 1.5rem;
    }

    .sector-card.sector-card-featured {
        grid-column: span 1;
        flex-direction: column;
        align-items: flex-start;
        gap: 1.25rem;
        padding: 1.75rem 1.5rem 1.5rem;
    }

    .sector-card.sector-card-featured .sector-card-icon {
        width: 54px;
        height: 54px;
    }

    .sector-card.sector-card-featured .sector-card-icon svg {
        width: 26px;
        height: 26px;
    }

    .sector-card.sector-card-featured h3 {
        font-size: 1.1rem;
    }

    .section-title-medium {
        font-size: 1.85rem;
    }

    .section-title-large {
        font-size: 1.75rem;
    }

    .section-subtitle-large {
        font-size: 1rem;
    }

    .process-section {
        padding: 3.5rem 1.25rem;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .process-icon {
        width: 56px;
        height: 56px;
        border-radius: 14px;
    }

    .process-icon svg {
        width: 24px;
        height: 24px;
    }

    .process-title {
        font-size: 1rem;
    }

    .process-text {
        font-size: 0.85rem;
        max-width: none;
    }

    .content-section,
    .three-col-section,
    .two-col-section,
    .editorial-section {
        padding: 3rem 1.25rem;
    }

    .editorial-float-left,
    .editorial-float-right {
        float: none;
        width: 100%;
        margin: 0 0 1.5rem 0;
    }

    .editorial-title {
        font-size: 1.75rem;
    }

    .editorial-design-block {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .editorial-design-icon {
        margin: 0 auto;
    }

    .flow-title,
    .three-col-title,
    .two-col-title {
        font-size: 1.5rem;
    }

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

    .page-intro-section {
        padding: 3rem 1.25rem;
    }

    .page-intro-title {
        font-size: 1.5rem;
    }

    .page-intro-actions {
        flex-direction: column;
    }

    .page-intro-stats {
        grid-template-columns: 1fr 1fr;
    }

    .card-grid {
        gap: 1.25rem;
    }

    .card-image {
        height: 200px;
    }

    .card-content {
        padding: 1.5rem 1.25rem 1.25rem;
    }

    .card-title-large {
        font-size: 1.1rem;
    }

    .card-text-large {
        font-size: 0.9rem;
    }

    .related-section {
        padding: 3rem 1.25rem;
    }

    .cta-section {
        padding: 3rem 1.25rem;
    }

    .cta-box {
        padding: 2.5rem 1.5rem;
        border-radius: 18px;
    }

    .cta-title {
        font-size: 1.5rem;
    }

    .cta-text {
        font-size: 1rem;
    }

    .floating-text {
        font-size: 3rem;
    }
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background: #fafafa;
    color: #374151;
    line-height: 1.7;
    font-size: 17px;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
}

.logo {
    font-size: 1.75rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ff7a3d 0%, #ff9f5a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
}

.nav {
    display: flex;
    gap: 2.5rem;
}

.nav a {
    color: #374151;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    position: relative;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #ff7a3d 0%, #ff9f5a 100%);
    transition: width 0.3s;
}

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

.nav a:hover,
.nav a.active {
    color: #ff7a3d;
}

.main {
    padding-top: 0;
}

.hero-banner {
    background: linear-gradient(135deg, #fff5f0 0%, #ffe8db 50%, #fff9f5 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 122, 61, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-banner::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 159, 90, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 4rem;
    align-items: start;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

.breadcrumb a {
    color: #6b7280;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: #ff7a3d;
}

.breadcrumb span {
    color: #d1d5db;
}

.hero-banner h1 {
    font-size: 4rem;
    font-weight: 900;
    color: #111827;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.04em;
    position: relative;
    z-index: 1;
}

.gradient-text {
    background: linear-gradient(135deg, #ff7a3d 0%, #ff9f5a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.35rem;
    color: #4b5563;
    max-width: 700px;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #6b7280;
    font-size: 1rem;
    position: relative;
    z-index: 1;
}

.hero-sidebar {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.content-wrapper {
    padding: 4rem 0;
    background: #ffffff;
}

.toc-section {
    border-left: 4px solid #ff7a3d;
    padding-left: 1.5rem;
}

.toc-title {
    font-size: 1.125rem;
    color: #111827;
    margin-bottom: 1rem;
    font-weight: 700;
}

.toc-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.toc-link {
    color: #6b7280;
    text-decoration: none;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    transition: all 0.2s;
    display: block;
}

.toc-link:hover {
    color: #ff7a3d;
    transform: translateX(4px);
}

.cta-section {
    text-align: center;
    padding-top: 2rem;
    border-top: 2px solid rgba(255, 122, 61, 0.2);
}

.cta-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-title {
    color: #ff7a3d;
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 800;
}

.cta-text {
    color: #4b5563;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #ff7a3d 0%, #ff9f5a 100%);
    color: #ffffff;
    padding: 0.875rem 1.75rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255, 122, 61, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 122, 61, 0.4);
}

.related-section {
    border-top: 2px solid #e5e7eb;
    padding-top: 2rem;
}

.related-title {
    font-size: 1.125rem;
    color: #111827;
    margin-bottom: 1rem;
    font-weight: 700;
}

.related-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.related-item {
    display: flex;
    gap: 1rem;
    padding: 0.75rem 0;
    text-decoration: none;
    transition: all 0.2s;
    border-bottom: 1px solid #f3f4f6;
}

.related-item:last-child {
    border-bottom: none;
}

.related-item:hover {
    transform: translateX(4px);
}

.related-icon {
    font-size: 1.75rem;
    flex-shrink: 0;
}

.related-item strong {
    display: block;
    color: #111827;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
    font-weight: 600;
    transition: color 0.2s;
}

.related-item:hover strong {
    color: #ff7a3d;
}

.related-content p {
    color: #6b7280;
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.4;
}

.article-main {
    max-width: 800px;
}

.content-section {
    margin-bottom: 5rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #e5e7eb;
}

.content-section:last-child {
    border-bottom: none;
}

.content-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #111827;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.content-section p {
    color: #374151;
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.intro-text {
    font-size: 1.25rem;
    color: #4b5563;
    line-height: 1.7;
    font-weight: 500;
}

.highlight-text {
    display: flex;
    gap: 1.25rem;
    padding: 2rem 0 2rem 1.5rem;
    border-left: 4px solid #ff7a3d;
    margin: 2.5rem 0;
}

.highlight-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.highlight-text strong {
    display: block;
    color: #111827;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.highlight-text p {
    color: #4b5563;
    margin: 0;
    font-size: 1.0625rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin: 3rem 0;
}

.feature-item {
    padding-left: 4.5rem;
    position: relative;
}

.feature-icon {
    font-size: 2.5rem;
    position: absolute;
    left: 0;
    top: 0;
}

.feature-item h3 {
    font-size: 1.5rem;
    color: #111827;
    margin-bottom: 1rem;
    font-weight: 700;
}

.feature-item p {
    color: #4b5563;
    font-size: 1.0625rem;
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

.feature-item p:last-child {
    margin-bottom: 0;
}

.stat-highlight {
    text-align: center;
    padding: 3rem 0;
    margin: 2.5rem 0;
}

.stat-number {
    font-size: 5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ff7a3d 0%, #ff9f5a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    line-height: 1;
}

.stat-highlight p {
    color: #4b5563;
    font-size: 1.25rem;
    margin: 0;
    max-width: 500px;
    margin: 0 auto;
}

.tip-highlight {
    display: flex;
    gap: 1.25rem;
    padding: 2rem 0 2rem 1.5rem;
    border-left: 4px solid #10b981;
    margin: 2.5rem 0;
}

.tip-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.tip-highlight strong {
    display: block;
    color: #047857;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.tip-highlight p {
    color: #065f46;
    margin: 0;
    font-size: 1.0625rem;
    line-height: 1.8;
}

.price-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin: 3rem 0;
}

.price-option {
    padding: 2.5rem 0;
    border-top: 2px solid #e5e7eb;
    position: relative;
}

.price-option.featured {
    border-top-color: #ff7a3d;
    border-top-width: 4px;
}

.price-option .badge {
    display: inline-block;
    background: #ff7a3d;
    color: white;
    padding: 0.35rem 0.875rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.price-option h3 {
    font-size: 1.75rem;
    color: #111827;
    margin-bottom: 0.75rem;
    font-weight: 800;
}

.price {
    font-size: 2.5rem;
    font-weight: 900;
    color: #ff7a3d;
    margin-bottom: 1.25rem;
    line-height: 1;
}

.price-option p {
    color: #4b5563;
    font-size: 1.0625rem;
    line-height: 1.8;
    margin: 0;
}

.mistake-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin: 3rem 0;
}

.mistake-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding-bottom: 3rem;
    border-bottom: 1px solid #e5e7eb;
}

.mistake-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.mistake-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.mistake-content strong {
    display: block;
    color: #111827;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.mistake-content p {
    color: #4b5563;
    font-size: 1.0625rem;
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

.mistake-content p:last-child {
    margin-bottom: 0;
}

.branches-section {
    background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
    padding: 5rem 0;
    margin-top: 4rem;
}

.branches-section h2 {
    font-size: 2.75rem;
    font-weight: 900;
    color: #ffffff;
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}

.branches-subtitle {
    text-align: center;
    color: #9ca3af;
    font-size: 1.125rem;
    margin-bottom: 3.5rem;
}

.branches-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.branch-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2.5rem;
    text-decoration: none;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    border: 2px solid transparent;
}

.branch-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(255, 122, 61, 0.3);
    border-color: #ff7a3d;
}

.branch-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.branch-card h3 {
    font-size: 1.5rem;
    color: #111827;
    margin-bottom: 1rem;
    font-weight: 800;
}

.branch-card p {
    color: #6b7280;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex: 1;
}

.branch-link {
    color: #ff7a3d;
    font-weight: 700;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}


@media (max-width: 1024px) {
    .hero-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-sidebar {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

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

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    .hero-banner h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .content-section h2 {
        font-size: 1.875rem;
    }

    .nav {
        gap: 1.25rem;
    }

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

    .price-grid,
    .feature-grid {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 640px) {
    .hero-banner {
        padding: 3rem 0;
    }

    .hero-banner h1 {
        font-size: 2rem;
    }

    .content-box {
        padding: 1.75rem;
    }

    .logo {
        font-size: 1.375rem;
    }

    .nav {
        gap: 1rem;
        font-size: 0.9rem;
    }
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background: #fafafa;
    color: #374151;
    line-height: 1.7;
    font-size: 17px;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
}

.logo {
    font-size: 1.75rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ff7a3d 0%, #ff9f5a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
}

.nav {
    display: flex;
    gap: 2.5rem;
}

.nav a {
    color: #374151;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    position: relative;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #ff7a3d 0%, #ff9f5a 100%);
    transition: width 0.3s;
}

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

.nav a:hover,
.nav a.active {
    color: #ff7a3d;
}

.main {
    padding-top: 0;
}

.hero-banner {
    background: linear-gradient(135deg, #fff5f0 0%, #ffe8db 50%, #fff9f5 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 122, 61, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-banner::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 159, 90, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 4rem;
    align-items: start;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

.breadcrumb a {
    color: #6b7280;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: #ff7a3d;
}

.breadcrumb span {
    color: #d1d5db;
}

.hero-banner h1 {
    font-size: 4rem;
    font-weight: 900;
    color: #111827;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.04em;
    position: relative;
    z-index: 1;
}

.gradient-text {
    background: linear-gradient(135deg, #ff7a3d 0%, #ff9f5a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.35rem;
    color: #4b5563;
    max-width: 700px;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #6b7280;
    font-size: 1rem;
    position: relative;
    z-index: 1;
}

.hero-sidebar {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.content-wrapper {
    padding: 4rem 0;
    background: #ffffff;
}

.toc-section {
    border-left: 4px solid #ff7a3d;
    padding-left: 1.5rem;
}

.toc-title {
    font-size: 1.125rem;
    color: #111827;
    margin-bottom: 1rem;
    font-weight: 700;
}

.toc-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.toc-link {
    color: #6b7280;
    text-decoration: none;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    transition: all 0.2s;
    display: block;
}

.toc-link:hover {
    color: #ff7a3d;
    transform: translateX(4px);
}

.cta-section {
    text-align: center;
    padding-top: 2rem;
    border-top: 2px solid rgba(255, 122, 61, 0.2);
}

.cta-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-title {
    color: #ff7a3d;
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 800;
}

.cta-text {
    color: #4b5563;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #ff7a3d 0%, #ff9f5a 100%);
    color: #ffffff;
    padding: 0.875rem 1.75rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255, 122, 61, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 122, 61, 0.4);
}

.related-section {
    border-top: 2px solid #e5e7eb;
    padding-top: 2rem;
}

.related-title {
    font-size: 1.125rem;
    color: #111827;
    margin-bottom: 1rem;
    font-weight: 700;
}

.related-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.related-item {
    display: flex;
    gap: 1rem;
    padding: 0.75rem 0;
    text-decoration: none;
    transition: all 0.2s;
    border-bottom: 1px solid #f3f4f6;
}

.related-item:last-child {
    border-bottom: none;
}

.related-item:hover {
    transform: translateX(4px);
}

.related-icon {
    font-size: 1.75rem;
    flex-shrink: 0;
}

.related-item strong {
    display: block;
    color: #111827;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
    font-weight: 600;
    transition: color 0.2s;
}

.related-item:hover strong {
    color: #ff7a3d;
}

.related-content p {
    color: #6b7280;
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.4;
}

.article-main {
    max-width: 800px;
}

.content-section {
    margin-bottom: 5rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #e5e7eb;
}

.content-section:last-child {
    border-bottom: none;
}

.content-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #111827;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.content-section p {
    color: #374151;
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.intro-text {
    font-size: 1.25rem;
    color: #4b5563;
    line-height: 1.7;
    font-weight: 500;
}

.highlight-text {
    display: flex;
    gap: 1.25rem;
    padding: 2rem 0 2rem 1.5rem;
    border-left: 4px solid #ff7a3d;
    margin: 2.5rem 0;
}

.highlight-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.highlight-text strong {
    display: block;
    color: #111827;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.highlight-text p {
    color: #4b5563;
    margin: 0;
    font-size: 1.0625rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin: 3rem 0;
}

.feature-item {
    padding-left: 4.5rem;
    position: relative;
}

.feature-icon {
    font-size: 2.5rem;
    position: absolute;
    left: 0;
    top: 0;
}

.feature-item h3 {
    font-size: 1.5rem;
    color: #111827;
    margin-bottom: 1rem;
    font-weight: 700;
}

.feature-item p {
    color: #4b5563;
    font-size: 1.0625rem;
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

.feature-item p:last-child {
    margin-bottom: 0;
}

.stat-highlight {
    text-align: center;
    padding: 3rem 0;
    margin: 2.5rem 0;
}

.stat-number {
    font-size: 5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ff7a3d 0%, #ff9f5a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    line-height: 1;
}

.stat-highlight p {
    color: #4b5563;
    font-size: 1.25rem;
    margin: 0;
    max-width: 500px;
    margin: 0 auto;
}

.tip-highlight {
    display: flex;
    gap: 1.25rem;
    padding: 2rem 0 2rem 1.5rem;
    border-left: 4px solid #10b981;
    margin: 2.5rem 0;
}

.tip-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.tip-highlight strong {
    display: block;
    color: #047857;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.tip-highlight p {
    color: #065f46;
    margin: 0;
    font-size: 1.0625rem;
    line-height: 1.8;
}

.price-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin: 3rem 0;
}

.price-option {
    padding: 2.5rem 0;
    border-top: 2px solid #e5e7eb;
    position: relative;
}

.price-option.featured {
    border-top-color: #ff7a3d;
    border-top-width: 4px;
}

.price-option .badge {
    display: inline-block;
    background: #ff7a3d;
    color: white;
    padding: 0.35rem 0.875rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.price-option h3 {
    font-size: 1.75rem;
    color: #111827;
    margin-bottom: 0.75rem;
    font-weight: 800;
}

.price {
    font-size: 2.5rem;
    font-weight: 900;
    color: #ff7a3d;
    margin-bottom: 1.25rem;
    line-height: 1;
}

.price-option p {
    color: #4b5563;
    font-size: 1.0625rem;
    line-height: 1.8;
    margin: 0;
}

.mistake-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin: 3rem 0;
}

.mistake-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding-bottom: 3rem;
    border-bottom: 1px solid #e5e7eb;
}

.mistake-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.mistake-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.mistake-content strong {
    display: block;
    color: #111827;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.mistake-content p {
    color: #4b5563;
    font-size: 1.0625rem;
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

.mistake-content p:last-child {
    margin-bottom: 0;
}

.branches-section {
    background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
    padding: 5rem 0;
    margin-top: 4rem;
}

.branches-section h2 {
    font-size: 2.75rem;
    font-weight: 900;
    color: #ffffff;
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}

.branches-subtitle {
    text-align: center;
    color: #9ca3af;
    font-size: 1.125rem;
    margin-bottom: 3.5rem;
}

.branches-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.branch-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2.5rem;
    text-decoration: none;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    border: 2px solid transparent;
}

.branch-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(255, 122, 61, 0.3);
    border-color: #ff7a3d;
}

.branch-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.branch-card h3 {
    font-size: 1.5rem;
    color: #111827;
    margin-bottom: 1rem;
    font-weight: 800;
}

.branch-card p {
    color: #6b7280;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex: 1;
}

.branch-link {
    color: #ff7a3d;
    font-weight: 700;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}


@media (max-width: 1024px) {
    .hero-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-sidebar {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

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

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    .hero-banner h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .content-section h2 {
        font-size: 1.875rem;
    }

    .nav {
        gap: 1.25rem;
    }

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

    .price-grid,
    .feature-grid {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 640px) {
    .hero-banner {
        padding: 3rem 0;
    }

    .hero-banner h1 {
        font-size: 2rem;
    }

    .content-box {
        padding: 1.75rem;
    }

    .logo {
        font-size: 1.375rem;
    }

    .nav {
        gap: 1rem;
        font-size: 0.9rem;
    }
}

}
