.ggc-content {
    --ggc-primary: var(--new-primary, #2563eb);
    --ggc-accent: var(--new-accent, #06b6d4);
    --ggc-ink: var(--new-text, #0f172a);
    --ggc-muted: var(--new-muted, #64748b);
    --ggc-faint: var(--new-faint, #98a2b3);
    --ggc-line: var(--new-border, #e2e8f0);
    --ggc-surface: var(--new-surface, #fff);
    --ggc-soft: var(--new-surface-soft, #f8fafc);
    --ggc-radius-sm: var(--new-radius-sm, 14px);
    --ggc-radius-md: var(--new-radius-md, 18px);
    --ggc-radius-lg: var(--new-radius-lg, 24px);
    --ggc-radius-xl: var(--new-radius-xl, 28px);
    --ggc-radius-2xl: var(--new-radius-2xl, 32px);
    --ggc-radius-full: var(--new-radius-full, 999px);
    --ggc-shadow-sm: var(--new-shadow-sm, 0 16px 50px rgba(15, 23, 42, 0.06));
    --ggc-shadow-md: var(--new-shadow-md, 0 18px 60px rgba(15, 23, 42, 0.07));
    --ggc-shadow-lg: var(--new-card-shadow, 0 24px 70px rgba(15, 23, 42, 0.1));
    --ggc-heading-tracking: var(--new-heading-tracking, -0.04em);
    --ggc-heading-tracking-tight: var(--new-heading-tracking-tight, -0.055em);
    --ggc-label-tracking: var(--new-label-tracking, 0.04em);
    --ggc-caption-tracking: var(--new-caption-tracking, 0.12em);
    --ggc-content-width: var(--new-wrap, min(100% - 48px, 1040px));
}
.ggc-content {
    font-family: -apple-system, BlinkMacSystemFont, "Pretendard", "Apple SD Gothic Neo", "Malgun Gothic", system-ui, sans-serif;
    letter-spacing: -0.01em;
    word-break: keep-all;
    overflow-wrap: anywhere;
    color: var(--ggc-ink);
    text-align: left;
}
.ggc-content *,
.ggc-content *::before,
.ggc-content *::after {
    box-sizing: border-box;
}
.ggc-content a:focus-visible,
.ggc-content button:focus-visible,
.ggc-content summary:focus-visible,
.ggc-content input:focus-visible,
.ggc-content select:focus-visible,
.ggc-content textarea:focus-visible {
    outline: 3px solid rgba(37, 99, 235, 0.38);
    outline-offset: 3px;
}
.ggc-section {
    max-width: var(--ggc-content-width);
    margin: 0 auto;
    padding: 64px 32px;
    text-align: left;
}
.ggc-content h1,
.ggc-content h2,
.ggc-content h3,
.ggc-content h4,
.ggc-content h5,
.ggc-content h6 {
    color: inherit;
    letter-spacing: var(--ggc-heading-tracking);
}
.ggc-section h2 {
    margin: 0 0 16px;
    font-size: 42px;
    line-height: 1.2;
    letter-spacing: var(--ggc-heading-tracking);
}
.ggc-section p {
    color: #475569;
    font-size: 18px;
    line-height: 1.7;
}
.ggc-content-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: var(--ggc-radius-md);
    background: linear-gradient(135deg, #eff6ff, #eef2ff);
    color: var(--ggc-primary);
    box-shadow: inset 0 0 0 1px rgba(37, 99, 235, 0.12), 0 16px 36px rgba(37, 99, 235, 0.14);
}
.ggc-content-icon svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.ggc-content-icon svg path[fill],
.ggc-content-icon svg circle[fill] {
    fill: currentColor;
    stroke: none;
}
.ggc-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: var(--ggc-radius-full);
    background: var(--ggc-primary);
    color: #fff;
    font-weight: 700;
    letter-spacing: -0.01em;
    text-decoration: none;
    box-shadow: 0 14px 34px rgba(37, 99, 235, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}
.ggc-content .ggc-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 46px rgba(37, 99, 235, 0.28);
    text-decoration: none;
}
.ggc-link-button {
    display: inline-flex;
    align-items: center;
    padding: 12px 6px;
    color: var(--ggc-primary);
    font-weight: 800;
    letter-spacing: -0.01em;
    text-decoration: none;
}
.ggc-content .ggc-link-button:hover {
    text-decoration: none;
}
.ggc-kicker,
.ggc-smart-label {
    display: inline-flex;
    padding: 7px 12px;
    border-radius: var(--ggc-radius-full);
    background: #eff6ff;
    color: var(--ggc-primary);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: var(--ggc-label-tracking);
}
.ggc-kicker {
    margin-bottom: 14px;
}
.ggc-smart-block {
    position: relative;
    overflow: hidden;
    max-width: var(--ggc-content-width);
    margin: 34px auto;
    padding: 70px 36px;
    border: 1px solid var(--ggc-line);
    border-radius: clamp(var(--ggc-radius-2xl), 3vw, 38px);
    background: linear-gradient(135deg, #fff 0%, #f8fbff 52%, #eef2ff 100%);
    box-shadow: var(--ggc-shadow-lg);
}
.ggc-smart-glow {
    position: absolute;
    top: -110px;
    right: -110px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.24), transparent 66%);
}
.ggc-smart-inner {
    position: relative;
    z-index: 1;
}
.ggc-smart-section .ggc-smart-inner {
    max-width: 780px;
}
.ggc-smart-section h2,
.ggc-smart-text-section h2 {
    margin: 20px 0 16px;
    font-size: clamp(28px, 5vw, 42px);
    line-height: 1.04;
    letter-spacing: var(--ggc-heading-tracking-tight);
}
.ggc-smart-section p,
.ggc-smart-text-section p {
    color: #475569;
    font-size: 18px;
    line-height: 1.78;
}
.ggc-smart-text {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    max-width: 920px;
    margin: 28px auto;
    padding: 28px;
    border: 1px solid rgba(148, 163, 184, 0.24);
    border-radius: var(--ggc-radius-xl);
    background: rgba(255, 255, 255, 0.86);
    box-shadow: var(--ggc-shadow-md);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
}
.ggc-smart-text p {
    margin: 0;
    color: #334155;
    font-size: 18px;
    line-height: 1.8;
}
.ggc-smart-text-body {
    flex: 1 1 0;
    min-width: 0;
}
.ggc-smart-text strong {
    color: #0f172a;
}
.ggc-smart-list {
    max-width: 920px;
    margin: 30px auto;
    padding: 34px;
    border: 1px solid rgba(148, 163, 184, 0.24);
    border-radius: var(--ggc-radius-xl);
    background: linear-gradient(180deg, var(--ggc-surface), var(--ggc-soft));
    box-shadow: var(--ggc-shadow-md);
}
.ggc-smart-list h3 {
    margin: 12px 0 22px;
    color: #0f172a;
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.18;
    letter-spacing: -0.035em;
}
.ggc-smart-list ol,
.ggc-smart-list ul {
    display: grid;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.ggc-smart-list li {
    position: relative;
    display: grid;
    gap: 5px;
    padding: 18px 20px 18px 58px;
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: var(--ggc-radius-md);
    background: rgba(255, 255, 255, 0.74);
}
.ggc-smart-list li::before {
    position: absolute;
    top: 18px;
    left: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: var(--ggc-radius-full);
    background: var(--ggc-primary);
    color: #fff;
    font-size: 13px;
    font-weight: 900;
}
.ggc-smart-list--ordered ol {
    counter-reset: ggc-list-counter;
}
.ggc-smart-list--ordered li {
    counter-increment: ggc-list-counter;
}
.ggc-smart-list--ordered li::before {
    content: counter(ggc-list-counter);
}
.ggc-smart-list--unordered li::before {
    content: "";
    box-shadow: inset 0 0 0 9px #fff;
}
.ggc-smart-list strong {
    color: #0f172a;
    font-size: 17px;
    letter-spacing: -0.025em;
}
.ggc-smart-list span {
    color: var(--ggc-muted);
    line-height: 1.65;
}
.ggc-simple-list {
    display: block;
    width: 100%;
    max-width: none;
    margin: 36px 0;
    padding: 8px 28px;
    color: #4b5563;
    box-sizing: border-box;
}
.ggc-simple-list-title,
.ggc-simple-list h3 {
    display: block;
    margin: 0 0 18px;
    color: #111827;
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.045em;
}
.ggc-simple-list-items,
.ggc-simple-list ol,
.ggc-simple-list ul {
    display: block;
    margin: 0;
    padding-left: 32px;
}
.ggc-simple-list-item,
.ggc-simple-list-subitem,
.ggc-simple-list li {
    margin: 7px 0;
    padding-left: 3px;
    color: #5b6472;
    font-size: 16px;
    line-height: 1.45;
}
.ggc-simple-list-item,
.ggc-simple-list-subitem {
    display: list-item;
}
.ggc-simple-list li::marker {
    color: #6b7280;
}
.ggc-simple-list--ordered > .ggc-simple-list-items {
    counter-reset: ggc-simple-list-counter;
    list-style: none;
}
.ggc-simple-list--ordered > .ggc-simple-list-items > .ggc-simple-list-item {
    position: relative;
    display: block;
    counter-increment: ggc-simple-list-counter;
    padding-left: 26px;
}
.ggc-simple-list--ordered > .ggc-simple-list-items > .ggc-simple-list-item::before {
    content: counter(ggc-simple-list-counter) ".";
    position: absolute;
    left: 0;
    color: #6b7280;
}
.ggc-simple-list--unordered > .ggc-simple-list-items > .ggc-simple-list-item {
    list-style-type: disc;
}
.ggc-simple-list-subitems,
.ggc-simple-list ul ul {
    display: block;
    margin-top: 7px;
    padding-left: 30px;
    list-style-type: circle;
}
.ggc-simple-list-subitem {
    list-style-type: circle;
}
.ggc-simple-list--unordered > .ggc-simple-list-items > .ggc-simple-list-item,
.ggc-simple-list-subitem,
.ggc-simple-list--unordered li {
    margin: 6px 0;
}
.ggc-smart-text .ggc-simple-list {
    width: 100%;
    max-width: none;
    margin: 18px 0 0;
    padding: 0;
}
.ggc-smart-text .ggc-simple-list h3 {
    font-size: 22px;
}
.ggc-smart-text-section .ggc-smart-inner {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 28px;
    align-items: center;
}
.ggc-smart-note {
    padding: 30px;
    border-radius: var(--ggc-radius-xl);
    background: #0f172a;
    color: #fff;
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.22);
}
.ggc-smart-note p {
    color: rgba(255, 255, 255, 0.72);
}
.ggc-smart-quote {
    position: relative;
    max-width: 960px;
    margin: 36px auto;
    padding: 42px;
    border-radius: clamp(var(--ggc-radius-2xl), 3vw, 34px);
    background: linear-gradient(135deg, #111827, #1d4ed8);
    color: #fff;
    box-shadow: 0 30px 80px rgba(29, 78, 216, 0.28);
}
.ggc-smart-quote .ggc-content-icon,
.ggc-smart-tooltip .ggc-content-icon {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}
.ggc-smart-quote p {
    margin: 22px 0;
    font-size: clamp(24px, 3.4vw, 42px);
    line-height: 1.32;
    letter-spacing: -0.035em;
}
.ggc-smart-quote cite {
    color: rgba(255, 255, 255, 0.75);
    font-style: normal;
    font-weight: 800;
}
.ggc-smart-link-card {
    display: flex;
    align-items: center;
    gap: 18px;
    max-width: 920px;
    margin: 30px auto;
    padding: 24px;
    border: 1px solid rgba(148, 163, 184, 0.24);
    border-radius: var(--ggc-radius-xl);
    background: #fff;
    color: #0f172a;
    text-decoration: none;
    box-shadow: var(--ggc-shadow-lg);
}
.ggc-smart-link-card span {
    display: grid;
    flex: 1;
    gap: 6px;
}
.ggc-smart-link-card strong {
    font-size: 20px;
    letter-spacing: -0.03em;
}
.ggc-smart-link-card em {
    color: var(--ggc-muted);
    font-style: normal;
    line-height: 1.55;
}
.ggc-smart-link-card b {
    padding: 11px 16px;
    border-radius: var(--ggc-radius-full);
    background: #0f172a;
    color: #fff;
}
.ggc-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    max-width: var(--ggc-content-width);
    margin: 0 auto;
    padding: 48px 32px;
}
.ggc-row--cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.ggc-row--cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.ggc-row--cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.ggc-row--cols-6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }
.ggc-col,
.ggc-flexbox > div {
    padding: 28px;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    background: #fff;
}
.ggc-flexbox {
    display: flex;
    gap: 18px;
    max-width: var(--ggc-content-width);
    margin: 0 auto;
    padding: 48px 32px;
}
.ggc-flexbox > div {
    flex: 1 1 0;
}
.ggc-image-block {
    display: block;
    width: 100%;
    max-width: 900px;
    min-height: 220px;
    margin: 24px auto;
    border-radius: var(--ggc-radius-lg);
    object-fit: cover;
}
.ggc-design-block {
    padding: clamp(48px, 5vw, 64px) clamp(20px, 3vw, 32px);
    background: var(--ggc-surface);
    color: var(--ggc-ink);
    text-align: left;
}
.ggc-design-inner {
    width: 100%;
    margin: 0 auto;
    text-align: left;
}
.ggc-design-block.ggc-mode-wide > .ggc-design-inner {
    max-width: 1280px;
}
.ggc-design-block.ggc-mode-box > .ggc-design-inner {
    max-width: var(--ggc-content-width);
    padding: 40px 44px;
    border: 1px solid var(--ggc-line);
    border-radius: var(--ggc-radius-2xl);
    background: var(--ggc-surface);
 /*    box-shadow: var(--ggc-shadow-lg); */
}
.ggc-section-head {
    max-width: 760px;
    margin: 0 0 32px;
    text-align: left;
}
.ggc-section-head h2,
.ggc-design-block h2 {
    margin: 0 0 14px;
    color: inherit;
    font-size: clamp(32px, 5vw, 56px);
    line-height: 1.08;
    letter-spacing: var(--ggc-heading-tracking);
}
.ggc-section-head p,
.ggc-design-block p {
    margin: 0;
    color: var(--ggc-muted);
    font-size: 17px;
    line-height: 1.75;
}
.ggc-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
    justify-content: flex-start;
    text-align: left;
}
.ggc-hero-overlay {
    display: flex;
    align-items: center;
    min-height: 520px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.92), rgba(79, 70, 229, 0.75)), linear-gradient(45deg, #111827, #334155);
    color: #fff;
    text-align: center;
}
.ggc-hero-overlay h1,
.ggc-hero-overlay h2,
.ggc-hero-overlay h3,
.ggc-cta-block h1,
.ggc-cta-block h2,
.ggc-cta-block h3,
.ggc-youtube-content h1,
.ggc-youtube-content h2,
.ggc-youtube-content h3,
.ggc-smart-note h1,
.ggc-smart-note h2,
.ggc-smart-note h3,
.ggc-smart-quote h1,
.ggc-smart-quote h2,
.ggc-smart-quote h3 {
    color: #fff;
}
.ggc-hero-overlay .ggc-design-inner {
    max-width: 900px;
    text-align: center;
}
.ggc-hero-overlay .ggc-actions {
    justify-content: center;
}
.ggc-hero-overlay p,
.ggc-cta-block p,
.ggc-youtube-content p {
    color: rgba(255, 255, 255, 0.9);
}
.ggc-hero-overlay .ggc-kicker,
.ggc-cta-block .ggc-kicker,
.ggc-youtube-content .ggc-kicker {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}
.ggc-hero-overlay .text-muted-foreground,
.ggc-cta-block .text-muted-foreground,
.ggc-youtube-content .text-muted-foreground,
.ggc-company-vision .text-muted-foreground {
    display: inline-flex;
    padding: 7px 12px;
    border-radius: var(--ggc-radius-full);
    background: rgba(255, 255, 255, 0.16);
    color: #fff !important;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: var(--ggc-label-tracking);
}
.ggc-hero-overlay .ggc-button,
.ggc-cta-block .ggc-button,
.ggc-youtube-content .ggc-button {
    background: #fff;
    color: #1d4ed8;
}
.ggc-hero-overlay .ggc-link-button,
.ggc-cta-block .ggc-link-button {
    padding: 12px 20px;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: var(--ggc-radius-full);
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}
.ggc-content .ggc-hero-overlay .ggc-link-button:hover,
.ggc-content .ggc-cta-block .ggc-link-button:hover {
    background: rgba(255, 255, 255, 0.2);
    text-decoration: none;
}
.ggc-hero-split .ggc-design-inner,
.ggc-hero-cards .ggc-design-inner {
    display: grid;
    align-items: center;
    gap: 32px;
}
.ggc-hero-split .ggc-design-inner {
    grid-template-columns: 1fr 1fr;
}
.ggc-hero-cards .ggc-design-inner {
    grid-template-columns: 1.1fr 0.9fr;
}
.ggc-hero-media img {
    width: 100%;
    border-radius: var(--ggc-radius-2xl);
    box-shadow: var(--ggc-shadow-lg);
}
.ggc-mini-cards,
.ggc-feature-grid,
.ggc-process-list,
.ggc-testimonial-grid,
.ggc-countdown-grid {
    display: grid;
    gap: 14px;
}
.ggc-mini-cards {
    grid-template-columns: repeat(3, 1fr);
}
.ggc-mini-cards > div,
.ggc-feature-card,
.ggc-testimonial-grid blockquote {
    border: 1px solid var(--ggc-line, #e2e8f0);
    background: linear-gradient(180deg, var(--ggc-surface), var(--ggc-soft));
}
.ggc-mini-cards > div {
    padding: 28px 18px;
    border-radius: var(--ggc-radius-lg);
    font-weight: 800;
    letter-spacing: -0.02em;
    text-align: center;
}
.ggc-youtube-hero {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    min-height: 100dvh;
    background: #020617;
    color: #fff;
    text-align: center;
}
.ggc-youtube-hero.ggc-youtube-limited {
    min-height: var(--ggc-youtube-height, 720px);
}
.ggc-youtube-bg,
.ggc-youtube-overlay {
    position: absolute;
    inset: 0;
}
.ggc-youtube-bg {
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}
.ggc-youtube-bg iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: max(100vw, 177.78vh);
    height: max(56.25vw, 100vh);
    min-width: 100%;
    min-height: 100%;
    border: 0;
    transform: translate(-50%, -50%);
    pointer-events: none;
}
.ggc-youtube-overlay {
    z-index: 1;
    background: var(--ggc-youtube-overlay, #0f172a);
    opacity: var(--ggc-youtube-opacity, 0.55);
    pointer-events: none;
}
.ggc-youtube-content {
    position: relative;
    z-index: 2;
    max-width: 980px;
    padding: 120px 24px;
    text-align: center;
}
.ggc-youtube-content h2 {
    color: #fff;
    text-shadow: 0 14px 45px rgba(0, 0, 0, 0.35);
}
.ggc-youtube-content .ggc-actions {
    justify-content: center;
}
.ggc-youtube-content .ggc-link-button {
    color: #fff;
}
.ggc-feature-grid--3 {
    grid-template-columns: repeat(3, 1fr);
}
.ggc-feature-grid--4 {
    grid-template-columns: repeat(4, 1fr);
}
.ggc-feature-card {
    position: relative;
    overflow: hidden;
    padding: 28px;
    border-radius: var(--ggc-radius-xl);
    box-shadow: var(--ggc-shadow-md);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.ggc-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 75px rgba(15, 23, 42, 0.12);
}
.ggc-feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: var(--ggc-radius-sm);
    background: var(--ggc-primary);
    color: #fff;
    font-weight: 900;
}
.ggc-feature-card h3 {
    margin: 18px 0 10px;
    font-size: 20px;
    letter-spacing: -0.03em;
}
.ggc-features-block .ggc-feature-grid > article {
    position: relative;
    overflow: hidden;
}
.ggc-features-block .ggc-feature-grid > article h3 {
    margin: 20px 0 12px;
    font-size: 20px;
    letter-spacing: -0.03em;
}
.ggc-features-block .ggc-feature-grid > article p {
    color: var(--ggc-muted);
}
.ggc-map-frame,
.ggc-table-wrap {
    overflow: hidden;
    border: 1px solid var(--ggc-line, #e2e8f0);
    border-radius: var(--ggc-radius-lg);
}
.ggc-map-frame {
    display: block;
    width: 100%;
    margin: 24px 0;
    border-radius: var(--ggc-radius-xl);
    box-shadow: var(--ggc-shadow-lg);
}
.ggc-map-frame + .ggc-map-frame,
.ggc-map-iframe + .ggc-map-frame,
.ggc-map-frame + .ggc-map-iframe,
.ggc-map-iframe + .ggc-map-iframe {
    margin-top: 24px;
}
.ggc-map-frame iframe,
.ggc-content iframe.ggc-map-iframe {
    display: block;
    width: 100%;
    max-width: 100%;
    height: clamp(280px, 48vw, 460px);
    border: 0;
    border-radius: inherit;
}
.ggc-content iframe.ggc-map-iframe {
    overflow: hidden;
}
.ggc-content > iframe.ggc-map-iframe,
.ggc-design-block > iframe.ggc-map-iframe,
.ggc-design-inner > iframe.ggc-map-iframe {
    margin: 24px 0;
    border: 1px solid var(--ggc-line, #e2e8f0);
    border-radius: var(--ggc-radius-xl);
    background: var(--ggc-soft);
    box-shadow: var(--ggc-shadow-lg);
}
.ggc-divider-block {
    display: flex;
    align-items: center;
    gap: 18px;
    max-width: 980px;
    margin: 36px auto;
    padding: 0 24px;
    color: #64748b;
}
.ggc-divider-block span {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, #cbd5e1, transparent);
}
.ggc-divider-block strong {
    font-size: 13px;
    letter-spacing: var(--ggc-caption-tracking);
    text-transform: uppercase;
}
.ggc-spacer-block {
    display: block;
    width: 100%;
    max-width: var(--ggc-content-width);
    margin: 0 auto;
    height: 48px;
    padding: 0;
    border: 0;
    background: transparent;
    flex-shrink: 0;
}
.ggc-process-list {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.ggc-process-list > div {
    position: relative;
    padding: 28px;
    border-radius: var(--ggc-radius-lg);
    background: #0f172a;
    color: #fff;
}
.ggc-process-list b {
    display: inline-flex;
    margin-bottom: 34px;
    color: #93c5fd;
    letter-spacing: var(--ggc-caption-tracking);
}
.ggc-process-list p {
    color: rgba(255, 255, 255, 0.72);
}
.ggc-as-policy-block .ggc-design-inner {
    display: grid;
    gap: 26px;
    text-align: left;
}
.ggc-as-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
    gap: 24px;
    align-items: stretch;
    text-align: left;
}
.ggc-as-hero h2 {
    max-width: 780px;
    margin: 16px 0;
    font-size: clamp(38px, 6vw, 68px);
    line-height: 1.04;
    letter-spacing: var(--ggc-heading-tracking-tight);
}
.ggc-as-hero p {
    max-width: 720px;
    color: var(--ggc-muted);
    font-size: 18px;
    line-height: 1.78;
}
.ggc-as-hero aside,
.ggc-as-summary article,
.ggc-as-panel,
.ggc-as-warning,
.ggc-as-safety {
    border: 1px solid rgba(148, 163, 184, 0.22);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: var(--ggc-shadow-md);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
}
.ggc-as-hero aside {
    display: grid;
    align-content: center;
    justify-items: start;
    gap: 8px;
    padding: 28px;
    border-radius: var(--ggc-radius-xl);
    text-align: left;
}
.ggc-as-hero aside span,
.ggc-as-summary b {
    color: var(--ggc-primary);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: var(--ggc-caption-tracking);
    text-transform: uppercase;
}
.ggc-as-hero aside strong {
    color: var(--ggc-ink);
    font-size: clamp(26px, 3vw, 38px);
    line-height: 1.08;
    letter-spacing: -0.055em;
}
.ggc-as-hero aside p {
    margin: 0;
    font-size: 15px;
}
.ggc-as-summary {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}
.ggc-as-summary article {
    display: grid;
    align-content: start;
    justify-items: start;
    gap: 0;
    padding: 24px;
    border-radius: var(--ggc-radius-lg);
    text-align: left;
}
.ggc-as-summary strong {
    display: block;
    margin: 10px 0 8px;
    color: var(--ggc-ink);
    font-size: 22px;
    line-height: 1.2;
    letter-spacing: -0.04em;
}
.ggc-as-summary p,
.ggc-as-panel p,
.ggc-as-warning li,
.ggc-as-safety p {
    color: var(--ggc-muted);
    line-height: 1.7;
}
.ggc-as-flow {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    counter-reset: ggc-as-flow;
}
.ggc-as-flow article {
    position: relative;
    display: grid;
    align-content: start;
    justify-items: start;
    overflow: hidden;
    padding: 26px;
    border-radius: var(--ggc-radius-xl);
    background: linear-gradient(135deg, #0f172a, #2563eb);
    color: #fff;
    text-align: left;
}
.ggc-as-flow article::after {
    content: "";
    position: absolute;
    right: -48px;
    bottom: -48px;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
}
.ggc-as-flow span {
    display: inline-flex;
    margin-bottom: 28px;
    color: rgba(255, 255, 255, 0.72);
    font-weight: 900;
    letter-spacing: var(--ggc-caption-tracking);
}
.ggc-as-flow h3,
.ggc-as-panel h3,
.ggc-as-warning h3,
.ggc-as-safety h3 {
    margin: 0 0 12px;
    color: inherit;
    font-size: clamp(22px, 2.4vw, 30px);
    line-height: 1.18;
    letter-spacing: -0.04em;
}
.ggc-as-flow p {
    position: relative;
    z-index: 1;
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 15px;
    line-height: 1.72;
}
.ggc-as-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 20px;
}
.ggc-as-panel {
    display: grid;
    gap: 18px;
    align-content: start;
    justify-items: stretch;
    padding: 28px;
    border-radius: var(--ggc-radius-xl);
    text-align: left;
}
.ggc-as-panel .ggc-table-wrap {
    box-shadow: none;
}
.ggc-as-note {
    margin: 0;
    padding: 14px 16px;
    border-radius: var(--ggc-radius-md);
    background: rgba(37, 99, 235, 0.08);
    color: var(--ggc-primary);
    font-size: 14px;
    font-weight: 800;
}
.ggc-as-address {
    display: grid;
    gap: 10px;
    padding: 20px;
    border-radius: var(--ggc-radius-lg);
    background: linear-gradient(135deg, #eff6ff, #f8fafc);
}
.ggc-as-address b {
    color: var(--ggc-primary);
    font-size: 14px;
}
.ggc-as-address p {
    margin: 0;
}
.ggc-as-address a {
    color: var(--ggc-ink);
    font-size: 22px;
    font-weight: 950;
    letter-spacing: -0.04em;
    text-decoration: none;
}
.ggc-as-subtitle {
    margin-top: 8px !important;
}
.ggc-as-warning {
    display: grid;
    grid-template-columns: minmax(220px, 0.55fr) minmax(0, 1fr);
    gap: 24px;
    align-items: start;
    padding: 30px;
    border-radius: var(--ggc-radius-xl);
    text-align: left;
}
.ggc-as-warning ul {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.ggc-as-warning li {
    position: relative;
    padding: 14px 16px 14px 42px;
    border-radius: var(--ggc-radius-md);
    background: var(--ggc-soft);
}
.ggc-as-warning li::before {
    content: "!";
    position: absolute;
    top: 14px;
    left: 14px;
    display: grid;
    place-items: center;
    width: 20px;
    height: 20px;
    border-radius: var(--ggc-radius-full);
    background: #f59e0b;
    color: #fff;
    font-size: 12px;
    font-weight: 900;
}
.ggc-as-safety {
    display: grid;
    grid-template-columns: minmax(220px, 0.4fr) minmax(0, 1fr);
    gap: 24px;
    align-items: start;
    padding: 30px;
    border-radius: var(--ggc-radius-xl);
    text-align: left;
}
.ggc-as-safety > div {
    display: grid;
    gap: 12px;
}
.ggc-as-safety p {
    margin: 0;
    padding: 16px 18px;
    border-left: 4px solid var(--ggc-primary);
    border-radius: var(--ggc-radius-md);
    background: var(--ggc-soft);
}

/* ─── Company intro blocks (DAVEN) ─── */
.ggc-company-block {
    --ggc-co-title: clamp(32px, 3.6vw, 42px);
    --ggc-co-subtitle: 20px;
    --ggc-co-body: 16px;
    --ggc-co-body-lh: 1.75;
    --ggc-co-head-gap: 32px;
    --ggc-co-stack: 24px;
    --ggc-co-card-pad: 28px;
    --ggc-co-text: #1e293b;
    --ggc-co-text-soft: #475569;
    --ggc-co-text-on-dark: rgba(255, 255, 255, 0.94);
    --ggc-co-text-on-dark-soft: rgba(255, 255, 255, 0.86);
    --ggc-co-label-on-dark: #dbeafe;
}
.ggc-company-block.ggc-design-block {
    padding-top: clamp(24px, 3vw, 36px);
    padding-bottom: clamp(24px, 3vw, 36px);
}
.ggc-company-hero.ggc-design-block {
    padding-top: clamp(48px, 5vw, 64px);
    padding-bottom: clamp(32px, 4vw, 44px);
}
.ggc-company-about.ggc-design-block {
    padding-bottom: clamp(16px, 2vw, 24px);
}
.ggc-company-business.ggc-design-block {
    padding-top: clamp(16px, 2vw, 24px);
}
.ggc-company-block.ggc-mode-wide > .ggc-design-inner,
.ggc-company-block.ggc-mode-box > .ggc-design-inner {
    max-width: var(--ggc-content-width);
}
.ggc-company-block.ggc-mode-box > .ggc-design-inner {
    padding: 40px 44px;
}
.ggc-company-block .ggc-design-inner {
    text-align: left;
}
.ggc-company-block .ggc-section-head {
    max-width: none;
    margin-bottom: var(--ggc-co-head-gap);
}
.ggc-company-block .ggc-section-head p {
    margin-top: 12px;
}
.ggc-company-business .ggc-section-head,
.ggc-company-vision .ggc-section-head,
.ggc-company-history .ggc-section-head,
.ggc-company-org .ggc-section-head {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
.ggc-company-business .ggc-section-head p,
.ggc-company-vision .ggc-section-head p,
.ggc-company-history .ggc-section-head p,
.ggc-company-org .ggc-section-head p {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}
.ggc-company-block .ggc-section-head h2,
.ggc-company-block .ggc-design-inner > h2,
.ggc-company-about-copy h2 {
    margin: 12px 0 14px;
    font-size: var(--ggc-co-title);
    line-height: 1.12;
    letter-spacing: var(--ggc-heading-tracking-tight);
}
.ggc-company-block h3,
.ggc-company-timeline-item h3,
.ggc-company-org-card h3 {
    margin: 0 0 8px;
    font-size: var(--ggc-co-subtitle);
    line-height: 1.25;
    letter-spacing: -0.03em;
    color: var(--ggc-co-text);
}
.ggc-company-block .ggc-section-head p,
.ggc-company-about-copy p,
.ggc-company-business-card p,
.ggc-company-timeline-item p {
    color: var(--ggc-co-text-soft);
}
.ggc-company-block p,
.ggc-company-org-ceo p {
    font-size: var(--ggc-co-body);
    line-height: var(--ggc-co-body-lh);
}
.ggc-company-hero p,
.ggc-company-vision-card p,
.ggc-company-cta p {
    font-size: var(--ggc-co-body);
    line-height: var(--ggc-co-body-lh);
}
.ggc-company-hero.ggc-hero-overlay {
    min-height: min(520px, 68vh);
}
.ggc-company-hero .ggc-design-inner {
    max-width: var(--ggc-content-width);
    text-align: center;
}
.ggc-company-hero h2 {
    margin: 16px 0 18px;
    font-size: clamp(36px, 4vw, 46px);
}
.ggc-company-hero p {
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    color: var(--ggc-co-text-on-dark);
}
.ggc-company-hero p strong {
    color: #fff;
}
.ggc-company-hero .ggc-kicker {
    color: #fff;
    background: rgba(255, 255, 255, 0.18);
}
.ggc-company-hero .ggc-actions {
    justify-content: center;
}
.ggc-company-hero .ggc-link-button {
    padding: 12px 20px;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: var(--ggc-radius-full);
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}
.ggc-content .ggc-company-hero .ggc-link-button:hover {
    background: rgba(255, 255, 255, 0.2);
    text-decoration: none;
}
.ggc-company-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    max-width: 720px;
    margin: 32px auto 24px;
}
.ggc-company-stats > div {
    padding: 20px 16px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--ggc-radius-lg);
    background: rgba(255, 255, 255, 0.08);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    text-align: center;
}
.ggc-company-stats strong {
    display: block;
    color: #fff;
    font-size: clamp(22px, 2.2vw, 28px);
    line-height: 1.1;
    letter-spacing: -0.04em;
}
.ggc-company-stats span {
    display: block;
    margin-top: 6px;
    color: var(--ggc-co-text-on-dark-soft);
    font-size: 13px;
    font-weight: 700;
}
.ggc-company-about-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
    gap: var(--ggc-co-stack);
    align-items: stretch;
}
.ggc-company-about-copy p + p {
    margin-top: 14px;
}
.ggc-company-about-panel {
    display: grid;
    gap: 16px;
    padding: var(--ggc-co-card-pad);
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: var(--ggc-radius-xl);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 250, 252, 0.88));
    box-shadow: var(--ggc-shadow-md);
}
.ggc-company-about-panel > span {
    color: var(--ggc-primary);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: var(--ggc-caption-tracking);
    text-transform: uppercase;
}
.ggc-company-about-panel ul {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.ggc-company-about-panel li {
    display: grid;
    gap: 4px;
    padding: 14px 16px;
    border-radius: var(--ggc-radius-md);
    background: rgba(37, 99, 235, 0.06);
}
.ggc-company-about-panel li strong {
    color: var(--ggc-ink);
    font-size: var(--ggc-co-body);
}
.ggc-company-about-panel li span {
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
}
.ggc-company-business .ggc-feature-grid {
    gap: var(--ggc-co-stack);
}
.ggc-company-business .ggc-feature-card,
.ggc-company-business .ggc-feature-grid > article {
    position: relative;
    overflow: hidden;
    padding: var(--ggc-co-card-pad);
}
.ggc-company-business .ggc-feature-card p,
.ggc-company-business .ggc-feature-grid > article p {
    color: var(--ggc-co-text-soft);
}
.ggc-company-business .ggc-feature-icon {
    display: inline-flex;
    width: 48px;
    height: 48px;
    font-size: 14px;
    letter-spacing: 0.02em;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    box-shadow: 0 10px 28px rgba(37, 99, 235, 0.32);
}
.ggc-company-business .ggc-feature-card h3,
.ggc-company-business .ggc-feature-grid > article h3 {
    margin: 20px 0 12px;
}
.ggc-company-business-card ul,
.ggc-company-business .ggc-feature-grid > article ul {
    display: grid;
    gap: 8px;
    margin: 14px 0 0;
    padding: 0;
    list-style: none;
}
.ggc-company-business-card li,
.ggc-company-business .ggc-feature-grid > article li {
    position: relative;
    padding-left: 14px;
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
}
.ggc-company-business-card li::before,
.ggc-company-business .ggc-feature-grid > article li::before {
    content: "";
    position: absolute;
    top: 0.62em;
    left: 0;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--ggc-primary);
}
.ggc-company-vision {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 48%, #172554 100%);
}
.ggc-company-vision .ggc-section-head h2,
.ggc-company-vision .ggc-section-head p {
    color: #fff;
}
.ggc-company-vision .ggc-section-head p {
    color: var(--ggc-co-text-on-dark-soft);
}
.ggc-company-vision .ggc-kicker {
    color: #fff;
    background: rgba(255, 255, 255, 0.16);
}
.ggc-company-vision-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--ggc-co-stack);
}
.ggc-company-vision .ggc-company-vision-grid > article {
    position: relative;
    overflow: hidden;
    display: grid;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: var(--ggc-radius-xl);
    background: rgba(255, 255, 255, 0.06) !important;
    color: #fff;
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    box-shadow: none;
}
.ggc-company-vision .ggc-company-vision-grid > article::after {
    content: "";
    position: absolute;
    top: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.28), transparent 68%);
    pointer-events: none;
}
.ggc-company-vision .ggc-company-vision-grid > article > span:first-child {
    position: relative;
    z-index: 1;
    color: var(--ggc-co-label-on-dark);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: var(--ggc-caption-tracking);
    text-transform: uppercase;
}
.ggc-company-vision .ggc-company-vision-grid > article h3,
.new-content-skin__body .ggc-content .ggc-company-vision .ggc-company-vision-grid > article h3 {
    position: relative;
    z-index: 1;
    margin: 0 0 8px;
    color: #fff !important;
}
.ggc-company-vision .ggc-company-vision-grid > article p {
    position: relative;
    z-index: 1;
    margin: 0;
    color: var(--ggc-co-text-on-dark-soft) !important;
}
.ggc-company-vision .ggc-company-values .inline-flex {
    border-color: rgba(255, 255, 255, 0.22) !important;
    background: rgba(255, 255, 255, 0.14) !important;
    color: #fff !important;
}
.ggc-company-vision-card {
    position: relative;
    overflow: hidden;
    display: grid;
    gap: 12px;
    padding: var(--ggc-co-card-pad);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--ggc-radius-xl);
    background: rgba(255, 255, 255, 0.06);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
}
.ggc-company-vision-card::after {
    content: "";
    position: absolute;
    top: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.28), transparent 68%);
}
.ggc-company-vision-card > span {
    color: var(--ggc-co-label-on-dark);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: var(--ggc-caption-tracking);
    text-transform: uppercase;
}
.ggc-company-vision-card h3,
.ggc-company-vision-card p {
    position: relative;
    z-index: 1;
}
.ggc-company-vision .ggc-company-vision-card h3,
.new-content-skin__body .ggc-content .ggc-company-vision .ggc-company-vision-card h3 {
    margin: 0 0 8px;
    font-size: var(--ggc-co-subtitle);
    line-height: 1.25;
    letter-spacing: -0.03em;
    color: #fff;
}
.ggc-company-vision-card p {
    margin: 0;
    color: var(--ggc-co-text-on-dark-soft);
}
.ggc-company-values {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: var(--ggc-co-stack);
    justify-content: center;
}
.ggc-company-value {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 16px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: var(--ggc-radius-full);
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    font-size: 14px;
    font-weight: 800;
}
.ggc-company-timeline {
    position: relative;
    display: grid;
    gap: 0;
    margin-top: var(--ggc-co-stack);
    padding-left: 28px;
}
.ggc-company-timeline::before {
    content: "";
    position: absolute;
    top: 8px;
    bottom: 8px;
    left: 10px;
    width: 2px;
    background: linear-gradient(180deg, var(--ggc-primary), rgba(37, 99, 235, 0.12));
}
.ggc-company-timeline-item {
    position: relative;
    display: grid;
    grid-template-columns: 84px minmax(0, 1fr);
    gap: 20px;
    padding: 0 0 24px 18px;
}
.ggc-company-timeline-item::before {
    content: "";
    position: absolute;
    top: 8px;
    left: -22px;
    width: 12px;
    height: 12px;
    border: 3px solid #fff;
    border-radius: 50%;
    background: var(--ggc-primary);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.16);
}
.ggc-company-timeline-item time {
    padding-top: 2px;
    color: var(--ggc-primary);
    font-size: 16px;
    font-weight: 900;
    letter-spacing: -0.03em;
}
.ggc-company-timeline-item h3 {
    color: var(--ggc-co-text);
}
.ggc-company-timeline-item p {
    margin: 0;
    color: var(--ggc-co-text-soft);
}
.ggc-company-timeline-item > div {
    padding: 20px 22px;
    border: 1px solid rgba(148, 163, 184, 0.28);
    border-radius: var(--ggc-radius-lg);
    background: #fff;
    box-shadow: var(--ggc-shadow-sm);
}
.ggc-company-timeline-item--future > div {
    border-color: rgba(37, 99, 235, 0.34);
    background: linear-gradient(135deg, #eff6ff, #fff);
}
.ggc-company-org-tree {
    display: grid;
    gap: var(--ggc-co-stack);
}
.ggc-company-org-ceo {
    display: grid;
    justify-items: center;
    gap: 6px;
    max-width: 280px;
    margin: 0 auto;
    padding: 24px 28px;
    border: 1px solid rgba(37, 99, 235, 0.24);
    border-radius: var(--ggc-radius-xl);
    background: linear-gradient(180deg, #1d4ed8, #2563eb);
    box-shadow: 0 18px 48px rgba(37, 99, 235, 0.24);
    color: #fff;
    text-align: center;
}
.ggc-company-org-ceo span {
    font-size: 12px;
    font-weight: 900;
    letter-spacing: var(--ggc-caption-tracking);
    text-transform: uppercase;
    opacity: 0.82;
}
.ggc-company-org-ceo strong {
    font-size: var(--ggc-co-subtitle);
    letter-spacing: -0.04em;
}
.ggc-company-org-ceo p {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}
.ggc-company-org-branches {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: var(--ggc-co-stack);
    padding-top: 28px;
}
.ggc-company-org-branches::before {
    content: "";
    position: absolute;
    top: 0;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.35), transparent);
}
.ggc-company-org-card {
    position: relative;
    display: grid;
    gap: 10px;
    padding: var(--ggc-co-card-pad) 22px;
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: var(--ggc-radius-xl);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: var(--ggc-shadow-md);
}
.ggc-company-org-card::before {
    content: "";
    position: absolute;
    top: -28px;
    left: 50%;
    width: 2px;
    height: 28px;
    background: rgba(37, 99, 235, 0.35);
    transform: translateX(-50%);
}
.ggc-company-org-card > span {
    color: var(--ggc-primary);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: var(--ggc-caption-tracking);
    text-transform: uppercase;
}
.ggc-company-org-card ul {
    display: grid;
    gap: 6px;
    margin: 4px 0 0;
    padding: 0;
    list-style: none;
}
.ggc-company-org-card li {
    position: relative;
    padding-left: 12px;
    color: #64748b;
    font-size: 14px;
    line-height: 1.55;
}
.ggc-company-org-card li::before {
    content: "";
    position: absolute;
    top: 0.62em;
    left: 0;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--ggc-primary);
}
.ggc-company-cta.ggc-cta-block {
    padding-top: clamp(48px, 5vw, 64px);
    padding-bottom: clamp(48px, 5vw, 64px);
}
.new-page__body--ggc-content .ggc-content .ggc-company-cta.ggc-cta-block:last-child {
    padding-bottom: clamp(48px, 5vw, 64px);
    margin-bottom: 0;
}
.ggc-company-cta .ggc-design-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--ggc-co-stack);
}
.ggc-company-cta .ggc-kicker {
    margin: 0 0 14px;
    color: #fff;
    background: rgba(255, 255, 255, 0.16);
}
.ggc-company-cta h2 {
    margin: 0 0 14px;
}
.ggc-company-cta p {
    max-width: 560px;
    margin: 0;
    color: var(--ggc-co-text-on-dark-soft);
}
.ggc-company-cta .ggc-actions {
    margin-top: 0;
    flex-shrink: 0;
    align-items: center;
}
.ggc-company-cta .ggc-link-button {
    padding: 12px 20px;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: var(--ggc-radius-full);
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}
.ggc-content .ggc-company-cta .ggc-link-button:hover {
    background: rgba(255, 255, 255, 0.2);
    text-decoration: none;
}

.ggc-table-wrap {
    overflow-x: auto;
}
.ggc-table-wrap table {
    width: 100%;
    min-width: 560px;
    border-collapse: collapse;
    background: var(--ggc-surface);
}
.ggc-table-wrap caption {
    padding: 20px 0;
    color: var(--ggc-muted);
    font-weight: 800;
    text-align: left;
}
.ggc-table-wrap th,
.ggc-table-wrap td {
    padding: 18px;
    border-bottom: 1px solid var(--ggc-line, #e2e8f0);
    text-align: left;
}
.ggc-table-wrap th {
    background: var(--ggc-soft);
    font-weight: 900;
    letter-spacing: -0.02em;
}
.ggc-testimonial-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.ggc-testimonial-grid blockquote {
    margin: 0;
    padding: 30px;
    border-radius: var(--ggc-radius-xl);
    box-shadow: var(--ggc-shadow-lg);
}
.ggc-stars {
    margin-bottom: 18px;
    color: var(--new-warning, #f59e0b);
    font-size: 18px;
    letter-spacing: 0.08em;
}
.ggc-testimonial-grid cite {
    display: block;
    margin-top: 18px;
    color: var(--ggc-primary);
    font-style: normal;
    font-weight: 900;
    letter-spacing: -0.02em;
}
.ggc-accordion-list {
    display: grid;
    gap: 12px;
}
.ggc-accordion-list details {
    padding: 20px 24px;
    border: 1px solid var(--ggc-line, #e2e8f0);
    border-radius: var(--ggc-radius-md);
    background: var(--ggc-surface);
}
.ggc-accordion-list summary {
    cursor: pointer;
    font-weight: 900;
    letter-spacing: -0.025em;
}
.ggc-accordion-list p {
    margin-top: 12px;
}
.ggc-alert-card {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 24px 28px;
    border: 1px solid transparent;
    border-radius: var(--ggc-radius-xl);
    box-shadow: var(--ggc-shadow-lg);
}
.ggc-alert-card .ggc-content-icon {
    flex: 0 0 auto;
}
.ggc-alert-card strong {
    font-size: 20px;
    letter-spacing: -0.03em;
}
.ggc-alert-card p {
    flex: 1;
    margin: 6px 0 0;
}
.ggc-alert-card a {
    margin-left: auto;
    font-weight: 900;
}
.ggc-alert-card[data-alert-type="success"] { background: #ecfdf5; border-color: #bbf7d0; color: #047857; }
.ggc-alert-card[data-alert-type="info"] { background: #eff6ff; border-color: #bfdbfe; color: #1d4ed8; }
.ggc-alert-card[data-alert-type="warning"] { background: #fffbeb; border-color: #fde68a; color: #b45309; }
.ggc-alert-card[data-alert-type="danger"] { background: #fef2f2; border-color: #fecaca; color: #b91c1c; }
.ggc-alert-card[data-alert-type="dark"] { background: #0f172a; border-color: #1e293b; color: #fff; }
.ggc-alert-card[data-alert-type] p,
.ggc-alert-card[data-alert-type] a {
    color: currentColor;
}
.ggc-carousel-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(280px, 32%);
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
}
.ggc-carousel-track article {
    overflow: hidden;
    border: 1px solid var(--ggc-line, #e2e8f0);
    border-radius: var(--ggc-radius-xl);
    background: var(--ggc-surface);
    scroll-snap-align: start;
}
.ggc-carousel-track img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}
.ggc-carousel-track h3,
.ggc-carousel-track p {
    padding: 0 22px;
}
.ggc-carousel-track h3 {
    margin: 22px 0 8px;
}
.ggc-carousel-track p {
    margin-bottom: 22px;
}
.ggc-smart-navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    max-width: var(--ggc-content-width);
    margin: 24px auto;
    padding: 18px 22px;
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: var(--ggc-radius-full);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--ggc-shadow-md);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
}
.ggc-smart-navbar div {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}
.ggc-smart-navbar a {
    color: #334155;
    font-weight: 800;
    letter-spacing: -0.01em;
    text-decoration: none;
}
.ggc-smart-form {
    max-width: 760px;
    margin: 32px auto;
    padding: 36px;
    border: 1px solid rgba(148, 163, 184, 0.24);
    border-radius: clamp(var(--ggc-radius-2xl), 3vw, 34px);
    background: linear-gradient(180deg, var(--ggc-surface), var(--ggc-soft));
    box-shadow: var(--ggc-shadow-lg);
}
.ggc-smart-form h3 {
    margin: 18px 0 8px;
    font-size: 30px;
    letter-spacing: -0.04em;
}
.ggc-smart-form p {
    color: var(--ggc-muted);
}
.ggc-smart-form input,
.ggc-smart-form textarea,
.ggc-smart-field input,
.ggc-smart-field textarea,
.ggc-smart-field select {
    box-sizing: border-box;
    width: 100%;
    margin-top: 12px;
    padding: 15px 16px;
    border: 1px solid #dbe3ef;
    border-radius: var(--new-control-radius, 16px);
    background: var(--ggc-surface);
    font: inherit;
}
.ggc-smart-form input:disabled,
.ggc-smart-form textarea:disabled,
.ggc-smart-field input:disabled,
.ggc-smart-field textarea:disabled,
.ggc-smart-field select:disabled {
    opacity: 0.72;
    cursor: not-allowed;
}
.ggc-smart-form textarea,
.ggc-smart-field textarea {
    min-height: 130px;
}
.ggc-smart-form button {
    margin-top: 14px;
    padding: 14px 20px;
    border: 0;
    border-radius: var(--ggc-radius-full);
    background: var(--ggc-primary);
    color: #fff;
    font-weight: 900;
}
.ggc-smart-field {
    max-width: 720px;
    margin: 24px auto;
    padding: 24px;
    border: 1px solid rgba(148, 163, 184, 0.24);
    border-radius: var(--ggc-radius-lg);
    background: var(--ggc-surface);
    box-shadow: var(--ggc-shadow-sm);
}
.ggc-smart-field label {
    display: block;
    color: var(--ggc-ink);
    font-weight: 900;
    letter-spacing: -0.02em;
}
.ggc-smart-tabs {
    max-width: var(--ggc-content-width);
    margin: 34px auto;
    padding: 34px;
    border: 1px solid rgba(148, 163, 184, 0.24);
    border-radius: clamp(var(--ggc-radius-2xl), 3vw, 34px);
    background: linear-gradient(135deg, var(--ggc-surface), var(--ggc-soft));
    box-shadow: var(--ggc-shadow-lg);
}
.ggc-smart-tabs > .ggc-content-icon {
    margin-bottom: 18px;
}
.ggc-smart-tabs__head h2 {
    margin: 0 0 12px;
    font-size: clamp(30px, 4vw, 52px);
    line-height: 1.08;
    letter-spacing: var(--ggc-heading-tracking);
}
.ggc-smart-tabs__head p {
    max-width: 760px;
    color: var(--ggc-muted);
    line-height: 1.75;
}
.ggc-smart-tabs__nav {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    margin: 26px 0;
    padding: 8px;
    border-radius: var(--ggc-radius-full);
    background: #eef2ff;
}
.ggc-smart-tabs__nav a,
.ggc-smart-tabs__nav button {
    flex: 0 0 auto;
    padding: 12px 18px;
    border: 0;
    border-radius: var(--ggc-radius-full);
    background: var(--ggc-surface);
    color: var(--ggc-primary);
    font: inherit;
    font-weight: 900;
    letter-spacing: -0.01em;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.12);
    cursor: pointer;
}
.ggc-smart-tabs__nav [aria-selected="true"] {
    background: var(--ggc-primary);
    color: #fff;
}
.ggc-smart-tabs__panel {
    padding: 28px;
    border-radius: var(--ggc-radius-xl);
    background: #0f172a;
    color: #fff;
}
.ggc-smart-tabs__panel h3 {
    margin: 0 0 10px;
    font-size: 24px;
    letter-spacing: -0.035em;
}
.ggc-smart-tabs__panel p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.75;
}
.ggc-smart-tooltip {
    position: relative;
    max-width: 760px;
    margin: 32px auto;
    padding: 28px 30px 30px 104px;
    border-radius: var(--ggc-radius-xl);
    background: linear-gradient(135deg, #111827, #1d4ed8);
    color: #fff;
    box-shadow: 0 28px 75px rgba(29, 78, 216, 0.25);
}
.ggc-smart-tooltip .ggc-content-icon {
    position: absolute;
    top: 30px;
    left: 30px;
}
.ggc-smart-tooltip span {
    display: inline-flex;
    margin-bottom: 10px;
    color: #bfdbfe;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: var(--ggc-caption-tracking);
    text-transform: uppercase;
}
.ggc-smart-tooltip strong {
    display: block;
    font-size: 24px;
    letter-spacing: -0.035em;
}
.ggc-smart-tooltip p {
    margin: 10px 0 0;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
}
.ggc-smart-countdown {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 28px;
    align-items: center;
    max-width: var(--ggc-content-width);
    margin: 34px auto;
    padding: 42px;
    border: 1px solid rgba(148, 163, 184, 0.24);
    border-radius: clamp(var(--ggc-radius-2xl), 3vw, 38px);
    background: radial-gradient(circle at 10% 0%, rgba(37, 99, 235, 0.18), transparent 35%), linear-gradient(135deg, var(--ggc-surface), var(--ggc-soft));
    box-shadow: var(--ggc-shadow-lg);
}
.ggc-smart-countdown h2 {
    margin: 14px 0;
    font-size: clamp(30px, 4.8vw, 58px);
    line-height: 1.05;
    letter-spacing: var(--ggc-heading-tracking-tight);
}
.ggc-smart-countdown p {
    color: var(--ggc-muted);
    line-height: 1.75;
}
.ggc-countdown-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}
.ggc-countdown-grid span {
    display: grid;
    place-items: center;
    padding: 24px 12px;
    border-radius: var(--ggc-radius-xl);
    background: #0f172a;
    color: #fff;
}
.ggc-countdown-grid b {
    font-size: clamp(30px, 5vw, 54px);
    line-height: 1;
    letter-spacing: -0.04em;
}
.ggc-countdown-grid em {
    margin-top: 8px;
    color: #93c5fd;
    font-size: 12px;
    font-style: normal;
    font-weight: 900;
    letter-spacing: var(--ggc-caption-tracking);
    text-transform: uppercase;
}
.ggc-smart-code {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 24px;
    max-width: var(--ggc-content-width);
    margin: 34px auto;
    padding: 34px;
    overflow: hidden;
    border-radius: clamp(var(--ggc-radius-2xl), 3vw, 34px);
    background: #0b1220;
    color: #fff;
    box-shadow: 0 30px 90px rgba(2, 6, 23, 0.28);
}
.ggc-smart-code .ggc-content-icon {
    background: rgba(96, 165, 250, 0.16);
    color: #bfdbfe;
    box-shadow: inset 0 0 0 1px rgba(191, 219, 254, 0.16);
}
.ggc-smart-code h2 {
    margin: 18px 0 12px;
    font-size: clamp(28px, 4vw, 46px);
    line-height: 1.08;
    letter-spacing: var(--ggc-heading-tracking);
}
.ggc-smart-code p {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.75;
}
.ggc-smart-code pre {
    margin: 0;
    overflow: auto;
    padding: 24px;
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 24px;
    background: #020617;
    color: #bfdbfe;
}
.ggc-smart-code code {
    font-family: Consolas, Monaco, monospace;
    font-size: 14px;
    line-height: 1.7;
    white-space: pre-wrap;
}
.ggc-cta-block {
    background: linear-gradient(135deg, #111827, #2563eb);
    color: #fff;
}
.ggc-cta-block .ggc-design-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}
html.new-theme-dark,
body.new-theme-dark,
[data-theme="dark"] {
    --ggc-ink: var(--new-text, #f8fafc);
    --ggc-muted: var(--new-muted, #b6c2d2);
    --ggc-faint: var(--new-faint, #90a0b7);
    --ggc-line: var(--new-border, rgba(226, 232, 240, 0.14));
    --ggc-surface: var(--new-surface, #111c2d);
    --ggc-soft: var(--new-surface-soft, #1c2a3d);
    --ggc-shadow-sm: 0 16px 50px rgba(0, 0, 0, 0.2);
    --ggc-shadow-md: 0 18px 60px rgba(0, 0, 0, 0.22);
    --ggc-shadow-lg: 0 24px 70px rgba(0, 0, 0, 0.24);
}
body.new-theme-dark .ggc-content,
[data-theme="dark"] .ggc-content {
    color: var(--ggc-ink, #f8fafc);
}
body.new-theme-dark .ggc-smart-block,
body.new-theme-dark .ggc-smart-text,
body.new-theme-dark .ggc-smart-link-card,
body.new-theme-dark .ggc-design-block,
body.new-theme-dark .ggc-design-block.ggc-mode-box > .ggc-design-inner,
body.new-theme-dark .ggc-col,
body.new-theme-dark .ggc-flexbox > div,
body.new-theme-dark .ggc-feature-card,
body.new-theme-dark .ggc-mini-cards > div,
body.new-theme-dark .ggc-testimonial-grid blockquote,
body.new-theme-dark .ggc-accordion-list details,
body.new-theme-dark .ggc-carousel-track article,
body.new-theme-dark .ggc-smart-navbar,
body.new-theme-dark .ggc-smart-form,
body.new-theme-dark .ggc-smart-field,
body.new-theme-dark .ggc-smart-tabs,
body.new-theme-dark .ggc-smart-countdown {
    border-color: var(--new-border, rgba(226, 232, 240, 0.14));
    background: var(--new-surface, #111c2d);
    color: var(--new-text, #f8fafc);
/*    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24); */
}
body.new-theme-dark .ggc-section p,
body.new-theme-dark .ggc-smart-section p,
body.new-theme-dark .ggc-smart-text-section p,
body.new-theme-dark .ggc-smart-text p,
body.new-theme-dark .ggc-simple-list,
body.new-theme-dark .ggc-simple-list-item,
body.new-theme-dark .ggc-simple-list-subitem,
body.new-theme-dark .ggc-simple-list li,
body.new-theme-dark .ggc-section-head p,
body.new-theme-dark .ggc-design-block p,
body.new-theme-dark .ggc-feature-card p,
body.new-theme-dark .ggc-features-block .ggc-feature-grid > article p,
body.new-theme-dark .ggc-smart-tabs__head p,
body.new-theme-dark .ggc-smart-countdown p,
body.new-theme-dark .ggc-smart-form p,
body.new-theme-dark .ggc-smart-link-card em {
    color: var(--new-muted, #b6c2d2);
}
body.new-theme-dark .ggc-simple-list-title,
body.new-theme-dark .ggc-simple-list h3,
body.new-theme-dark .ggc-smart-list h3,
body.new-theme-dark .ggc-smart-list strong,
body.new-theme-dark .ggc-smart-text strong,
body.new-theme-dark .ggc-smart-link-card,
body.new-theme-dark .ggc-smart-link-card strong,
body.new-theme-dark .ggc-feature-card h3,
body.new-theme-dark .ggc-features-block .ggc-feature-grid > article h3,
body.new-theme-dark .ggc-smart-field label {
    color: var(--new-text, #f8fafc);
}
body.new-theme-dark .ggc-smart-list li,
body.new-theme-dark .ggc-simple-list {
    border-color: var(--new-border, rgba(226, 232, 240, 0.14));
    background: rgba(255, 255, 255, 0.035);
}
body.new-theme-dark .ggc-content-icon,
body.new-theme-dark .ggc-kicker,
body.new-theme-dark .ggc-smart-label {
    background: rgba(37, 99, 235, 0.16);
    color: #93c5fd;
    box-shadow: inset 0 0 0 1px rgba(147, 197, 253, 0.16);
}
body.new-theme-dark .ggc-hero-overlay .ggc-kicker,
body.new-theme-dark .ggc-hero-overlay .text-muted-foreground,
body.new-theme-dark .ggc-cta-block .ggc-kicker,
body.new-theme-dark .ggc-cta-block .text-muted-foreground,
body.new-theme-dark .ggc-youtube-content .ggc-kicker,
body.new-theme-dark .ggc-youtube-content .text-muted-foreground,
body.new-theme-dark .ggc-company-vision .ggc-kicker,
body.new-theme-dark .ggc-company-vision .text-muted-foreground,
[data-theme="dark"] .ggc-hero-overlay .ggc-kicker,
[data-theme="dark"] .ggc-hero-overlay .text-muted-foreground,
[data-theme="dark"] .ggc-cta-block .ggc-kicker,
[data-theme="dark"] .ggc-cta-block .text-muted-foreground,
[data-theme="dark"] .ggc-youtube-content .ggc-kicker,
[data-theme="dark"] .ggc-youtube-content .text-muted-foreground,
[data-theme="dark"] .ggc-company-vision .ggc-kicker,
[data-theme="dark"] .ggc-company-vision .text-muted-foreground {
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
    box-shadow: none;
}
body.new-theme-dark .ggc-smart-note,
body.new-theme-dark .ggc-process-list > div,
body.new-theme-dark .ggc-smart-tabs__panel,
body.new-theme-dark .ggc-countdown-grid span,
body.new-theme-dark .ggc-smart-code,
body.new-theme-dark .ggc-smart-code pre,
body.new-theme-dark .ggc-as-hero aside,
body.new-theme-dark .ggc-as-summary article,
body.new-theme-dark .ggc-as-panel,
body.new-theme-dark .ggc-as-warning,
body.new-theme-dark .ggc-as-safety {
    border-color: rgba(226, 232, 240, 0.16);
    background: #020617;
    color: #f8fafc;
}
body.new-theme-dark .ggc-company-about-panel,
body.new-theme-dark .ggc-company-timeline-item > div,
body.new-theme-dark .ggc-company-org-card {
    border-color: rgba(226, 232, 240, 0.14);
    background: rgba(17, 28, 45, 0.92);
    color: #f8fafc;
}
body.new-theme-dark .ggc-company-about-panel li {
    background: rgba(37, 99, 235, 0.12);
}
body.new-theme-dark .ggc-company-timeline-item--future > div {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.42), rgba(17, 28, 45, 0.92));
}
body.new-theme-dark .ggc-company-about .ggc-section-head p,
body.new-theme-dark .ggc-company-about-copy p,
body.new-theme-dark .ggc-company-business .ggc-section-head p,
body.new-theme-dark .ggc-company-business .ggc-feature-card p,
body.new-theme-dark .ggc-company-business .ggc-feature-grid > article p,
body.new-theme-dark .ggc-company-business-card p,
body.new-theme-dark .ggc-company-history .ggc-section-head p,
body.new-theme-dark .ggc-company-timeline-item p,
body.new-theme-dark .ggc-company-org .ggc-section-head p,
body.new-theme-dark .ggc-company-about-panel li span,
body.new-theme-dark .ggc-company-business-card li,
body.new-theme-dark .ggc-company-business .ggc-feature-grid > article li,
body.new-theme-dark .ggc-company-org-card li {
    color: #cbd5e1;
}
body.new-theme-dark .ggc-company-about-panel li strong,
body.new-theme-dark .ggc-company-timeline-item h3,
body.new-theme-dark .ggc-company-org-card h3,
body.new-theme-dark .ggc-company-business .ggc-feature-card h3,
body.new-theme-dark .ggc-company-business .ggc-feature-grid > article h3 {
    color: #f8fafc;
}
body.new-theme-dark .ggc-company-hero.ggc-hero-overlay p,
body.new-theme-dark .ggc-company-hero.ggc-hero-overlay .ggc-kicker,
body.new-theme-dark .ggc-company-hero.ggc-hero-overlay .text-muted-foreground,
body.new-theme-dark .ggc-company-vision .ggc-section-head p,
body.new-theme-dark .ggc-company-vision .ggc-kicker,
body.new-theme-dark .ggc-company-vision .text-muted-foreground,
body.new-theme-dark .ggc-company-vision .ggc-company-vision-card h3,
body.new-theme-dark .ggc-company-vision .ggc-company-vision-grid > article h3,
body.new-theme-dark .ggc-company-vision-card p,
body.new-theme-dark .ggc-company-vision .ggc-company-vision-grid > article p,
body.new-theme-dark .ggc-company-vision-card > span,
body.new-theme-dark .ggc-company-vision .ggc-company-vision-grid > article > span:first-child,
body.new-theme-dark .ggc-company-value,
body.new-theme-dark .ggc-company-vision .ggc-company-values .inline-flex,
body.new-theme-dark .ggc-company-cta.ggc-cta-block p,
body.new-theme-dark .ggc-company-cta.ggc-cta-block .ggc-kicker,
body.new-theme-dark .ggc-company-cta.ggc-cta-block .text-muted-foreground,
[data-theme="dark"] .ggc-company-hero.ggc-hero-overlay p,
[data-theme="dark"] .ggc-company-hero.ggc-hero-overlay .ggc-kicker,
[data-theme="dark"] .ggc-company-hero.ggc-hero-overlay .text-muted-foreground,
[data-theme="dark"] .ggc-company-vision .ggc-section-head p,
[data-theme="dark"] .ggc-company-vision .ggc-kicker,
[data-theme="dark"] .ggc-company-vision .text-muted-foreground,
[data-theme="dark"] .ggc-company-vision .ggc-company-vision-card h3,
[data-theme="dark"] .ggc-company-vision .ggc-company-vision-grid > article h3,
[data-theme="dark"] .ggc-company-vision-card p,
[data-theme="dark"] .ggc-company-vision .ggc-company-vision-grid > article p,
[data-theme="dark"] .ggc-company-vision-card > span,
[data-theme="dark"] .ggc-company-vision .ggc-company-vision-grid > article > span:first-child,
[data-theme="dark"] .ggc-company-value,
[data-theme="dark"] .ggc-company-vision .ggc-company-values .inline-flex,
[data-theme="dark"] .ggc-company-cta.ggc-cta-block p,
[data-theme="dark"] .ggc-company-cta.ggc-cta-block .ggc-kicker,
[data-theme="dark"] .ggc-company-cta.ggc-cta-block .text-muted-foreground {
    color: rgba(255, 255, 255, 0.92);
}
body.new-theme-dark .ggc-company-stats span,
[data-theme="dark"] .ggc-company-stats span {
    color: rgba(255, 255, 255, 0.86);
}
body.new-theme-dark .ggc-company-timeline-item > div,
[data-theme="dark"] .ggc-company-timeline-item > div {
    background: rgba(17, 28, 45, 0.96);
    border-color: rgba(226, 232, 240, 0.16);
}
body.new-theme-dark .ggc-table-wrap table,
body.new-theme-dark .ggc-table-wrap th,
body.new-theme-dark .ggc-table-wrap td {
    border-color: var(--new-border, rgba(226, 232, 240, 0.14));
    background: var(--new-surface, #111c2d);
    color: var(--new-text, #f8fafc);
}
body.new-theme-dark .ggc-table-wrap th,
body.new-theme-dark .ggc-smart-tabs__nav {
    background: var(--new-surface-soft, #1c2a3d);
}
body.new-theme-dark .ggc-smart-form input,
body.new-theme-dark .ggc-smart-form textarea,
body.new-theme-dark .ggc-smart-field input,
body.new-theme-dark .ggc-smart-field textarea,
body.new-theme-dark .ggc-smart-field select {
    border-color: var(--new-border, rgba(226, 232, 240, 0.14));
    background: var(--new-bg, #07111f);
    color: var(--new-text, #f8fafc);
}
body.new-theme-dark .ggc-smart-form input::placeholder,
body.new-theme-dark .ggc-smart-form textarea::placeholder,
body.new-theme-dark .ggc-smart-field input::placeholder,
body.new-theme-dark .ggc-smart-field textarea::placeholder {
    color: var(--new-faint, #7f8da3);
}
:is(html.new-theme-dark, body.new-theme-dark, [data-theme="dark"]) .ggc-alert-card[data-alert-type="success"] {
    border-color: rgba(52, 211, 153, 0.28);
    background: rgba(6, 78, 59, 0.42);
    color: #bbf7d0;
}
:is(html.new-theme-dark, body.new-theme-dark, [data-theme="dark"]) .ggc-alert-card[data-alert-type="info"] {
    border-color: rgba(96, 165, 250, 0.3);
    background: rgba(30, 64, 175, 0.38);
    color: #bfdbfe;
}
:is(html.new-theme-dark, body.new-theme-dark, [data-theme="dark"]) .ggc-alert-card[data-alert-type="warning"] {
    border-color: rgba(251, 191, 36, 0.34);
    background: rgba(120, 53, 15, 0.42);
    color: #fde68a;
}
:is(html.new-theme-dark, body.new-theme-dark, [data-theme="dark"]) .ggc-alert-card[data-alert-type="danger"] {
    border-color: rgba(248, 113, 113, 0.32);
    background: rgba(127, 29, 29, 0.42);
    color: #fecaca;
}
:is(html.new-theme-dark, body.new-theme-dark, [data-theme="dark"]) .ggc-smart-list strong,
:is(html.new-theme-dark, body.new-theme-dark, [data-theme="dark"]) .ggc-simple-list-title,
:is(html.new-theme-dark, body.new-theme-dark, [data-theme="dark"]) .ggc-simple-list h3,
:is(html.new-theme-dark, body.new-theme-dark, [data-theme="dark"]) .ggc-smart-navbar a,
:is(html.new-theme-dark, body.new-theme-dark, [data-theme="dark"]) .ggc-smart-text strong,
:is(html.new-theme-dark, body.new-theme-dark, [data-theme="dark"]) .ggc-feature-card h3,
:is(html.new-theme-dark, body.new-theme-dark, [data-theme="dark"]) .ggc-features-block .ggc-feature-grid > article h3 {
    color: var(--ggc-ink, #f8fafc);
}
:is(html.new-theme-dark, body.new-theme-dark, [data-theme="dark"]) .ggc-simple-list,
:is(html.new-theme-dark, body.new-theme-dark, [data-theme="dark"]) .ggc-simple-list-item,
:is(html.new-theme-dark, body.new-theme-dark, [data-theme="dark"]) .ggc-simple-list-subitem,
:is(html.new-theme-dark, body.new-theme-dark, [data-theme="dark"]) .ggc-as-summary p,
:is(html.new-theme-dark, body.new-theme-dark, [data-theme="dark"]) .ggc-as-panel p,
:is(html.new-theme-dark, body.new-theme-dark, [data-theme="dark"]) .ggc-as-warning li,
:is(html.new-theme-dark, body.new-theme-dark, [data-theme="dark"]) .ggc-as-safety p {
    color: var(--ggc-muted, #b6c2d2);
}
:is(html.new-theme-dark, body.new-theme-dark, [data-theme="dark"]) .ggc-as-policy-block {
    background:
        radial-gradient(circle at 0 0, rgba(37, 99, 235, 0.24), transparent 34%),
        linear-gradient(180deg, #07111f, #0f172a);
}
:is(html.new-theme-dark, body.new-theme-dark, [data-theme="dark"]) .ggc-as-address,
:is(html.new-theme-dark, body.new-theme-dark, [data-theme="dark"]) .ggc-as-warning li,
:is(html.new-theme-dark, body.new-theme-dark, [data-theme="dark"]) .ggc-as-safety p {
    background: var(--new-surface-soft, #1c2a3d);
}
:is(html.new-theme-dark, body.new-theme-dark, [data-theme="dark"]) .ggc-as-address a,
:is(html.new-theme-dark, body.new-theme-dark, [data-theme="dark"]) .ggc-as-summary strong,
:is(html.new-theme-dark, body.new-theme-dark, [data-theme="dark"]) .ggc-as-hero aside strong {
    color: var(--new-text, #f8fafc);
}
body.new-theme-dark .ggc-hero-overlay {
    color: #fff;
    border-color: transparent;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.92), rgba(79, 70, 229, 0.75)), linear-gradient(45deg, #111827, #334155);
}
body.new-theme-dark .ggc-cta-block {
    color: #fff;
    border-color: transparent;
    background: linear-gradient(135deg, #111827, #2563eb);
}
body.new-theme-dark .ggc-youtube-hero {
    color: #fff;
    border-color: transparent;
    background: #020617;
}
body.new-theme-dark .ggc-smart-quote .ggc-content-icon,
body.new-theme-dark .ggc-smart-tooltip .ggc-content-icon {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}
@media (max-width: 1180px) {
    .ggc-row--cols-5,
    .ggc-row--cols-6 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .ggc-feature-grid--4,
    .ggc-process-list,
    .ggc-as-flow {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 900px) {
    .ggc-row,
    .ggc-row--cols-3,
    .ggc-row--cols-4,
    .ggc-row--cols-5,
    .ggc-row--cols-6,
    .ggc-hero-split .ggc-design-inner,
    .ggc-hero-cards .ggc-design-inner,
    .ggc-feature-grid--3,
    .ggc-feature-grid--4,
    .ggc-process-list,
    .ggc-testimonial-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .ggc-as-hero,
    .ggc-as-grid,
    .ggc-as-warning,
    .ggc-as-safety,
    .ggc-company-about-grid,
    .ggc-company-vision-grid,
    .ggc-company-org-branches {
        grid-template-columns: 1fr;
    }
    .ggc-company-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .ggc-company-cta .ggc-design-inner {
        display: block;
        text-align: center;
    }
    .ggc-company-cta p {
        max-width: none;
        margin-left: auto;
        margin-right: auto;
    }
    .ggc-company-cta .ggc-actions {
        margin-top: 24px;
        justify-content: center;
    }
    .ggc-company-org-branches::before {
        display: none;
    }
    .ggc-company-org-card::before {
        display: none;
    }
    .ggc-smart-text-section .ggc-smart-inner,
    .ggc-smart-countdown,
    .ggc-smart-code {
        grid-template-columns: 1fr;
    }
    .ggc-flexbox {
        flex-wrap: wrap;
    }
    .ggc-flexbox > div {
        flex-basis: calc(50% - 18px);
    }
    .ggc-cta-block .ggc-design-inner {
        display: block;
    }
    .ggc-cta-block .ggc-button {
        margin-top: 22px;
    }
    .ggc-design-block.ggc-mode-box > .ggc-design-inner,
    .ggc-company-block.ggc-mode-box > .ggc-design-inner {
        padding: 32px 24px;
    }
}
@media (max-width: 640px) {
    .ggc-row,
    .ggc-row--cols-3,
    .ggc-row--cols-4,
    .ggc-row--cols-5,
    .ggc-row--cols-6,
    .ggc-hero-split .ggc-design-inner,
    .ggc-hero-cards .ggc-design-inner,
    .ggc-feature-grid--3,
    .ggc-feature-grid--4,
    .ggc-process-list,
    .ggc-testimonial-grid,
    .ggc-as-summary,
    .ggc-as-flow,
    .ggc-company-stats,
    .ggc-company-vision-grid,
    .ggc-company-org-branches,
    .ggc-smart-text-section .ggc-smart-inner,
    .ggc-smart-countdown,
    .ggc-smart-code {
        grid-template-columns: 1fr;
    }
    .ggc-flexbox {
        display: block;
    }
    .ggc-flexbox > div {
        margin-bottom: 16px;
    }
    .ggc-design-block {
        padding: 40px 16px;
    }
    .ggc-design-block.ggc-mode-box > .ggc-design-inner,
    .ggc-company-block.ggc-mode-box > .ggc-design-inner {
        padding: 28px 20px;
    }
    .ggc-section,
    .ggc-row,
    .ggc-flexbox {
        padding-right: 18px;
        padding-left: 18px;
    }
    .ggc-section h2,
    .ggc-section-head h2,
    .ggc-design-block h2,
    .ggc-smart-section h2,
    .ggc-smart-text-section h2 {
        font-size: clamp(28px, 9vw, 42px);
        letter-spacing: -0.04em;
    }
    .ggc-company-timeline-item {
        grid-template-columns: 1fr;
        gap: 10px;
        padding-left: 14px;
    }
    .ggc-company-timeline-item time {
        font-size: 16px;
    }
    .ggc-countdown-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .ggc-mini-cards {
        grid-template-columns: 1fr;
    }
    .ggc-alert-card {
        display: block;
    }
    .ggc-alert-card p {
        margin: 10px 0;
    }
    .ggc-alert-card a {
        display: inline-flex;
        margin: 10px 0 0;
    }
    .ggc-as-hero aside,
    .ggc-as-summary article,
    .ggc-as-panel,
    .ggc-as-warning,
    .ggc-as-safety {
        padding: 22px;
        border-radius: 22px;
    }
    .ggc-as-flow article {
        padding: 22px;
        border-radius: 22px;
    }
    .ggc-carousel-track {
        grid-auto-columns: 86%;
    }
    .ggc-map-frame iframe,
    .ggc-content iframe.ggc-map-iframe {
        height: 340px;
    }
    .ggc-youtube-content {
        padding: 92px 18px;
    }
    .ggc-youtube-hero.ggc-youtube-limited {
        min-height: max(460px, var(--ggc-youtube-height, 560px));
    }
    .ggc-smart-block,
    .ggc-smart-list,
    .ggc-smart-quote,
    .ggc-smart-form,
    .ggc-smart-tabs,
    .ggc-smart-countdown,
    .ggc-smart-code {
        padding: 40px 22px;
        border-radius: 28px;
    }
    .ggc-smart-text,
    .ggc-smart-link-card,
    .ggc-smart-navbar {
        display: block;
        border-radius: 26px;
    }
    .ggc-smart-list li {
        padding: 16px 16px 16px 50px;
    }
    .ggc-smart-text {
        padding: 22px;
    }
    .ggc-smart-text .ggc-content-icon,
    .ggc-smart-link-card .ggc-content-icon {
        margin-bottom: 14px;
    }
    .ggc-smart-tooltip {
        padding: 28px;
        border-radius: 28px;
    }
    .ggc-smart-tooltip .ggc-content-icon {
        position: static;
        margin-bottom: 16px;
    }
    .ggc-smart-navbar div {
        margin: 14px 0;
    }
    .ggc-smart-link-card b {
        display: inline-flex;
        margin-top: 14px;
    }
}
@media (max-width: 480px) {
    .ggc-countdown-grid,
    .ggc-mini-cards {
        grid-template-columns: 1fr;
    }
    .ggc-carousel-track {
        grid-auto-columns: 92%;
    }
    .ggc-alert-card,
    .ggc-smart-form,
    .ggc-smart-tabs,
    .ggc-smart-countdown,
    .ggc-smart-code,
    .ggc-smart-block,
    .ggc-smart-list,
    .ggc-smart-quote {
        padding: 28px 18px;
        border-radius: 22px;
    }
    .ggc-content-icon {
        width: 46px;
        height: 46px;
    }
    .ggc-content-icon svg {
        width: 24px;
        height: 24px;
    }
    .ggc-actions,
    .ggc-cta-block .ggc-design-inner {
        display: grid;
        gap: 10px;
    }
    .ggc-button,
    .ggc-link-button {
        width: 100%;
        justify-content: center;
    }
    .ggc-design-block.ggc-mode-box > .ggc-design-inner,
    .ggc-company-block.ggc-mode-box > .ggc-design-inner,
    .ggc-col,
    .ggc-smart-field,
    .ggc-smart-tabs__panel {
        padding: 20px 18px;
        border-radius: 20px;
    }
    .ggc-table-wrap th,
    .ggc-table-wrap td {
        padding: 12px;
        font-size: 14px;
    }
    .ggc-table-wrap table {
        min-width: min(520px, calc(100vw - 44px));
    }
    .ggc-smart-tabs__nav {
        border-radius: 22px;
    }
    .ggc-smart-tabs__nav a,
    .ggc-smart-tabs__nav button {
        min-width: max-content;
        padding: 10px 14px;
        font-size: 14px;
    }
    .ggc-countdown-grid span {
        padding: 18px 10px;
    }
    .ggc-as-hero h2 {
        font-size: clamp(30px, 10vw, 40px);
    }
    .ggc-as-hero aside,
    .ggc-as-summary article,
    .ggc-as-panel,
    .ggc-as-warning,
    .ggc-as-safety,
    .ggc-as-flow article {
        padding: 18px;
        border-radius: 20px;
    }
    .ggc-as-address,
    .ggc-as-warning li,
    .ggc-as-safety p {
        padding: 14px;
    }
}
@media (prefers-reduced-motion: reduce) {
    .ggc-content *,
    .ggc-content *::before,
    .ggc-content *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
    }
    .ggc-content .ggc-button:hover,
    .ggc-feature-card:hover {
        transform: none !important;
    }
    .ggc-carousel-track {
        scroll-snap-type: none;
    }
    .ggc-youtube-bg iframe {
        display: none;
    }
}
